{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/InputSites.js@1.12.0", "ssg:https://framerusercontent.com/modules/O4nTVQCXY50llpKf7Pq5/DgkqSYV1OR0X2aSnTbVp/Input_ConvertKit.js", "ssg:https://framerusercontent.com/modules/rFqwiXSmbZVfieV005ai/Mb81u2RRwp051KNpwNKr/cqWQea_JK.js", "ssg:https://framerusercontent.com/modules/rR9DOpE1UoGA43FPTj3p/75TvUSGHh5W6qDk2lERT/Dolv_4me4.js", "ssg:https://framerusercontent.com/modules/I9zv7ZFsmYk4ooAma8Zi/VPZIEanowFwiZFtIN52h/o_6gLuZNJ.js", "ssg:https://framerusercontent.com/modules/8ihYHsH5j7wxJNiqEPVP/JlY5fIU8hn9pqke8iRV2/augiA20Il.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 - CONVERTKIT\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 ConvertKit(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:\"convertkit\"});}addPropertyControls(ConvertKit,{convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String},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\":\"ConvertKit\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_ConvertKit.map", "// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/TniocJThS2MAE5zNhKPI/eJcL21haxPbisXiHwHwC/p8Mq9SuLP.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/AdNfaDj7ESsy3X7yE58v/kmhcH5sj6P1r8RJLOIiQ/Tnuw3y2LO.js\";const cycleOrder=[\"uCQdeTB2E\",\"jzZVdX5O3\",\"gpD3W1z8M\",\"dWL3upKHP\",\"qpplYj1x4\",\"cXsE1B1Rl\",\"PL80KuQNj\",\"zE3Kd6wBB\",\"czrZHDDh6\",\"t3pcRegv9\",\"QczjlSbDj\",\"BlGwiC6rp\"];const serializationHash=\"framer-yzFMB\";const variantClassNames={BlGwiC6rp:\"framer-v-1fymvx8\",cXsE1B1Rl:\"framer-v-hq9har\",czrZHDDh6:\"framer-v-9t8yj7\",dWL3upKHP:\"framer-v-1i1rusk\",gpD3W1z8M:\"framer-v-92fqlu\",jzZVdX5O3:\"framer-v-1995syy\",PL80KuQNj:\"framer-v-1wqmkb0\",QczjlSbDj:\"framer-v-1rqywxu\",qpplYj1x4:\"framer-v-jcxbc\",t3pcRegv9:\"framer-v-59lxzd\",uCQdeTB2E:\"framer-v-v35dz4\",zE3Kd6wBB:\"framer-v-1y77s5t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Chat manager ( desktop\":\"gpD3W1z8M\",\"Chat manager ( mobile )\":\"czrZHDDh6\",\"Collaboration ( desktop )\":\"jzZVdX5O3\",\"Collaboration ( mobile )\":\"zE3Kd6wBB\",\"plugins ( desktop )\":\"dWL3upKHP\",\"Plugins ( mobile )\":\"t3pcRegv9\",\"Prompt library ( mobile )\":\"BlGwiC6rp\",\"Promtps library ( desktop )\":\"cXsE1B1Rl\",\"Workflows ( desktop )\":\"qpplYj1x4\",\"Workflows ( mobile )\":\"QczjlSbDj\",\"Workspace ( desktop )\":\"uCQdeTB2E\",\"Workspace ( mobile )\":\"PL80KuQNj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"uCQdeTB2E\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uCQdeTB2E\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap27nt7b=activeVariantCallback(async(...args)=>{setVariant(\"uCQdeTB2E\");});const onTapmme4on=activeVariantCallback(async(...args)=>{setVariant(\"PL80KuQNj\");});const onTap1x9tk3o=activeVariantCallback(async(...args)=>{setVariant(\"jzZVdX5O3\");});const onTapegal8s=activeVariantCallback(async(...args)=>{setVariant(\"zE3Kd6wBB\");});const onTap6t3r8m=activeVariantCallback(async(...args)=>{setVariant(\"gpD3W1z8M\");});const onTap1e1v4gh=activeVariantCallback(async(...args)=>{setVariant(\"czrZHDDh6\");});const onTap2srsqz=activeVariantCallback(async(...args)=>{setVariant(\"dWL3upKHP\");});const onTap1o2iu6o=activeVariantCallback(async(...args)=>{setVariant(\"t3pcRegv9\");});const onTap1bfuynk=activeVariantCallback(async(...args)=>{setVariant(\"qpplYj1x4\");});const onTap173rhkb=activeVariantCallback(async(...args)=>{setVariant(\"QczjlSbDj\");});const onTap17cwq25=activeVariantCallback(async(...args)=>{setVariant(\"cXsE1B1Rl\");});const onTap11ugpbl=activeVariantCallback(async(...args)=>{setVariant(\"BlGwiC6rp\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v35dz4\",className,classNames),\"data-framer-name\":\"Workspace ( desktop )\",layoutDependency:layoutDependency,layoutId:\"uCQdeTB2E\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BlGwiC6rp:{\"data-framer-name\":\"Prompt library ( mobile )\"},cXsE1B1Rl:{\"data-framer-name\":\"Promtps library ( desktop )\"},czrZHDDh6:{\"data-framer-name\":\"Chat manager ( mobile )\"},dWL3upKHP:{\"data-framer-name\":\"plugins ( desktop )\"},gpD3W1z8M:{\"data-framer-name\":\"Chat manager ( desktop\"},jzZVdX5O3:{\"data-framer-name\":\"Collaboration ( desktop )\"},PL80KuQNj:{\"data-framer-name\":\"Workspace ( mobile )\"},QczjlSbDj:{\"data-framer-name\":\"Workflows ( mobile )\"},qpplYj1x4:{\"data-framer-name\":\"Workflows ( desktop )\"},t3pcRegv9:{\"data-framer-name\":\"Plugins ( mobile )\"},zE3Kd6wBB:{\"data-framer-name\":\"Collaboration ( mobile )\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xlf0jq\",\"data-framer-name\":\"Toogle bar\",layoutDependency:layoutDependency,layoutId:\"g3f_s4S4W\",style:{backgroundColor:\"var(--token-3554485a-f533-45e4-af11-42aa8fd156cf, rgb(27, 31, 40))\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80},variants:{BlGwiC6rp:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},czrZHDDh6:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},PL80KuQNj:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},QczjlSbDj:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},t3pcRegv9:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},zE3Kd6wBB:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hb9weu\",\"data-framer-name\":\"Workspace\",layoutDependency:layoutDependency,layoutId:\"HXdprSC1q\",style:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},cXsE1B1Rl:{backgroundColor:\"rgba(0, 0, 0, 0)\"},czrZHDDh6:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},dWL3upKHP:{backgroundColor:\"rgba(0, 0, 0, 0)\"},gpD3W1z8M:{backgroundColor:\"rgba(0, 0, 0, 0)\"},jzZVdX5O3:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},qpplYj1x4:{backgroundColor:\"rgba(0, 0, 0, 0)\"},t3pcRegv9:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{\"data-highlight\":true,onTap:onTapmme4on},cXsE1B1Rl:{\"data-highlight\":true,onTap:onTap27nt7b},czrZHDDh6:{\"data-highlight\":true,onTap:onTapmme4on},dWL3upKHP:{\"data-highlight\":true,onTap:onTap27nt7b},gpD3W1z8M:{\"data-highlight\":true,onTap:onTap27nt7b},jzZVdX5O3:{\"data-highlight\":true,onTap:onTap27nt7b},QczjlSbDj:{\"data-highlight\":true,onTap:onTapmme4on},qpplYj1x4:{\"data-highlight\":true,onTap:onTap27nt7b},t3pcRegv9:{\"data-highlight\":true,onTap:onTapmme4on},zE3Kd6wBB:{\"data-highlight\":true,onTap:onTapmme4on}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Workspace\"})}),className:\"framer-13yb4hd\",\"data-framer-name\":\"Workspace\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"beeiW5Lhq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{BlGwiC6rp:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},cXsE1B1Rl:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},czrZHDDh6:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},dWL3upKHP:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},gpD3W1z8M:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},jzZVdX5O3:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},QczjlSbDj:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},qpplYj1x4:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},t3pcRegv9:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"},zE3Kd6wBB:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BlGwiC6rp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},cXsE1B1Rl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},czrZHDDh6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},dWL3upKHP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},gpD3W1z8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},jzZVdX5O3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},QczjlSbDj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},qpplYj1x4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},t3pcRegv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})},zE3Kd6wBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workspace\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17oiot9\",\"data-framer-name\":\"Collaboration\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Eq6F_7_Nu\",onTap:onTap1x9tk3o,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},czrZHDDh6:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},jzZVdX5O3:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},t3pcRegv9:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{onTap:onTapegal8s},czrZHDDh6:{onTap:onTapegal8s},PL80KuQNj:{onTap:onTapegal8s},QczjlSbDj:{onTap:onTapegal8s},t3pcRegv9:{onTap:onTapegal8s}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Collaboration\"})}),className:\"framer-mfbqvy\",\"data-framer-name\":\"Collaboration\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Kn6nhsRTU\",style:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{jzZVdX5O3:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},zE3Kd6wBB:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jzZVdX5O3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Collaboration\"})})},zE3Kd6wBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Collaboration\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wpbc16\",\"data-framer-name\":\"Chat manager\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qVEVcJ_Oc\",onTap:onTap6t3r8m,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},czrZHDDh6:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},gpD3W1z8M:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},t3pcRegv9:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{onTap:onTap1e1v4gh},czrZHDDh6:{\"data-highlight\":undefined,onTap:undefined},PL80KuQNj:{onTap:onTap1e1v4gh},QczjlSbDj:{onTap:onTap1e1v4gh},t3pcRegv9:{onTap:onTap1e1v4gh},zE3Kd6wBB:{onTap:onTap1e1v4gh}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Chat manager\"})}),className:\"framer-1tmrkue\",\"data-framer-name\":\"Chat manager\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"bAfGeFm9m\",style:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{czrZHDDh6:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},gpD3W1z8M:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({czrZHDDh6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Chat manager\"})})},gpD3W1z8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Chat manager\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q5hajp\",\"data-framer-name\":\"Plugins\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"h5pjdjLnD\",onTap:onTap2srsqz,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},czrZHDDh6:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},dWL3upKHP:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},t3pcRegv9:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{onTap:onTap1o2iu6o},czrZHDDh6:{onTap:onTap1o2iu6o},PL80KuQNj:{onTap:onTap1o2iu6o},QczjlSbDj:{onTap:onTap1o2iu6o},t3pcRegv9:{\"data-highlight\":undefined,onTap:undefined},zE3Kd6wBB:{onTap:onTap1o2iu6o}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Plugins\"})}),className:\"framer-a2e07i\",\"data-framer-name\":\"Plugins\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"utX9cloIH\",style:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dWL3upKHP:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},t3pcRegv9:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dWL3upKHP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Plugins\"})})},t3pcRegv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Plugins\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lnkrad\",\"data-framer-name\":\"Workflows\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yHyj6bNi4\",onTap:onTap1bfuynk,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},czrZHDDh6:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},qpplYj1x4:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},t3pcRegv9:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{onTap:onTap173rhkb},czrZHDDh6:{onTap:onTap173rhkb},PL80KuQNj:{onTap:onTap173rhkb},QczjlSbDj:{\"data-highlight\":undefined,onTap:undefined},t3pcRegv9:{onTap:onTap173rhkb},zE3Kd6wBB:{onTap:onTap173rhkb}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Workflows\"})}),className:\"framer-u04kza\",\"data-framer-name\":\"Workflows\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"KwHUMuQO4\",style:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{QczjlSbDj:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},qpplYj1x4:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QczjlSbDj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Workflows\"})})},qpplYj1x4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Workflows\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xuj1hc\",\"data-framer-name\":\"Prompt library\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"XVqLumZQ4\",onTap:onTap17cwq25,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},variants:{BlGwiC6rp:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},cXsE1B1Rl:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},czrZHDDh6:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},PL80KuQNj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},QczjlSbDj:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},t3pcRegv9:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},zE3Kd6wBB:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({BlGwiC6rp:{\"data-highlight\":undefined,onTap:undefined},czrZHDDh6:{onTap:onTap11ugpbl},PL80KuQNj:{onTap:onTap11ugpbl},QczjlSbDj:{onTap:onTap11ugpbl},t3pcRegv9:{onTap:onTap11ugpbl},zE3Kd6wBB:{onTap:onTap11ugpbl}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(161, 175, 209))\"},children:\"Prompt library.\"})}),className:\"framer-1wmmhnn\",\"data-framer-name\":\"Prompts manager\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"IxZ8O5Bjl\",style:{\"--extracted-r6o4lv\":\"rgb(161, 175, 209)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{BlGwiC6rp:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},cXsE1B1Rl:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BlGwiC6rp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Prompt library.\"})})},cXsE1B1Rl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Prompt library.\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vn9pan\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"N2mYeFo_m\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qai1rm\",\"data-framer-name\":\"Feature info\",layoutDependency:layoutDependency,layoutId:\"Q0L_DsOMl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ecwrp6\",layoutDependency:layoutDependency,layoutId:\"Lg8AmqIsP\",style:{backgroundColor:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\"},variants:{BlGwiC6rp:{backgroundColor:\"rgb(255, 130, 84)\"},cXsE1B1Rl:{backgroundColor:\"rgb(255, 130, 84)\"},czrZHDDh6:{backgroundColor:\"rgb(50, 199, 114)\"},dWL3upKHP:{backgroundColor:\"rgb(60, 136, 250)\"},gpD3W1z8M:{backgroundColor:\"rgb(50, 199, 114)\"},jzZVdX5O3:{backgroundColor:\"rgb(220, 63, 154)\"},QczjlSbDj:{backgroundColor:\"rgb(255, 201, 74)\"},qpplYj1x4:{backgroundColor:\"rgb(255, 201, 74)\"},t3pcRegv9:{backgroundColor:\"rgb(60, 136, 250)\"},zE3Kd6wBB:{backgroundColor:\"rgb(220, 63, 154)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s2ej0z\",layoutDependency:layoutDependency,layoutId:\"N2_3KAyYm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Workspace\"})}),className:\"framer-h4rqpr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FiC84TFlS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BlGwiC6rp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Prompt library\"})})},cXsE1B1Rl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Prompt library\"})})},czrZHDDh6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Live Chat\"})})},dWL3upKHP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Plugins\"})})},gpD3W1z8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Live Chat\"})})},jzZVdX5O3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Collaboration\"})})},QczjlSbDj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Workflows\"})})},qpplYj1x4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Workflows\"})})},t3pcRegv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Plugins\"})})},zE3Kd6wBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-i1n0re\",\"data-styles-preset\":\"Tnuw3y2LO\",children:\"Collaboration\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"You and your team can interact and work with different language models in iLumina without leaving this platform.\"})}),className:\"framer-rz1inc\",\"data-framer-name\":\"Dive into a world of possibilities with features that will blow you away.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bRRIIsUEv\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BlGwiC6rp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Store, organize, and use prompts from the library.\"})})},cXsE1B1Rl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Store, organize, and use prompts from the library.\"})})},czrZHDDh6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Use the Live chat feature to maintain good communication with your co-workers.\"})})},dWL3upKHP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Get access to amazing plugins that solve specific problems. \"})})},gpD3W1z8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Use the Live chat feature to maintain good communication with your co-workers.\"})})},jzZVdX5O3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Work with your team members in the same tasks and make progress faster.\"})})},QczjlSbDj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Track the progress from start to finish with smooth workflows.\"})})},qpplYj1x4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Track the progress from start to finish with smooth workflows.\"})})},t3pcRegv9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Get access to amazing plugins that solve specific problems. \"})})},zE3Kd6wBB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Work with your team members in the same tasks and make progress faster.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg\",srcSet:\"https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg 1548w\"},className:\"framer-sj71cw\",\"data-border\":true,\"data-framer-name\":\"Content card\",layoutDependency:layoutDependency,layoutId:\"Jp4INexl9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(35, 45, 61)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{PL80KuQNj:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}},...addPropertyOverrides({BlGwiC6rp:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg\",srcSet:\"https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg 1602w\"}},cXsE1B1Rl:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg\",srcSet:\"https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/76xvf97L0q8RNPBOMX2B5mzuSY.jpg 1602w\"}},czrZHDDh6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg\",srcSet:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg 1548w\"}},dWL3upKHP:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg\",srcSet:\"https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg 1602w\"}},gpD3W1z8M:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg\",srcSet:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg 1548w\"}},jzZVdX5O3:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg\",srcSet:\"https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg 1548w\"}},PL80KuQNj:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg\",srcSet:\"https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/94TKrxZJU0QNZbeEz4IDkkay62I.jpg 1548w\"}},QczjlSbDj:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg\",srcSet:\"https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg 1602w\"}},qpplYj1x4:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:\"424.3003px\",src:\"https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg\",srcSet:\"https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0nlNWM387iFRxPnBUmPulfoadv0.jpg 1602w\"}},t3pcRegv9:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1602,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg\",srcSet:\"https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dd5gDmIh4txV6BZTBdKhFaktzc.jpg 1602w\"}},zE3Kd6wBB:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 710px) - 20px)`,src:\"https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg\",srcSet:\"https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IOn4mREiilS8hnP29LSw6HywIsk.jpg 1548w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yzFMB.framer-1x0uxow, .framer-yzFMB .framer-1x0uxow { display: block; }\",\".framer-yzFMB.framer-v35dz4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yzFMB .framer-1xlf0jq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-yzFMB .framer-hb9weu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 24px 14px 24px; position: relative; width: 155px; }\",\".framer-yzFMB .framer-13yb4hd, .framer-yzFMB .framer-mfbqvy, .framer-yzFMB .framer-1tmrkue, .framer-yzFMB .framer-a2e07i, .framer-yzFMB .framer-u04kza, .framer-yzFMB .framer-1wmmhnn, .framer-yzFMB .framer-h4rqpr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yzFMB .framer-17oiot9, .framer-yzFMB .framer-1wpbc16, .framer-yzFMB .framer-1q5hajp, .framer-yzFMB .framer-lnkrad, .framer-yzFMB .framer-1xuj1hc { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 24px 14px 24px; position: relative; width: 155px; }\",\".framer-yzFMB .framer-vn9pan { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-yzFMB .framer-1qai1rm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yzFMB .framer-ecwrp6 { flex: none; height: 111px; overflow: hidden; position: relative; width: 4px; }\",\".framer-yzFMB .framer-s2ej0z { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yzFMB .framer-rz1inc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 331px; word-break: break-word; word-wrap: break-word; }\",\".framer-yzFMB .framer-sj71cw { aspect-ratio: 1.4334470989761092 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 296px); position: relative; width: 424px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v35dz4, .framer-yzFMB .framer-1xlf0jq, .framer-yzFMB .framer-hb9weu, .framer-yzFMB .framer-17oiot9, .framer-yzFMB .framer-1wpbc16, .framer-yzFMB .framer-1q5hajp, .framer-yzFMB .framer-lnkrad, .framer-yzFMB .framer-1xuj1hc, .framer-yzFMB .framer-vn9pan, .framer-yzFMB .framer-1qai1rm, .framer-yzFMB .framer-s2ej0z { gap: 0px; } .framer-yzFMB.framer-v35dz4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-yzFMB.framer-v35dz4 > :first-child, .framer-yzFMB .framer-s2ej0z > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v35dz4 > :last-child, .framer-yzFMB .framer-s2ej0z > :last-child { margin-bottom: 0px; } .framer-yzFMB .framer-1xlf0jq > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-yzFMB .framer-1xlf0jq > :first-child, .framer-yzFMB .framer-hb9weu > :first-child, .framer-yzFMB .framer-17oiot9 > :first-child, .framer-yzFMB .framer-1wpbc16 > :first-child, .framer-yzFMB .framer-1q5hajp > :first-child, .framer-yzFMB .framer-lnkrad > :first-child, .framer-yzFMB .framer-1xuj1hc > :first-child, .framer-yzFMB .framer-vn9pan > :first-child, .framer-yzFMB .framer-1qai1rm > :first-child { margin-left: 0px; } .framer-yzFMB .framer-1xlf0jq > :last-child, .framer-yzFMB .framer-hb9weu > :last-child, .framer-yzFMB .framer-17oiot9 > :last-child, .framer-yzFMB .framer-1wpbc16 > :last-child, .framer-yzFMB .framer-1q5hajp > :last-child, .framer-yzFMB .framer-lnkrad > :last-child, .framer-yzFMB .framer-1xuj1hc > :last-child, .framer-yzFMB .framer-vn9pan > :last-child, .framer-yzFMB .framer-1qai1rm > :last-child { margin-right: 0px; } .framer-yzFMB .framer-hb9weu > *, .framer-yzFMB .framer-17oiot9 > *, .framer-yzFMB .framer-1wpbc16 > *, .framer-yzFMB .framer-1q5hajp > *, .framer-yzFMB .framer-lnkrad > *, .framer-yzFMB .framer-1xuj1hc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yzFMB .framer-vn9pan > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-yzFMB .framer-1qai1rm > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-yzFMB .framer-s2ej0z > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-yzFMB.framer-v-1995syy .framer-hb9weu, .framer-yzFMB.framer-v-92fqlu .framer-hb9weu, .framer-yzFMB.framer-v-1i1rusk .framer-hb9weu, .framer-yzFMB.framer-v-jcxbc .framer-hb9weu, .framer-yzFMB.framer-v-hq9har .framer-hb9weu, .framer-yzFMB.framer-v-1y77s5t .framer-hb9weu, .framer-yzFMB.framer-v-9t8yj7 .framer-hb9weu, .framer-yzFMB.framer-v-59lxzd .framer-hb9weu, .framer-yzFMB.framer-v-1rqywxu .framer-hb9weu, .framer-yzFMB.framer-v-1fymvx8 .framer-hb9weu { cursor: pointer; }\",\".framer-yzFMB.framer-v-1wqmkb0.framer-v35dz4, .framer-yzFMB.framer-v-1y77s5t.framer-v35dz4, .framer-yzFMB.framer-v-9t8yj7.framer-v35dz4, .framer-yzFMB.framer-v-59lxzd.framer-v35dz4, .framer-yzFMB.framer-v-1rqywxu.framer-v35dz4, .framer-yzFMB.framer-v-1fymvx8.framer-v35dz4 { width: 367px; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-1xlf0jq, .framer-yzFMB.framer-v-1y77s5t .framer-1xlf0jq, .framer-yzFMB.framer-v-9t8yj7 .framer-1xlf0jq, .framer-yzFMB.framer-v-59lxzd .framer-1xlf0jq, .framer-yzFMB.framer-v-1rqywxu .framer-1xlf0jq, .framer-yzFMB.framer-v-1fymvx8 .framer-1xlf0jq { flex-direction: column; max-width: 171px; width: 100%; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-vn9pan, .framer-yzFMB.framer-v-1y77s5t .framer-vn9pan, .framer-yzFMB.framer-v-9t8yj7 .framer-vn9pan, .framer-yzFMB.framer-v-59lxzd .framer-vn9pan, .framer-yzFMB.framer-v-1rqywxu .framer-vn9pan, .framer-yzFMB.framer-v-1fymvx8 .framer-vn9pan { flex-direction: column; max-width: 710px; width: 100%; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-1qai1rm, .framer-yzFMB.framer-v-1wqmkb0 .framer-rz1inc, .framer-yzFMB.framer-v-1y77s5t .framer-1qai1rm, .framer-yzFMB.framer-v-1y77s5t .framer-rz1inc, .framer-yzFMB.framer-v-9t8yj7 .framer-1qai1rm, .framer-yzFMB.framer-v-9t8yj7 .framer-rz1inc, .framer-yzFMB.framer-v-59lxzd .framer-1qai1rm, .framer-yzFMB.framer-v-1rqywxu .framer-1qai1rm, .framer-yzFMB.framer-v-1rqywxu .framer-rz1inc, .framer-yzFMB.framer-v-1fymvx8 .framer-1qai1rm, .framer-yzFMB.framer-v-1fymvx8 .framer-rz1inc { width: 100%; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-s2ej0z, .framer-yzFMB.framer-v-1y77s5t .framer-s2ej0z, .framer-yzFMB.framer-v-9t8yj7 .framer-s2ej0z, .framer-yzFMB.framer-v-59lxzd .framer-s2ej0z, .framer-yzFMB.framer-v-1rqywxu .framer-s2ej0z, .framer-yzFMB.framer-v-1fymvx8 .framer-s2ej0z { flex: 1 0 0px; width: 1px; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-h4rqpr, .framer-yzFMB.framer-v-1y77s5t .framer-h4rqpr, .framer-yzFMB.framer-v-9t8yj7 .framer-h4rqpr, .framer-yzFMB.framer-v-1rqywxu .framer-h4rqpr, .framer-yzFMB.framer-v-1fymvx8 .framer-h4rqpr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yzFMB.framer-v-1wqmkb0 .framer-sj71cw, .framer-yzFMB.framer-v-1y77s5t .framer-sj71cw, .framer-yzFMB.framer-v-9t8yj7 .framer-sj71cw, .framer-yzFMB.framer-v-59lxzd .framer-sj71cw, .framer-yzFMB.framer-v-1rqywxu .framer-sj71cw, .framer-yzFMB.framer-v-1fymvx8 .framer-sj71cw { height: var(--framer-aspect-ratio-supported, 242px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-1wqmkb0 .framer-1xlf0jq, .framer-yzFMB.framer-v-1wqmkb0 .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-1wqmkb0 .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-1wqmkb0 .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-1wqmkb0 .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-1wqmkb0 .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-1wqmkb0 .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-1wqmkb0 .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-1y77s5t .framer-1xlf0jq, .framer-yzFMB.framer-v-1y77s5t .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-1y77s5t .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-1y77s5t .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-1y77s5t .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-1y77s5t .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-1y77s5t .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-1y77s5t .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\".framer-yzFMB.framer-v-9t8yj7 .framer-1wpbc16, .framer-yzFMB.framer-v-59lxzd .framer-1q5hajp, .framer-yzFMB.framer-v-1rqywxu .framer-lnkrad, .framer-yzFMB.framer-v-1fymvx8 .framer-1xuj1hc { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-9t8yj7 .framer-1xlf0jq, .framer-yzFMB.framer-v-9t8yj7 .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-9t8yj7 .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-9t8yj7 .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-9t8yj7 .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-9t8yj7 .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-9t8yj7 .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-9t8yj7 .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-59lxzd .framer-1xlf0jq, .framer-yzFMB.framer-v-59lxzd .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-59lxzd .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-59lxzd .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-59lxzd .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-59lxzd .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-59lxzd .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-59lxzd .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-1rqywxu .framer-1xlf0jq, .framer-yzFMB.framer-v-1rqywxu .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-1rqywxu .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-1rqywxu .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-1rqywxu .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-1rqywxu .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-1rqywxu .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-1rqywxu .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yzFMB.framer-v-1fymvx8 .framer-1xlf0jq, .framer-yzFMB.framer-v-1fymvx8 .framer-vn9pan { gap: 0px; } .framer-yzFMB.framer-v-1fymvx8 .framer-1xlf0jq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-yzFMB.framer-v-1fymvx8 .framer-1xlf0jq > :first-child, .framer-yzFMB.framer-v-1fymvx8 .framer-vn9pan > :first-child { margin-top: 0px; } .framer-yzFMB.framer-v-1fymvx8 .framer-1xlf0jq > :last-child, .framer-yzFMB.framer-v-1fymvx8 .framer-vn9pan > :last-child { margin-bottom: 0px; } .framer-yzFMB.framer-v-1fymvx8 .framer-vn9pan > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-yzFMB[data-border=\"true\"]::after, .framer-yzFMB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 443\n * @framerIntrinsicWidth 966\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"jzZVdX5O3\":{\"layout\":[\"auto\",\"auto\"]},\"gpD3W1z8M\":{\"layout\":[\"auto\",\"auto\"]},\"dWL3upKHP\":{\"layout\":[\"auto\",\"auto\"]},\"qpplYj1x4\":{\"layout\":[\"auto\",\"auto\"]},\"cXsE1B1Rl\":{\"layout\":[\"auto\",\"auto\"]},\"PL80KuQNj\":{\"layout\":[\"fixed\",\"auto\"]},\"zE3Kd6wBB\":{\"layout\":[\"fixed\",\"auto\"]},\"czrZHDDh6\":{\"layout\":[\"fixed\",\"auto\"]},\"t3pcRegv9\":{\"layout\":[\"fixed\",\"auto\"]},\"QczjlSbDj\":{\"layout\":[\"fixed\",\"auto\"]},\"BlGwiC6rp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercqWQea_JK=withCSS(Component,css,\"framer-yzFMB\");export default FramercqWQea_JK;FramercqWQea_JK.displayName=\"Features section toogle\";FramercqWQea_JK.defaultProps={height:443,width:966};addPropertyControls(FramercqWQea_JK,{variant:{options:[\"uCQdeTB2E\",\"jzZVdX5O3\",\"gpD3W1z8M\",\"dWL3upKHP\",\"qpplYj1x4\",\"cXsE1B1Rl\",\"PL80KuQNj\",\"zE3Kd6wBB\",\"czrZHDDh6\",\"t3pcRegv9\",\"QczjlSbDj\",\"BlGwiC6rp\"],optionTitles:[\"Workspace ( desktop )\",\"Collaboration ( desktop )\",\"Chat manager ( desktop\",\"plugins ( desktop )\",\"Workflows ( desktop )\",\"Promtps library ( desktop )\",\"Workspace ( mobile )\",\"Collaboration ( mobile )\",\"Chat manager ( mobile )\",\"Plugins ( mobile )\",\"Workflows ( mobile )\",\"Prompt library ( mobile )\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercqWQea_JK,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercqWQea_JK\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"443\",\"framerIntrinsicWidth\":\"966\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jzZVdX5O3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gpD3W1z8M\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dWL3upKHP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qpplYj1x4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cXsE1B1Rl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PL80KuQNj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zE3Kd6wBB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"czrZHDDh6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t3pcRegv9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QczjlSbDj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BlGwiC6rp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cqWQea_JK.map", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Crb3zRnjb:{hover:true}};const cycleOrder=[\"Crb3zRnjb\",\"IgksiVRlp\"];const serializationHash=\"framer-kfaBL\";const variantClassNames={Crb3zRnjb:\"framer-v-1sqcni9\",IgksiVRlp:\"framer-v-1icx4an\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"No hover\":\"IgksiVRlp\",\"Variant 1\":\"Crb3zRnjb\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Crb3zRnjb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Crb3zRnjb\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Hr7yjEnTf\"},children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1sqcni9\",className,classNames)} framer-1l59awn`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Crb3zRnjb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},...addPropertyOverrides({\"Crb3zRnjb-hover\":{\"data-framer-name\":undefined},IgksiVRlp:{\"data-framer-name\":\"No hover\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"See all testimonials\"})}),className:\"framer-v8fv7s\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"SJSGqfuzB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"Crb3zRnjb-hover\":{\"--extracted-r6o4lv\":\"rgb(179, 179, 179)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Crb3zRnjb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"See all testimonials\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19x7paj\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qHIuqJt9L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 9\"><path d=\"M 0.722 4.5 L 12.278 4.5 M 12.278 4.5 L 7.944 0.643 M 12.278 4.5 L 7.944 8.357\" fill=\"transparent\" stroke-width=\"1.1\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9147122474,withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kfaBL.framer-1l59awn, .framer-kfaBL .framer-1l59awn { display: block; }\",\".framer-kfaBL.framer-1sqcni9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 16px 14px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-kfaBL .framer-v8fv7s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kfaBL .framer-19x7paj { flex: none; height: 9px; position: relative; width: 13px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kfaBL.framer-1sqcni9 { gap: 0px; } .framer-kfaBL.framer-1sqcni9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kfaBL.framer-1sqcni9 > :first-child { margin-left: 0px; } .framer-kfaBL.framer-1sqcni9 > :last-child { margin-right: 0px; } }\",\".framer-kfaBL.framer-v-1icx4an.framer-1sqcni9 { cursor: unset; }\",\".framer-kfaBL.framer-v-1sqcni9.hover.framer-1sqcni9 { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kfaBL.framer-v-1sqcni9.hover.framer-1sqcni9 { gap: 0px; } .framer-kfaBL.framer-v-1sqcni9.hover.framer-1sqcni9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-kfaBL.framer-v-1sqcni9.hover.framer-1sqcni9 > :first-child { margin-left: 0px; } .framer-kfaBL.framer-v-1sqcni9.hover.framer-1sqcni9 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 197\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"IgksiVRlp\":{\"layout\":[\"auto\",\"auto\"]},\"zL_AR7e60\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDolv_4me4=withCSS(Component,css,\"framer-kfaBL\");export default FramerDolv_4me4;FramerDolv_4me4.displayName=\"Home page buttons/ see all testimonials\";FramerDolv_4me4.defaultProps={height:47,width:197};addPropertyControls(FramerDolv_4me4,{variant:{options:[\"Crb3zRnjb\",\"IgksiVRlp\"],optionTitles:[\"Variant 1\",\"No hover\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDolv_4me4,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDolv_4me4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IgksiVRlp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zL_AR7e60\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"197\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"47\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dolv_4me4.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/TniocJThS2MAE5zNhKPI/eJcL21haxPbisXiHwHwC/p8Mq9SuLP.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1VhDYZAHLvLi4gH0BemH/HlRGQ84OAEFl0RVNUy9h/tn3djPLZy.js\";const cycleOrder=[\"oa2P8r0le\",\"m5SKpWnya\",\"NEKhbIXFB\"];const serializationHash=\"framer-MGhDa\";const variantClassNames={m5SKpWnya:\"framer-v-l1azls\",NEKhbIXFB:\"framer-v-ltg322\",oa2P8r0le:\"framer-v-11aszci\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Step 1\":\"oa2P8r0le\",\"Step 2\":\"m5SKpWnya\",\"Step 3\":\"NEKhbIXFB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"oa2P8r0le\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oa2P8r0le\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11aszci\",className,classNames),\"data-framer-name\":\"Step 1\",layoutDependency:layoutDependency,layoutId:\"oa2P8r0le\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({m5SKpWnya:{\"data-framer-name\":\"Step 2\"},NEKhbIXFB:{\"data-framer-name\":\"Step 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gos15p\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GFRwgQLhZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(48, 66, 243, 0.2)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zcpsm8\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZPnNWWtx5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 10\"><path d=\"M 13.778 1.615 L 5.833 8.385 L 2.222 5.308\" fill=\"transparent\" stroke-width=\"1.63\" stroke=\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243)) /* {&quot;name&quot;:&quot;Blue #2&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8757913773,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tr6lme\",layoutDependency:layoutDependency,layoutId:\"jYgAH3Qcr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Step 1\"})}),className:\"framer-9p4oz4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pQr6vRUE2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({m5SKpWnya:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Step 2\"})})},NEKhbIXFB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"Step 3\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Start for free.\"})}),className:\"framer-1p096t2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EIJ3CMrfH\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({m5SKpWnya:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Create your account\"})})},NEKhbIXFB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Start using Lumina\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MGhDa.framer-u3nc6o, .framer-MGhDa .framer-u3nc6o { display: block; }\",\".framer-MGhDa.framer-11aszci { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 136px; }\",\".framer-MGhDa .framer-1gos15p { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: hidden; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MGhDa .framer-zcpsm8 { flex: none; height: 10px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 10px / 2); width: 16px; }\",\".framer-MGhDa .framer-tr6lme { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MGhDa .framer-9p4oz4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MGhDa .framer-1p096t2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MGhDa.framer-11aszci, .framer-MGhDa .framer-tr6lme { gap: 0px; } .framer-MGhDa.framer-11aszci > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-MGhDa.framer-11aszci > :first-child, .framer-MGhDa .framer-tr6lme > :first-child { margin-top: 0px; } .framer-MGhDa.framer-11aszci > :last-child, .framer-MGhDa .framer-tr6lme > :last-child { margin-bottom: 0px; } .framer-MGhDa .framer-tr6lme > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-MGhDa[data-border=\"true\"]::after, .framer-MGhDa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m5SKpWnya\":{\"layout\":[\"fixed\",\"auto\"]},\"NEKhbIXFB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero_6gLuZNJ=withCSS(Component,css,\"framer-MGhDa\");export default Framero_6gLuZNJ;Framero_6gLuZNJ.displayName=\"Steps\";Framero_6gLuZNJ.defaultProps={height:80,width:136};addPropertyControls(Framero_6gLuZNJ,{variant:{options:[\"oa2P8r0le\",\"m5SKpWnya\",\"NEKhbIXFB\"],optionTitles:[\"Step 1\",\"Step 2\",\"Step 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero_6gLuZNJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero_6gLuZNJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"136\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m5SKpWnya\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NEKhbIXFB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"80\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o_6gLuZNJ.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import ConvertKit from\"https://framerusercontent.com/modules/O4nTVQCXY50llpKf7Pq5/DgkqSYV1OR0X2aSnTbVp/Input_ConvertKit.js\";import FeaturesSectionToogle from\"#framer/local/canvasComponent/cqWQea_JK/cqWQea_JK.js\";import HomePageButtonsSeeAllTestimonials from\"#framer/local/canvasComponent/Dolv_4me4/Dolv_4me4.js\";import Steps from\"#framer/local/canvasComponent/o_6gLuZNJ/o_6gLuZNJ.js\";import NavBar from\"#framer/local/canvasComponent/oAxHrPnEq/oAxHrPnEq.js\";import HomePageButtonsMainCTAs from\"#framer/local/canvasComponent/SKp3QtTrv/SKp3QtTrv.js\";import Footer from\"#framer/local/canvasComponent/tgaXkuUr2/tgaXkuUr2.js\";import AccordionRow from\"#framer/local/canvasComponent/Ucu49o9Q9/Ucu49o9Q9.js\";import NavBarCTAsBuyTemplateButton from\"#framer/local/canvasComponent/uGfkGeC1s/uGfkGeC1s.js\";import CircleBackgroundEffect from\"#framer/local/canvasComponent/XCIaE_Sm1/XCIaE_Sm1.js\";import*as sharedStyle4 from\"#framer/local/css/bbHXK1pmD/bbHXK1pmD.js\";import*as sharedStyle6 from\"#framer/local/css/N1D_UezK3/N1D_UezK3.js\";import*as sharedStyle3 from\"#framer/local/css/oNGabnrHv/oNGabnrHv.js\";import*as sharedStyle5 from\"#framer/local/css/p8Mq9SuLP/p8Mq9SuLP.js\";import*as sharedStyle from\"#framer/local/css/tn3djPLZy/tn3djPLZy.js\";import*as sharedStyle1 from\"#framer/local/css/vr6Uh_L1H/vr6Uh_L1H.js\";import*as sharedStyle2 from\"#framer/local/css/wO3qJrvd4/wO3qJrvd4.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const CircleBackgroundEffectFonts=getFonts(CircleBackgroundEffect);const HomePageButtonsMainCTAsFonts=getFonts(HomePageButtonsMainCTAs);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const StepsFonts=getFonts(Steps);const FeaturesSectionToogleFonts=getFonts(FeaturesSectionToogle);const HomePageButtonsSeeAllTestimonialsFonts=getFonts(HomePageButtonsSeeAllTestimonials);const AccordionRowFonts=getFonts(AccordionRow);const ConvertKitFonts=getFonts(ConvertKit);const FooterFonts=getFonts(Footer);const NavBarCTAsBuyTemplateButtonFonts=getFonts(NavBarCTAsBuyTemplateButton);const breakpoints={GqgtjPc9g:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\",Z12g0eqg0:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Jdseo\";const variantClassNames={GqgtjPc9g:\"framer-v-1hizy65\",WQLkyLRf1:\"framer-v-72rtr7\",Z12g0eqg0:\"framer-v-13jbcgs\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={damping:28,delay:0,mass:.1,stiffness:248,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Z12g0eqg0\",Tablet:\"GqgtjPc9g\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Jdseo`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Jdseo`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Z12g0eqg0\")return false;return true;};const elementId=useRouteElementId(\"pbBjJ9DR2\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"lpXXOu_Yv\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"VdjabZILy\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"YNFTH34X7\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"aKj50gsW6\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"b91HeNDGl\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"dsxn_eJmM\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i00yxu-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"URvwhFuVr\"},Z12g0eqg0:{variant:\"URvwhFuVr\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"GHRA3rIrX\",layoutId:\"GHRA3rIrX\",style:{width:\"100%\"},variant:\"pVDlIKXUq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"Background image\",fit:\"fill\",pixelHeight:2048,pixelWidth:5020,sizes:\"calc(100vw - 20px)\",src:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg\",srcSet:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg 5020w\"}},Z12g0eqg0:{background:{alt:\"Background image\",fit:\"fill\",pixelHeight:2048,pixelWidth:5020,sizes:\"calc(100vw - 20px)\",src:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg\",srcSet:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg 5020w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,as:\"section\",background:{alt:\"Background image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(48),pixelHeight:2048,pixelWidth:5020,sizes:\"100vw\",src:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg\",srcSet:\"https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XRU2bFsPRyM9HEt3acW02ATGtM.jpg 5020w\"},className:\"framer-104qlkp\",\"data-framer-name\":\"Hero section\",name:\"Hero section\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:630,width:\"630px\",y:436.20000000000005,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpn7me-container hidden-13jbcgs\",\"data-framer-name\":\"Circle effect\",name:\"Circle effect\",children:/*#__PURE__*/_jsx(CircleBackgroundEffect,{height:\"100%\",id:\"itBGxfdop\",layoutId:\"itBGxfdop\",name:\"Circle effect\",style:{height:\"100%\",width:\"100%\"},variant:\"gR4Dq2aVu\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eggakj\",\"data-framer-name\":\"Hero container\",name:\"Hero container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-uizook\",\"data-framer-name\":\"Hero content\",name:\"Hero content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ts691r\",\"data-framer-name\":\"Niches\",name:\"Niches\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zjzag8\",\"data-framer-name\":\"LLMs\",name:\"LLMs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"LLMs\"})}),className:\"framer-1bx3m8r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11pwwa0\",\"data-framer-name\":\"AI\",name:\"AI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"AI\"})}),className:\"framer-59u276\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-164dqhe\",\"data-framer-name\":\"Technology\",name:\"Technology\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Technology\"})}),className:\"framer-1stlesh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcfjye\",\"data-framer-name\":\"Productivity\",name:\"Productivity\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Productivity\"})}),className:\"framer-5aurdn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cvdadl\",\"data-framer-name\":\"SaaS\",name:\"SaaS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"SaaS\"})}),className:\"framer-1q4pxbj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vcxd65\",\"data-framer-name\":\"Hero text\",name:\"Hero text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-txoqtl\",\"data-styles-preset\":\"vr6Uh_L1H\",style:{\"--framer-text-alignment\":\"center\"},children:\"Multiple models in one place.\"})}),className:\"framer-zgvkro\",\"data-framer-name\":\"Heading 1\",fonts:[\"Inter\"],name:\"Heading 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13xke30\",\"data-styles-preset\":\"wO3qJrvd4\",children:\"iLumina is your all-in-one workspace. Communicate and work with different language models.\"})}),className:\"framer-yyc344\",\"data-framer-name\":\"Headin 2\",fonts:[\"Inter\"],name:\"Headin 2\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:401.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nddhvz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"gtza4TWka\"},Z12g0eqg0:{variant:\"gtza4TWka\"}},children:/*#__PURE__*/_jsx(HomePageButtonsMainCTAs,{height:\"100%\",id:\"Q93oew98c\",layoutId:\"Q93oew98c\",Oh2adSLw2:\"Try iLumina for free\",variant:\"pqHPWyd0Y\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ctjewh-container\",\"data-framer-name\":\"Brands\",name:\"Brands\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"UCKFpBRXx\",layoutId:\"UCKFpBRXx\",name:\"Brands\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5d6uf4\",\"data-framer-name\":\"Brand 1\",name:\"Brand 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6tpx97\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:152,name:\"Company logo\",svg:'<svg width=\"152\" height=\"48\" viewBox=\"0 0 152 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.5868 8.40049L24.9 5.80493C24.2313 5.62574 23.6892 6.04172 23.6892 6.73404V16.7625C23.6892 17.4549 24.2313 18.1614 24.9 18.3405L34.5868 20.9361C35.2555 21.1153 35.7977 20.6993 35.7977 20.007V9.9785C35.7977 9.28617 35.2555 8.57968 34.5868 8.40049ZM24.9 2.04424C22.2251 1.3275 20.0566 2.99141 20.0566 5.7607V15.7892C20.0566 18.5585 22.2251 21.3845 24.9 22.1012L34.5868 24.6968C37.2617 25.4135 39.4302 23.7496 39.4302 20.9803V10.9518C39.4302 8.18254 37.2617 5.35655 34.5868 4.63981L24.9 2.04424Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.9812 16.5707L14.8727 13.3263C14.204 13.1471 13.6618 13.5631 13.6618 14.2554V26.791C13.6618 27.4833 14.204 28.1898 14.8727 28.369L26.9812 31.6135C27.6499 31.7927 28.192 31.3767 28.192 30.6844V18.1488C28.192 17.4564 27.6499 16.7499 26.9812 16.5707ZM14.8727 9.5656C12.1978 8.84886 10.0293 10.5128 10.0293 13.2821V25.8177C10.0293 28.587 12.1978 31.413 14.8727 32.1297L26.9812 35.3742C29.6561 36.0909 31.8245 34.427 31.8245 31.6577V19.1221C31.8245 16.3528 29.6561 13.5268 26.9812 12.8101L14.8727 9.5656Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.3736 24.741L4.84339 20.8477C4.17466 20.6685 3.63254 21.0844 3.63254 21.7768V36.8195C3.63254 37.5118 4.17466 38.2183 4.84339 38.3975L19.3736 42.2909C20.0423 42.47 20.5844 42.0541 20.5844 41.3617V26.319C20.5844 25.6267 20.0423 24.9202 19.3736 24.741ZM4.84339 17.087C2.16846 16.3702 0 18.0341 0 20.8034V35.8462C0 38.6155 2.16846 41.4414 4.84339 42.1582L19.3736 46.0515C22.0485 46.7683 24.2169 45.1044 24.2169 42.3351V27.2923C24.2169 24.523 22.0485 21.6971 19.3736 20.9803L4.84339 17.087Z\" fill=\"white\"/>\\n<path d=\"M53.64 32.608C54.7787 33.1307 56.0853 33.392 57.56 33.392C59.0347 33.392 60.3227 33.14 61.424 32.636C62.544 32.1134 63.412 31.3854 64.028 30.452C64.644 29.5 64.952 28.3894 64.952 27.12V26.784C64.952 25.608 64.6813 24.656 64.14 23.928C63.5987 23.1814 62.908 22.6307 62.068 22.276C61.2467 21.9214 60.3973 21.744 59.52 21.744H58.484V21.296L64.392 18.16V13.4H50.504V16.592H60.416V17.04L54.088 20.4V24.32H58.008C58.6427 24.32 59.212 24.4134 59.716 24.6C60.22 24.768 60.6213 25.0387 60.92 25.412C61.2187 25.7854 61.368 26.2707 61.368 26.868V27.148C61.368 28.0254 61.032 28.7534 60.36 29.332C59.7067 29.9107 58.7733 30.2 57.56 30.2C56.3653 30.2 55.404 29.892 54.676 29.276C53.948 28.6414 53.584 27.8014 53.584 26.756V26.364H50V26.868C50 28.212 50.3173 29.3787 50.952 30.368C51.6053 31.3387 52.5013 32.0854 53.64 32.608Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.8432 14.156C76.9098 13.652 75.8272 13.4 74.5952 13.4H66.5312V33H70.2272V25.832H74.5952C75.7898 25.832 76.8538 25.5894 77.7872 25.104C78.7392 24.6 79.4858 23.9 80.0272 23.004C80.5872 22.0894 80.8672 21.0254 80.8672 19.812V19.42C80.8672 18.188 80.5965 17.124 80.0552 16.228C79.5325 15.332 78.7952 14.6414 77.8432 14.156ZM76.3592 21.744C75.8178 22.2294 75.1085 22.472 74.2312 22.472H70.2272V16.76H74.2312C75.1085 16.76 75.8178 17.0027 76.3592 17.488C76.9005 17.9734 77.1712 18.636 77.1712 19.476V19.756C77.1712 20.596 76.9005 21.2587 76.3592 21.744Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M88.4215 33.392C87.0401 33.392 85.7988 33.112 84.6975 32.552C83.5961 31.992 82.7281 31.18 82.0935 30.116C81.4588 29.052 81.1415 27.7734 81.1415 26.28V25.832C81.1415 24.3387 81.4588 23.06 82.0935 21.996C82.7281 20.932 83.5961 20.12 84.6975 19.56C85.7988 19 87.0401 18.72 88.4215 18.72C89.8028 18.72 91.0441 19 92.1455 19.56C93.2468 20.12 94.1148 20.932 94.7495 21.996C95.3841 23.06 95.7015 24.3387 95.7015 25.832V26.28C95.7015 27.7734 95.3841 29.052 94.7495 30.116C94.1148 31.18 93.2468 31.992 92.1455 32.552C91.0441 33.112 89.8028 33.392 88.4215 33.392ZM88.4215 30.256C89.5041 30.256 90.4001 29.9107 91.1095 29.22C91.8188 28.5107 92.1735 27.5027 92.1735 26.196V25.916C92.1735 24.6094 91.8188 23.6107 91.1095 22.92C90.4188 22.2107 89.5228 21.856 88.4215 21.856C87.3388 21.856 86.4428 22.2107 85.7335 22.92C85.0241 23.6107 84.6695 24.6094 84.6695 25.916V26.196C84.6695 27.5027 85.0241 28.5107 85.7335 29.22C86.4428 29.9107 87.3388 30.256 88.4215 30.256Z\" fill=\"white\"/>\\n<path d=\"M102.542 19.448C102.075 19.7094 101.739 20.12 101.534 20.68H101.03V19.112H97.558V33H101.086V25.104C101.086 24.1147 101.375 23.3867 101.954 22.92C102.533 22.4347 103.27 22.192 104.166 22.192H105.902V22.19H109.5V29.864C109.5 30.816 109.78 31.5814 110.34 32.16C110.918 32.72 111.665 33 112.58 33H116.5V30.088H113.812C113.289 30.088 113.028 29.808 113.028 29.248V22.19H116.836V19.06H113.028V14.8H109.5V19.06H105.902V19.056H104.222C103.587 19.056 103.027 19.1867 102.542 19.448Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.281 32.888C121.065 33.224 121.952 33.392 122.941 33.392C123.912 33.392 124.677 33.252 125.237 32.972C125.797 32.692 126.208 32.3747 126.469 32.02C126.73 31.6467 126.898 31.348 126.973 31.124H127.505V31.152C127.505 31.712 127.729 32.16 128.177 32.496C128.625 32.832 129.194 33 129.885 33H132.237V30.088H131.117C130.594 30.088 130.333 29.808 130.333 29.248V24.068C130.333 22.332 129.801 21.0067 128.737 20.092C127.673 19.1774 126.226 18.72 124.397 18.72C123.202 18.72 122.185 18.9067 121.345 19.28C120.524 19.6347 119.861 20.1107 119.357 20.708C118.872 21.2867 118.517 21.9307 118.293 22.64L121.541 23.732C121.672 23.0974 121.952 22.584 122.381 22.192C122.81 21.7814 123.464 21.576 124.341 21.576C125.237 21.576 125.89 21.7907 126.301 22.22C126.712 22.6307 126.917 23.1627 126.917 23.816V24.6H123.109C122.064 24.6 121.13 24.768 120.309 25.104C119.506 25.4214 118.872 25.9067 118.405 26.56C117.957 27.1947 117.733 27.988 117.733 28.94C117.733 29.892 117.957 30.704 118.405 31.376C118.872 32.0294 119.497 32.5334 120.281 32.888ZM125.965 29.724C125.349 30.2654 124.546 30.536 123.557 30.536C122.81 30.536 122.241 30.3774 121.849 30.06C121.457 29.7427 121.261 29.332 121.261 28.828C121.261 28.324 121.448 27.932 121.821 27.652C122.194 27.372 122.708 27.232 123.361 27.232H126.917V27.512C126.917 28.4267 126.6 29.164 125.965 29.724Z\" fill=\"white\"/>\\n<path d=\"M140.77 32.216C141.927 33 143.411 33.392 145.222 33.392C146.995 33.392 148.405 33 149.45 32.216C150.514 31.4134 151.046 30.284 151.046 28.828C151.046 27.8574 150.794 27.092 150.29 26.532C149.805 25.9534 149.133 25.5147 148.274 25.216C147.434 24.8987 146.491 24.6467 145.446 24.46L144.662 24.32C144.027 24.208 143.523 24.0494 143.15 23.844C142.777 23.62 142.59 23.284 142.59 22.836C142.59 22.4254 142.767 22.108 143.122 21.884C143.477 21.6414 143.99 21.52 144.662 21.52C145.334 21.52 145.894 21.6694 146.342 21.968C146.809 22.2667 147.117 22.7707 147.266 23.48L150.542 22.472C150.225 21.352 149.553 20.4467 148.526 19.756C147.499 19.0654 146.211 18.72 144.662 18.72C143.019 18.72 141.694 19.0934 140.686 19.84C139.678 20.568 139.174 21.6227 139.174 23.004C139.174 23.9187 139.417 24.6654 139.902 25.244C140.387 25.8227 141.031 26.28 141.834 26.616C142.637 26.9334 143.523 27.1854 144.494 27.372L145.278 27.512C146.099 27.6614 146.697 27.8574 147.07 28.1C147.443 28.324 147.63 28.6507 147.63 29.08C147.63 29.5094 147.434 29.8734 147.042 30.172C146.65 30.452 146.043 30.592 145.222 30.592C144.681 30.592 144.177 30.5174 143.71 30.368C143.262 30.2 142.879 29.9294 142.562 29.556C142.263 29.1827 142.049 28.6694 141.918 28.016L138.67 28.856C138.913 30.312 139.613 31.432 140.77 32.216Z\" fill=\"white\"/>\\n<path d=\"M133.417 33V13.4H136.945V33H133.417Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5povdk\",\"data-framer-name\":\"Brand 2\",name:\"Brand 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ddwwxt\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:177,name:\"Company logo\",svg:'<svg width=\"177\" height=\"48\" viewBox=\"0 0 177 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 24C0 19.9005 1.29832 16.1043 3.50621 13H13V14.7789C9.98979 16.7416 8 20.1384 8 24C8 30.0751 12.9249 35 19 35V43C8.50659 43 0 34.4934 0 24Z\" fill=\"white\"/>\\n<path d=\"M34.4938 35C36.7017 31.8957 38 28.0995 38 24C38 13.5066 29.4934 5 19 5V13C25.0751 13 30 17.9249 30 24C30 27.8616 28.0102 31.2584 25 33.2211V35H34.4938Z\" fill=\"white\"/>\\n<path d=\"M52.698 11.5401V28.6501H61.166V33.0001H48V11.5401H52.698Z\" fill=\"white\"/>\\n<path d=\"M73.1913 18.5001H77.6573V33.0001H73.4523L73.1623 31.3761C72.2633 32.5651 70.4653 33.3771 68.7253 33.3771C65.4193 33.3771 63.3893 31.1731 63.3893 27.6061V18.5001H67.8553V25.9821C67.8553 28.3601 68.6673 29.4041 70.4943 29.4041C72.4083 29.4041 73.1913 28.4181 73.1913 26.0401V18.5001Z\" fill=\"white\"/>\\n<path d=\"M85.4746 33.0001H81.0086V18.5001H85.1846L85.4746 20.0081C86.1996 18.9931 87.6206 18.0361 89.7086 18.0361C91.8836 18.0361 93.2756 19.0511 94.1166 20.5881C94.8706 19.0511 96.5816 18.0361 98.6696 18.0361C102.411 18.0361 104.267 20.2111 104.267 23.5171V33.0001H99.8006V24.7641C99.8006 22.9371 98.8436 22.0671 97.4226 22.0671C96.1466 22.0671 94.8706 22.7631 94.8706 25.2281V33.0001H90.4046V24.7641C90.4046 22.9661 89.4766 22.0961 88.0556 22.0961C86.7796 22.0961 85.4746 22.7921 85.4746 25.2281V33.0001Z\" fill=\"white\"/>\\n<path d=\"M109.664 16.2381C108.243 16.2381 107.112 15.1071 107.112 13.6861C107.112 12.2651 108.243 11.1631 109.664 11.1631C111.056 11.1631 112.187 12.2651 112.187 13.6861C112.187 15.1071 111.056 16.2381 109.664 16.2381ZM107.46 33.0001V18.5001H111.926V33.0001H107.46Z\" fill=\"white\"/>\\n<path d=\"M119.742 33.0001H115.276V18.5001H119.481L119.771 20.0081C120.67 18.7611 122.323 18.0361 124.208 18.0361C127.659 18.0361 129.66 20.2401 129.66 24.0391V33.0001H125.194V25.1121C125.194 23.2851 124.179 22.0961 122.642 22.0961C120.873 22.0961 119.742 23.2561 119.742 25.0541V33.0001Z\" fill=\"white\"/>\\n<path d=\"M137.242 33.3771C134.168 33.3771 132.254 31.5791 132.254 28.7371C132.254 26.0691 134.139 24.4161 137.619 24.1551L141.679 23.8361V23.6041C141.679 22.1831 140.809 21.4291 139.214 21.4291C137.329 21.4291 136.314 22.1541 136.314 23.4591H132.602C132.602 20.1821 135.299 18.0361 139.446 18.0361C143.651 18.0361 146.029 20.3851 146.029 24.5321V33.0001H142.085L141.795 31.0861C141.331 32.4201 139.417 33.3771 137.242 33.3771ZM138.808 30.0711C140.519 30.0711 141.708 29.2301 141.708 27.5771V26.7941L139.446 26.9971C137.503 27.1711 136.807 27.6061 136.807 28.5341C136.807 29.5781 137.445 30.0711 138.808 30.0711Z\" fill=\"white\"/>\\n<path d=\"M159.208 18.5001V22.7051H157.787C155.235 22.7051 153.698 23.8361 153.698 26.7071V33.0001H149.232V18.5291H153.437L153.669 20.6751C154.278 19.2541 155.554 18.2971 157.497 18.2971C158.019 18.2971 158.599 18.3551 159.208 18.5001Z\" fill=\"white\"/>\\n<path d=\"M160.731 39.9601V36.2191H163.196C164.704 36.2191 165.342 35.7551 165.922 34.1891L166.183 33.4931L160.354 18.5001H165.139L168.3 27.8091L171.809 18.5001H176.449L169.083 36.1611C167.865 39.1191 166.241 40.3661 163.689 40.3661C162.616 40.3661 161.601 40.2211 160.731 39.9601Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tedryf\",\"data-framer-name\":\"Brand 3\",name:\"Brand 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d5the2\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:169,name:\"Company logo\",svg:'<svg width=\"169\" height=\"48\" viewBox=\"0 0 169 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1061 19.6565C19.6051 17.0266 23.9086 12.5636 26.3792 6.98482C24.7853 5.3112 22.7132 4.11575 20.4817 3.39848L19.2863 3C19.2066 3.15939 19.1269 3.39849 19.1269 3.55788C17.2142 8.97724 13.3091 13.3605 8.04924 15.8311C4.38325 17.5844 1.6736 20.7723 0.398477 24.5977L0 25.7932C0.159391 25.8729 0.39848 25.9525 0.557871 25.9525C2.07208 26.5104 3.58629 27.2277 5.02081 28.1044C7.01319 24.518 10.201 21.4896 14.1061 19.6565Z\" fill=\"white\"/>\\n<path opacity=\"0.6\" d=\"M37.2173 19.9756C34.2686 24.4386 30.2041 28.0249 25.1833 30.4158C21.1188 32.3285 18.0107 35.9149 16.5762 40.2185L16.1777 41.5733C17.6919 42.9281 19.5249 43.9642 21.5173 44.6018L22.7128 45.0003C22.7924 44.8409 22.8721 44.6018 22.8721 44.4424C24.7848 39.023 28.6899 34.6397 33.9498 32.1691C37.6158 30.4158 40.4051 27.228 41.6005 23.4025L41.999 22.2071C40.3254 21.7289 38.7315 20.9319 37.2173 19.9756Z\" fill=\"white\"/>\\n<path opacity=\"0.8\" d=\"M12.9903 37.4285C14.9827 32.6467 18.6487 28.7416 23.3507 26.5101C27.6542 24.438 31.2405 21.2501 33.7111 17.345C31.8781 15.5917 30.3639 13.5993 29.2481 11.2084C26.2994 16.6277 21.6771 21.011 16.0187 23.7207C12.7512 25.2349 10.1213 27.8649 8.52734 31.0528C10.2806 32.7264 11.7152 34.7985 12.8309 37.1097C12.8309 37.1097 12.9106 37.2691 12.9903 37.4285Z\" fill=\"white\"/>\\n<path d=\"M52 33V13.3564H56.0605V29.5195H64.9858V33H52Z\" fill=\"white\"/>\\n<path d=\"M72.9229 33.29C68.8755 33.29 66.397 31.0225 66.397 27.397V19.0781H70.2862V27.1597C70.2862 28.979 71.2222 30.0601 72.9229 30.0601C74.6236 30.0601 75.5728 28.979 75.5728 27.1597V19.0781H79.4488V27.397C79.4488 31.0225 76.9703 33.29 72.9229 33.29Z\" fill=\"white\"/>\\n<path d=\"M81.6773 33V19.0781H85.4215V21.583C86.252 19.6978 87.8736 18.7881 89.6402 18.7881C91.5123 18.7881 93.0811 19.8032 93.6612 21.5039C94.3863 19.8032 96.1002 18.7881 98.1173 18.7881C100.794 18.7881 102.784 20.5811 102.784 23.7715V33H98.9083V24.4834C98.9083 22.8091 97.88 21.9917 96.5484 21.9917C95.0455 21.9917 94.1095 23.0596 94.1095 24.6152V33H90.3653V24.3779C90.3653 22.9277 89.4161 21.9917 88.0582 21.9917C86.6739 21.9917 85.5665 22.9937 85.5665 24.7866V33H81.6773Z\" fill=\"white\"/>\\n<path d=\"M105 33V19.0781H108.889V33H105ZM106.938 17.3247C105.659 17.3247 104.723 16.4414 104.723 15.2549C104.723 14.0684 105.659 13.1851 106.938 13.1851C108.216 13.1851 109.152 14.0684 109.152 15.2549C109.152 16.4414 108.216 17.3247 106.938 17.3247Z\" fill=\"white\"/>\\n<path d=\"M114.993 25.2612V33H111.104V19.0781H114.927V21.2666C115.863 19.6846 117.274 18.7881 119.278 18.7881C122.244 18.7881 124.156 20.7656 124.156 24.2856V33H120.28V24.9976C120.28 23.1255 119.344 22.1367 117.722 22.1367C116.114 22.1367 114.993 23.0991 114.993 25.2612Z\" fill=\"white\"/>\\n<path d=\"M132.844 33.3164C128.626 33.3164 125.778 30.416 125.778 26.0522C125.778 21.6885 128.626 18.7617 132.844 18.7617C137.076 18.7617 139.924 21.6885 139.924 26.0522C139.924 30.416 137.076 33.3164 132.844 33.3164ZM132.844 30.1655C134.743 30.1655 136.008 28.6362 136.008 26.0522C136.008 23.4551 134.73 21.9126 132.844 21.9126C130.972 21.9126 129.694 23.4551 129.694 26.0522C129.694 28.6362 130.959 30.1655 132.844 30.1655Z\" fill=\"white\"/>\\n<path d=\"M148.059 33.29C144.011 33.29 141.533 31.0225 141.533 27.397V19.0781H145.422V27.1597C145.422 28.979 146.358 30.0601 148.059 30.0601C149.76 30.0601 150.709 28.979 150.709 27.1597V19.0781H154.585V27.397C154.585 31.0225 152.106 33.29 148.059 33.29Z\" fill=\"white\"/>\\n<path d=\"M162.601 33.3428C158.989 33.3428 156.391 31.6157 156.154 28.623H159.977C160.122 29.8359 161.019 30.561 162.535 30.561C163.972 30.561 164.855 29.9546 164.855 29.0977C164.855 28.3594 164.183 27.9243 163.049 27.7002L160.61 27.2256C157.908 26.6982 156.47 25.3271 156.47 23.165C156.47 20.5283 158.751 18.7881 162.377 18.7881C165.976 18.7881 168.349 20.5942 168.428 23.4946H164.829C164.803 22.374 163.853 21.5435 162.482 21.5435C161.151 21.5435 160.346 22.1895 160.346 23.02C160.346 23.7319 160.966 24.1934 162.034 24.4175L164.671 24.9316C167.479 25.4854 168.771 26.6982 168.771 28.7417C168.771 31.5234 166.24 33.3428 162.601 33.3428Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10duddp\",\"data-framer-name\":\"Brand 5\",name:\"Brand 5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vggjy6\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:188,name:\"Company logo\",svg:'<svg width=\"188\" height=\"48\" viewBox=\"0 0 188 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.9706 7.03309C21.8464 3.90889 16.781 3.90889 13.6569 7.03309L2.34315 18.3468C-0.781049 21.471 -0.781049 26.5363 2.34315 29.6605L13.6569 40.9742C16.781 44.0984 21.8464 44.0984 24.9706 40.9742L30.3688 35.5759C25.8749 33.8422 22.6868 29.4815 22.6868 24.3762C22.6868 19.0675 26.134 14.5639 30.9122 12.9819C30.8187 12.8837 30.7238 12.7864 30.6274 12.6899L24.9706 7.03309Z\" fill=\"white\"/>\\n<path d=\"M30.3691 35.5798C31.7089 36.0966 33.1646 36.3799 34.6865 36.3799C41.3139 36.3799 46.6865 31.0073 46.6865 24.3799C46.6865 17.7525 41.3139 12.3799 34.6865 12.3799C33.368 12.3799 32.0992 12.5925 30.9125 12.9854C36.8748 19.2535 36.78 29.169 30.6279 35.321L30.3691 35.5798Z\" fill=\"white\"/>\\n<path d=\"M69.607 33L68.149 28.842H60.616L59.131 33H55L62.29 13.614H66.772L74.008 33H69.607ZM64.423 18.096L61.777 25.575H67.015L64.423 18.096Z\" fill=\"white\"/>\\n<path d=\"M78.7457 33H74.9657V13.614H78.7457V33Z\" fill=\"white\"/>\\n<path d=\"M95.4222 25.791C95.4222 30.057 92.9112 33.27 89.0232 33.27C87.3222 33.27 85.8642 32.541 84.7842 31.137V38.211H81.0312V18.582H84.4872V20.688C85.5942 19.149 87.1872 18.312 89.0232 18.312C92.9112 18.312 95.4222 21.552 95.4222 25.791ZM91.5612 25.791C91.5612 23.091 90.0222 21.633 88.1862 21.633C86.3502 21.633 84.8112 23.064 84.8112 25.791C84.8112 28.518 86.3502 29.922 88.1862 29.922C90.0222 29.922 91.5612 28.545 91.5612 25.791Z\" fill=\"white\"/>\\n<path d=\"M100.5 25.143V33H96.7471V13.614H100.5V20.472C101.499 19.149 102.741 18.312 104.631 18.312C107.52 18.312 109.518 20.202 109.518 23.685V33H105.792V24.954C105.792 22.821 104.955 21.633 103.254 21.633C101.769 21.633 100.5 22.821 100.5 25.143Z\" fill=\"white\"/>\\n<path d=\"M120.258 33V31.218C119.313 32.568 117.882 33.27 115.911 33.27C112.914 33.27 110.916 31.515 110.916 28.815C110.916 26.007 113.184 24.495 117.396 24.495C118.206 24.495 118.908 24.549 119.799 24.657V23.793C119.799 22.173 118.881 21.228 117.315 21.228C115.695 21.228 114.723 22.173 114.588 23.793H111.213C111.429 20.472 113.832 18.312 117.315 18.312C121.095 18.312 123.309 20.391 123.309 23.928V33H120.258ZM114.453 28.707C114.453 29.922 115.317 30.678 116.721 30.678C118.638 30.678 119.799 29.625 119.799 27.951V26.925C118.908 26.79 118.287 26.736 117.639 26.736C115.506 26.736 114.453 27.411 114.453 28.707Z\" fill=\"white\"/>\\n<path d=\"M139.157 33L135.539 19.446L131.921 33H127.763L122.795 13.614H126.791L129.923 26.763L133.487 13.614H137.672L141.128 26.817L144.287 13.614H148.31L143.315 33H139.157Z\" fill=\"white\"/>\\n<path d=\"M156.726 33V31.218C155.781 32.568 154.35 33.27 152.379 33.27C149.382 33.27 147.384 31.515 147.384 28.815C147.384 26.007 149.652 24.495 153.864 24.495C154.674 24.495 155.376 24.549 156.267 24.657V23.793C156.267 22.173 155.349 21.228 153.783 21.228C152.163 21.228 151.191 22.173 151.056 23.793H147.681C147.897 20.472 150.3 18.312 153.783 18.312C157.563 18.312 159.777 20.391 159.777 23.928V33H156.726ZM150.921 28.707C150.921 29.922 151.785 30.678 153.189 30.678C155.106 30.678 156.267 29.625 156.267 27.951V26.925C155.376 26.79 154.755 26.736 154.107 26.736C151.974 26.736 150.921 27.411 150.921 28.707Z\" fill=\"white\"/>\\n<path d=\"M174.417 18.582L169.125 33H165.021L159.702 18.582H163.752L167.181 28.734L170.637 18.582H174.417Z\" fill=\"white\"/>\\n<path d=\"M180.747 33.243C176.427 33.243 173.538 30.246 173.538 25.737C173.538 21.444 176.535 18.312 180.693 18.312C185.256 18.312 188.28 22.011 187.605 26.709H177.372C177.615 29.058 178.749 30.354 180.666 30.354C182.313 30.354 183.42 29.544 183.852 28.113H187.578C186.768 31.38 184.257 33.243 180.747 33.243ZM180.612 21.066C178.857 21.066 177.75 22.2 177.426 24.333H183.636C183.528 22.335 182.394 21.066 180.612 21.066Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m8p59u\",\"data-framer-name\":\"Brand 6\",name:\"Brand 6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1r63h86\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:158,name:\"Company logo\",svg:'<svg width=\"158\" height=\"48\" viewBox=\"0 0 158 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32 26C32 31.5228 27.5228 36 22 36C16.4772 36 12 31.5228 12 26H4C4 35.9411 12.0589 44 22 44C31.9411 44 40 35.9411 40 26C40 16.0589 31.9411 8 22 8V16C27.5228 16 32 20.4772 32 26Z\" fill=\"white\"/>\\n<path opacity=\"0.5\" d=\"M10 4C10 9.52285 5.52285 14 0 14V22C9.94113 22 18 13.9411 18 4H10Z\" fill=\"white\"/>\\n<path d=\"M50 13.83H63.77V17.691H54.725V21.471H63.446V25.305H54.725V29.139H63.986V33H50V13.83Z\" fill=\"white\"/>\\n<path d=\"M65.2531 23.199C65.7931 20.04 68.1691 18.366 72.1651 18.366C76.7551 18.366 79.0231 20.472 79.0231 24.657V28.734C79.0231 29.787 79.4551 29.949 79.9411 29.949H80.4271V33L79.7791 33.054C79.0231 33.081 75.7291 33.594 75.2431 30.84C74.4871 32.379 72.8671 33.324 70.1401 33.324C67.2241 33.324 65.0101 31.758 65.0101 29.22C65.0101 26.655 66.9271 25.575 70.4641 24.873L74.2981 24.09C74.2981 22.119 73.6231 21.201 72.1381 21.201C70.8961 21.201 70.1401 21.93 69.8971 23.388L65.2531 23.199ZM69.7891 29.031C69.7891 29.868 70.4641 30.462 71.7331 30.462C73.2991 30.462 74.3791 29.274 74.3791 26.925V26.79L72.3541 27.168C70.8151 27.438 69.7891 27.762 69.7891 29.031Z\" fill=\"white\"/>\\n<path d=\"M90.1465 23.415C89.9305 22.146 88.9315 21.39 87.8515 21.39C86.7175 21.39 85.9075 21.984 85.9615 22.929C86.0155 23.847 87.0415 24.279 88.3105 24.495C92.8735 25.17 94.8175 26.331 94.8175 29.004C94.8175 31.866 92.1715 33.324 88.2295 33.324C83.7745 33.324 81.0745 31.515 80.8315 28.437L85.5025 28.248C85.7455 29.517 86.6365 30.219 88.0675 30.219C89.0395 30.219 90.0925 29.841 90.0385 28.95C90.0115 27.897 88.8775 27.627 87.5545 27.384C83.1535 26.574 81.1825 25.494 81.1825 22.929C81.1825 20.04 83.6125 18.339 87.9865 18.339C91.8205 18.339 94.3045 20.148 94.7635 23.253L90.1465 23.415Z\" fill=\"white\"/>\\n<path d=\"M94.5076 18.69H98.8276L102.176 28.167L105.362 18.69H109.682L104.12 34.215C103.418 36.186 102.095 37.05 99.8806 37.05H97.0726V33.756H98.9356C99.8536 33.756 100.313 33.513 100.583 32.838L100.88 32.109H99.6376L94.5076 18.69Z\" fill=\"white\"/>\\n<path d=\"M125.686 13.83V17.691H120.016V33H115.318V17.691H109.648V13.83H125.686Z\" fill=\"white\"/>\\n<path d=\"M125.796 23.199C126.336 20.04 128.712 18.366 132.708 18.366C137.298 18.366 139.566 20.472 139.566 24.657V28.734C139.566 29.787 139.998 29.949 140.484 29.949H140.97V33L140.322 33.054C139.566 33.081 136.272 33.594 135.786 30.84C135.03 32.379 133.41 33.324 130.683 33.324C127.767 33.324 125.553 31.758 125.553 29.22C125.553 26.655 127.47 25.575 131.007 24.873L134.841 24.09C134.841 22.119 134.166 21.201 132.681 21.201C131.439 21.201 130.683 21.93 130.44 23.388L125.796 23.199ZM130.332 29.031C130.332 29.868 131.007 30.462 132.276 30.462C133.842 30.462 134.922 29.274 134.922 26.925V26.79L132.897 27.168C131.358 27.438 130.332 27.762 130.332 29.031Z\" fill=\"white\"/>\\n<path d=\"M152.359 18.663H157.381L152.332 25.737L157.516 33H152.494L149.686 28.626L146.851 33H141.829L147.013 25.737L141.964 18.663H146.959L149.686 22.821L152.359 18.663Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ysgc3l\",\"data-framer-name\":\"Brand 7\",name:\"Brand 7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z7dcxs\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:221,name:\"Company logo\",svg:'<svg width=\"221\" height=\"48\" viewBox=\"0 0 221 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 4C3.58172 4 0 7.58172 0 12V36C0 40.4183 3.58172 44 8 44H32C36.4183 44 40 40.4183 40 36V12C40 7.58172 36.4183 4 32 4H8ZM11 19.5H20.9645L9.23223 31.2322L12.7678 34.7678L24.5 23.0355V33H29.5V17C29.5 15.6193 28.3807 14.5 27 14.5H11V19.5Z\" fill=\"white\"/>\\n<path d=\"M50 32.9998V14.0997H54.05V29.5168H61.556V32.9998H50Z\" fill=\"white\"/>\\n<path d=\"M76.3564 19.1218V32.9998H72.23L72.6574 31.0558C71.5594 32.4418 70.1194 33.1348 68.3374 33.1348C67.1134 33.1348 66.0154 32.8468 65.0434 32.2708C64.0714 31.6948 63.3064 30.8668 62.7484 29.7868C62.2084 28.7068 61.9384 27.4558 61.9384 26.0338C61.9384 24.6298 62.2084 23.3878 62.7484 22.3078C63.3064 21.2278 64.0714 20.3998 65.0434 19.8238C66.0334 19.2298 67.1404 18.9328 68.3644 18.9328C69.3004 18.9328 70.1284 19.1128 70.8484 19.4727C71.5684 19.8327 72.1624 20.3278 72.6304 20.9578L72.26 19.1218H76.3564ZM69.2284 30.0568C70.2544 30.0568 71.0734 29.6968 71.6854 28.9768C72.2974 28.2388 72.6034 27.2758 72.6034 26.0878C72.6034 24.8818 72.2974 23.9098 71.6854 23.1718C71.0734 22.4338 70.2544 22.0648 69.2284 22.0648C68.2024 22.0648 67.3744 22.4338 66.7444 23.1718C66.1324 23.9098 65.8264 24.8818 65.8264 26.0878C65.8264 27.2758 66.1324 28.2388 66.7444 28.9768C67.3744 29.6968 68.2024 30.0568 69.2284 30.0568Z\" fill=\"white\"/>\\n<path d=\"M91.5387 19.1218V32.9998H87.41L87.8127 31.3258C87.3267 31.9018 86.7597 32.3518 86.1117 32.6758C85.4637 32.9998 84.6717 33.1618 83.7357 33.1618C82.1157 33.1618 80.7927 32.6668 79.7667 31.6768C78.7407 30.6688 78.2277 28.9948 78.2277 26.6548V19.1218H82.0347V26.1958C82.0347 27.4558 82.2507 28.4098 82.6827 29.0578C83.1327 29.6878 83.8167 30.0028 84.7347 30.0028C85.6887 30.0028 86.4267 29.6518 86.9487 28.9498C87.4707 28.2298 87.7317 27.2308 87.7317 25.9528V19.1218H91.5387Z\" fill=\"white\"/>\\n<path d=\"M101.611 18.9598C103.231 18.9598 104.563 19.4638 105.607 20.4718C106.651 21.4798 107.173 23.1448 107.173 25.4668V32.9998H103.366V25.6828C103.366 23.2888 102.43 22.0918 100.558 22.0918C99.5675 22.0918 98.8025 22.4248 98.2625 23.0908C97.7225 23.7568 97.4525 24.6928 97.4525 25.8988V32.9998H93.6455V19.1218H97.72L97.3175 20.8498C97.8035 20.2558 98.3885 19.7968 99.0725 19.4727C99.7565 19.1307 100.603 18.9598 101.611 18.9598Z\" fill=\"white\"/>\\n<path d=\"M122.369 27.7348C122.117 29.4268 121.397 30.7588 120.209 31.7308C119.039 32.6848 117.518 33.1618 115.646 33.1618C114.206 33.1618 112.946 32.8738 111.866 32.2978C110.786 31.7038 109.949 30.8668 109.355 29.7868C108.779 28.7068 108.491 27.4648 108.491 26.0608C108.491 24.6388 108.779 23.3968 109.355 22.3348C109.949 21.2548 110.786 20.4268 111.866 19.8508C112.964 19.2568 114.233 18.9598 115.673 18.9598C117.527 18.9598 119.039 19.4368 120.209 20.3908C121.379 21.3268 122.099 22.6318 122.369 24.3058H118.427C118.265 23.6218 117.941 23.0818 117.455 22.6858C116.969 22.2717 116.366 22.0648 115.646 22.0648C114.656 22.0648 113.864 22.4338 113.27 23.1718C112.676 23.9098 112.379 24.8728 112.379 26.0608C112.379 27.2488 112.676 28.2118 113.27 28.9498C113.864 29.6878 114.656 30.0568 115.646 30.0568C116.384 30.0568 116.996 29.8498 117.482 29.4358C117.986 29.0218 118.31 28.4548 118.454 27.7348H122.369Z\" fill=\"white\"/>\\n<path d=\"M131.801 18.9598C133.439 18.9598 134.78 19.4638 135.824 20.4718C136.886 21.4798 137.417 23.1448 137.417 25.4668V32.9998H133.61V25.6288C133.61 24.4768 133.376 23.6038 132.908 23.0098C132.44 22.3978 131.738 22.0918 130.802 22.0918C129.83 22.0918 129.065 22.4248 128.507 23.0908C127.967 23.7568 127.697 24.6838 127.697 25.8718V32.9998H123.89V14.0997H127.697V20.8228C128.723 19.5807 130.091 18.9598 131.801 18.9598Z\" fill=\"white\"/>\\n<path d=\"M142.785 26.8438C142.857 27.7798 143.236 28.5358 143.92 29.1118C144.622 29.6698 145.549 29.9488 146.701 29.9488C147.655 29.9488 148.428 29.7508 149.022 29.3548C149.634 28.9408 149.941 28.3738 149.941 27.6538C149.941 27.1498 149.77 26.7538 149.428 26.4658C149.104 26.1598 148.636 25.9258 148.024 25.7638C147.43 25.5838 146.503 25.3678 145.243 25.1158C144.001 24.8818 142.957 24.5848 142.111 24.2248C141.265 23.8468 140.572 23.2978 140.032 22.5778C139.51 21.8398 139.249 20.8678 139.249 19.6618C139.249 18.5638 139.546 17.5828 140.14 16.7188C140.752 15.8548 141.589 15.1798 142.651 14.6938C143.731 14.1898 144.946 13.9378 146.296 13.9378C147.682 13.9378 148.923 14.1988 150.021 14.7207C151.137 15.2247 152.011 15.9268 152.641 16.8268C153.289 17.7268 153.622 18.7438 153.64 19.8778H149.671C149.581 19.0678 149.239 18.4198 148.645 17.9338C148.051 17.4298 147.268 17.1778 146.296 17.1778C145.396 17.1778 144.676 17.3668 144.136 17.7448C143.596 18.1228 143.326 18.6628 143.326 19.3648C143.326 19.8688 143.488 20.2648 143.812 20.5528C144.136 20.8228 144.594 21.0478 145.188 21.2278C145.782 21.3898 146.701 21.5878 147.943 21.8218C149.203 22.0558 150.265 22.3528 151.129 22.7128C151.993 23.0548 152.686 23.5858 153.208 24.3058C153.748 25.0078 154.018 25.9528 154.018 27.1408C154.018 28.2928 153.703 29.3278 153.073 30.2458C152.443 31.1458 151.561 31.8568 150.427 32.3788C149.311 32.9008 148.05 33.1618 146.646 33.1618C145.134 33.1618 143.785 32.8918 142.597 32.3518C141.427 31.7938 140.508 31.0288 139.842 30.0568C139.176 29.0848 138.835 27.9958 138.817 26.7898L142.785 26.8438Z\" fill=\"white\"/>\\n<path d=\"M157.528 13.3438C158.158 13.3438 158.679 13.5508 159.093 13.9648C159.507 14.3608 159.715 14.8648 159.715 15.4767C159.715 16.0888 159.507 16.6018 159.093 17.0158C158.679 17.4298 158.158 17.6368 157.528 17.6368C156.898 17.6368 156.367 17.4298 155.935 17.0158C155.521 16.6018 155.313 16.0888 155.313 15.4767C155.313 14.8648 155.521 14.3608 155.935 13.9648C156.367 13.5508 156.898 13.3438 157.528 13.3438ZM155.611 19.1218H159.418V32.9998H155.611V19.1218Z\" fill=\"white\"/>\\n<path d=\"M178.216 18.9598C179.71 18.9598 180.925 19.4548 181.861 20.4448C182.797 21.4348 183.265 23.0818 183.265 25.3858V33.0268H179.458V25.2508C179.458 23.1448 178.657 22.0918 177.055 22.0918C176.227 22.0918 175.561 22.3888 175.057 22.9828C174.553 23.5588 174.301 24.3688 174.301 25.4128V33.0268H170.494V25.2508C170.494 23.1448 169.684 22.0918 168.064 22.0918C167.236 22.0918 166.57 22.3978 166.066 23.0098C165.58 23.6038 165.337 24.4138 165.337 25.4398V33.0268H161.53V19.1218H165.6L165.202 20.8498C165.67 20.2558 166.228 19.7968 166.876 19.4727C167.524 19.1487 168.334 18.9777 169.306 18.9598C171.286 18.9598 172.663 19.7428 173.437 21.3088C173.941 20.5528 174.598 19.9768 175.408 19.5808C176.236 19.1668 177.172 18.9598 178.216 18.9598Z\" fill=\"white\"/>\\n<path d=\"M193.135 18.9598C194.377 18.9598 195.475 19.2568 196.429 19.8508C197.401 20.4268 198.157 21.2548 198.697 22.3348C199.255 23.4148 199.534 24.6658 199.534 26.0878C199.534 27.5098 199.255 28.7518 198.697 29.8138C198.157 30.8758 197.401 31.7038 196.429 32.2978C195.457 32.8738 194.35 33.1618 193.108 33.1618C191.326 33.1618 189.931 32.5228 188.923 31.2448V38.3998H185.116V19.1218H189.19L188.815 21.0388C189.283 20.4088 189.877 19.9048 190.597 19.5268C191.335 19.1488 192.181 18.9598 193.135 18.9598ZM192.244 30.0568C193.27 30.0568 194.098 29.6878 194.728 28.9498C195.358 28.1938 195.673 27.2218 195.673 26.0338C195.673 24.8458 195.358 23.8918 194.728 23.1718C194.098 22.4338 193.27 22.0648 192.244 22.0648C191.218 22.0648 190.399 22.4338 189.787 23.1718C189.175 23.8918 188.869 24.8458 188.869 26.0338C188.869 27.2398 189.175 28.2118 189.787 28.9498C190.399 29.6878 191.218 30.0568 192.244 30.0568Z\" fill=\"white\"/>\\n<path d=\"M201.109 14.0997H204.916V32.9998H201.109V14.0997Z\" fill=\"white\"/>\\n<path d=\"M206.489 26.0878C206.489 24.6478 206.777 23.3968 207.353 22.3348C207.947 21.2548 208.766 20.4268 209.81 19.8508C210.872 19.2568 212.096 18.9598 213.482 18.9598C214.886 18.9598 216.119 19.2388 217.181 19.7968C218.261 20.3368 219.098 21.1108 219.692 22.1188C220.304 23.1088 220.619 24.2788 220.637 25.6288C220.637 26.1148 220.601 26.5468 220.529 26.9248H210.458V27.0328C210.548 28.0408 210.872 28.8328 211.43 29.4088C211.988 29.9848 212.753 30.2728 213.725 30.2728C214.499 30.2728 215.138 30.1108 215.642 29.7868C216.164 29.4448 216.506 28.9498 216.668 28.3018H220.421C220.277 29.2198 219.926 30.0478 219.368 30.7858C218.81 31.5238 218.072 32.1088 217.154 32.5408C216.236 32.9548 215.183 33.1618 213.995 33.1618C212.447 33.1618 211.106 32.8738 209.972 32.2978C208.856 31.7218 207.992 30.9028 207.38 29.8408C206.786 28.7608 206.489 27.5098 206.489 26.0878ZM216.83 24.4408C216.704 23.5948 216.353 22.9468 215.777 22.4968C215.219 22.0288 214.508 21.7948 213.644 21.7948C212.816 21.7948 212.114 22.0378 211.538 22.5238C210.98 22.9918 210.647 23.6308 210.539 24.4408H216.83Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5d577y\",\"data-framer-name\":\"Brand 8\",name:\"Brand 8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ppkake\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:197,name:\"Company logo\",svg:'<svg width=\"197\" height=\"48\" viewBox=\"0 0 197 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.4\" d=\"M45.7999 21.2374C43.7211 23.3162 40.3508 23.3162 38.272 21.2374C36.1932 19.1586 36.1932 15.7883 38.272 13.7095C40.3508 11.6307 43.7211 11.6307 45.7999 13.7095C47.8787 15.7883 47.8787 19.1586 45.7999 21.2374Z\" fill=\"white\"/>\\n<path opacity=\"0.6\" d=\"M45.7954 21.2356C43.7166 23.3143 40.3462 23.3143 38.2674 21.2356L30.8331 13.8013C28.7543 11.7225 25.384 11.7225 23.3052 13.8013C21.2264 15.8801 21.2264 19.2504 23.3052 21.3292L30.7395 28.7635C32.8183 30.8423 36.1886 30.8423 38.2674 28.7635L45.7954 21.2356Z\" fill=\"white\"/>\\n<path d=\"M38.2671 28.7652C36.1883 30.844 32.8179 30.844 30.7391 28.7652L16.3106 14.3366C13.5388 11.5649 9.04501 11.5649 6.27329 14.3366L0 20.6099C2.07879 18.5311 5.44916 18.5311 7.52795 20.6099L23.2112 36.2931C25.29 38.3719 28.6603 38.3719 30.7391 36.2931L38.2671 28.7652Z\" fill=\"white\"/>\\n<path d=\"M72.362 32.9998L68.744 19.4458L65.126 32.9998H60.968L56 13.6138H59.996L63.128 26.7628L66.692 13.6138H70.877L74.333 26.8168L77.492 13.6138H81.515L76.52 32.9998H72.362Z\" fill=\"white\"/>\\n<path d=\"M86.7726 15.2338C86.7726 16.5028 85.7466 17.4478 84.2616 17.4478C82.8036 17.4478 81.7776 16.5028 81.7776 15.2338C81.7776 13.9108 82.8036 12.9658 84.2616 12.9658C85.7466 12.9658 86.7726 13.9108 86.7726 15.2338ZM86.1786 32.9998H82.4256V18.5818H86.1786V32.9998Z\" fill=\"white\"/>\\n<path d=\"M92.2184 32.9998H88.4384V13.6138H92.2184V32.9998Z\" fill=\"white\"/>\\n<path d=\"M93.5589 25.7908C93.5589 21.5248 96.0699 18.3118 99.9579 18.3118C101.686 18.3118 103.144 19.0678 104.224 20.4448V13.6138H107.95V32.9998H104.521V30.9208C103.387 32.4328 101.821 33.2698 99.9579 33.2698C96.0699 33.2698 93.5589 30.0028 93.5589 25.7908ZM97.4199 25.7908C97.4199 28.4908 98.9589 29.9218 100.795 29.9218C102.658 29.9218 104.197 28.4638 104.197 25.7368C104.197 23.0098 102.631 21.6328 100.795 21.6328C98.9589 21.6328 97.4199 23.0368 97.4199 25.7908Z\" fill=\"white\"/>\\n<path d=\"M116.295 33.2698C112.137 33.2698 109.275 30.1918 109.275 25.7908C109.275 21.4708 112.245 18.3118 116.295 18.3118C120.048 18.3118 122.829 20.8498 123.288 24.7378H119.346C119.157 22.8208 117.996 21.6328 116.295 21.6328C114.351 21.6328 113.109 23.2258 113.109 25.7908C113.109 28.3828 114.324 29.9488 116.295 29.9488C118.023 29.9488 119.13 28.8148 119.346 26.8438H123.288C122.856 30.8128 120.156 33.2698 116.295 33.2698Z\" fill=\"white\"/>\\n<path d=\"M128.37 26.0068V32.9998H124.617V18.5818H128.073V21.3628C129.126 19.5268 131.367 18.4198 133.689 18.4198V22.3078C130.503 22.0648 128.37 22.8208 128.37 26.0068Z\" fill=\"white\"/>\\n<path d=\"M143.145 32.9998V31.2178C142.2 32.5678 140.769 33.2698 138.798 33.2698C135.801 33.2698 133.803 31.5148 133.803 28.8148C133.803 26.0068 136.071 24.4948 140.283 24.4948C141.093 24.4948 141.795 24.5488 142.686 24.6568V23.7928C142.686 22.1728 141.768 21.2278 140.202 21.2278C138.582 21.2278 137.61 22.1728 137.475 23.7928H134.1C134.316 20.4718 136.719 18.3118 140.202 18.3118C143.982 18.3118 146.196 20.3908 146.196 23.9278V32.9998H143.145ZM137.34 28.7068C137.34 29.9218 138.204 30.6778 139.608 30.6778C141.525 30.6778 142.686 29.6248 142.686 27.9508V26.9248C141.795 26.7898 141.174 26.7358 140.526 26.7358C138.393 26.7358 137.34 27.4108 137.34 28.7068Z\" fill=\"white\"/>\\n<path d=\"M153.242 32.9998H149.516V21.7948H146.6V18.5818H149.516V17.7988C149.516 14.9368 151.055 13.3168 154.052 13.3168C154.97 13.3168 155.753 13.4788 156.374 13.7488V16.7188C155.969 16.5568 155.429 16.4758 154.943 16.4758C153.917 16.4758 153.242 16.8808 153.242 17.8798V18.5818H156.995V21.7948H153.242V32.9998Z\" fill=\"white\"/>\\n<path d=\"M167.572 29.3548V32.6218C166.654 33.0808 165.79 33.2698 164.683 33.2698C161.713 33.2698 159.85 31.5688 159.85 28.3288V21.7948H156.934V18.5818H159.85V14.3158H163.576V18.5818H167.707V21.7948H163.576V27.4648C163.576 29.1388 164.332 29.8138 165.682 29.8138C166.384 29.8138 167.032 29.6518 167.572 29.3548Z\" fill=\"white\"/>\\n<path d=\"M174.866 33.2428C170.546 33.2428 167.657 30.2458 167.657 25.7368C167.657 21.4438 170.654 18.3118 174.812 18.3118C179.375 18.3118 182.399 22.0108 181.724 26.7088H171.491C171.734 29.0578 172.868 30.3538 174.785 30.3538C176.432 30.3538 177.539 29.5438 177.971 28.1128H181.697C180.887 31.3798 178.376 33.2428 174.866 33.2428ZM174.731 21.0658C172.976 21.0658 171.869 22.1998 171.545 24.3328H177.755C177.647 22.3348 176.513 21.0658 174.731 21.0658Z\" fill=\"white\"/>\\n<path d=\"M181.949 25.7908C181.949 21.5248 184.46 18.3118 188.348 18.3118C190.076 18.3118 191.534 19.0678 192.614 20.4448V13.6138H196.34V32.9998H192.911V30.9208C191.777 32.4328 190.211 33.2698 188.348 33.2698C184.46 33.2698 181.949 30.0028 181.949 25.7908ZM185.81 25.7908C185.81 28.4908 187.349 29.9218 189.185 29.9218C191.048 29.9218 192.587 28.4638 192.587 25.7368C192.587 23.0098 191.021 21.6328 189.185 21.6328C187.349 21.6328 185.81 23.0368 185.81 25.7908Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"Product image\",fit:\"fill\",pixelHeight:1277,pixelWidth:1946,sizes:\"min(100vw - 100px, 630px)\",src:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png\",srcSet:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png 1946w\"}},Z12g0eqg0:{background:{alt:\"Product image\",fit:\"fill\",pixelHeight:1277,pixelWidth:1946,sizes:\"calc(100vw - 60px)\",src:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png\",srcSet:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png 1946w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Product image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(581.2),pixelHeight:1277,pixelWidth:1946,sizes:\"790px\",src:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png\",srcSet:\"https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xiv13YH229SnEMz9T93ROj4KRxk.png 1946w\"},className:\"framer-14n0595\",\"data-border\":true,\"data-framer-name\":\"Hero image\",name:\"Hero image\"})})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1wi5zq7\",\"data-framer-name\":\"How it works section\",id:elementId,name:\"How it works section\",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4aiq9\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q1czkh\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tcspnk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"How it works\"})}),className:\"framer-v5xwuv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",children:\"What is iLumina?\"})}),className:\"framer-c0x3ty\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kt07d3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:2792,pixelWidth:1861,sizes:\"320px\",src:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg\",srcSet:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg 1861w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:2792,pixelWidth:1861,sizes:\"320px\",src:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg\",srcSet:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg 1861w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1366.8),pixelHeight:2792,pixelWidth:1861,sizes:\"320px\",src:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg\",srcSet:\"https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fKd9zcNBHSmwL95zPRIa82e3Fg.jpg 1861w\"},className:\"framer-1q8bs92\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10djoz3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xcwppj\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 14\"><path d=\"M 9.488 9.85 C 9.488 12.012 7.789 13.65 5.203 13.65 C 2.617 13.65 0.4 11.816 0.4 8.54 C 0.4 4.478 3.873 1.005 8.38 0.35 L 8.38 2.774 C 5.794 3.233 3.873 4.871 3.873 6.771 C 4.316 6.509 4.907 6.312 5.868 6.312 C 7.789 6.312 9.488 7.557 9.488 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.4 9.85 C 22.4 12.012 20.701 13.65 18.114 13.65 C 15.528 13.65 13.312 11.816 13.312 8.54 C 13.312 4.478 16.784 1.005 21.292 0.35 L 21.292 2.774 C 18.706 3.233 16.784 4.871 16.784 6.771 C 17.228 6.509 17.819 6.312 18.779 6.312 C 20.701 6.312 22.4 7.557 22.4 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12730415866,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",children:\"iLumina lets you engage and operate multiple language models all at once.\"})}),className:\"framer-14pbq8k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139blne\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Chris\"})}),className:\"framer-7v0o8c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"iLumina co-founder\"})}),className:\"framer-17jb4c2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2bskru\",\"data-framer-name\":\"Steps\",name:\"Steps\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 20px, 656px) - 4px, 150px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:1474.8000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q83oe-container\",children:/*#__PURE__*/_jsx(Steps,{height:\"100%\",id:\"SXMvlCU0R\",layoutId:\"SXMvlCU0R\",style:{width:\"100%\"},variant:\"oa2P8r0le\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 20px, 656px) - 4px, 150px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:1618.8000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ooeggx-container\",children:/*#__PURE__*/_jsx(Steps,{height:\"100%\",id:\"ARJ2X1MiV\",layoutId:\"ARJ2X1MiV\",style:{width:\"100%\"},variant:\"m5SKpWnya\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 20px, 656px) - 4px, 150px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:1762.8000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wcrxhs-container\",children:/*#__PURE__*/_jsx(Steps,{height:\"100%\",id:\"SkqqLMFMF\",layoutId:\"SkqqLMFMF\",style:{width:\"100%\"},variant:\"NEKhbIXFB\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5j70pz\",\"data-framer-name\":\"About Lumina section\",id:elementId1,name:\"About Lumina section\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eu5dyp\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1bnxxl2\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvpfmo\",\"data-framer-name\":\"About us\",name:\"About us\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"About us\"})}),className:\"framer-48dj2q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ihsbln\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",children:\"Less complicated, better workflow.\"})}),className:\"framer-1eljmyt\",\"data-framer-name\":\"Our end-to-end SaaS solutions.\",fonts:[\"Inter\"],name:\"Our end-to-end SaaS solutions.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-color\":\"rgb(184, 195, 214)\"},children:\"iLumina is your Go-To SaaS for effortless interaction with multiple LLMs. Integrate, Manage, and Optimize AI with Ease, All in One Place.\"})}),className:\"framer-13b23x3\",\"data-framer-name\":\"Supamodel is your Go-To SaaS for effortless interaction with multiple LLMs. Integrate, Manage, and Optimize AI with Ease, All in One Place.\",fonts:[\"Inter\"],name:\"Supamodel is your Go-To SaaS for effortless interaction with multiple LLMs. Integrate, Manage, and Optimize AI with Ease, All in One Place.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jtq4c6\",\"data-framer-name\":\"rule of 3\",name:\"rule of 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwhoow\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10q5kcb\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 36\"><path d=\"M 14.155 3.449 C 14.501 2.83 14.674 2.521 14.9 2.417 C 15.097 2.327 15.323 2.327 15.52 2.417 C 15.746 2.521 15.919 2.83 16.265 3.449 L 19.239 8.766 C 19.367 8.995 19.431 9.11 19.521 9.193 C 19.6 9.267 19.694 9.322 19.796 9.356 C 19.911 9.394 20.039 9.394 20.296 9.394 L 26.265 9.381 C 26.959 9.38 27.306 9.379 27.507 9.528 C 27.682 9.659 27.794 9.859 27.817 10.08 C 27.842 10.333 27.668 10.642 27.32 11.259 L 24.325 16.564 C 24.196 16.792 24.132 16.906 24.106 17.028 C 24.084 17.135 24.084 17.247 24.106 17.354 C 24.132 17.476 24.196 17.59 24.325 17.818 L 27.32 23.123 C 27.668 23.74 27.842 24.049 27.817 24.302 C 27.794 24.523 27.682 24.723 27.507 24.854 C 27.306 25.003 26.959 25.002 26.265 25.001 L 20.296 24.988 C 20.039 24.988 19.911 24.987 19.796 25.026 C 19.694 25.06 19.6 25.115 19.521 25.189 C 19.431 25.272 19.367 25.387 19.239 25.616 L 16.265 30.933 C 15.919 31.551 15.746 31.861 15.52 31.965 C 15.323 32.055 15.097 32.055 14.9 31.965 C 14.674 31.861 14.501 31.551 14.155 30.933 L 11.181 25.616 C 11.053 25.387 10.989 25.272 10.899 25.189 C 10.82 25.115 10.726 25.06 10.624 25.026 C 10.509 24.987 10.381 24.988 10.124 24.988 L 4.155 25.001 C 3.461 25.002 3.113 25.003 2.913 24.854 C 2.738 24.723 2.626 24.523 2.603 24.302 C 2.577 24.049 2.752 23.74 3.1 23.123 L 6.095 17.818 C 6.224 17.59 6.288 17.476 6.314 17.354 C 6.336 17.247 6.336 17.135 6.314 17.028 C 6.288 16.906 6.224 16.792 6.095 16.564 L 3.1 11.259 C 2.752 10.642 2.577 10.333 2.603 10.08 C 2.626 9.859 2.738 9.659 2.913 9.528 C 3.113 9.379 3.461 9.38 4.155 9.381 L 10.124 9.394 C 10.381 9.394 10.509 9.394 10.624 9.356 C 10.726 9.322 10.82 9.267 10.899 9.193 C 10.989 9.11 11.053 8.995 11.181 8.766 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243)) /* {&quot;name&quot;:&quot;Blue #2&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8868402476,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-156h3vd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:\"All in one workspace\"})}),className:\"framer-1xhvr6b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-color\":\"rgb(184, 195, 214)\"},children:\"Manage different language models with one tool.\"})}),className:\"framer-15ezfim\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181rbe7\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xdzgs5\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 35\"><path d=\"M 6.86 16.616 L 6.86 21.035 M 6.86 16.616 L 6.86 6.01 C 6.86 4.546 7.926 3.359 9.24 3.359 C 10.554 3.359 11.62 4.546 11.62 6.01 M 6.86 16.616 C 6.86 15.152 5.794 13.965 4.48 13.965 C 3.166 13.965 2.1 15.152 2.1 16.616 L 2.1 20.152 C 2.1 27.473 7.428 33.409 14 33.409 C 20.572 33.409 25.9 27.473 25.9 20.152 L 25.9 11.313 C 25.9 9.849 24.834 8.662 23.52 8.662 C 22.206 8.662 21.14 9.849 21.14 11.313 M 11.62 6.01 L 11.62 15.732 M 11.62 6.01 L 11.62 4.242 C 11.62 2.778 12.686 1.591 14 1.591 C 15.314 1.591 16.38 2.778 16.38 4.242 L 16.38 6.01 M 16.38 6.01 L 16.38 15.732 M 16.38 6.01 C 16.38 4.546 17.446 3.359 18.76 3.359 C 20.074 3.359 21.14 4.546 21.14 6.01 L 21.14 11.313 M 21.14 11.313 L 21.14 15.732\" fill=\"transparent\" stroke-width=\"1.4\" stroke=\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243)) /* {&quot;name&quot;:&quot;Blue #2&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10860213124,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohkolw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:\"Collaboration\"})}),className:\"framer-oes0z1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-color\":\"rgb(184, 195, 214)\"},children:\"Work and communicate with your team directly inside the app.\"})}),className:\"framer-1hhczf4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-77zcia\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15dbuhp\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 33\"><path d=\"M 14.167 19.923 L 10.303 15.654 M 14.167 19.923 C 15.966 19.167 17.691 18.213 19.318 17.077 M 14.167 19.923 L 14.167 27.038 C 14.167 27.038 18.069 26.255 19.318 24.192 C 20.709 21.887 19.318 17.077 19.318 17.077 M 10.303 15.654 C 10.988 13.689 11.851 11.806 12.879 10.032 C 14.379 7.381 16.469 5.198 18.949 3.691 C 21.428 2.184 24.216 1.403 27.045 1.423 C 27.045 5.294 26.041 12.096 19.318 17.077 M 10.303 15.654 L 3.864 15.654 C 3.864 15.654 4.572 11.342 6.439 9.961 C 8.526 8.424 12.879 9.961 12.879 9.961 M 4.508 22.057 C 2.576 23.85 1.932 29.173 1.932 29.173 C 1.932 29.173 6.748 28.461 8.371 26.327 C 9.286 25.131 9.273 23.295 8.255 22.185 C 7.755 21.658 7.095 21.352 6.404 21.329 C 5.712 21.305 5.037 21.565 4.508 22.057 Z\" fill=\"transparent\" stroke-width=\"1.59\" stroke=\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243)) /* {&quot;name&quot;:&quot;Blue #2&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12517829845,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yo5xdi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:\"Easy to use.\"})}),className:\"framer-cm67v8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-color\":\"rgb(184, 195, 214)\"},children:\"A visual appealing UI that enchances usability.\"})}),className:\"framer-eigyts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:2444.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zf0y9v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"gtza4TWka\"},Z12g0eqg0:{variant:\"gtza4TWka\"}},children:/*#__PURE__*/_jsx(HomePageButtonsMainCTAs,{height:\"100%\",id:\"UIjtL8IQG\",layoutId:\"UIjtL8IQG\",Oh2adSLw2:\"Create your account\",variant:\"pqHPWyd0Y\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1gknohm\",\"data-framer-name\":\"Features section\",id:elementId2,name:\"Features section\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omfdpd\",\"data-framer-name\":\"Features container\",name:\"Features container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-16ifvnp\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18up3nn\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Features\"})}),className:\"framer-1y7q592\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h54tm5\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",children:\"Discover what you can do.\"})}),className:\"framer-1zq2ud\",\"data-framer-name\":\"Discover what you can do.\",fonts:[\"Inter\"],name:\"Discover what you can do.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:\"Dive into a world of possibilities with features that will blow you away.\"})}),className:\"framer-1liw175\",\"data-framer-name\":\"Dive into a world of possibilities with features that will blow you away.\",fonts:[\"Inter\"],name:\"Dive into a world of possibilities with features that will blow you away.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"calc(100vw - 148px)\",y:undefined},Z12g0eqg0:{width:\"calc(100vw - 60px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,y:2838,children:/*#__PURE__*/_jsx(Container,{className:\"framer-187ivgc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{width:\"100%\"},variant:\"PL80KuQNj\"},Z12g0eqg0:{style:{width:\"100%\"},variant:\"PL80KuQNj\"}},children:/*#__PURE__*/_jsx(FeaturesSectionToogle,{height:\"100%\",id:\"dyf8jxXkv\",layoutId:\"dyf8jxXkv\",variant:\"uCQdeTB2E\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-cjboj2\",\"data-framer-name\":\"Benefits section\",id:elementId3,name:\"Benefits section\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q2e634\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-14jlsl8\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l5vxpa\",\"data-framer-name\":\"Why Lumina?\",name:\"Why Lumina?\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Why iLumina?\"})}),className:\"framer-1vx9svu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y0ia20\",\"data-framer-name\":\"Titles\",name:\"Titles\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",children:\"Experience the benefits.\"})}),className:\"framer-sztnao\",\"data-framer-name\":\"Experience the benefits.\",fonts:[\"Inter\"],name:\"Experience the benefits.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:[\"Boost efficiency and discover a new user experience.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"See what makes iLumina attractive as an innovative product.\"]})}),className:\"framer-wqn294\",\"data-framer-name\":'Boost efficiency and discover a new user-experience. Supamodel empowers you to manage AI interactions effortlessly, offering a suite of features that simplify tasks, improve productivity, and drive success in your projects.\"',fonts:[\"Inter\"],name:'Boost efficiency and discover a new user-experience. Supamodel empowers you to manage AI interactions effortlessly, offering a suite of features that simplify tasks, improve productivity, and drive success in your projects.\"',verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nnt5ip\",\"data-framer-name\":\"Bento grid\",name:\"Bento grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0av06\",\"data-framer-name\":\"Card 1\",name:\"Card 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10yn867\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eueh4i\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gso4gi\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 15\"><path d=\"M 8.668 0.818 C 5.168 1.134 2.428 4.005 2.428 7.5 C 2.428 8.25 2.554 8.971 2.787 9.645 C 2.875 9.898 2.919 10.025 2.926 10.122 C 2.934 10.218 2.928 10.286 2.904 10.379 C 2.879 10.474 2.825 10.572 2.716 10.769 L 1.392 13.159 C 1.203 13.5 1.108 13.671 1.129 13.802 C 1.148 13.917 1.217 14.018 1.319 14.078 C 1.435 14.147 1.633 14.127 2.028 14.088 L 6.174 13.67 C 6.299 13.657 6.362 13.651 6.419 13.653 C 6.475 13.655 6.515 13.66 6.57 13.673 C 6.626 13.685 6.696 13.711 6.836 13.764 C 7.604 14.052 8.438 14.211 9.309 14.211 C 12.896 14.211 15.842 11.534 16.161 8.117 M 15.479 1.483 C 16.427 2.408 16.427 3.908 15.479 4.833 C 14.53 5.758 12.993 5.758 12.044 4.833 C 11.096 3.908 11.096 2.408 12.044 1.483 C 12.993 0.558 14.53 0.558 15.479 1.483 Z\" fill=\"transparent\" stroke-width=\"1.79\" stroke=\"rgb(99, 115, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11153482701,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3d6if\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Live chat.\"})})},Z12g0eqg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Live chat.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Live chat.\"})}),className:\"framer-1x7gofo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Communicate with your team directly inside the project workflow with live chat and voice to text.\"})}),className:\"framer-ioeqkf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bz0q7p\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:\"360px\",src:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg\",srcSet:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg 1548w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1548,sizes:\"429px\",src:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg\",srcSet:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg 1548w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3642.1),pixelHeight:1080,pixelWidth:1548,sizes:\"360px\",src:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg\",srcSet:\"https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n7gNfFt4swq2k9DjrvseuTsnZRI.jpg 1548w\"},className:\"framer-193x534\",\"data-border\":true,\"data-framer-name\":\"Content card\",name:\"Content card\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1binii2\",\"data-framer-name\":\"Card 2\",name:\"Card 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udhu16\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s8harb\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mtd6ei\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 18\"><path d=\"M 9.6 15.545 C 9.6 16.449 8.884 17.182 8 17.182 C 7.116 17.182 6.4 16.449 6.4 15.545 M 9.6 15.545 C 9.6 14.642 8.884 13.909 8 13.909 M 9.6 15.545 L 15.2 15.545 M 6.4 15.545 C 6.4 14.642 7.116 13.909 8 13.909 M 6.4 15.545 L 0.8 15.545 M 8 13.909 L 8 10.636 M 15.2 3.273 C 15.2 4.628 11.976 5.727 8 5.727 C 4.024 5.727 0.8 4.628 0.8 3.273 M 15.2 3.273 C 15.2 1.917 11.976 0.818 8 0.818 C 4.024 0.818 0.8 1.917 0.8 3.273 M 15.2 3.273 L 15.2 8.182 C 15.2 9.54 12 10.636 8 10.636 M 0.8 3.273 L 0.8 8.182 C 0.8 9.54 4 10.636 8 10.636\" fill=\"transparent\" stroke-width=\"1.78\" stroke=\"rgb(160, 43, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12802403381,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15c4r5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Prompt collections.\"})})},Z12g0eqg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Prompt collections.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Prompt collections.\"})}),className:\"framer-7t23jg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-alignment\":\"left\"},children:\"Get access to a full prompt library ready to assist you.\"})}),className:\"framer-7vej8e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ej8yy\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1065,sizes:\"271px\",src:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg\",srcSet:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg?scale-down-to=1024 998w,https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg 1065w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:1092,pixelWidth:1065,sizes:\"330px\",src:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg\",srcSet:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg?scale-down-to=1024 998w,https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg 1065w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3661.6),pixelHeight:1092,pixelWidth:1065,sizes:\"294px\",src:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg\",srcSet:\"https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg?scale-down-to=1024 998w,https://framerusercontent.com/images/GiUvuEPUNRDBPTleMeVTjQ9Tc.jpg 1065w\"},className:\"framer-1ptoal2\",\"data-framer-name\":\"Content card\",name:\"Content card\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq7oz\",\"data-framer-name\":\"Card 3\",name:\"Card 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g02fc9\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ot5oux\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1utw5en\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 10.182 1.06 C 9.493 0.844 8.76 0.727 8 0.727 C 3.983 0.727 0.727 3.983 0.727 8 C 0.727 12.017 3.983 15.273 8 15.273 C 12.017 15.273 15.273 12.017 15.273 8 C 15.273 6.752 14.959 5.578 14.405 4.552 M 11.636 3.455 L 11.64 3.455 M 6.909 15.191 L 6.909 13.589 C 6.909 13.502 6.94 13.418 6.997 13.352 L 8.805 11.243 C 8.953 11.07 8.907 10.804 8.709 10.691 L 6.632 9.504 C 6.575 9.472 6.528 9.425 6.496 9.368 L 5.142 6.995 C 5.072 6.872 4.936 6.801 4.794 6.813 L 0.774 7.171 M 14.545 3.636 C 14.545 5.243 13.091 6.545 11.636 8 C 10.182 6.545 8.727 5.243 8.727 3.636 C 8.727 2.03 10.03 0.727 11.636 0.727 C 13.243 0.727 14.545 2.03 14.545 3.636 Z M 11.818 3.455 C 11.818 3.555 11.737 3.636 11.636 3.636 C 11.536 3.636 11.455 3.555 11.455 3.455 C 11.455 3.354 11.536 3.273 11.636 3.273 C 11.737 3.273 11.818 3.354 11.818 3.455 Z\" fill=\"transparent\" stroke-width=\"1.34\" stroke=\"rgb(255, 111, 59)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10543722196,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d19d50\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Global API key.\"})})},Z12g0eqg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Global API key.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Global API key.\"})}),className:\"framer-1mkmtmz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-alignment\":\"left\"},children:\"We provide a single API key that help you pay all models being used.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"We provide a single API key that help you pay all models being used.\"})}),className:\"framer-16mswji\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ag200w\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:606,pixelWidth:876,sizes:\"294px\",src:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg\",srcSet:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg 876w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:606,pixelWidth:876,sizes:\"357px\",src:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg\",srcSet:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg 876w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3973.1000000000004),pixelHeight:606,pixelWidth:876,sizes:\"294px\",src:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg\",srcSet:\"https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I4YVQjywCMm1rd5E5dO3XIOmWgI.jpg 876w\"},className:\"framer-1m6d528\",\"data-framer-name\":\"Content card\",name:\"Content card\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vc2uon\",\"data-framer-name\":\"Card 4\",name:\"Card 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1460ws6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uk4pjc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zzij96\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 8.182 2.864 L 14.155 2.864 C 15.071 2.864 15.529 2.864 15.879 3.042 C 16.187 3.199 16.438 3.449 16.594 3.757 C 16.773 4.107 16.773 4.565 16.773 5.482 L 16.773 6.545 C 16.773 7.308 16.773 7.689 16.648 7.99 C 16.482 8.391 16.164 8.709 15.763 8.875 C 15.462 9 15.081 9 14.318 9 M 9.818 15.136 L 3.845 15.136 C 2.929 15.136 2.471 15.136 2.121 14.958 C 1.813 14.801 1.563 14.551 1.406 14.243 C 1.227 13.893 1.227 13.435 1.227 12.518 L 1.227 11.455 C 1.227 10.692 1.227 10.311 1.352 10.01 C 1.518 9.609 1.836 9.291 2.237 9.125 C 2.538 9 2.919 9 3.682 9 M 7.609 11.045 L 10.391 11.045 C 10.62 11.045 10.735 11.045 10.822 11.001 C 10.899 10.962 10.962 10.899 11.001 10.822 C 11.045 10.735 11.045 10.62 11.045 10.391 L 11.045 7.609 C 11.045 7.38 11.045 7.265 11.001 7.178 C 10.962 7.101 10.899 7.038 10.822 6.999 C 10.735 6.955 10.62 6.955 10.391 6.955 L 7.609 6.955 C 7.38 6.955 7.265 6.955 7.178 6.999 C 7.101 7.038 7.038 7.101 6.999 7.178 C 6.955 7.265 6.955 7.38 6.955 7.609 L 6.955 10.391 C 6.955 10.62 6.955 10.735 6.999 10.822 C 7.038 10.899 7.101 10.962 7.178 11.001 C 7.265 11.045 7.38 11.045 7.609 11.045 Z M 13.745 17.182 L 16.527 17.182 C 16.756 17.182 16.871 17.182 16.958 17.137 C 17.035 17.098 17.098 17.035 17.137 16.958 C 17.182 16.871 17.182 16.756 17.182 16.527 L 17.182 13.745 C 17.182 13.516 17.182 13.402 17.137 13.314 C 17.098 13.237 17.035 13.175 16.958 13.136 C 16.871 13.091 16.756 13.091 16.527 13.091 L 13.745 13.091 C 13.516 13.091 13.402 13.091 13.314 13.136 C 13.237 13.175 13.175 13.237 13.136 13.314 C 13.091 13.402 13.091 13.516 13.091 13.745 L 13.091 16.527 C 13.091 16.756 13.091 16.871 13.136 16.958 C 13.175 17.035 13.237 17.098 13.314 17.137 C 13.402 17.182 13.516 17.182 13.745 17.182 Z M 1.473 4.909 L 4.255 4.909 C 4.484 4.909 4.598 4.909 4.686 4.865 C 4.763 4.825 4.825 4.763 4.865 4.686 C 4.909 4.598 4.909 4.484 4.909 4.255 L 4.909 1.473 C 4.909 1.244 4.909 1.129 4.865 1.042 C 4.825 0.965 4.763 0.902 4.686 0.863 C 4.598 0.818 4.484 0.818 4.255 0.818 L 1.473 0.818 C 1.244 0.818 1.129 0.818 1.042 0.863 C 0.965 0.902 0.902 0.965 0.863 1.042 C 0.818 1.129 0.818 1.244 0.818 1.473 L 0.818 4.255 C 0.818 4.484 0.818 4.598 0.863 4.686 C 0.902 4.763 0.965 4.825 1.042 4.865 C 1.129 4.909 1.244 4.909 1.473 4.909 Z\" fill=\"transparent\" stroke-width=\"1.35\" stroke=\"rgb(59, 219, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10020734535,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2ry5b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Multimodel\"})}),className:\"framer-ljk9m9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-alignment\":\"left\"},children:\"We are a one stop shop for all your LLMs.\"})}),className:\"framer-1ubg87x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a5kn2t\",\"data-framer-name\":\"Gradient\",name:\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:2829,pixelWidth:4812,sizes:\"395px\",src:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg\",srcSet:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg 4812w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:2829,pixelWidth:4812,sizes:\"441px\",src:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg\",srcSet:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg 4812w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3913.6000000000004),pixelHeight:2829,pixelWidth:4812,sizes:\"445px\",src:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg\",srcSet:\"https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/t3k4qrGflbzOe8Y0EVpussIImg.jpg 4812w\"},className:\"framer-khsw2c\",\"data-border\":true,\"data-framer-name\":\"Content card\",name:\"Content card\"})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:4234.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mdtuzf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"gtza4TWka\"},Z12g0eqg0:{variant:\"gtza4TWka\"}},children:/*#__PURE__*/_jsx(HomePageButtonsMainCTAs,{height:\"100%\",id:\"FdzUqwnxE\",layoutId:\"FdzUqwnxE\",Oh2adSLw2:\"Start here\",variant:\"pqHPWyd0Y\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-cabatc\",\"data-framer-name\":\"Integrations section\",id:elementId4,name:\"Integrations section\",ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1219icr\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-x77kw4\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfhbjx\",\"data-framer-name\":\"Integrations\",name:\"Integrations\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Integrations\"})}),className:\"framer-f0540v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Unlimited possibilities and integrations.\"})}),className:\"framer-1rnzcm5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Integrate your favorite tools and make your life so much easier.\"})}),className:\"framer-117uqph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1si7hiv\",\"data-framer-name\":\"Integrations\",name:\"Integrations\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvzl2p\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-156gy1g\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:140,name:\"Company logo\",svg:'<svg width=\"140\" height=\"36\" viewBox=\"0 0 140 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2910)\">\\n<g clip-path=\"url(#clip0_167_2910)\">\\n<rect y=\"0.5\" width=\"35\" height=\"35\" rx=\"8.75\" fill=\"#4A1FB8\"/>\\n<rect width=\"35\" height=\"35\" transform=\"translate(0 0.5)\" fill=\"url(#paint0_linear_167_2910)\"/>\\n<g filter=\"url(#filter1_d_167_2910)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.5 7.0625C23.5406 7.0625 28.4375 11.9594 28.4375 18C28.4375 24.0406 23.5406 28.9375 17.5 28.9375C11.4594 28.9375 6.5625 24.0406 6.5625 18C6.5625 11.9594 11.4594 7.0625 17.5 7.0625ZM25.7031 18C25.7031 22.5305 22.0305 26.2031 17.5 26.2031V9.79688C22.0305 9.79688 25.7031 13.4695 25.7031 18Z\" fill=\"url(#paint1_linear_167_2910)\"/>\\n</g>\\n</g>\\n<rect x=\"0.729167\" y=\"1.22917\" width=\"33.5417\" height=\"33.5417\" rx=\"8.02083\" stroke=\"url(#paint2_linear_167_2910)\" stroke-width=\"1.45833\"/>\\n</g>\\n<path d=\"M50.6209 9.91504C54.6372 9.91504 56.5469 11.9232 56.9209 14.8369H54.0269C53.6922 13.3604 52.5306 12.4744 50.6406 12.4744C48.1797 12.4744 46.7228 14.0494 46.7228 17.2979C46.7228 21.0385 48.4553 22.2788 50.6997 22.2788C52.57 22.2788 53.6922 21.4125 54.0466 19.9163H56.9209C56.5075 23.1254 54.2828 24.8382 50.6209 24.8382C46.2306 24.8382 43.75 22.3575 43.75 17.4357C43.75 13.0847 45.8959 9.91504 50.6209 9.91504Z\" fill=\"white\"/>\\n<path d=\"M60.6831 19.3454C60.6831 21.7275 61.5887 22.5544 63.1243 22.5544C64.6403 22.5544 65.5262 21.7275 65.5262 19.3454C65.5262 17.0025 64.6403 16.156 63.1243 16.156C61.5887 16.156 60.6831 17.0025 60.6831 19.3454ZM57.7497 19.3454C57.7497 15.8016 59.62 13.8919 63.1243 13.8919C66.6287 13.8919 68.4793 15.8016 68.4793 19.3454C68.4793 22.9088 66.609 24.8382 63.1243 24.8382C59.62 24.8382 57.7497 22.9088 57.7497 19.3454Z\" fill=\"white\"/>\\n<path d=\"M75.7482 13.8919C77.9335 13.8919 79.1935 14.7582 79.4494 16.6679C79.5085 17.1994 79.5282 17.6916 79.5282 18.5382V24.5625H76.7129V18.4988C76.7129 17.1207 76.3388 16.2347 74.7835 16.2347C73.5038 16.1954 72.5982 17.0813 72.5982 19.05V24.5625H69.7829V14.1675H72.3619L72.4801 15.8607C72.8148 14.325 74.0354 13.8919 75.7482 13.8919Z\" fill=\"white\"/>\\n<path d=\"M84.832 20.9597C84.832 22.4954 85.1667 22.6332 87.037 22.5347V24.661C86.3873 24.7397 85.836 24.7988 84.9107 24.7988C82.8238 24.7988 82.1545 23.9522 82.0363 22.6135C81.997 22.0425 81.997 21.6291 81.997 21.0385V16.4119H80.5007V14.1872H81.997V11.1554H84.832V14.1872H87.1551V16.4119H84.832V20.9597Z\" fill=\"white\"/>\\n<path d=\"M93.8232 13.8919C94.1972 13.8919 94.4335 13.8919 94.6697 13.951V16.2347C92.1694 15.9788 91.0275 17.1207 91.0275 20.0541V24.5625H88.2122V14.1675H90.7913L90.9094 16.156C91.1063 14.5416 92.2482 13.8919 93.8232 13.8919Z\" fill=\"white\"/>\\n<path d=\"M99.6447 13.8919C102.716 13.8919 103.858 15.211 103.996 17.0419C104.035 17.5735 104.055 18.0657 104.055 18.6563V24.5625H101.515L101.357 23.1844C100.885 24.5822 99.6447 24.8382 98.109 24.8382C96.1993 24.8382 94.7031 23.7554 94.7031 21.7275C94.7031 19.1288 96.6915 18.1838 100.708 18.1838H101.279V17.8097C101.279 16.786 100.944 16.1363 99.5265 16.1363C98.2862 16.1363 97.735 16.5694 97.6168 17.5341H95.0378C95.1165 15.2897 96.4947 13.8919 99.6447 13.8919ZM97.4397 21.3929C97.4397 22.1607 98.05 22.5938 99.0147 22.5938C100.117 22.5938 101.279 21.9638 101.279 20.94V20.1132C98.7981 19.995 97.4397 20.251 97.4397 21.3929Z\" fill=\"white\"/>\\n<path d=\"M109.675 13.8919C112.629 13.8919 113.889 15.0338 114.026 17.2191H111.31C111.172 16.2544 110.522 16.0182 109.616 16.0182C108.79 16.0182 108.16 16.3332 108.16 16.9238C108.16 17.5538 108.671 17.9082 110.286 18.1641C113.022 18.5775 114.341 19.5225 114.341 21.57C114.341 23.775 112.333 24.8382 109.833 24.8382C106.88 24.8382 105.364 23.7947 105.088 21.4322H107.845C108.022 22.3772 108.612 22.6922 109.912 22.6922C110.935 22.6922 111.546 22.3575 111.546 21.8063C111.546 21.1172 110.837 20.7235 109.301 20.4872C106.545 20.0344 105.364 19.2075 105.364 17.101C105.364 15.1913 107.057 13.8919 109.675 13.8919Z\" fill=\"white\"/>\\n<path d=\"M119.095 20.9597C119.095 22.4954 119.43 22.6332 121.3 22.5347V24.661C120.65 24.7397 120.099 24.7988 119.174 24.7988C117.087 24.7988 116.418 23.9522 116.3 22.6135C116.26 22.0425 116.26 21.6291 116.26 21.0385V16.4119H114.764V14.1872H116.26V11.1554H119.095V14.1872H121.418V16.4119H119.095V20.9597Z\" fill=\"white\"/>\\n<path d=\"M130.426 10.1907L135.506 24.5625H132.454L131.253 21.0975H125.957L124.737 24.5625H121.724L126.902 10.1907H130.426ZM126.646 18.6563H130.604L128.654 12.8879L126.646 18.6563Z\" fill=\"white\"/>\\n<path d=\"M139.529 10.1907V24.5625H136.655V10.1907H139.529Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2910\" x=\"-2.1875\" y=\"-1.6875\" width=\"39.375\" height=\"41.5625\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.729167\"/>\\n<feGaussianBlur stdDeviation=\"0.364583\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2910\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.729167\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2910\"/>\\n<feOffset dy=\"2.1875\"/>\\n<feGaussianBlur stdDeviation=\"1.45833\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2910\" result=\"effect2_dropShadow_167_2910\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2910\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.1875\"/>\\n<feGaussianBlur stdDeviation=\"1.09375\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2910\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.1875\"/>\\n<feGaussianBlur stdDeviation=\"1.09375\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2910\" result=\"effect4_innerShadow_167_2910\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.729167\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2910\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2910\" result=\"effect5_innerShadow_167_2910\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2910\" x=\"4.375\" y=\"4.32812\" width=\"26.25\" height=\"30.625\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.09375\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2910\"/>\\n<feOffset dy=\"1.64063\"/>\\n<feGaussianBlur stdDeviation=\"1.64063\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2910\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2910\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2910\" x1=\"17.5\" y1=\"4.34617e-07\" x2=\"18.9583\" y2=\"35\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2910\" x1=\"17.5\" y1=\"7.0625\" x2=\"17.5\" y2=\"28.9375\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2910\" x1=\"17.5\" y1=\"0.5\" x2=\"17.5\" y2=\"35.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2910\">\\n<rect y=\"0.5\" width=\"35\" height=\"35\" rx=\"8.75\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13k05wi\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:122,name:\"Company logo\",svg:'<svg width=\"122\" height=\"37\" viewBox=\"0 0 122 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2843)\">\\n<g clip-path=\"url(#clip0_167_2843)\">\\n<rect width=\"36.1481\" height=\"36.1481\" rx=\"9.03704\" fill=\"#444CE7\"/>\\n<rect width=\"36.1481\" height=\"36.1481\" fill=\"url(#paint0_linear_167_2843)\"/>\\n<g filter=\"url(#filter1_d_167_2843)\">\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.3138 9.26342L20.8426 7.7974C20.4648 7.6962 20.1586 7.93115 20.1586 8.32218V13.9864C20.1586 14.3775 20.4648 14.7765 20.8426 14.8777L26.3138 16.3437C26.6915 16.4449 26.9977 16.21 26.9977 15.8189V10.1547C26.9977 9.76366 26.6915 9.36462 26.3138 9.26342ZM20.8426 5.67331C19.3317 5.26849 18.1069 6.20829 18.1069 7.77243V13.4367C18.1069 15.0008 19.3317 16.597 20.8426 17.0018L26.3138 18.4678C27.8246 18.8726 29.0494 17.9328 29.0494 16.3687V10.7045C29.0494 9.14032 27.8246 7.54416 26.3138 7.13933L20.8426 5.67331Z\" fill=\"url(#paint1_linear_167_2843)\"/>\\n<path opacity=\"0.7\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.0166 13.8781L15.1775 12.0456C14.7998 11.9444 14.4936 12.1793 14.4936 12.5704V19.6507C14.4936 20.0417 14.7998 20.4407 15.1775 20.5419L22.0166 22.3744C22.3943 22.4757 22.7005 22.2407 22.7005 21.8497V14.7694C22.7005 14.3783 22.3943 13.9793 22.0166 13.8781ZM15.1775 9.92148C13.6667 9.51665 12.4419 10.4565 12.4419 12.0206V19.1009C12.4419 20.665 13.6667 22.2612 15.1775 22.666L22.0166 24.4985C23.5274 24.9034 24.7522 23.9636 24.7522 22.3994V15.3191C24.7522 13.755 23.5274 12.1588 22.0166 11.754L15.1775 9.92148Z\" fill=\"url(#paint2_linear_167_2843)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.7203 18.4925L9.51345 16.2935C9.13574 16.1923 8.82955 16.4272 8.82955 16.8183V25.3146C8.82955 25.7057 9.13574 26.1047 9.51345 26.2059L17.7203 28.4049C18.098 28.5061 18.4042 28.2712 18.4042 27.8802V19.3838C18.4042 18.9928 18.098 18.5937 17.7203 18.4925ZM9.51345 14.1694C8.00261 13.7646 6.77783 14.7044 6.77783 16.2685V24.7649C6.77783 26.329 8.00261 27.9252 9.51345 28.33L17.7203 30.529C19.2311 30.9339 20.4559 29.994 20.4559 28.4299V19.9336C20.4559 18.3694 19.2311 16.7733 17.7203 16.3684L9.51345 14.1694Z\" fill=\"url(#paint3_linear_167_2843)\"/>\\n</g>\\n</g>\\n<rect x=\"0.753086\" y=\"0.753086\" width=\"34.642\" height=\"34.642\" rx=\"8.28395\" stroke=\"url(#paint4_linear_167_2843)\" stroke-width=\"1.50617\"/>\\n</g>\\n<path d=\"M47.9263 24.5567C48.7838 24.9503 49.7678 25.1471 50.8784 25.1471C51.9889 25.1471 52.9589 24.9574 53.7883 24.5778C54.6318 24.1842 55.2855 23.6359 55.7494 22.9331C56.2133 22.2161 56.4452 21.3797 56.4452 20.4238V20.1707C56.4452 19.2851 56.2414 18.5682 55.8337 18.0199C55.426 17.4576 54.9059 17.0429 54.2733 16.7758C53.6548 16.5087 53.0151 16.3752 52.3544 16.3752H51.5742V16.0378L56.0235 13.6761V10.0914H45.5646V12.4953H53.0292V12.8327L48.2637 15.363V18.3151H51.2158C51.6937 18.3151 52.1225 18.3854 52.502 18.526C52.8816 18.6525 53.1838 18.8564 53.4088 19.1375C53.6337 19.4187 53.7461 19.7842 53.7461 20.234V20.4449C53.7461 21.1056 53.4931 21.6538 52.987 22.0896C52.495 22.5254 51.7921 22.7433 50.8784 22.7433C49.9787 22.7433 49.2547 22.5113 48.7065 22.0474C48.1582 21.5695 47.8841 20.9369 47.8841 20.1497V19.8544H45.1851V20.234C45.1851 21.2461 45.424 22.1247 45.902 22.8698C46.394 23.6008 47.0688 24.1631 47.9263 24.5567Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M66.1534 10.6608C65.4505 10.2812 64.6351 10.0914 63.7073 10.0914H57.6344V24.8519H60.4179V19.4538H63.7073C64.607 19.4538 65.4083 19.2711 66.1112 18.9056C66.8281 18.526 67.3904 17.9988 67.7981 17.3241C68.2198 16.6353 68.4307 15.834 68.4307 14.9202V14.625C68.4307 13.6972 68.2269 12.8959 67.8192 12.2212C67.4256 11.5464 66.8703 11.0263 66.1534 10.6608ZM65.0358 16.3752C64.6281 16.7407 64.0939 16.9234 63.4332 16.9234H60.4179V12.6218H63.4332C64.0939 12.6218 64.6281 12.8046 65.0358 13.17C65.4435 13.5355 65.6473 14.0346 65.6473 14.6672V14.878C65.6473 15.5106 65.4435 16.0097 65.0358 16.3752Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.1197 25.1471C73.0795 25.1471 72.1447 24.9363 71.3153 24.5145C70.4859 24.0928 69.8322 23.4813 69.3542 22.68C68.8763 21.8787 68.6373 20.9158 68.6373 19.7912V19.4538C68.6373 18.3292 68.8763 17.3662 69.3542 16.565C69.8322 15.7637 70.4859 15.1522 71.3153 14.7304C72.1447 14.3087 73.0795 14.0979 74.1197 14.0979C75.16 14.0979 76.0948 14.3087 76.9242 14.7304C77.7536 15.1522 78.4073 15.7637 78.8853 16.565C79.3632 17.3662 79.6022 18.3292 79.6022 19.4538V19.7912C79.6022 20.9158 79.3632 21.8787 78.8853 22.68C78.4073 23.4813 77.7536 24.0928 76.9242 24.5145C76.0948 24.9363 75.16 25.1471 74.1197 25.1471ZM74.1197 22.7855C74.9351 22.7855 75.6099 22.5254 76.144 22.0053C76.6782 21.4711 76.9453 20.712 76.9453 19.7279V19.5171C76.9453 18.533 76.6782 17.7809 76.144 17.2608C75.6239 16.7266 74.9491 16.4595 74.1197 16.4595C73.3044 16.4595 72.6296 16.7266 72.0955 17.2608C71.5613 17.7809 71.2942 18.533 71.2942 19.5171V19.7279C71.2942 20.712 71.5613 21.4711 72.0955 22.0053C72.6296 22.5254 73.3044 22.7855 74.1197 22.7855Z\" fill=\"white\"/>\\n<path d=\"M84.7537 14.6461C84.4023 14.8429 84.1492 15.1522 83.9946 15.5739H83.6151V14.3931H81.0003V24.8519H83.6572V18.9056C83.6572 18.1605 83.8751 17.6123 84.3109 17.2608C84.7467 16.8953 85.302 16.7126 85.9767 16.7126H87.2841V16.711H89.9934V22.4902C89.9934 23.2072 90.2042 23.7835 90.626 24.2193C91.0618 24.6411 91.6241 24.8519 92.3129 24.8519H95.265V22.6589H93.2407C92.8471 22.6589 92.6503 22.4481 92.6503 22.0263V16.711H95.518V14.3539H92.6503V11.1458H89.9934V14.3539H87.2841V14.3509H86.0189C85.541 14.3509 85.1192 14.4493 84.7537 14.6461Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M98.1128 24.7676C98.7032 25.0206 99.371 25.1471 100.116 25.1471C100.847 25.1471 101.423 25.0417 101.845 24.8308C102.267 24.62 102.576 24.381 102.773 24.1139C102.97 23.8328 103.096 23.6078 103.152 23.4391H103.553V23.4602C103.553 23.882 103.722 24.2193 104.059 24.4724C104.397 24.7254 104.825 24.8519 105.345 24.8519H107.117V22.6589H106.273C105.88 22.6589 105.683 22.4481 105.683 22.0263V18.1254C105.683 16.818 105.282 15.8199 104.481 15.1311C103.68 14.4423 102.59 14.0979 101.213 14.0979C100.313 14.0979 99.5467 14.2384 98.9141 14.5196C98.2955 14.7867 97.7965 15.1451 97.4169 15.595C97.0514 16.0308 96.7844 16.5158 96.6157 17.05L99.0617 17.8723C99.1601 17.3944 99.371 17.0078 99.6943 16.7126C100.018 16.4033 100.51 16.2487 101.17 16.2487C101.845 16.2487 102.337 16.4103 102.646 16.7337C102.956 17.0429 103.11 17.4436 103.11 17.9356V18.526H100.243C99.4553 18.526 98.7524 18.6525 98.1339 18.9056C97.5294 19.1445 97.0514 19.51 96.7 20.002C96.3626 20.48 96.1939 21.0775 96.1939 21.7944C96.1939 22.5113 96.3626 23.1228 96.7 23.6289C97.0514 24.1209 97.5224 24.5005 98.1128 24.7676ZM102.393 22.3848C101.929 22.7925 101.325 22.9963 100.58 22.9963C100.018 22.9963 99.5888 22.8768 99.2936 22.6379C98.9984 22.3989 98.8508 22.0896 98.8508 21.7101C98.8508 21.3305 98.9914 21.0353 99.2725 20.8244C99.5537 20.6136 99.9403 20.5081 100.432 20.5081H103.11V20.719C103.11 21.4078 102.871 21.9631 102.393 22.3848Z\" fill=\"white\"/>\\n<path d=\"M113.543 24.2615C114.414 24.8519 115.532 25.1471 116.896 25.1471C118.231 25.1471 119.292 24.8519 120.08 24.2615C120.881 23.657 121.281 22.8065 121.281 21.7101C121.281 20.9791 121.092 20.4027 120.712 19.981C120.347 19.5452 119.841 19.2148 119.194 18.9899C118.561 18.7509 117.851 18.5611 117.064 18.4206L116.474 18.3151C115.996 18.2308 115.616 18.1113 115.335 17.9567C115.054 17.788 114.913 17.5349 114.913 17.1976C114.913 16.8883 115.047 16.6493 115.314 16.4806C115.581 16.2979 115.968 16.2065 116.474 16.2065C116.98 16.2065 117.402 16.319 117.739 16.5439C118.09 16.7688 118.322 17.1484 118.435 17.6825L120.902 16.9234C120.663 16.08 120.157 15.3982 119.384 14.878C118.611 14.3579 117.641 14.0979 116.474 14.0979C115.237 14.0979 114.239 14.379 113.48 14.9413C112.72 15.4896 112.341 16.2838 112.341 17.3241C112.341 18.0129 112.524 18.5752 112.889 19.011C113.255 19.4468 113.74 19.7912 114.344 20.0442C114.949 20.2832 115.616 20.473 116.347 20.6136L116.938 20.719C117.556 20.8314 118.006 20.9791 118.287 21.1618C118.568 21.3305 118.709 21.5765 118.709 21.8998C118.709 22.2232 118.561 22.4973 118.266 22.7222C117.971 22.9331 117.514 23.0385 116.896 23.0385C116.488 23.0385 116.108 22.9823 115.757 22.8698C115.419 22.7433 115.131 22.5394 114.892 22.2583C114.667 21.9771 114.506 21.5906 114.407 21.0985L111.961 21.7311C112.144 22.8276 112.671 23.6711 113.543 24.2615Z\" fill=\"white\"/>\\n<path d=\"M108.005 24.8519V10.0914H110.662V24.8519H108.005Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2843\" x=\"-2.25926\" y=\"-2.25926\" width=\"40.6665\" height=\"42.926\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.753086\"/>\\n<feGaussianBlur stdDeviation=\"0.376543\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2843\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.753086\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2843\"/>\\n<feOffset dy=\"2.25926\"/>\\n<feGaussianBlur stdDeviation=\"1.50617\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2843\" result=\"effect2_dropShadow_167_2843\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2843\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.25926\"/>\\n<feGaussianBlur stdDeviation=\"1.12963\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2843\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.25926\"/>\\n<feGaussianBlur stdDeviation=\"1.12963\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2843\" result=\"effect4_innerShadow_167_2843\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.753086\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2843\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2843\" result=\"effect5_innerShadow_167_2843\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2843\" x=\"4.51857\" y=\"3.95374\" width=\"27.1113\" height=\"31.6296\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.12963\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2843\"/>\\n<feOffset dy=\"1.69444\"/>\\n<feGaussianBlur stdDeviation=\"1.69444\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2843\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2843\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2843\" x1=\"18.0741\" y1=\"4.48875e-07\" x2=\"19.5802\" y2=\"36.1481\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2843\" x1=\"23.5782\" y1=\"6.40632\" x2=\"20.746\" y2=\"16.9759\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2843\" x1=\"18.597\" y1=\"10.8377\" x2=\"15.4109\" y2=\"22.7286\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_167_2843\" x1=\"13.6169\" y1=\"15.2689\" x2=\"10.0767\" y2=\"28.4809\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_167_2843\" x1=\"18.0741\" y1=\"0\" x2=\"18.0741\" y2=\"36.1481\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2843\">\\n<rect width=\"36.1481\" height=\"36.1481\" rx=\"9.03704\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3k28dv\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:164,name:\"Company logo\",svg:'<svg width=\"164\" height=\"37\" viewBox=\"0 0 164 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2852)\">\\n<g clip-path=\"url(#clip0_167_2852)\">\\n<rect width=\"36.785\" height=\"36.785\" rx=\"9.19626\" fill=\"#0C111D\"/>\\n<rect width=\"36.785\" height=\"36.785\" fill=\"url(#paint0_linear_167_2852)\"/>\\n<g filter=\"url(#filter1_d_167_2852)\">\\n<path d=\"M10.729 13.2184L21.8064 13.2184L10.9105 24.1143L12.6708 25.8746L23.5667 14.9787V26.0561H23.6372L26.0561 23.6372L26.0561 13.4422L23.3429 10.729L13.1466 10.729L10.729 13.1466L10.729 13.2184Z\" fill=\"url(#paint1_linear_167_2852)\"/>\\n</g>\\n</g>\\n<rect x=\"0.766355\" y=\"0.766355\" width=\"35.2523\" height=\"35.2523\" rx=\"8.42991\" stroke=\"url(#paint2_linear_167_2852)\" stroke-width=\"1.53271\"/>\\n</g>\\n<path d=\"M56.1433 19.5911H58.6738V21.9423H56.1433V25.2898H53.3339V21.9423H45.9814V19.89L53.5929 10.8639H56.1433V19.5911ZM49.568 19.5911H53.3339V14.9884L49.568 19.5911Z\" fill=\"white\"/>\\n<path d=\"M65.7312 15.4865C66.7142 15.4865 67.5909 15.6791 68.3614 16.0644C69.1451 16.4496 69.7561 17.0208 70.1945 17.7779C70.6461 18.5351 70.872 19.445 70.872 20.5077C70.872 22.0884 70.3738 23.3238 69.3776 24.2138C68.3813 25.0905 66.9799 25.5289 65.1733 25.5289C63.9247 25.5289 62.8753 25.323 62.0252 24.9112C61.1883 24.4994 60.5507 23.9548 60.1123 23.2773C59.6873 22.5998 59.4415 21.856 59.3751 21.0457H62.2443C62.6694 22.5866 63.6391 23.357 65.1534 23.357C66.0833 23.357 66.7873 23.098 67.2655 22.5799C67.757 22.0619 68.0027 21.3645 68.0027 20.4878C68.0027 19.5978 67.757 18.907 67.2655 18.4155C66.774 17.9108 66.0766 17.6584 65.1733 17.6584C63.9778 17.6584 63.0613 18.1565 62.4237 19.1528L59.8334 18.8938L60.8097 10.8639H70.0351V13.2151H63.141L62.7026 16.5226C63.4199 15.8319 64.4295 15.4865 65.7312 15.4865Z\" fill=\"white\"/>\\n<path d=\"M81.9314 10.8639C83.9372 10.8639 85.7504 11.3421 87.371 12.2985C89.0049 13.2416 89.8218 15.1677 89.8218 18.0768C89.8218 20.9859 89.0049 22.9186 87.371 23.8751C85.7504 24.8182 83.9372 25.2898 81.9314 25.2898H77.0696V10.8639H81.9314ZM81.8318 22.7792C82.7483 22.7659 83.5653 22.6596 84.2826 22.4604C85.0132 22.2478 85.6308 21.7962 86.1356 21.1055C86.6537 20.4147 86.9127 19.4052 86.9127 18.0768C86.9127 16.7485 86.6537 15.7389 86.1356 15.0482C85.6308 14.3574 85.0132 13.9058 84.2826 13.6933C83.5653 13.4807 82.7483 13.3745 81.8318 13.3745H79.8791V22.7792H81.8318Z\" fill=\"white\"/>\\n<path d=\"M96.4142 14.3309C97.5699 14.3309 98.5595 14.5899 99.3831 15.108C100.22 15.6127 100.838 16.3367 101.236 17.2798C101.648 18.2229 101.821 19.3321 101.754 20.6073H93.7044C93.7974 21.5106 94.083 22.1947 94.5612 22.6596C95.0394 23.1245 95.6637 23.357 96.4342 23.357C97.1116 23.357 97.6562 23.191 98.068 22.8589C98.4931 22.5268 98.7787 22.1084 98.9248 21.6036H101.694C101.455 22.8522 100.864 23.8219 99.9211 24.5127C98.9912 25.1901 97.8289 25.5289 96.4342 25.5289C95.2918 25.5289 94.3022 25.2964 93.4653 24.8315C92.6284 24.3665 91.9908 23.7157 91.5525 22.8788C91.1141 22.0287 90.8949 21.0457 90.8949 19.9299C90.8949 18.8273 91.1208 17.851 91.5724 17.0009C92.024 16.1507 92.6683 15.4932 93.5052 15.0283C94.342 14.5633 95.3117 14.3309 96.4142 14.3309ZM98.9846 18.8539C98.9049 18.1366 98.6459 17.5588 98.2075 17.1204C97.7824 16.6821 97.178 16.4629 96.3943 16.4629C95.677 16.4629 95.0925 16.6621 94.6409 17.0606C94.1893 17.4591 93.8904 18.0569 93.7443 18.8539H98.9846Z\" fill=\"white\"/>\\n<path d=\"M113.439 14.57V24.8514C113.439 26.2462 112.994 27.3686 112.104 28.2188C111.214 29.0822 109.912 29.5139 108.199 29.5139C106.711 29.5139 105.529 29.1818 104.652 28.5176C103.776 27.8668 103.257 26.99 103.098 25.8875H105.828C106.147 26.8705 106.937 27.362 108.199 27.362C109.076 27.362 109.713 27.1428 110.112 26.7044C110.51 26.2794 110.71 25.6484 110.71 24.8115V23.3769C109.966 24.5193 108.843 25.0905 107.342 25.0905C106.399 25.0905 105.569 24.878 104.851 24.4529C104.147 24.0145 103.596 23.3902 103.198 22.5799C102.812 21.7696 102.62 20.8132 102.62 19.7107C102.62 18.6082 102.812 17.6517 103.198 16.8415C103.596 16.0312 104.147 15.4135 104.851 14.9884C105.569 14.5501 106.399 14.3309 107.342 14.3309C108.856 14.3309 109.979 14.9021 110.71 16.0444V14.57H113.439ZM108.079 22.9386C108.969 22.9386 109.653 22.6397 110.132 22.0419C110.61 21.4442 110.849 20.6671 110.849 19.7107C110.849 18.7543 110.61 17.9772 110.132 17.3794C109.653 16.7817 108.969 16.4828 108.079 16.4828C107.176 16.4828 106.499 16.7883 106.047 17.3994C105.609 17.9971 105.389 18.7676 105.389 19.7107C105.389 20.6538 105.609 21.4309 106.047 22.0419C106.499 22.6397 107.176 22.9386 108.079 22.9386Z\" fill=\"white\"/>\\n<path d=\"M120.889 14.4504C121.115 14.4504 121.341 14.4704 121.566 14.5102V17.24C121.327 17.2001 121.075 17.1802 120.809 17.1802C119.972 17.1802 119.348 17.3794 118.936 17.7779C118.525 18.1632 118.265 18.6214 118.159 19.1528C118.053 19.6708 118 20.2752 118 20.966V25.2898H115.27V14.57H117.96V16.4031C118.544 15.1013 119.521 14.4504 120.889 14.4504Z\" fill=\"white\"/>\\n<path d=\"M127.675 14.3309C128.831 14.3309 129.82 14.5899 130.644 15.108C131.481 15.6127 132.098 16.3367 132.497 17.2798C132.909 18.2229 133.081 19.3321 133.015 20.6073H124.965C125.058 21.5106 125.344 22.1947 125.822 22.6596C126.3 23.1245 126.925 23.357 127.695 23.357C128.372 23.357 128.917 23.191 129.329 22.8589C129.754 22.5268 130.04 22.1084 130.186 21.6036H132.955C132.716 22.8522 132.125 23.8219 131.182 24.5127C130.252 25.1901 129.09 25.5289 127.695 25.5289C126.553 25.5289 125.563 25.2964 124.726 24.8315C123.889 24.3665 123.252 23.7157 122.813 22.8788C122.375 22.0287 122.156 21.0457 122.156 19.9299C122.156 18.8273 122.382 17.851 122.833 17.0009C123.285 16.1507 123.929 15.4932 124.766 15.0283C125.603 14.5633 126.573 14.3309 127.675 14.3309ZM130.245 18.8539C130.166 18.1366 129.907 17.5588 129.468 17.1204C129.043 16.6821 128.439 16.4629 127.655 16.4629C126.938 16.4629 126.353 16.6621 125.902 17.0606C125.45 17.4591 125.151 18.0569 125.005 18.8539H130.245Z\" fill=\"white\"/>\\n<path d=\"M139.36 14.3309C140.516 14.3309 141.505 14.5899 142.329 15.108C143.166 15.6127 143.784 16.3367 144.182 17.2798C144.594 18.2229 144.767 19.3321 144.7 20.6073H136.65C136.743 21.5106 137.029 22.1947 137.507 22.6596C137.985 23.1245 138.61 23.357 139.38 23.357C140.058 23.357 140.602 23.191 141.014 22.8589C141.439 22.5268 141.725 22.1084 141.871 21.6036H144.64C144.401 22.8522 143.81 23.8219 142.867 24.5127C141.937 25.1901 140.775 25.5289 139.38 25.5289C138.238 25.5289 137.248 25.2964 136.411 24.8315C135.574 24.3665 134.937 23.7157 134.498 22.8788C134.06 22.0287 133.841 21.0457 133.841 19.9299C133.841 18.8273 134.067 17.851 134.518 17.0009C134.97 16.1507 135.614 15.4932 136.451 15.0283C137.288 14.5633 138.258 14.3309 139.36 14.3309ZM141.93 18.8539C141.851 18.1366 141.592 17.5588 141.153 17.1204C140.728 16.6821 140.124 16.4629 139.34 16.4629C138.623 16.4629 138.038 16.6621 137.587 17.0606C137.135 17.4591 136.836 18.0569 136.69 18.8539H141.93Z\" fill=\"white\"/>\\n<path d=\"M150.662 25.5289C149.042 25.5289 147.787 25.1702 146.897 24.4529C146.007 23.7356 145.502 22.8323 145.382 21.7431H148.112C148.471 22.8854 149.341 23.4566 150.722 23.4566C151.36 23.4566 151.858 23.3437 152.217 23.1179C152.575 22.8788 152.755 22.5733 152.755 22.2013C152.755 21.8028 152.555 21.5239 152.157 21.3645C151.772 21.1918 151.107 21.0191 150.164 20.8464C149.288 20.7003 148.537 20.5276 147.913 20.3284C147.288 20.1158 146.75 19.7837 146.299 19.3321C145.847 18.8805 145.621 18.2761 145.621 17.5189C145.621 16.4429 146.073 15.6459 146.976 15.1279C147.88 14.5965 148.982 14.3309 150.284 14.3309C151.718 14.3309 152.861 14.643 153.711 15.2674C154.574 15.8917 155.086 16.7285 155.245 17.7779H152.515C152.356 17.3396 152.097 17.0009 151.738 16.7618C151.393 16.5226 150.888 16.4031 150.224 16.4031C149.653 16.4031 149.195 16.4961 148.849 16.6821C148.517 16.868 148.351 17.1204 148.351 17.4392C148.351 17.7182 148.484 17.9506 148.75 18.1366C149.029 18.3093 149.334 18.4355 149.666 18.5152C149.998 18.5949 150.569 18.7144 151.38 18.8738C152.814 19.1395 153.857 19.4915 154.508 19.9299C155.159 20.3682 155.484 21.0324 155.484 21.9224C155.484 23.0116 155.066 23.8883 154.229 24.5525C153.392 25.2034 152.203 25.5289 150.662 25.5289Z\" fill=\"white\"/>\\n<path d=\"M160.183 17.2798C159.585 17.2798 159.027 17.147 158.509 16.8813C158.004 16.6024 157.599 16.2105 157.294 15.7057C157.001 15.2009 156.855 14.6165 156.855 13.9523C156.855 13.2881 157.001 12.7036 157.294 12.1989C157.599 11.6941 158.004 11.3089 158.509 11.0432C159.027 10.7643 159.585 10.6248 160.183 10.6248C160.781 10.6248 161.332 10.7643 161.837 11.0432C162.355 11.3089 162.766 11.7007 163.072 12.2188C163.377 12.7236 163.53 13.3014 163.53 13.9523C163.53 14.6032 163.377 15.1877 163.072 15.7057C162.766 16.2105 162.355 16.6024 161.837 16.8813C161.332 17.147 160.781 17.2798 160.183 17.2798ZM160.183 15.6061C160.634 15.6061 160.993 15.46 161.259 15.1677C161.538 14.8622 161.677 14.4571 161.677 13.9523C161.677 13.4475 161.538 13.049 161.259 12.7568C160.993 12.4645 160.634 12.3184 160.183 12.3184C159.744 12.3184 159.386 12.4645 159.107 12.7568C158.841 13.049 158.708 13.4475 158.708 13.9523C158.708 14.4571 158.841 14.8622 159.107 15.1677C159.386 15.46 159.744 15.6061 160.183 15.6061Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M160.195 12.4686C159.372 12.4686 158.704 13.136 158.704 13.9592C158.704 14.7824 159.372 15.4497 160.195 15.4497C161.018 15.4497 161.686 14.7824 161.686 13.9592C161.686 13.136 161.018 12.4686 160.195 12.4686ZM160.195 17.2967C162.038 17.2967 163.532 15.8024 163.532 13.9592C163.532 12.1159 162.038 10.6217 160.195 10.6217C158.352 10.6217 156.857 12.1159 156.857 13.9592C156.857 15.8024 158.352 17.2967 160.195 17.2967Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2852\" x=\"-2.29907\" y=\"-2.29907\" width=\"41.3833\" height=\"43.6822\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.766355\"/>\\n<feGaussianBlur stdDeviation=\"0.383178\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2852\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.766355\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2852\"/>\\n<feOffset dy=\"2.29907\"/>\\n<feGaussianBlur stdDeviation=\"1.53271\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2852\" result=\"effect2_dropShadow_167_2852\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2852\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.29907\"/>\\n<feGaussianBlur stdDeviation=\"1.14953\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2852\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.29907\"/>\\n<feGaussianBlur stdDeviation=\"1.14953\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2852\" result=\"effect4_innerShadow_167_2852\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.766355\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2852\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2852\" result=\"effect5_innerShadow_167_2852\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2852\" x=\"8.17449\" y=\"2.4268\" width=\"20.4362\" height=\"35.7632\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.27726\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2852\"/>\\n<feOffset dy=\"1.91589\"/>\\n<feGaussianBlur stdDeviation=\"1.91589\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2852\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2852\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2852\" x1=\"18.3925\" y1=\"4.56783e-07\" x2=\"19.9252\" y2=\"36.785\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2852\" x1=\"18.3926\" y1=\"10.729\" x2=\"18.3926\" y2=\"26.0561\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2852\" x1=\"18.3925\" y1=\"0\" x2=\"18.3925\" y2=\"36.785\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2852\">\\n<rect width=\"36.785\" height=\"36.785\" rx=\"9.19626\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c46wab\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:153,name:\"Company logo\",svg:'<svg width=\"153\" height=\"37\" viewBox=\"0 0 153 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2859)\">\\n<g clip-path=\"url(#clip0_167_2859)\">\\n<rect width=\"36.1773\" height=\"36.1773\" rx=\"9.04433\" fill=\"#0C111D\"/>\\n<rect width=\"36.1773\" height=\"36.1773\" fill=\"url(#paint0_linear_167_2859)\"/>\\n<g filter=\"url(#filter1_d_167_2859)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.52197 18.0887C13.1451 18.0887 18.0885 13.1453 18.0885 4.52222C18.0885 13.1453 23.0319 18.0887 31.655 18.0887C23.0319 18.0887 18.0885 23.0321 18.0885 31.6552C18.0885 23.0321 13.1451 18.0887 4.52197 18.0887Z\" fill=\"url(#paint1_linear_167_2859)\"/>\\n</g>\\n</g>\\n<rect x=\"0.753695\" y=\"0.753695\" width=\"34.6699\" height=\"34.67\" rx=\"8.29064\" stroke=\"url(#paint2_linear_167_2859)\" stroke-width=\"1.50739\"/>\\n</g>\\n<path d=\"M45.2217 24.8719L50.1667 10.0369H54.6436L59.5886 24.8719H56.2919L55.2948 21.8194H49.5155L48.5183 24.8719H45.2217ZM50.2481 19.3978H54.5622L53.3005 15.6127L52.4662 12.9062H52.3441L51.5098 15.6127L50.2481 19.3978Z\" fill=\"white\"/>\\n<path d=\"M65.1069 25.055C64.0216 25.055 63.0719 24.8244 62.2579 24.3631C61.4439 23.8883 60.8131 23.2303 60.3654 22.3892C59.9177 21.5345 59.6939 20.5442 59.6939 19.4181C59.6939 18.2786 59.9177 17.2882 60.3654 16.4471C60.8267 15.5924 61.4711 14.9344 62.2986 14.4732C63.1262 13.9983 64.0962 13.7609 65.2086 13.7609C66.1447 13.7609 66.9791 13.9373 67.7117 14.29C68.4442 14.6427 69.0208 15.1311 69.4414 15.7552C69.8755 16.3792 70.1129 17.1051 70.1536 17.9326H67.2233C67.1283 17.3628 66.8909 16.9355 66.511 16.6506C66.1312 16.3521 65.6699 16.2029 65.1272 16.2029C64.3404 16.2029 63.7435 16.4946 63.3365 17.0779C62.9295 17.6613 62.726 18.4414 62.726 19.4181C62.726 20.4899 62.943 21.2903 63.3772 21.8194C63.8249 22.3485 64.4014 22.6131 65.1069 22.6131C65.7445 22.6131 66.2465 22.4503 66.6128 22.1247C66.9926 21.7991 67.2097 21.3717 67.264 20.8426H70.174C70.1333 21.6973 69.8891 22.4435 69.4414 23.0811C69.0073 23.7052 68.4171 24.1936 67.671 24.5463C66.9248 24.8854 66.0701 25.055 65.1069 25.055Z\" fill=\"white\"/>\\n<path d=\"M71.6034 24.8719V13.9644H74.4931L74.5948 15.9383H74.7169C74.9882 15.2193 75.4291 14.6767 76.0396 14.3104C76.6501 13.9441 77.3217 13.7609 78.0543 13.7609C78.814 13.7609 79.5059 13.9441 80.1299 14.3104C80.754 14.6767 81.2153 15.3075 81.5137 16.2029H81.6765C81.9343 15.3889 82.3888 14.7784 83.0399 14.3714C83.7047 13.9644 84.4509 13.7609 85.2784 13.7609C85.9839 13.7609 86.6147 13.9101 87.1709 14.2086C87.7272 14.5071 88.1681 14.9887 88.4937 15.6534C88.8328 16.3046 89.0024 17.1797 89.0024 18.2786V24.8719H86.011V18.9298C86.011 18.0072 85.855 17.3221 85.543 16.8744C85.2445 16.4267 84.7561 16.2029 84.0778 16.2029C83.3588 16.2029 82.7958 16.4674 82.3888 16.9965C81.9953 17.5121 81.7986 18.1158 81.7986 18.8077V24.8719H78.8072V18.9298C78.8072 18.0072 78.6512 17.3221 78.3392 16.8744C78.0407 16.4267 77.5523 16.2029 76.874 16.2029C76.1414 16.2029 75.5784 16.4674 75.1849 16.9965C74.7915 17.5121 74.5948 18.1158 74.5948 18.8077V24.8719H71.6034Z\" fill=\"white\"/>\\n<path d=\"M95.8315 25.055C94.6919 25.055 93.7151 24.8244 92.9012 24.3631C92.1007 23.9019 91.4835 23.2575 91.0493 22.4299C90.6152 21.5888 90.3981 20.612 90.3981 19.4995C90.3981 18.3193 90.6152 17.3018 91.0493 16.4471C91.497 15.5924 92.1211 14.9344 92.9215 14.4732C93.7219 13.9983 94.658 13.7609 95.7298 13.7609C96.9915 13.7609 98.0293 14.039 98.8433 14.5953C99.6573 15.1379 100.241 15.8909 100.593 16.8541C100.946 17.8037 101.061 18.8823 100.939 20.0897H93.3488C93.3353 20.9579 93.5591 21.6295 94.0204 22.1043C94.4817 22.5656 95.0854 22.7962 95.8315 22.7962C96.4013 22.7962 96.8829 22.6741 97.2764 22.4299C97.6833 22.1721 97.9411 21.833 98.0496 21.4124H100.878C100.783 22.145 100.505 22.7826 100.044 23.3253C99.5962 23.868 99.0129 24.2953 98.2938 24.6073C97.5748 24.9058 96.754 25.055 95.8315 25.055ZM95.7298 16.0197C95.0514 16.0197 94.502 16.2165 94.0814 16.6099C93.6609 16.9897 93.4235 17.5121 93.3692 18.1768H98.0089C97.9682 17.4442 97.7308 16.9016 97.2967 16.5488C96.8761 16.1961 96.3538 16.0197 95.7298 16.0197Z\" fill=\"white\"/>\\n<path d=\"M113.29 25.055C111.811 25.055 110.509 24.7566 109.383 24.1596C108.27 23.5627 107.402 22.6945 106.778 21.5549C106.154 20.4153 105.842 19.0451 105.842 17.4442C105.842 15.8434 106.154 14.4799 106.778 13.3539C107.402 12.2143 108.27 11.3461 109.383 10.7491C110.509 10.1522 111.811 9.85376 113.29 9.85376C114.565 9.85376 115.698 10.0776 116.688 10.5253C117.679 10.9594 118.479 11.5767 119.09 12.3771C119.7 13.164 120.073 14.0865 120.209 15.1447H116.994C116.817 14.385 116.397 13.7677 115.732 13.2929C115.081 12.8045 114.267 12.5603 113.29 12.5603C112.015 12.5603 110.997 12.9673 110.238 13.7813C109.491 14.5953 109.118 15.8162 109.118 17.4442C109.118 19.0858 109.491 20.3135 110.238 21.1275C110.997 21.9415 112.015 22.3485 113.29 22.3485C114.24 22.3485 115.054 22.1111 115.732 21.6363C116.41 21.1614 116.831 20.5306 116.994 19.7437H120.209C120.087 20.8019 119.714 21.7312 119.09 22.5317C118.466 23.3321 117.652 23.9561 116.648 24.4038C115.657 24.838 114.538 25.055 113.29 25.055Z\" fill=\"white\"/>\\n<path d=\"M126.706 25.055C125.621 25.055 124.664 24.8312 123.837 24.3835C123.009 23.9358 122.365 23.2914 121.904 22.4503C121.456 21.6091 121.232 20.5984 121.232 19.4181C121.232 18.2921 121.449 17.3086 121.883 16.4674C122.317 15.6127 122.941 14.948 123.755 14.4732C124.569 13.9983 125.553 13.7609 126.706 13.7609C127.791 13.7609 128.741 13.9848 129.555 14.4325C130.383 14.8801 131.02 15.5313 131.468 16.386C131.929 17.2272 132.16 18.2379 132.16 19.4181C132.16 20.5442 131.943 21.5345 131.509 22.3892C131.074 23.2303 130.45 23.8883 129.636 24.3631C128.836 24.8244 127.859 25.055 126.706 25.055ZM126.686 22.6334C127.418 22.6334 128.008 22.3689 128.456 21.8398C128.904 21.3107 129.128 20.5035 129.128 19.4181C129.128 18.3328 128.911 17.5256 128.476 16.9965C128.042 16.4674 127.452 16.2029 126.706 16.2029C125.96 16.2029 125.363 16.4674 124.915 16.9965C124.468 17.5256 124.244 18.3328 124.244 19.4181C124.244 20.4899 124.461 21.2971 124.895 21.8398C125.343 22.3689 125.94 22.6334 126.686 22.6334Z\" fill=\"white\"/>\\n<path d=\"M133.658 24.8719V13.9644H136.365L136.487 15.7145H136.589C136.833 15.009 137.219 14.5206 137.749 14.2493C138.291 13.9644 138.908 13.822 139.6 13.822H140.211V16.6302H139.539C138.535 16.6302 137.81 16.8541 137.362 17.3018C136.914 17.7359 136.677 18.36 136.65 19.1739V24.8719H133.658Z\" fill=\"white\"/>\\n<path d=\"M141.379 28.2703V13.9644H144.269L144.371 15.8569H144.533C144.791 15.2193 145.219 14.7106 145.815 14.3307C146.426 13.9508 147.152 13.7609 147.993 13.7609C149.295 13.7609 150.347 14.2357 151.147 15.1854C151.961 16.1215 152.368 17.5324 152.368 19.4181C152.368 21.2903 151.961 22.7012 151.147 23.6509C150.347 24.6006 149.295 25.0754 147.993 25.0754C147.152 25.0754 146.426 24.8854 145.815 24.5056C145.219 24.1122 144.791 23.6034 144.533 22.9794H144.371V28.2703H141.379ZM146.874 22.6538C147.606 22.6538 148.19 22.396 148.624 21.8805C149.071 21.3514 149.295 20.5306 149.295 19.4181C149.295 18.3057 149.071 17.4917 148.624 16.9762C148.19 16.4471 147.606 16.1825 146.874 16.1825C146.317 16.1825 145.856 16.3114 145.49 16.5692C145.124 16.8269 144.852 17.1661 144.676 17.5867C144.499 17.9937 144.411 18.4278 144.411 18.8891V19.9472C144.411 20.4085 144.499 20.8494 144.676 21.27C144.852 21.677 145.124 22.0093 145.49 22.2671C145.856 22.5249 146.317 22.6538 146.874 22.6538Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2859\" x=\"-2.26108\" y=\"-2.26108\" width=\"40.6994\" height=\"42.9606\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.753695\"/>\\n<feGaussianBlur stdDeviation=\"0.376847\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2859\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.753695\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2859\"/>\\n<feOffset dy=\"2.26108\"/>\\n<feGaussianBlur stdDeviation=\"1.50739\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2859\" result=\"effect2_dropShadow_167_2859\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2859\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.26108\"/>\\n<feGaussianBlur stdDeviation=\"1.13054\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2859\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.26108\"/>\\n<feGaussianBlur stdDeviation=\"1.13054\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2859\" result=\"effect4_innerShadow_167_2859\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.753695\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2859\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2859\" result=\"effect5_innerShadow_167_2859\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2859\" x=\"2.26089\" y=\"3.95695\" width=\"31.655\" height=\"31.6552\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.13054\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2859\"/>\\n<feOffset dy=\"1.69581\"/>\\n<feGaussianBlur stdDeviation=\"1.69581\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2859\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2859\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2859\" x1=\"18.0887\" y1=\"4.49237e-07\" x2=\"19.5961\" y2=\"36.1773\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2859\" x1=\"18.0885\" y1=\"4.52222\" x2=\"18.0885\" y2=\"31.6552\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2859\" x1=\"18.0887\" y1=\"0\" x2=\"18.0887\" y2=\"36.1773\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2859\">\\n<rect width=\"36.1773\" height=\"36.1773\" rx=\"9.04433\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gw4vcp\",\"data-framer-name\":\"Row 2\",name:\"Row 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wff43d\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:143,name:\"Company logo\",svg:'<svg width=\"143\" height=\"36\" viewBox=\"0 0 143 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2866)\">\\n<g clip-path=\"url(#clip0_167_2866)\">\\n<rect width=\"35.5648\" height=\"35.5648\" rx=\"8.89119\" fill=\"#DD2590\"/>\\n<rect width=\"35.5648\" height=\"35.5648\" fill=\"url(#paint0_linear_167_2866)\"/>\\n<g filter=\"url(#filter1_d_167_2866)\">\\n<path d=\"M18.9699 8.35384C17.2338 6.61773 14.419 6.61773 12.6829 8.35384L6.39583 14.6409C4.65972 16.377 4.65972 19.1918 6.39583 20.9279L12.6829 27.2149C14.419 28.951 17.2338 28.951 18.9699 27.2149L21.9697 24.2151C19.4724 23.2516 17.7008 20.8284 17.7008 17.9914C17.7008 15.0414 19.6164 12.5387 22.2716 11.6596C22.2197 11.605 22.167 11.5509 22.1134 11.4974L18.9699 8.35384Z\" fill=\"url(#paint1_linear_167_2866)\"/>\\n<path opacity=\"0.7\" d=\"M21.9702 24.2172C22.7147 24.5044 23.5236 24.6619 24.3694 24.6619C28.0522 24.6619 31.0378 21.6763 31.0378 17.9935C31.0378 14.3106 28.0522 11.3251 24.3694 11.3251C23.6367 11.3251 22.9316 11.4432 22.2722 11.6615C25.5854 15.1447 25.5327 20.6548 22.114 24.0734L21.9702 24.2172Z\" fill=\"url(#paint2_linear_167_2866)\"/>\\n</g>\\n</g>\\n<rect x=\"0.740933\" y=\"0.740933\" width=\"34.0829\" height=\"34.0829\" rx=\"8.15026\" stroke=\"url(#paint3_linear_167_2866)\" stroke-width=\"1.48187\"/>\\n</g>\\n<path d=\"M55.2789 24.4508L54.1986 21.37H48.6171L47.5168 24.4508H44.4561L49.8575 10.087H53.1783L58.5397 24.4508H55.2789ZM51.4379 13.4079L49.4774 18.9493H53.3584L51.4379 13.4079Z\" fill=\"white\"/>\\n<path d=\"M62.05 24.4508H59.2493V10.087H62.05V24.4508Z\" fill=\"white\"/>\\n<path d=\"M74.4062 19.1094C74.4062 22.2702 72.5457 24.6508 69.6649 24.6508C68.4046 24.6508 67.3243 24.1107 66.5241 23.0704V28.3118H63.7434V13.768H66.3041V15.3284C67.1243 14.1881 68.3046 13.5679 69.6649 13.5679C72.5457 13.5679 74.4062 15.9686 74.4062 19.1094ZM71.5454 19.1094C71.5454 17.1089 70.4051 16.0286 69.0448 16.0286C67.6844 16.0286 66.5441 17.0889 66.5441 19.1094C66.5441 21.1299 67.6844 22.1702 69.0448 22.1702C70.4051 22.1702 71.5454 21.1499 71.5454 19.1094Z\" fill=\"white\"/>\\n<path d=\"M78.1685 18.6292V24.4508H75.3878V10.087H78.1685V15.1684C78.9087 14.1881 79.829 13.5679 81.2293 13.5679C83.3699 13.5679 84.8503 14.9683 84.8503 17.549V24.4508H82.0896V18.4892C82.0896 16.9088 81.4694 16.0286 80.2091 16.0286C79.1088 16.0286 78.1685 16.9088 78.1685 18.6292Z\" fill=\"white\"/>\\n<path d=\"M92.8078 24.4508V23.1304C92.1076 24.1307 91.0473 24.6508 89.587 24.6508C87.3664 24.6508 85.886 23.3505 85.886 21.35C85.886 19.2694 87.5664 18.1491 90.6873 18.1491C91.2874 18.1491 91.8075 18.1891 92.4677 18.2692V17.629C92.4677 16.4287 91.7875 15.7285 90.6272 15.7285C89.4269 15.7285 88.7067 16.4287 88.6067 17.629H86.1061C86.2661 15.1684 88.0466 13.5679 90.6272 13.5679C93.428 13.5679 95.0684 15.1083 95.0684 17.729V24.4508H92.8078ZM88.5067 21.2699C88.5067 22.1702 89.1469 22.7303 90.1871 22.7303C91.6075 22.7303 92.4677 21.9501 92.4677 20.7098V19.9496C91.8075 19.8496 91.3474 19.8096 90.8673 19.8096C89.2869 19.8096 88.5067 20.3097 88.5067 21.2699Z\" fill=\"white\"/>\\n<path d=\"M106.811 24.4508L104.13 14.4082L101.45 24.4508H98.3688L94.6878 10.087H97.6486L99.9692 19.8296L102.61 10.087H105.711L108.271 19.8696L110.612 10.087H113.593L109.892 24.4508H106.811Z\" fill=\"white\"/>\\n<path d=\"M119.828 24.4508V23.1304C119.128 24.1307 118.068 24.6508 116.607 24.6508C114.387 24.6508 112.906 23.3505 112.906 21.35C112.906 19.2694 114.587 18.1491 117.708 18.1491C118.308 18.1491 118.828 18.1891 119.488 18.2692V17.629C119.488 16.4287 118.808 15.7285 117.648 15.7285C116.447 15.7285 115.727 16.4287 115.627 17.629H113.126C113.286 15.1684 115.067 13.5679 117.648 13.5679C120.448 13.5679 122.089 15.1083 122.089 17.729V24.4508H119.828ZM115.527 21.2699C115.527 22.1702 116.167 22.7303 117.207 22.7303C118.628 22.7303 119.488 21.9501 119.488 20.7098V19.9496C118.828 19.8496 118.368 19.8096 117.888 19.8096C116.307 19.8096 115.527 20.3097 115.527 21.2699Z\" fill=\"white\"/>\\n<path d=\"M132.936 13.768L129.015 24.4508H125.974L122.033 13.768H125.034L127.575 21.2899L130.135 13.768H132.936Z\" fill=\"white\"/>\\n<path d=\"M137.626 24.6308C134.425 24.6308 132.285 22.4102 132.285 19.0694C132.285 15.8885 134.505 13.5679 137.586 13.5679C140.967 13.5679 143.207 16.3086 142.707 19.7896H135.125C135.305 21.53 136.146 22.4902 137.566 22.4902C138.786 22.4902 139.606 21.8901 139.927 20.8298H142.687C142.087 23.2504 140.227 24.6308 137.626 24.6308ZM137.526 15.6085C136.226 15.6085 135.405 16.4487 135.165 18.0291H139.767C139.687 16.5487 138.846 15.6085 137.526 15.6085Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2866\" x=\"-2.2228\" y=\"-2.2228\" width=\"40.0105\" height=\"42.2332\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.740933\"/>\\n<feGaussianBlur stdDeviation=\"0.370466\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.740933\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2866\"/>\\n<feOffset dy=\"2.2228\"/>\\n<feGaussianBlur stdDeviation=\"1.48187\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2866\" result=\"effect2_dropShadow_167_2866\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2866\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.2228\"/>\\n<feGaussianBlur stdDeviation=\"1.1114\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.2228\"/>\\n<feGaussianBlur stdDeviation=\"1.1114\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2866\" result=\"effect4_innerShadow_167_2866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.740933\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2866\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2866\" result=\"effect5_innerShadow_167_2866\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2866\" x=\"2.87095\" y=\"3.88986\" width=\"30.5633\" height=\"31.1192\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.1114\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2866\"/>\\n<feOffset dy=\"1.6671\"/>\\n<feGaussianBlur stdDeviation=\"1.6671\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2866\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2866\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2866\" x1=\"17.7824\" y1=\"4.4163e-07\" x2=\"19.2643\" y2=\"35.5648\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2866\" x1=\"13.6827\" y1=\"7.05176\" x2=\"13.6827\" y2=\"28.517\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2866\" x1=\"26.504\" y1=\"11.3251\" x2=\"26.504\" y2=\"24.6619\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_167_2866\" x1=\"17.7824\" y1=\"0\" x2=\"17.7824\" y2=\"35.5648\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2866\">\\n<rect width=\"35.5648\" height=\"35.5648\" rx=\"8.89119\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m9u9o8\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:123,name:\"Company logo\",svg:'<svg width=\"123\" height=\"37\" viewBox=\"0 0 123 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2874)\">\\n<g clip-path=\"url(#clip0_167_2874)\">\\n<rect width=\"36.2209\" height=\"36.2209\" rx=\"9.05521\" fill=\"#155EEF\"/>\\n<rect width=\"36.2209\" height=\"36.2209\" fill=\"url(#paint0_linear_167_2874)\"/>\\n<g filter=\"url(#filter1_d_167_2874)\">\\n<path d=\"M20.0652 24.1768C18.2645 23.508 16.4123 23.4051 14.7145 23.8681C13.5312 24.1768 12.3993 24.7942 11.3703 25.5659L10.65 26.1833L10.4442 26.3891L10.9072 26.8007C10.9587 26.8007 10.9587 26.8522 11.0101 26.9036C11.113 27.0065 11.2159 27.058 11.3703 27.1609L11.679 27.3667L11.9877 27.1094C12.0391 27.058 12.142 26.9551 12.2449 26.9036C13.171 26.1319 14.2 25.6174 15.2804 25.3601C16.6695 25 18.1616 25.0514 19.6536 25.6174C20.8884 26.0804 23.4094 26.6464 26.4449 25.3601L26.5478 25.3087L26.7021 25.1543C26.7021 25.1029 26.7536 25.1029 26.805 25.0514C27.0623 24.7427 27.3195 24.434 27.5253 24.0739L28.5543 22.479L26.9079 23.4051C24.4898 24.7427 22.2775 25 20.0652 24.1768Z\" fill=\"url(#paint1_linear_167_2874)\"/>\\n<path d=\"M13.0169 18.6204C14.406 18.2603 15.898 18.3117 17.39 18.8777C19.0364 19.4951 23.2553 20.3697 27.9886 16.0994L29.0176 15.0705L28.9147 14.8132C28.8632 14.6074 28.7603 14.3502 28.6574 14.0929L28.4002 13.3726L27.8857 13.8871C27.8342 13.99 27.7313 14.0415 27.6284 14.1444C25.3647 16.4596 21.8661 18.8262 17.8531 17.3857C16.0524 16.7168 14.2002 16.6139 12.5024 17.077C10.856 17.54 9.41541 18.4146 8.07773 19.6494V19.598L7.306 20.4212C7.306 20.4726 7.25456 20.4726 7.20311 20.5241L7.04875 20.6784L7.1002 20.8842C7.15165 21.1415 7.25455 21.3987 7.306 21.6559L7.61469 22.4791L8.12919 21.8103C8.18064 21.7074 8.28353 21.656 8.33498 21.5531C9.41541 20.5755 10.9074 19.1864 13.0169 18.6204Z\" fill=\"url(#paint2_linear_167_2874)\"/>\\n<path d=\"M8.0263 17.6942C9.20963 16.4595 10.5473 15.6877 11.9879 15.2761C13.377 14.916 14.869 14.9674 16.3611 15.5334C20.9915 17.2312 25.0045 14.4529 26.7538 12.9609L27.4226 12.2921L27.6799 12.0863L27.4741 11.7776C27.3197 11.6232 27.2168 11.4174 27.0625 11.2116L26.7538 10.8L26.3936 11.1602C26.3422 11.2116 26.2393 11.3145 26.1879 11.366C24.027 13.4239 20.6828 15.5334 16.8755 14.0928C15.0748 13.424 13.2227 13.3211 11.5248 13.7841C10.4444 14.0928 9.41542 14.6073 8.38643 15.2761L7.306 16.1508C7.2031 16.2537 7.15165 16.3051 7.04875 16.408L6.94586 16.5109V16.6653C6.89441 17.0254 6.89441 17.3855 6.84296 17.6942L6.7915 18.9805L7.66615 18.0544C7.76904 17.9515 7.87195 17.7971 8.0263 17.6942Z\" fill=\"url(#paint3_linear_167_2874)\"/>\\n<path d=\"M21.5576 27.6754C21.4033 27.624 21.3004 27.5725 21.146 27.521C19.3453 26.8522 17.4931 26.7493 15.7953 27.2124C15.4352 27.3153 15.075 27.4181 14.7149 27.5725L13.4801 28.1384L13.1714 28.2928L14.2004 28.6529C14.5091 28.7558 14.8178 28.8587 15.1265 28.9616L15.2808 29.0131L15.4352 28.9616C15.5895 28.9102 15.7439 28.8073 15.8982 28.8073C16.0011 28.8073 16.104 28.7558 16.2069 28.7044C17.4417 28.3957 18.7794 28.3957 20.2199 28.8587C20.3743 28.9102 20.4772 28.9616 20.6315 29.0131L20.8888 29.116L21.0431 29.0645C21.4033 28.9616 21.8149 28.8587 22.1236 28.7044L23.5641 28.1899L22.0721 27.8297C21.9178 27.7783 21.712 27.7268 21.5576 27.6754Z\" fill=\"url(#paint4_linear_167_2874)\"/>\\n<path d=\"M29.4295 17.0254L28.6578 17.7972C28.5549 17.9001 28.452 18.003 28.3491 18.1059C26.2397 20.1124 22.8441 22.2733 19.0368 20.8327C17.2361 20.1638 15.3839 20.0609 13.6861 20.524C12.0912 20.987 10.6506 21.8102 9.36436 23.045L8.69552 23.7653L8.48973 24.0225L8.69552 24.3312C8.84987 24.537 8.95277 24.6914 9.05567 24.8972L9.36436 25.3602L9.72451 24.8972C9.77596 24.8457 9.87885 24.7428 9.9303 24.6914C11.1651 23.3537 12.5028 22.5305 14.0462 22.1189C15.4354 21.7588 16.9274 21.8102 18.4194 22.3761C19.7056 22.8392 21.0433 22.9936 22.381 22.8392C24.7477 22.582 27.1143 21.2443 28.8636 19.7523C28.9665 19.6494 29.0694 19.5979 29.1723 19.495L29.3267 19.3407V19.1863C29.3267 18.8776 29.3781 18.5175 29.3781 18.2088L29.4295 17.0254Z\" fill=\"url(#paint5_linear_167_2874)\"/>\\n<path d=\"M9.87805 12.2922C10.1867 12.1379 10.5469 12.035 10.8556 11.9321C12.2447 11.5719 13.7367 11.6234 15.2288 12.1893C16.2063 12.5495 17.1838 12.7038 18.2643 12.7038C20.4251 12.7038 22.586 11.9321 24.5925 10.44L25.6215 9.61685L25.1585 9.2567C25.0041 9.10235 24.7983 8.94801 24.5925 8.84511L24.2838 8.63932L24.0266 8.84511C23.9237 8.89656 23.8722 8.99946 23.7693 9.05091C21.0425 11.1089 18.3157 11.6748 15.7433 10.6973C13.8911 10.0284 12.0389 9.8741 10.1867 10.44C10.0324 10.4915 9.87805 10.5429 9.67225 10.5944L9.56936 10.6458L9.41501 10.8002C9.41501 10.8516 9.36357 10.8516 9.31212 10.9031C9.10632 11.2118 8.84907 11.469 8.64327 11.7777L7.66574 13.2697L9.26067 12.4466C9.51791 12.4466 9.7237 12.3437 9.87805 12.2922Z\" fill=\"url(#paint6_linear_167_2874)\"/>\\n<path d=\"M14.0973 8.79358L14.2516 8.84503C14.9205 9.10228 15.9495 9.35953 17.2357 9.35953C18.5734 9.35953 19.8596 9.05083 21.1458 8.53634L22.7408 7.7646L21.6603 7.40446C21.3516 7.30156 21.0429 7.19867 20.6828 7.14722H20.5284L20.3741 7.19865C20.2198 7.2501 20.0654 7.35301 19.911 7.40446C18.3676 7.9704 16.8241 8.0733 15.3321 7.66171C15.1777 7.61026 15.0234 7.5588 14.869 7.50735L14.7147 7.4559L14.5603 7.50735C14.2516 7.61025 13.943 7.71315 13.6343 7.8675L12.4509 8.38199L13.6857 8.74213C13.7886 8.69068 13.9429 8.74213 14.0973 8.79358Z\" fill=\"url(#paint7_linear_167_2874)\"/>\\n</g>\\n</g>\\n<rect x=\"0.754601\" y=\"0.754601\" width=\"34.7117\" height=\"34.7117\" rx=\"8.30061\" stroke=\"url(#paint8_linear_167_2874)\" stroke-width=\"1.5092\"/>\\n</g>\\n<path d=\"M107.718 10.5379C107.405 10.2255 107.011 10.0693 106.536 10.0693C106.061 10.0693 105.66 10.2255 105.334 10.5379C105.021 10.8368 104.865 11.2171 104.865 11.6789C104.865 12.1407 105.021 12.5278 105.334 12.8402C105.66 13.1526 106.061 13.3088 106.536 13.3088C107.011 13.3088 107.405 13.1526 107.718 12.8402C108.03 12.5278 108.186 12.1407 108.186 11.6789C108.186 11.2171 108.03 10.8368 107.718 10.5379Z\" fill=\"white\"/>\\n<path d=\"M84.6572 21.9679C84.1411 21.5332 83.8558 20.9628 83.8015 20.2565L80.8065 20.2157C80.8201 21.1258 81.0781 21.9475 81.5807 22.681C82.0833 23.4145 82.776 23.9917 83.6589 24.4128C84.5553 24.8203 85.574 25.024 86.715 25.024C87.7745 25.024 88.7253 24.8271 89.5674 24.4332C90.4231 24.0393 91.0887 23.5027 91.5641 22.8236C92.0395 22.1309 92.2772 21.3499 92.2772 20.4806C92.2772 19.5841 92.0734 18.871 91.6659 18.3413C91.272 17.798 90.7491 17.3973 90.0971 17.1392C89.4451 16.8675 88.6438 16.6434 87.693 16.4668C86.7557 16.2903 86.063 16.1409 85.6148 16.0186C85.1666 15.8828 84.8202 15.713 84.5757 15.5093C84.3312 15.2919 84.209 14.9931 84.209 14.6128C84.209 14.0831 84.4127 13.6756 84.8202 13.3903C85.2277 13.1051 85.771 12.9625 86.4501 12.9625C87.1836 12.9625 87.7745 13.1526 88.2227 13.533C88.6709 13.8997 88.929 14.3887 88.9969 14.9999H91.9919C91.9783 14.1442 91.7271 13.3768 91.2381 12.6976C90.7627 12.0185 90.1039 11.4887 89.2618 11.1084C88.4332 10.7145 87.496 10.5176 86.4501 10.5176C85.4314 10.5176 84.5146 10.7077 83.6996 11.088C82.8982 11.4548 82.2666 11.9641 81.8048 12.6161C81.3566 13.2681 81.1325 14.0084 81.1325 14.8369C81.1325 15.747 81.3294 16.4804 81.7233 17.0373C82.1308 17.5806 82.6537 17.9949 83.2921 18.2802C83.9305 18.5518 84.7183 18.7759 85.6555 18.9525C86.6063 19.1427 87.3058 19.3057 87.7541 19.4415C88.2159 19.5637 88.5691 19.7403 88.8135 19.9712C89.0716 20.1885 89.2007 20.4874 89.2007 20.8677C89.2007 21.411 88.9697 21.8389 88.5079 22.1513C88.0597 22.4501 87.4756 22.5995 86.7557 22.5995C85.8864 22.5995 85.1869 22.389 84.6572 21.9679Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.4917 10.6398L45.2759 24.9018H48.4339L49.5341 21.7845H54.9536L56.0538 24.9018H59.3341L54.159 10.6398H50.4917ZM50.3491 19.3192L52.2235 13.8997L54.1183 19.3192H50.3491Z\" fill=\"white\"/>\\n<path d=\"M99.4489 14.3072C100.685 14.3072 101.697 14.6875 102.485 15.4481C103.286 16.2088 103.687 17.4652 103.687 19.2174V24.9018H100.814V19.3396C100.814 18.4703 100.637 17.8115 100.284 17.3633C99.9311 16.9015 99.4014 16.6706 98.695 16.6706C97.9616 16.6706 97.3843 16.9219 96.9632 17.4244C96.5557 17.927 96.352 18.6265 96.352 19.523V24.9018H93.4792V10.6398H96.352V15.713C97.1262 14.7758 98.1585 14.3072 99.4489 14.3072Z\" fill=\"white\"/>\\n<path d=\"M113.102 13.9404C113.102 13.6416 113.17 13.4243 113.305 13.2885C113.441 13.1526 113.659 13.0847 113.957 13.0847H115.73V10.6398H113.387C112.341 10.6398 111.553 10.8911 111.024 11.3937C110.494 11.8826 110.229 12.5889 110.229 13.5126V14.4294H108.497V16.854H110.229V24.9018H113.102V16.854H117.641V24.9018H120.514V16.854H122.775V14.4294H120.514V10.6398H117.641V14.4294H113.102V13.9404Z\" fill=\"white\"/>\\n<path d=\"M107.962 14.4294H105.089V24.9018H107.962V14.4294Z\" fill=\"white\"/>\\n<path d=\"M62.8841 10.6398H60.0114V24.9018H62.8841V10.6398Z\" fill=\"white\"/>\\n<path d=\"M65.1509 14.4294H63.4191V16.854H65.1509V24.9018H68.0237V16.854H70.2852V14.4294H68.0237V10.6398H65.1509V14.4294Z\" fill=\"white\"/>\\n<path d=\"M74.0086 23.5978H76.6165V20.4195H79.7938V17.8116H76.6165V14.6332L76.6155 14.6331H74.0076V17.8116H70.8292V20.4195H74.0076V23.5978L74.0086 23.5978Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2874\" x=\"-2.2638\" y=\"-2.2638\" width=\"40.7483\" height=\"43.0122\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.754601\"/>\\n<feGaussianBlur stdDeviation=\"0.377301\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2874\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.754601\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2874\"/>\\n<feOffset dy=\"2.2638\"/>\\n<feGaussianBlur stdDeviation=\"1.5092\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2874\" result=\"effect2_dropShadow_167_2874\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2874\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.2638\"/>\\n<feGaussianBlur stdDeviation=\"1.1319\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2874\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.2638\"/>\\n<feGaussianBlur stdDeviation=\"1.1319\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2874\" result=\"effect4_innerShadow_167_2874\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.754601\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2874\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2874\" result=\"effect5_innerShadow_167_2874\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2874\" x=\"4.5277\" y=\"3.96164\" width=\"27.1658\" height=\"31.6933\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.1319\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2874\"/>\\n<feOffset dy=\"1.69785\"/>\\n<feGaussianBlur stdDeviation=\"1.69785\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2874\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2874\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2874\" x1=\"18.1104\" y1=\"4.49778e-07\" x2=\"19.6196\" y2=\"36.2209\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_167_2874\" x1=\"18.1105\" y1=\"7.14722\" x2=\"18.1105\" y2=\"29.116\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_167_2874\" x1=\"18.1104\" y1=\"0\" x2=\"18.1104\" y2=\"36.2209\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2874\">\\n<rect width=\"36.2209\" height=\"36.2209\" rx=\"9.05521\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k4nstj\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:163,name:\"Company logo\",svg:'<svg width=\"163\" height=\"36\" viewBox=\"0 0 163 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2881)\">\\n<g clip-path=\"url(#clip0_167_2881)\">\\n<rect width=\"35.0852\" height=\"35.0852\" rx=\"8.7713\" fill=\"#444CE7\"/>\\n<rect width=\"35.0852\" height=\"35.0852\" fill=\"url(#paint0_linear_167_2881)\"/>\\n<g filter=\"url(#filter1_d_167_2881)\">\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.93026 20.0658C9.42755 20.5602 9.42754 21.3618 8.93024 21.8562L8.90477 21.8815C8.40748 22.376 7.60121 22.376 7.10392 21.8815C6.60663 21.3871 6.60664 20.5855 7.10393 20.0911L7.1294 20.0658C7.6267 19.5713 8.43297 19.5713 8.93026 20.0658Z\" fill=\"url(#paint1_linear_167_2881)\"/>\\n<path opacity=\"0.7\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.9171 20.4469C15.4135 20.9422 15.412 21.7438 14.9139 22.2374L11.3865 25.7316C10.8884 26.2252 10.0821 26.2237 9.5857 25.7284C9.08931 25.2331 9.09076 24.4315 9.58895 23.9379L13.1163 20.4437C13.6145 19.9501 14.4207 19.9516 14.9171 20.4469Z\" fill=\"url(#paint2_linear_167_2881)\"/>\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.7047 26.4622C20.0948 25.8804 20.8854 25.7232 21.4706 26.1111L21.547 26.1617C22.1322 26.5496 22.2903 27.3356 21.9002 27.9174C21.5101 28.4992 20.7195 28.6564 20.1343 28.2685L20.0579 28.2179C19.4727 27.83 19.3146 27.044 19.7047 26.4622Z\" fill=\"url(#paint3_linear_167_2881)\"/>\\n<path opacity=\"0.7\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.1083 19.9896C28.6056 20.484 28.6056 21.2856 28.1083 21.78L26.3765 23.5019C25.8792 23.9963 25.0729 23.9963 24.5756 23.5019C24.0783 23.0074 24.0783 22.2058 24.5756 21.7114L26.3074 19.9896C26.8047 19.4952 27.611 19.4952 28.1083 19.9896Z\" fill=\"url(#paint4_linear_167_2881)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.1341 13.6214C28.6314 14.1158 28.6314 14.9175 28.1341 15.4119L15.3364 28.1356C14.8391 28.6301 14.0329 28.6301 13.5356 28.1356C13.0383 27.6412 13.0383 26.8396 13.5356 26.3452L26.3332 13.6214C26.8305 13.127 27.6368 13.127 28.1341 13.6214Z\" fill=\"url(#paint5_linear_167_2881)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7133 9.70944C26.2106 10.2039 26.2106 11.0055 25.7133 11.4999L18.353 18.8176C17.8557 19.3121 17.0495 19.3121 16.5522 18.8176C16.0549 18.3232 16.0549 17.5216 16.5522 17.0272L23.9124 9.70944C24.4097 9.21502 25.216 9.21502 25.7133 9.70944Z\" fill=\"url(#paint6_linear_167_2881)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.8294 7.22739C22.327 7.72148 22.3276 8.5231 21.8306 9.01785L12.3693 18.4372C11.8723 18.932 11.066 18.9325 10.5684 18.4384C10.0708 17.9443 10.0702 17.1427 10.5672 16.648L20.0285 7.2286C20.5255 6.73384 21.3318 6.7333 21.8294 7.22739Z\" fill=\"url(#paint7_linear_167_2881)\"/>\\n<path opacity=\"0.7\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4596 10.2427C12.956 10.738 12.9546 11.5396 12.4565 12.0332L8.75089 15.7047C8.25274 16.1983 7.44647 16.1969 6.95003 15.7016C6.4536 15.2063 6.45499 14.4047 6.95313 13.9112L10.6587 10.2396C11.1569 9.74607 11.9631 9.74745 12.4596 10.2427Z\" fill=\"url(#paint8_linear_167_2881)\"/>\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.729 6.57861C15.4322 6.57861 16.0024 7.14544 16.0024 7.84466V7.97126C16.0024 8.67048 15.4322 9.23731 14.729 9.23731C14.0257 9.23731 13.4556 8.67048 13.4556 7.97126V7.84466C13.4556 7.14544 14.0257 6.57861 14.729 6.57861Z\" fill=\"url(#paint9_linear_167_2881)\"/>\\n</g>\\n</g>\\n<rect x=\"0.730942\" y=\"0.730942\" width=\"33.6233\" height=\"33.6233\" rx=\"8.04036\" stroke=\"url(#paint10_linear_167_2881)\" stroke-width=\"1.46188\"/>\\n</g>\\n<path d=\"M55.7372 17.3716C56.2306 18.0426 56.4871 18.8715 56.4871 19.8188C56.4871 20.6477 56.27 21.3779 55.8556 22.0292C55.4214 22.7002 54.8491 23.2133 54.0991 23.5685C53.3492 23.9435 52.5006 24.1211 51.5533 24.1211H43.8564V8.53015H51.0401C52.5203 8.53015 53.6847 8.90512 54.553 9.65507C55.4017 10.405 55.8358 11.3918 55.8358 12.6351C55.8358 13.464 55.6385 14.1942 55.2438 14.7863C54.8491 15.3783 54.2965 15.8125 53.6057 16.0493C54.5136 16.2467 55.224 16.7006 55.7372 17.3716ZM46.9352 14.9442H50.0336C50.9415 14.9442 51.6125 14.8258 52.0466 14.5495C52.4808 14.2732 52.6979 13.8587 52.6979 13.2864C52.6979 12.6943 52.4611 12.2404 52.0072 11.9444C51.5533 11.6681 50.8625 11.5102 49.935 11.5102H46.9352V14.9442ZM52.619 20.6872C53.0729 20.3911 53.3097 19.9372 53.3097 19.3057C53.3097 18.7334 53.0729 18.2992 52.6387 18.0229C52.2045 17.7466 51.5138 17.6084 50.5862 17.6084H46.9352V21.1411H50.5073C51.4546 21.1411 52.1453 21.0029 52.619 20.6872Z\" fill=\"white\"/>\\n<path d=\"M58.1122 12.0825C57.757 11.7273 57.5793 11.2931 57.5793 10.7405C57.5793 10.2274 57.757 9.79322 58.1122 9.43798C58.4674 9.10248 58.9016 8.92486 59.4542 8.92486C59.9871 8.92486 60.4212 9.10248 60.7765 9.43798C61.1317 9.79322 61.3093 10.2274 61.3093 10.7405C61.3093 11.2734 61.1317 11.7076 60.7765 12.0628C60.4212 12.418 59.9871 12.5956 59.4542 12.5956C58.9016 12.5956 58.4674 12.4378 58.1122 12.0825ZM57.9741 13.8587H60.9146V24.1211H57.9741V13.8587Z\" fill=\"white\"/>\\n<path d=\"M64.7492 23.7462C63.9203 23.2725 63.269 22.6212 62.8151 21.7924C62.3414 20.9635 62.1244 20.0359 62.1244 18.9702C62.1244 17.9242 62.3414 16.9966 62.8151 16.1678C63.269 15.3389 63.9203 14.7073 64.7492 14.2337C65.5781 13.7798 66.5254 13.5429 67.5911 13.5429C68.6568 13.5429 69.6041 13.7798 70.433 14.2337C71.2619 14.7073 71.8934 15.3389 72.367 16.1678C72.8407 16.9966 73.0775 17.9242 73.0775 18.9702C73.0775 20.0359 72.8407 20.9635 72.367 21.7924C71.8934 22.6212 71.2421 23.2725 70.4132 23.7462C69.5843 24.2198 68.637 24.4369 67.5911 24.4369C66.5254 24.4369 65.5781 24.2198 64.7492 23.7462ZM69.4265 21.0819C69.9001 20.5293 70.1369 19.8386 70.1369 18.9702C70.1369 18.1216 69.9001 17.4308 69.4265 16.8782C68.9528 16.3454 68.341 16.0691 67.5911 16.0691C66.8411 16.0691 66.2491 16.3454 65.7754 16.8782C65.3018 17.4308 65.0649 18.1216 65.0649 18.9702C65.0649 19.8386 65.3018 20.5293 65.7754 21.0819C66.2491 21.6345 66.8411 21.9108 67.5911 21.9108C68.341 21.9108 68.9528 21.6345 69.4265 21.0819Z\" fill=\"white\"/>\\n<path d=\"M75.2772 23.4896C74.3892 22.8581 73.9352 21.97 73.9155 20.8451H76.8166C76.8166 21.3384 77.0337 21.7134 77.4284 21.9897C77.8231 22.266 78.3362 22.4042 78.9678 22.4042C79.5006 22.4042 79.9348 22.3055 80.2506 22.0687C80.5663 21.8318 80.744 21.5555 80.744 21.2398C80.744 20.8648 80.5466 20.6082 80.1519 20.4503C79.7572 20.3122 79.1651 20.1741 78.3362 20.0556C77.4679 19.9372 76.7574 19.7991 76.2048 19.6412C75.6522 19.4833 75.1588 19.1873 74.7641 18.7531C74.3694 18.3189 74.1721 17.7071 74.1721 16.9177C74.1721 15.8915 74.5865 15.0626 75.4549 14.4508C76.3232 13.8587 77.5073 13.5429 79.0072 13.5429C80.369 13.5429 81.4544 13.8785 82.2833 14.5297C83.1122 15.181 83.5661 16.0691 83.6648 17.194H80.7834C80.744 16.7006 80.5663 16.3059 80.2308 16.0099C79.8756 15.7336 79.4217 15.5757 78.8296 15.5757C78.277 15.5757 77.8626 15.6941 77.5666 15.9112C77.2508 16.148 77.1126 16.4441 77.1126 16.7993C77.1126 17.1545 77.2903 17.4111 77.6652 17.5492C78.0402 17.7071 78.6323 17.8255 79.4217 17.9045C80.29 18.0229 81.0203 18.1808 81.5926 18.3387C82.1452 18.4965 82.6386 18.8123 83.053 19.2465C83.4477 19.6807 83.6648 20.3122 83.6648 21.1411C83.6648 22.1673 83.2306 22.9567 82.382 23.5488C81.5334 24.1409 80.369 24.4369 78.8888 24.4369C77.3495 24.4369 76.1456 24.1211 75.2772 23.4896Z\" fill=\"white\"/>\\n<path d=\"M84.449 25.4829H85.4555C86.087 25.5026 86.6001 25.4237 86.9948 25.2461C87.3698 25.0684 87.7251 24.7527 88.0606 24.279L83.4227 13.8587H86.5015L89.5802 20.7069L92.1458 13.8587H95.2048L91.0209 24.8711C90.5077 26.0749 89.8367 26.9038 88.9881 27.3775C88.1395 27.8511 87.054 28.0682 85.712 28.0682H84.449V25.4829Z\" fill=\"white\"/>\\n<path d=\"M95.6954 13.8587H98.6162V15.3389C98.9715 14.7863 99.4254 14.3324 100.017 14.0166C100.61 13.7008 101.3 13.5429 102.09 13.5429C104.616 13.5429 105.899 15.1415 105.899 18.3189V24.1211H102.938V18.4768C102.938 17.7269 102.761 17.1545 102.405 16.7204C102.05 16.2862 101.557 16.0691 100.925 16.0691C100.215 16.0691 99.6425 16.3256 99.228 16.8388C98.8136 17.3519 98.6162 18.0229 98.6162 18.8715V24.1211H95.6954V13.8587Z\" fill=\"white\"/>\\n<path d=\"M111.717 24.2001C110.927 24.2001 110.316 24.1211 109.881 23.9633C109.428 23.8054 109.092 23.5291 108.895 23.1146C108.678 22.7002 108.579 22.1081 108.599 21.3582V16.523H106.408L106.593 13.8587H108.599V11.0958H111.519V13.8587H114.204L114.02 16.523H111.519V19.8583C111.519 20.3714 111.539 20.7266 111.579 20.9437C111.618 21.1806 111.737 21.3384 111.894 21.4371C112.052 21.5358 112.309 21.5753 112.684 21.5753C112.96 21.5753 113.748 21.5555 114.202 21.5161L114.02 24.1014C113.131 24.1803 112.21 24.2001 111.717 24.2001Z\" fill=\"white\"/>\\n<path d=\"M115.307 8.53015H118.228V15.3191C118.584 14.7665 119.037 14.3324 119.63 14.0166C120.222 13.7008 120.912 13.5429 121.702 13.5429C124.228 13.5429 125.511 15.1415 125.511 18.2992V24.1211H122.55V18.4373C122.55 17.6874 122.373 17.1151 122.018 16.7006C121.662 16.2862 121.169 16.0691 120.537 16.0691C119.827 16.0691 119.255 16.3256 118.84 16.819C118.426 17.3322 118.228 18.0032 118.228 18.832V24.1211H115.307V8.53015Z\" fill=\"white\"/>\\n<path d=\"M129.193 23.7462C128.364 23.2725 127.732 22.6212 127.279 21.7924C126.825 20.9635 126.608 20.0359 126.608 18.9702C126.608 17.9242 126.825 16.9966 127.279 16.1678C127.732 15.3389 128.364 14.7073 129.193 14.2337C130.002 13.7798 130.93 13.5429 131.976 13.5429C132.883 13.5429 133.693 13.7798 134.423 14.214C135.153 14.6481 135.725 15.2797 136.159 16.0888C136.574 16.9177 136.791 17.8453 136.791 18.911V19.8583H129.588C129.647 20.549 129.884 21.0819 130.278 21.4766C130.673 21.8713 131.245 22.0489 131.995 22.0489C132.489 22.0489 132.903 21.9305 133.219 21.6937C133.535 21.4569 133.732 21.1608 133.811 20.7859H136.732C136.574 21.891 136.041 22.7791 135.173 23.4501C134.304 24.1211 133.239 24.4369 131.976 24.4369C130.93 24.4369 130.002 24.2198 129.193 23.7462ZM133.85 18.0624C133.811 17.4703 133.633 16.9966 133.278 16.6217C132.923 16.2664 132.449 16.0691 131.857 16.0691C131.186 16.0691 130.673 16.2467 130.298 16.6019C129.923 16.9572 129.686 17.4506 129.607 18.0624H133.85Z\" fill=\"white\"/>\\n<path d=\"M138.99 23.4896C138.101 22.8581 137.648 21.97 137.628 20.8451H140.529C140.529 21.3384 140.746 21.7134 141.141 21.9897C141.535 22.266 142.049 22.4042 142.68 22.4042C143.213 22.4042 143.647 22.3055 143.963 22.0687C144.279 21.8318 144.456 21.5555 144.456 21.2398C144.456 20.8648 144.259 20.6082 143.864 20.4503C143.469 20.3122 142.877 20.1741 142.049 20.0556C141.18 19.9372 140.47 19.7991 139.917 19.6412C139.364 19.4833 138.871 19.1873 138.476 18.7531C138.082 18.3189 137.884 17.7071 137.884 16.9177C137.884 15.8915 138.299 15.0626 139.167 14.4508C140.035 13.8587 141.22 13.5429 142.72 13.5429C144.081 13.5429 145.167 13.8785 145.996 14.5297C146.824 15.181 147.278 16.0691 147.377 17.194H144.496C144.456 16.7006 144.279 16.3059 143.943 16.0099C143.588 15.7336 143.134 15.5757 142.542 15.5757C141.989 15.5757 141.575 15.6941 141.279 15.9112C140.963 16.148 140.825 16.4441 140.825 16.7993C140.825 17.1545 141.003 17.4111 141.378 17.5492C141.752 17.7071 142.345 17.8255 143.134 17.9045C144.002 18.0229 144.733 18.1808 145.305 18.3387C145.857 18.4965 146.351 18.8123 146.765 19.2465C147.16 19.6807 147.377 20.3122 147.377 21.1411C147.377 22.1673 146.943 22.9567 146.094 23.5488C145.246 24.1409 144.081 24.4369 142.601 24.4369C141.062 24.4369 139.858 24.1211 138.99 23.4896Z\" fill=\"white\"/>\\n<path d=\"M148.718 12.0825C148.363 11.7273 148.185 11.2931 148.185 10.7405C148.185 10.2274 148.363 9.79322 148.718 9.43798C149.073 9.10248 149.507 8.92486 150.06 8.92486C150.593 8.92486 151.027 9.10248 151.382 9.43798C151.737 9.79322 151.915 10.2274 151.915 10.7405C151.915 11.2734 151.737 11.7076 151.382 12.0628C151.027 12.418 150.593 12.5956 150.06 12.5956C149.507 12.5956 149.073 12.4378 148.718 12.0825ZM148.58 13.8587H151.52V24.1211H148.58V13.8587Z\" fill=\"white\"/>\\n<path d=\"M161.118 23.4896C162.006 22.8581 162.46 21.97 162.479 20.8451H159.578C159.578 21.3384 159.361 21.7134 158.966 21.9897C158.572 22.266 158.059 22.4042 157.427 22.4042C156.894 22.4042 156.46 22.3055 156.144 22.0687C155.828 21.8318 155.651 21.5555 155.651 21.2398C155.651 20.8648 155.848 20.6082 156.243 20.4504C156.638 20.3122 157.23 20.1741 158.059 20.0556C158.927 19.9372 159.637 19.7991 160.19 19.6412C160.743 19.4833 161.236 19.1873 161.631 18.7531C162.025 18.3189 162.223 17.7071 162.223 16.9177C162.223 15.8915 161.808 15.0626 160.94 14.4508C160.072 13.8587 158.887 13.543 157.388 13.543C156.026 13.543 154.94 13.8785 154.111 14.5297C153.283 15.181 152.829 16.0691 152.73 17.194H155.611C155.651 16.7006 155.828 16.3059 156.164 16.0099C156.519 15.7336 156.973 15.5757 157.565 15.5757C158.118 15.5757 158.532 15.6941 158.828 15.9112C159.144 16.148 159.282 16.4441 159.282 16.7993C159.282 17.1545 159.105 17.4111 158.73 17.5492C158.355 17.7071 157.763 17.8255 156.973 17.9045C156.105 18.0229 155.375 18.1808 154.802 18.3387C154.25 18.4965 153.756 18.8123 153.342 19.2465C152.947 19.6807 152.73 20.3122 152.73 21.1411C152.73 22.1673 153.164 22.9567 154.013 23.5488C154.861 24.1409 156.026 24.4369 157.506 24.4369C159.045 24.4369 160.249 24.1211 161.118 23.4896Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2881\" x=\"-2.19282\" y=\"-2.19283\" width=\"39.4706\" height=\"41.6637\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.730942\"/>\\n<feGaussianBlur stdDeviation=\"0.365471\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2881\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.730942\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2881\"/>\\n<feOffset dy=\"2.19283\"/>\\n<feGaussianBlur stdDeviation=\"1.46188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2881\" result=\"effect2_dropShadow_167_2881\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2881\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.19283\"/>\\n<feGaussianBlur stdDeviation=\"1.09641\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2881\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.19283\"/>\\n<feGaussianBlur stdDeviation=\"1.09641\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2881\" result=\"effect4_innerShadow_167_2881\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.730942\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2881\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2881\" result=\"effect5_innerShadow_167_2881\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2881\" x=\"4.38579\" y=\"3.83741\" width=\"26.3139\" height=\"30.6995\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.09641\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2881\"/>\\n<feOffset dy=\"1.64462\"/>\\n<feGaussianBlur stdDeviation=\"1.64462\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2881\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2881\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2881\" x1=\"17.5426\" y1=\"4.35675e-07\" x2=\"19.0045\" y2=\"35.0852\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2881\" x1=\"8.01709\" y1=\"19.6949\" x2=\"8.01709\" y2=\"22.2524\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2881\" x1=\"12.2514\" y1=\"20.0745\" x2=\"12.2514\" y2=\"26.1008\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_167_2881\" x1=\"20.8025\" y1=\"25.8983\" x2=\"20.8025\" y2=\"28.4813\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_167_2881\" x1=\"26.3419\" y1=\"19.6188\" x2=\"26.3419\" y2=\"23.8727\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_167_2881\" x1=\"20.8348\" y1=\"13.2506\" x2=\"20.8348\" y2=\"28.5064\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_167_2881\" x1=\"21.1327\" y1=\"9.33862\" x2=\"21.1327\" y2=\"19.1884\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_167_2881\" x1=\"16.1989\" y1=\"6.85718\" x2=\"16.1989\" y2=\"18.8086\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_167_2881\" x1=\"9.7048\" y1=\"9.87036\" x2=\"9.7048\" y2=\"16.074\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_167_2881\" x1=\"14.729\" y1=\"6.57861\" x2=\"14.729\" y2=\"9.23731\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_167_2881\" x1=\"17.5426\" y1=\"0\" x2=\"17.5426\" y2=\"35.0852\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2881\">\\n<rect width=\"35.0852\" height=\"35.0852\" rx=\"8.7713\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w1ezur\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:125,name:\"Company logo\",svg:'<svg width=\"125\" height=\"37\" viewBox=\"0 0 125 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ddiii_167_2896)\">\\n<g clip-path=\"url(#clip0_167_2896)\">\\n<rect width=\"36.3636\" height=\"36.3636\" rx=\"9.09091\" fill=\"#155EEF\"/>\\n<rect width=\"36.3636\" height=\"36.3636\" fill=\"url(#paint0_linear_167_2896)\"/>\\n<g filter=\"url(#filter1_d_167_2896)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.182 29.5454C24.458 29.5454 29.5456 24.4577 29.5456 18.1817C29.5456 11.9058 24.458 6.81812 18.182 6.81812C11.906 6.81812 6.81836 11.9058 6.81836 18.1817C6.81836 24.4577 11.906 29.5454 18.182 29.5454ZM21.7271 12.1118C21.8996 11.4988 21.3048 11.1364 20.7615 11.5234L13.1781 16.9258C12.5889 17.3455 12.6816 18.1817 13.3173 18.1817H15.3142V18.1663H19.2061L16.035 19.2852L14.6369 24.2517C14.4644 24.8647 15.0592 25.2271 15.6025 24.8401L23.1859 19.4377C23.7751 19.018 23.6823 18.1817 23.0467 18.1817H20.0184L21.7271 12.1118Z\" fill=\"url(#paint1_linear_167_2896)\"/>\\n</g>\\n</g>\\n<rect x=\"0.757576\" y=\"0.757576\" width=\"34.8485\" height=\"34.8485\" rx=\"8.33333\" stroke=\"url(#paint2_linear_167_2896)\" stroke-width=\"1.51515\"/>\\n</g>\\n<path d=\"M105.3 12.7818C105.64 13.0929 106.05 13.2484 106.531 13.2484C107.026 13.2484 107.436 13.0929 107.761 12.7818C108.086 12.4707 108.249 12.0606 108.249 11.5515C108.249 11.0424 108.086 10.6323 107.761 10.3212C107.436 10.01 107.026 9.85449 106.531 9.85449C106.05 9.85449 105.64 10.01 105.3 10.3212C104.975 10.6323 104.813 11.0424 104.813 11.5515C104.813 12.0606 104.975 12.4707 105.3 12.7818Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M54.5334 24.5333C53.8687 24.8444 53.091 24.9999 52.2 24.9999H45.4546V10.1515H52.1152C53.0202 10.1515 53.8051 10.307 54.4697 10.6181C55.1485 10.9151 55.6718 11.3464 56.0394 11.9121C56.4213 12.4636 56.6122 13.1282 56.6122 13.906V14.1181C56.6122 14.7969 56.4849 15.3555 56.2303 15.7939C55.9758 16.2181 55.6718 16.5505 55.3182 16.7909C54.9788 17.0171 54.6536 17.1797 54.3425 17.2787V17.6606C54.6536 17.7454 54.993 17.908 55.3607 18.1484C55.7283 18.3747 56.0394 18.707 56.294 19.1454C56.5627 19.5838 56.697 20.1565 56.697 20.8636V21.0757C56.697 21.8959 56.5061 22.603 56.1243 23.1969C55.7425 23.7767 55.2122 24.2222 54.5334 24.5333ZM53.3455 19.2515C52.9778 18.9545 52.4829 18.806 51.8607 18.806H48.2546V22.4545H51.8607C52.4687 22.4545 52.9566 22.306 53.3243 22.009C53.7061 21.7121 53.897 21.2878 53.897 20.7363V20.5242C53.897 19.9727 53.7132 19.5484 53.3455 19.2515ZM53.2607 13.1424C52.893 12.8454 52.4122 12.6969 51.8182 12.6969H48.2546V16.2606H51.8182C52.398 16.2606 52.8718 16.1121 53.2394 15.8151C53.6213 15.5181 53.8122 15.108 53.8122 14.5848V14.3727C53.8122 13.8353 53.6283 13.4252 53.2607 13.1424Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.0118 25.2969C61.9653 25.2969 61.0249 25.0848 60.1906 24.6606C59.3562 24.2363 58.6986 23.6212 58.2178 22.8151C57.737 22.009 57.4966 21.0404 57.4966 19.909V19.5696C57.4966 18.4383 57.737 17.4696 58.2178 16.6636C58.6986 15.8575 59.3562 15.2424 60.1906 14.8181C61.0249 14.3939 61.9653 14.1818 63.0118 14.1818C64.0582 14.1818 64.9986 14.3939 65.833 14.8181C66.6673 15.2424 67.3249 15.8575 67.8057 16.6636C68.2865 17.4696 68.5269 18.4383 68.5269 19.5696V19.909C68.5269 21.0404 68.2865 22.009 67.8057 22.8151C67.3249 23.6212 66.6673 24.2363 65.833 24.6606C64.9986 25.0848 64.0582 25.2969 63.0118 25.2969ZM63.0118 22.9212C63.832 22.9212 64.5108 22.6595 65.0481 22.1363C65.5855 21.5989 65.8542 20.8353 65.8542 19.8454V19.6333C65.8542 18.6434 65.5855 17.8868 65.0481 17.3636C64.5249 16.8262 63.8461 16.5575 63.0118 16.5575C62.1916 16.5575 61.5128 16.8262 60.9754 17.3636C60.438 17.8868 60.1693 18.6434 60.1693 19.6333V19.8454C60.1693 20.8353 60.438 21.5989 60.9754 22.1363C61.5128 22.6595 62.1916 22.9212 63.0118 22.9212Z\" fill=\"white\"/>\\n<path d=\"M78.5375 24.9999C77.8446 24.9999 77.279 24.7878 76.8406 24.3636C76.4163 23.9252 76.2042 23.3454 76.2042 22.6242V16.6848H73.5739V14.4787H76.2042V11.2121H78.8769V14.4787H81.7618V16.6848H78.8769V22.1575C78.8769 22.5818 79.0749 22.7939 79.4709 22.7939H81.5072V24.9999H78.5375Z\" fill=\"white\"/>\\n<path d=\"M84.1175 24.406C84.9943 24.9999 86.1185 25.2969 87.4902 25.2969C88.8337 25.2969 89.9013 24.9999 90.6933 24.406C91.4993 23.7979 91.9024 22.9424 91.9024 21.8393C91.9024 21.104 91.7114 20.5242 91.3296 20.0999C90.9619 19.6616 90.4529 19.3292 89.8023 19.103C89.166 18.8626 88.4518 18.6717 87.6599 18.5303L87.066 18.4242C86.5852 18.3393 86.2034 18.2191 85.9205 18.0636C85.6377 17.8939 85.4963 17.6393 85.4963 17.2999C85.4963 16.9888 85.6306 16.7484 85.8993 16.5787C86.168 16.3949 86.5569 16.303 87.066 16.303C87.5751 16.303 87.9993 16.4161 88.3387 16.6424C88.6922 16.8686 88.9256 17.2505 89.0387 17.7878L91.5205 17.0242C91.2801 16.1757 90.771 15.4898 89.9933 14.9666C89.2155 14.4434 88.2397 14.1818 87.066 14.1818C85.8215 14.1818 84.8175 14.4646 84.0539 15.0302C83.2902 15.5818 82.9084 16.3808 82.9084 17.4272C82.9084 18.1201 83.0922 18.6858 83.4599 19.1242C83.8276 19.5626 84.3155 19.909 84.9236 20.1636C85.5316 20.404 86.2034 20.5949 86.9387 20.7363L87.5327 20.8424C88.1549 20.9555 88.6074 21.104 88.8902 21.2878C89.1731 21.4575 89.3145 21.705 89.3145 22.0302C89.3145 22.3555 89.166 22.6313 88.869 22.8575C88.572 23.0696 88.1125 23.1757 87.4902 23.1757C87.0801 23.1757 86.6983 23.1191 86.3448 23.006C86.0054 22.8787 85.7155 22.6737 85.4751 22.3909C85.2488 22.108 85.0862 21.7191 84.9872 21.2242L82.5266 21.8606C82.7104 22.9636 83.2407 23.8121 84.1175 24.406Z\" fill=\"white\"/>\\n<path d=\"M96.5354 17.3848C96.0828 17.9222 95.8566 18.6787 95.8566 19.6545V24.9999H93.1839V10.1515H95.8566V15.7727H96.2384C96.3515 15.5464 96.5283 15.3201 96.7687 15.0939C97.0091 14.8676 97.3273 14.6838 97.7233 14.5424C98.1334 14.3868 98.6495 14.309 99.2717 14.309C100.092 14.309 100.806 14.4999 101.414 14.8818C102.036 15.2494 102.517 15.7656 102.857 16.4303C103.196 17.0808 103.366 17.8444 103.366 18.7212V24.9999H100.693V18.9333C100.693 18.1414 100.495 17.5474 100.099 17.1515C99.7172 16.7555 99.1657 16.5575 98.4445 16.5575C97.6243 16.5575 96.9879 16.8333 96.5354 17.3848Z\" fill=\"white\"/>\\n<path d=\"M120.073 24.3636C119.648 23.9252 119.436 23.3454 119.436 22.6242V16.6848H114.18V24.9999H111.508V16.6848H108.835V14.4787H111.508V12.5272C111.508 11.806 111.72 11.2333 112.144 10.809C112.582 10.3707 113.148 10.1515 113.841 10.1515H116.599V12.3575H114.774C114.378 12.3575 114.18 12.5696 114.18 12.9939V14.4787H119.436V11.2121H122.109V14.4787H124.994V16.6848H122.109V22.1575C122.109 22.5818 122.307 22.7939 122.703 22.7939H124.739V24.9999H121.77C121.077 24.9999 120.511 24.7878 120.073 24.3636Z\" fill=\"white\"/>\\n<path d=\"M105.194 14.4787V24.9999H107.867V14.4787H105.194Z\" fill=\"white\"/>\\n<path d=\"M69.9334 10.1515V24.9999H72.6061V10.1515H69.9334Z\" fill=\"white\"/>\\n<defs>\\n<filter id=\"filter0_ddiii_167_2896\" x=\"-2.27273\" y=\"-2.27273\" width=\"40.9092\" height=\"43.1818\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.757576\"/>\\n<feGaussianBlur stdDeviation=\"0.378788\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0 0.162923 0 0 0 0.08 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2896\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.757576\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect2_dropShadow_167_2896\"/>\\n<feOffset dy=\"2.27273\"/>\\n<feGaussianBlur stdDeviation=\"1.51515\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0 0.164706 0 0 0 0.14 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_167_2896\" result=\"effect2_dropShadow_167_2896\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_167_2896\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-2.27273\"/>\\n<feGaussianBlur stdDeviation=\"1.13636\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_167_2896\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.27273\"/>\\n<feGaussianBlur stdDeviation=\"1.13636\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_167_2896\" result=\"effect4_innerShadow_167_2896\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"0.757576\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect5_innerShadow_167_2896\"/>\\n<feOffset/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.0627451 0 0 0 0 0.0941176 0 0 0 0 0.156863 0 0 0 0.24 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect4_innerShadow_167_2896\" result=\"effect5_innerShadow_167_2896\"/>\\n</filter>\\n<filter id=\"filter1_d_167_2896\" x=\"4.54563\" y=\"3.97723\" width=\"27.2725\" height=\"31.8182\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feMorphology radius=\"1.13636\" operator=\"erode\" in=\"SourceAlpha\" result=\"effect1_dropShadow_167_2896\"/>\\n<feOffset dy=\"1.70455\"/>\\n<feGaussianBlur stdDeviation=\"1.70455\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0 0.141176 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_167_2896\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_167_2896\" result=\"shape\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_167_2896\" x1=\"18.1818\" y1=\"4.51551e-07\" x2=\"19.697\" y2=\"36.3636\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.12\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_167_2896\" x1=\"18.182\" y1=\"6.81812\" x2=\"18.182\" y2=\"29.5454\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.8\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_167_2896\" x1=\"18.1818\" y1=\"0\" x2=\"18.1818\" y2=\"36.3636\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\" stop-opacity=\"0.12\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_167_2896\">\\n<rect width=\"36.3636\" height=\"36.3636\" rx=\"9.09091\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n9pyk1\",\"data-framer-name\":\"Niches\",name:\"Niches\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo0qvx\",\"data-framer-name\":\"Design\",name:\"Design\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nhk6k5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-irzi4b\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design\"})}),className:\"framer-g4p6x1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mr08zw\",\"data-framer-name\":\"CRM\",name:\"CRM\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13nyypr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mmcd0z\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"CRM\"})}),className:\"framer-1lx743z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p4bvtc\",\"data-framer-name\":\"Marketing\",name:\"Marketing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-et7spj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pzxnz1\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marketing\"})}),className:\"framer-b78z2a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13fnxru\",\"data-framer-name\":\"Management\",name:\"Management\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9rz455\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lrfilm\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Project management\"})}),className:\"framer-2ijynz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pqhl3d\",\"data-framer-name\":\"Automation\",name:\"Automation\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j3almr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11s0a2h\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Automation\"})}),className:\"framer-1lj54xe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4p5q6\",\"data-framer-name\":\"Payments\",name:\"Payments\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flda5g\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vjk2oh\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8 5\"><path d=\"M 7.556 0.385 L 2.667 4.615 L 0.444 2.692\" fill=\"transparent\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8866280373,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Payments\"})}),className:\"framer-154rsn3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4dot6\",\"data-border\":true,\"data-framer-name\":\"Most popular\",name:\"Most popular\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"Most popular\"})}),className:\"framer-1de71b2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-drv18j\",\"data-framer-name\":\"Quote section\",name:\"Quote section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sjqpqt\",\"data-border\":true,\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nk3jjz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1op3shd\",\"data-border\":true,\"data-framer-name\":\"SEO Card\",name:\"SEO Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ckg8ci\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3bvf8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SEO\"})}),className:\"framer-10ifmmj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Improve your online visibility and discover marketing insights.\"})}),className:\"framer-13d11md\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11qurj6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Popular\"})}),className:\"framer-1t0lwv2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d5tqcl\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19lq9x6\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connect\"})}),className:\"framer-9uy3l2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lk1e81\",\"data-border\":true,\"data-framer-name\":\"Communication card\",name:\"Communication card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1guyv1e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhsigx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Communication\"})}),className:\"framer-rpzrfh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Make the communication with your team easier.\"})}),className:\"framer-1f3sgkd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exikdl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Popular\"})}),className:\"framer-24yr2l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d8h5jm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ufws8u\",\"data-border\":true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connect\"})}),className:\"framer-s2lqt4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cxs1wa\",\"data-framer-name\":\"Arrow\",name:\"Arrow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z12g0eqg0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 54 59\"><g transform=\"translate(-2.208 -1.304) rotate(21 29.15 30.502)\" id=\"ss10005883079_1\"><path d=\"M 49.826 35.989 L 27.876 -6.358 L -8.474 12.299 L 13.477 54.646 Z\" fill=\"transparent\"></path><path d=\"M 25.106 44.69 C 24.84 44.787 24.763 44.866 24.653 44.883 C 17.164 44.38 10.771 41.496 5.907 35.693 C 4.675 34.231 3.847 32.482 3.41 30.573 C 2.438 26.487 4.17 22.437 7.77 20.313 C 9.639 19.195 11.625 18.453 13.86 18.65 C 14.454 19.491 15.016 20.348 15.64 21.095 C 16.664 22.308 17.964 23.063 19.6 23.094 C 20.811 23.144 21.747 22.663 21.987 21.908 C 22.302 20.916 21.849 20.042 21.072 19.532 C 19.992 18.822 18.82 18.237 17.65 17.732 C 16.891 17.41 16.024 17.262 15.22 17.082 C 13.922 13.283 16.483 10.071 21.237 9.488 C 21.621 9.924 22.021 10.39 22.436 10.81 C 24.014 12.331 25.897 13.143 28.109 12.838 C 28.956 12.719 29.784 12.413 30.068 11.437 C 30.278 10.697 29.825 9.823 28.872 9.206 C 27.349 8.248 25.631 7.905 23.884 7.735 C 23.27 7.694 22.656 7.654 22.059 7.644 C 19.851 1.861 22.743 -4.523 28.681 -4.804 C 28.439 -5.194 28.292 -5.553 28.071 -5.677 C 27.801 -5.815 27.393 -5.764 27.08 -5.682 C 24.169 -4.82 21.866 -3.243 20.842 -0.267 C 20.057 1.953 19.934 4.23 20.283 6.58 C 20.335 6.909 20.387 7.238 20.408 7.583 C 20.424 7.614 20.378 7.677 20.301 7.835 C 20.004 7.948 19.661 8.124 19.286 8.238 C 14.765 9.728 13.163 11.973 13.252 16.867 C 12.812 16.934 12.311 17.034 11.824 17.086 C 9.001 17.507 6.567 18.678 4.554 20.738 C 1.271 24.083 0.476 28.799 2.428 33.25 C 3.486 35.671 5.056 37.711 7.031 39.463 C 11.825 43.682 17.346 46.104 23.808 46.225 C 24.139 46.253 24.484 46.234 24.815 46.262 C 24.862 46.277 24.926 46.323 25.116 46.463 C 24.185 47.257 23.138 47.676 22.107 48.126 C 21.124 48.591 20.077 49.01 18.984 49.492 C 19.498 50.255 20.097 50.343 20.724 50.258 C 21.445 50.125 22.199 50.055 22.839 49.766 C 24.556 48.963 26.288 48.114 27.956 47.139 C 29.249 46.357 29.251 45.447 28.092 44.659 C 25.615 43.006 23.108 41.368 20.6 39.731 C 20.188 39.469 19.745 39.3 19.175 39.04 C 18.938 40.031 19.447 40.402 19.908 40.758 C 21.655 41.995 23.309 43.281 25.106 44.69 Z M 28.647 10.981 C 26.349 11.805 24.295 11.12 23.198 9.233 C 25.119 9.433 26.929 9.571 28.647 10.981 Z M 20.609 21.232 C 18.542 21.739 17.021 20.939 16.222 18.939 C 17.925 19.329 19.44 19.737 20.609 21.232 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10005883079}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xsmkhw\",\"data-framer-name\":\"Arrow icon\",layout:\"position\",name:\"Arrow icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 54 59\"><g transform=\"translate(6.266 5.053) rotate(104 20.676 24.144)\" id=\"ss11169189890_1\"><path d=\"M 0.5 48.288 L 0 0.593 L 40.853 0 L 41.353 47.695 Z\" fill=\"transparent\"></path><path d=\"M 26.411 44.364 C 26.691 44.325 26.796 44.359 26.901 44.322 C 33.278 40.362 37.568 34.814 39.139 27.408 C 39.54 25.538 39.45 23.606 38.939 21.714 C 37.88 17.651 34.449 14.888 30.274 14.702 C 28.098 14.593 25.997 14.87 24.116 16.092 C 23.986 17.114 23.892 18.135 23.691 19.087 C 23.357 20.639 22.563 21.917 21.134 22.711 C 20.088 23.324 19.036 23.339 18.469 22.785 C 17.725 22.057 17.715 21.073 18.162 20.258 C 18.782 19.123 19.542 18.058 20.338 17.061 C 20.858 16.421 21.553 15.883 22.179 15.347 C 21.541 11.383 17.772 9.75 13.3 11.467 C 13.166 12.032 13.032 12.632 12.863 13.197 C 12.183 15.281 10.902 16.882 8.806 17.651 C 8.002 17.944 7.127 18.062 6.418 17.334 C 5.886 16.779 5.876 15.794 6.426 14.802 C 7.322 13.242 8.678 12.132 10.141 11.162 C 10.664 10.837 11.186 10.513 11.709 10.225 C 10.944 4.082 5.393 -0.197 0.018 2.342 C 0.049 1.885 0.009 1.498 0.148 1.285 C 0.32 1.037 0.705 0.891 1.019 0.816 C 3.994 0.21 6.768 0.521 9.07 2.668 C 10.805 4.26 11.983 6.212 12.778 8.451 C 12.886 8.766 12.995 9.081 13.139 9.395 C 13.139 9.43 13.209 9.464 13.351 9.568 C 13.666 9.528 14.052 9.522 14.437 9.447 C 19.128 8.64 21.596 9.87 23.816 14.233 C 24.235 14.086 24.724 13.939 25.178 13.756 C 27.869 12.803 30.568 12.694 33.313 13.568 C 37.782 14.98 40.697 18.77 41.063 23.617 C 41.266 26.252 40.837 28.789 39.916 31.264 C 37.664 37.239 33.926 41.97 28.277 45.111 C 27.999 45.291 27.685 45.436 27.406 45.616 C 27.371 45.652 27.337 45.722 27.234 45.935 C 28.429 46.199 29.55 46.077 30.671 45.99 C 31.758 45.939 32.879 45.818 34.071 45.73 C 33.975 46.646 33.488 47.004 32.894 47.224 C 32.195 47.445 31.496 47.737 30.795 47.782 C 28.903 47.88 26.974 47.943 25.045 47.865 C 23.536 47.782 23.106 46.979 23.76 45.739 C 25.17 43.117 26.616 40.494 28.061 37.871 C 28.302 37.445 28.614 37.089 28.995 36.591 C 29.669 37.355 29.394 37.922 29.155 38.453 C 28.193 40.365 27.336 42.276 26.411 44.364 Z M 7.459 16.264 C 9.875 15.912 11.367 14.343 11.449 12.162 C 9.847 13.24 8.314 14.212 7.459 16.264 Z M 19.368 21.541 C 21.432 21.019 22.399 19.598 22.166 17.457 C 20.845 18.601 19.699 19.673 19.368 21.541 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11169189890,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3bci3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",children:\"Most popular integrations.\"})}),className:\"framer-1skqe8n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2wopx\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z12g0eqg0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"\u2018\u2018The integrations in iLumina transformed how we operate our SaaS business.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"We grew our marketing, project management, and team communication.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"\u2018\u2018The integrations in iLumina transformed how we operate our SaaS business.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"We grew our marketing, project management, and team communication.\"})]}),className:\"framer-mf3vyk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blqtmx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:5626,pixelWidth:3751,sizes:\"48px\",src:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg\",srcSet:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg 3751w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:5626,pixelWidth:3751,sizes:\"48px\",src:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg\",srcSet:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg 3751w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5374.6),pixelHeight:5626,pixelWidth:3751,sizes:\"48px\",src:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg\",srcSet:\"https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Zh8WlTS5lOUj8CRj63mgVxH5sXU.jpg 3751w\"},className:\"framer-a3z8mp\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z12g0eqg0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"James Carter, CEO of TechFlow.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",children:\"James Carter, CEO of TechFlow.\"})}),className:\"framer-iohgdy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-c23og\",\"data-framer-name\":\"Testimonials section\",id:elementId5,name:\"Testimonials section\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qirsnl\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-wnx94b\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p3f7x1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Testimonials\"})}),className:\"framer-1fn3gwj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Loved by innovators and creators around the globe.\"})}),className:\"framer-nhyg49\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See what our users have to say about iLumina.\"})}),className:\"framer-1kqlmz5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tbvz24\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c46hqu\",\"data-border\":true,\"data-framer-name\":\"Big testimonial card\",name:\"Big testimonial card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18x5t89\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6pq7n2\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-341xxg\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 28\"><path d=\"M 16.266 19.7 C 16.266 24.024 13.353 27.3 8.919 27.3 C 4.486 27.3 0.686 23.631 0.686 17.079 C 0.686 8.955 6.639 2.01 14.366 0.7 L 14.366 5.548 C 9.932 6.466 6.639 9.741 6.639 13.541 C 7.399 13.017 8.412 12.624 10.059 12.624 C 13.353 12.624 16.266 15.114 16.266 19.7 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 38.4 19.7 C 38.4 24.024 35.487 27.3 31.053 27.3 C 26.62 27.3 22.82 23.631 22.82 17.079 C 22.82 8.955 28.773 2.01 36.5 0.7 L 36.5 5.548 C 32.067 6.466 28.773 9.741 28.773 13.541 C 29.533 13.017 30.547 12.624 32.193 12.624 C 35.487 12.624 38.4 15.114 38.4 19.7 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11396053095,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g7unf3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Solves a big problem!\"})}),className:\"framer-pdauo8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'\"iLumina makes interacting with multiple LLMs a breeze. '}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"It's intuitive and saves us tons of time!\\\"\"})]})}),className:\"framer-1r8uerv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jidek\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4lrgoy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Lisa Terrence\"})}),className:\"framer-14uks7c\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(161, 164, 173)\"},children:\"Project Manager\"})}),className:\"framer-1ol5p3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1thjezy framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9sjekb\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 23\"><path d=\"M 18.901 0 L 22.582 0 L 14.541 9.27 L 24 21.884 L 16.594 21.884 L 10.793 14.234 L 4.156 21.884 L 0.474 21.884 L 9.074 11.969 L 0 0 L 7.594 0 L 12.837 6.993 Z M 17.61 19.662 L 19.649 19.662 L 6.486 2.105 L 4.298 2.105 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12318923823,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvo3cx\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:5760,pixelWidth:3840,positionX:\"center\",positionY:\"top\",sizes:\"max(max((min(max(100vw - 20px, 1px), 1290px) - 76px) / 2, 1px) - 24px, 1px)\",src:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg\",srcSet:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg 3840w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:5760,pixelWidth:3840,positionX:\"center\",positionY:\"top\",sizes:\"max(min(100vw - 20px, 1290px) - 88px, 1px)\",src:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg\",srcSet:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5889.600000000001),pixelHeight:5760,pixelWidth:3840,positionX:\"center\",positionY:\"top\",sizes:\"max(max((max((min(max(100vw, 1px), 1290px) - 64px) / 2, 1px) - 36px) / 2, 1px) - 24px, 1px)\",src:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg\",srcSet:\"https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WaMs4S5aUNDO5Sy84LsOyGnp1fk.jpg 3840w\"},className:\"framer-urvi8n\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fnpo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-if40lp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpzrmv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qqt7eu\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",name:\"Testimonial card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-807rv8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tj193q\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 14\"><path d=\"M 9.488 9.85 C 9.488 12.012 7.789 13.65 5.203 13.65 C 2.617 13.65 0.4 11.816 0.4 8.54 C 0.4 4.478 3.873 1.005 8.38 0.35 L 8.38 2.774 C 5.794 3.233 3.873 4.871 3.873 6.771 C 4.316 6.509 4.907 6.312 5.868 6.312 C 7.789 6.312 9.488 7.557 9.488 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.4 9.85 C 22.4 12.012 20.701 13.65 18.114 13.65 C 15.528 13.65 13.312 11.816 13.312 8.54 C 13.312 4.478 16.784 1.005 21.292 0.35 L 21.292 2.774 C 18.706 3.233 16.784 4.871 16.784 6.771 C 17.228 6.509 17.819 6.312 18.779 6.312 C 20.701 6.312 22.4 7.557 22.4 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12730415866,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Our productivity has skyrocketed since using iLumina. Seamless integration and fantastic support!\"'})}),className:\"framer-1tdzn7l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wil5ht\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9mg4s3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:3840,pixelWidth:5760,sizes:\"40px\",src:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg 5760w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:3840,pixelWidth:5760,sizes:\"40px\",src:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg 5760w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6094.600000000001),pixelHeight:3840,pixelWidth:5760,sizes:\"40px\",src:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg\",srcSet:\"https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/Izeq209x56UuOTsS61VECFMZXQ.jpg 5760w\"},className:\"framer-1wczh8y\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qoqpsb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Mark Rupert\"})}),className:\"framer-pi2lig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Operations director\"})}),className:\"framer-6s5put\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-xgibst framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jj66r0\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 11.026 0 L 13.173 0 L 8.483 5.239 L 14 12.369 L 9.68 12.369 L 6.296 8.045 L 2.425 12.369 L 0.276 12.369 L 5.293 6.765 L 0 0 L 4.43 0 L 7.488 3.952 Z M 10.272 11.113 L 11.462 11.113 L 3.783 1.19 L 2.507 1.19 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10958488925,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9u2db\",\"data-border\":true,\"data-framer-name\":\"Testimonial card 2\",name:\"Testimonial card 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16uyozz\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ac1id4\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 14\"><path d=\"M 9.488 9.85 C 9.488 12.012 7.789 13.65 5.203 13.65 C 2.617 13.65 0.4 11.816 0.4 8.54 C 0.4 4.478 3.873 1.005 8.38 0.35 L 8.38 2.774 C 5.794 3.233 3.873 4.871 3.873 6.771 C 4.316 6.509 4.907 6.312 5.868 6.312 C 7.789 6.312 9.488 7.557 9.488 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.4 9.85 C 22.4 12.012 20.701 13.65 18.114 13.65 C 15.528 13.65 13.312 11.816 13.312 8.54 C 13.312 4.478 16.784 1.005 21.292 0.35 L 21.292 2.774 C 18.706 3.233 16.784 4.871 16.784 6.771 C 17.228 6.509 17.819 6.312 18.779 6.312 C 20.701 6.312 22.4 7.557 22.4 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12730415866,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Our productivity has skyrocketed since using iLumina. Seamless integration and fantastic support!\"'})}),className:\"framer-r4qagn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yigib7\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130tnwi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:1369,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg\",srcSet:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg 2048w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:1369,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg\",srcSet:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6440.600000000001),pixelHeight:1369,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg\",srcSet:\"https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Af0DTwEbhnsqHsYJSmZamNE3k.jpg 2048w\"},className:\"framer-1gfpm02\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h3qdog\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Matt Adams\"})}),className:\"framer-ya4s5n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Designer\"})}),className:\"framer-1nfv2t6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1k8hd8r framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f4873j\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 11.026 0 L 13.173 0 L 8.483 5.239 L 14 12.369 L 9.68 12.369 L 6.296 8.045 L 2.425 12.369 L 0.276 12.369 L 5.293 6.765 L 0 0 L 4.43 0 L 7.488 3.952 Z M 10.272 11.113 L 11.462 11.113 L 3.783 1.19 L 2.507 1.19 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10958488925,withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rgm85\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b34nhi\",\"data-border\":true,\"data-framer-name\":\"Testimonial card\",name:\"Testimonial card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5yktbq\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ujrvm9\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 14\"><path d=\"M 9.488 9.85 C 9.488 12.012 7.789 13.65 5.203 13.65 C 2.617 13.65 0.4 11.816 0.4 8.54 C 0.4 4.478 3.873 1.005 8.38 0.35 L 8.38 2.774 C 5.794 3.233 3.873 4.871 3.873 6.771 C 4.316 6.509 4.907 6.312 5.868 6.312 C 7.789 6.312 9.488 7.557 9.488 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.4 9.85 C 22.4 12.012 20.701 13.65 18.114 13.65 C 15.528 13.65 13.312 11.816 13.312 8.54 C 13.312 4.478 16.784 1.005 21.292 0.35 L 21.292 2.774 C 18.706 3.233 16.784 4.871 16.784 6.771 C 17.228 6.509 17.819 6.312 18.779 6.312 C 20.701 6.312 22.4 7.557 22.4 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12730415866,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Our productivity has skyrocketed since using iLumina. Seamless integration and fantastic support!\"'})}),className:\"framer-16obn5j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ccpq4\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p761f7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:2338,pixelWidth:3500,sizes:\"40px\",src:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg\",srcSet:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg 3500w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:2338,pixelWidth:3500,sizes:\"40px\",src:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg\",srcSet:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg 3500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6094.600000000001),pixelHeight:2338,pixelWidth:3500,sizes:\"40px\",src:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg\",srcSet:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg 3500w\"},className:\"framer-j1k99q\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152bard\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"John Reeves\"})}),className:\"framer-1i2y5il\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Copywriter\"})}),className:\"framer-febtp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1w8s5rd framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ryc38v\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 11.026 0 L 13.173 0 L 8.483 5.239 L 14 12.369 L 9.68 12.369 L 6.296 8.045 L 2.425 12.369 L 0.276 12.369 L 5.293 6.765 L 0 0 L 4.43 0 L 7.488 3.952 Z M 10.272 11.113 L 11.462 11.113 L 3.783 1.19 L 2.507 1.19 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10958488925,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1evg0jp\",\"data-border\":true,\"data-framer-name\":\"Testimonial card 2\",name:\"Testimonial card 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbqact\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jg7tuv\",\"data-framer-name\":\"\u2018\u2018\",layout:\"position\",name:\"\u2018\u2018\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 14\"><path d=\"M 9.488 9.85 C 9.488 12.012 7.789 13.65 5.203 13.65 C 2.617 13.65 0.4 11.816 0.4 8.54 C 0.4 4.478 3.873 1.005 8.38 0.35 L 8.38 2.774 C 5.794 3.233 3.873 4.871 3.873 6.771 C 4.316 6.509 4.907 6.312 5.868 6.312 C 7.789 6.312 9.488 7.557 9.488 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 22.4 9.85 C 22.4 12.012 20.701 13.65 18.114 13.65 C 15.528 13.65 13.312 11.816 13.312 8.54 C 13.312 4.478 16.784 1.005 21.292 0.35 L 21.292 2.774 C 18.706 3.233 16.784 4.871 16.784 6.771 C 17.228 6.509 17.819 6.312 18.779 6.312 C 20.701 6.312 22.4 7.557 22.4 9.85 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12730415866,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Our productivity has skyrocketed since using iLumina. Seamless integration and fantastic support!\"'})}),className:\"framer-1q1xanr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40myqe\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kuckrj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:4504,pixelWidth:3003,sizes:\"40px\",src:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg\",srcSet:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg 3003w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:4504,pixelWidth:3003,sizes:\"40px\",src:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg\",srcSet:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg 3003w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6440.600000000001),pixelHeight:4504,pixelWidth:3003,sizes:\"40px\",src:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg\",srcSet:\"https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/1O4AMFRKuVkd8aAklzlwbYrE.jpg 3003w\"},className:\"framer-pltrjg\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3n1vh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Joana Lee\"})}),className:\"framer-6jnnn1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Content creator\"})}),className:\"framer-1s274xd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-dqwo5h framer-lux5qc\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rkh5yf\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 11.026 0 L 13.173 0 L 8.483 5.239 L 14 12.369 L 9.68 12.369 L 6.296 8.045 L 2.425 12.369 L 0.276 12.369 L 5.293 6.765 L 0 0 L 4.43 0 L 7.488 3.952 Z M 10.272 11.113 L 11.462 11.113 L 3.783 1.19 L 2.507 1.19 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10958488925,withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:6573.600000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ulsuq0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"IgksiVRlp\"},Z12g0eqg0:{variant:\"IgksiVRlp\"}},children:/*#__PURE__*/_jsx(HomePageButtonsSeeAllTestimonials,{height:\"100%\",id:\"q8Oixchtb\",layoutId:\"q8Oixchtb\",variant:\"Crb3zRnjb\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1slo5ah\",\"data-framer-name\":\"Partnerships\",name:\"Partnerships\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o4qj04\",\"data-framer-name\":\"Brands\",name:\"Brands\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pxx1d\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v4akug\",\"data-border\":true,\"data-framer-name\":\"Brand 1\",name:\"Brand 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1570e4e\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:152,name:\"Company logo\",svg:'<svg width=\"152\" height=\"48\" viewBox=\"0 0 152 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.5868 8.40049L24.9 5.80493C24.2313 5.62574 23.6892 6.04172 23.6892 6.73404V16.7625C23.6892 17.4549 24.2313 18.1614 24.9 18.3405L34.5868 20.9361C35.2555 21.1153 35.7977 20.6993 35.7977 20.007V9.9785C35.7977 9.28617 35.2555 8.57968 34.5868 8.40049ZM24.9 2.04424C22.2251 1.3275 20.0566 2.99141 20.0566 5.7607V15.7892C20.0566 18.5585 22.2251 21.3845 24.9 22.1012L34.5868 24.6968C37.2617 25.4135 39.4302 23.7496 39.4302 20.9803V10.9518C39.4302 8.18254 37.2617 5.35655 34.5868 4.63981L24.9 2.04424Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.9812 16.5707L14.8727 13.3263C14.204 13.1471 13.6618 13.5631 13.6618 14.2554V26.791C13.6618 27.4833 14.204 28.1898 14.8727 28.369L26.9812 31.6135C27.6499 31.7927 28.192 31.3767 28.192 30.6844V18.1488C28.192 17.4564 27.6499 16.7499 26.9812 16.5707ZM14.8727 9.5656C12.1978 8.84886 10.0293 10.5128 10.0293 13.2821V25.8177C10.0293 28.587 12.1978 31.413 14.8727 32.1297L26.9812 35.3742C29.6561 36.0909 31.8245 34.427 31.8245 31.6577V19.1221C31.8245 16.3528 29.6561 13.5268 26.9812 12.8101L14.8727 9.5656Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.3736 24.741L4.84339 20.8477C4.17466 20.6685 3.63254 21.0844 3.63254 21.7768V36.8195C3.63254 37.5118 4.17466 38.2183 4.84339 38.3975L19.3736 42.2909C20.0423 42.47 20.5844 42.0541 20.5844 41.3617V26.319C20.5844 25.6267 20.0423 24.9202 19.3736 24.741ZM4.84339 17.087C2.16846 16.3702 0 18.0341 0 20.8034V35.8462C0 38.6155 2.16846 41.4414 4.84339 42.1582L19.3736 46.0515C22.0485 46.7683 24.2169 45.1044 24.2169 42.3351V27.2923C24.2169 24.523 22.0485 21.6971 19.3736 20.9803L4.84339 17.087Z\" fill=\"white\"/>\\n<path d=\"M53.64 32.608C54.7787 33.1307 56.0853 33.392 57.56 33.392C59.0347 33.392 60.3227 33.14 61.424 32.636C62.544 32.1134 63.412 31.3854 64.028 30.452C64.644 29.5 64.952 28.3894 64.952 27.12V26.784C64.952 25.608 64.6813 24.656 64.14 23.928C63.5987 23.1814 62.908 22.6307 62.068 22.276C61.2467 21.9214 60.3973 21.744 59.52 21.744H58.484V21.296L64.392 18.16V13.4H50.504V16.592H60.416V17.04L54.088 20.4V24.32H58.008C58.6427 24.32 59.212 24.4134 59.716 24.6C60.22 24.768 60.6213 25.0387 60.92 25.412C61.2187 25.7854 61.368 26.2707 61.368 26.868V27.148C61.368 28.0254 61.032 28.7534 60.36 29.332C59.7067 29.9107 58.7733 30.2 57.56 30.2C56.3653 30.2 55.404 29.892 54.676 29.276C53.948 28.6414 53.584 27.8014 53.584 26.756V26.364H50V26.868C50 28.212 50.3173 29.3787 50.952 30.368C51.6053 31.3387 52.5013 32.0854 53.64 32.608Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.8432 14.156C76.9098 13.652 75.8272 13.4 74.5952 13.4H66.5312V33H70.2272V25.832H74.5952C75.7898 25.832 76.8538 25.5894 77.7872 25.104C78.7392 24.6 79.4858 23.9 80.0272 23.004C80.5872 22.0894 80.8672 21.0254 80.8672 19.812V19.42C80.8672 18.188 80.5965 17.124 80.0552 16.228C79.5325 15.332 78.7952 14.6414 77.8432 14.156ZM76.3592 21.744C75.8178 22.2294 75.1085 22.472 74.2312 22.472H70.2272V16.76H74.2312C75.1085 16.76 75.8178 17.0027 76.3592 17.488C76.9005 17.9734 77.1712 18.636 77.1712 19.476V19.756C77.1712 20.596 76.9005 21.2587 76.3592 21.744Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M88.4215 33.392C87.0401 33.392 85.7988 33.112 84.6975 32.552C83.5961 31.992 82.7281 31.18 82.0935 30.116C81.4588 29.052 81.1415 27.7734 81.1415 26.28V25.832C81.1415 24.3387 81.4588 23.06 82.0935 21.996C82.7281 20.932 83.5961 20.12 84.6975 19.56C85.7988 19 87.0401 18.72 88.4215 18.72C89.8028 18.72 91.0441 19 92.1455 19.56C93.2468 20.12 94.1148 20.932 94.7495 21.996C95.3841 23.06 95.7015 24.3387 95.7015 25.832V26.28C95.7015 27.7734 95.3841 29.052 94.7495 30.116C94.1148 31.18 93.2468 31.992 92.1455 32.552C91.0441 33.112 89.8028 33.392 88.4215 33.392ZM88.4215 30.256C89.5041 30.256 90.4001 29.9107 91.1095 29.22C91.8188 28.5107 92.1735 27.5027 92.1735 26.196V25.916C92.1735 24.6094 91.8188 23.6107 91.1095 22.92C90.4188 22.2107 89.5228 21.856 88.4215 21.856C87.3388 21.856 86.4428 22.2107 85.7335 22.92C85.0241 23.6107 84.6695 24.6094 84.6695 25.916V26.196C84.6695 27.5027 85.0241 28.5107 85.7335 29.22C86.4428 29.9107 87.3388 30.256 88.4215 30.256Z\" fill=\"white\"/>\\n<path d=\"M102.542 19.448C102.075 19.7094 101.739 20.12 101.534 20.68H101.03V19.112H97.558V33H101.086V25.104C101.086 24.1147 101.375 23.3867 101.954 22.92C102.533 22.4347 103.27 22.192 104.166 22.192H105.902V22.19H109.5V29.864C109.5 30.816 109.78 31.5814 110.34 32.16C110.918 32.72 111.665 33 112.58 33H116.5V30.088H113.812C113.289 30.088 113.028 29.808 113.028 29.248V22.19H116.836V19.06H113.028V14.8H109.5V19.06H105.902V19.056H104.222C103.587 19.056 103.027 19.1867 102.542 19.448Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M120.281 32.888C121.065 33.224 121.952 33.392 122.941 33.392C123.912 33.392 124.677 33.252 125.237 32.972C125.797 32.692 126.208 32.3747 126.469 32.02C126.73 31.6467 126.898 31.348 126.973 31.124H127.505V31.152C127.505 31.712 127.729 32.16 128.177 32.496C128.625 32.832 129.194 33 129.885 33H132.237V30.088H131.117C130.594 30.088 130.333 29.808 130.333 29.248V24.068C130.333 22.332 129.801 21.0067 128.737 20.092C127.673 19.1774 126.226 18.72 124.397 18.72C123.202 18.72 122.185 18.9067 121.345 19.28C120.524 19.6347 119.861 20.1107 119.357 20.708C118.872 21.2867 118.517 21.9307 118.293 22.64L121.541 23.732C121.672 23.0974 121.952 22.584 122.381 22.192C122.81 21.7814 123.464 21.576 124.341 21.576C125.237 21.576 125.89 21.7907 126.301 22.22C126.712 22.6307 126.917 23.1627 126.917 23.816V24.6H123.109C122.064 24.6 121.13 24.768 120.309 25.104C119.506 25.4214 118.872 25.9067 118.405 26.56C117.957 27.1947 117.733 27.988 117.733 28.94C117.733 29.892 117.957 30.704 118.405 31.376C118.872 32.0294 119.497 32.5334 120.281 32.888ZM125.965 29.724C125.349 30.2654 124.546 30.536 123.557 30.536C122.81 30.536 122.241 30.3774 121.849 30.06C121.457 29.7427 121.261 29.332 121.261 28.828C121.261 28.324 121.448 27.932 121.821 27.652C122.194 27.372 122.708 27.232 123.361 27.232H126.917V27.512C126.917 28.4267 126.6 29.164 125.965 29.724Z\" fill=\"white\"/>\\n<path d=\"M140.77 32.216C141.927 33 143.411 33.392 145.222 33.392C146.995 33.392 148.405 33 149.45 32.216C150.514 31.4134 151.046 30.284 151.046 28.828C151.046 27.8574 150.794 27.092 150.29 26.532C149.805 25.9534 149.133 25.5147 148.274 25.216C147.434 24.8987 146.491 24.6467 145.446 24.46L144.662 24.32C144.027 24.208 143.523 24.0494 143.15 23.844C142.777 23.62 142.59 23.284 142.59 22.836C142.59 22.4254 142.767 22.108 143.122 21.884C143.477 21.6414 143.99 21.52 144.662 21.52C145.334 21.52 145.894 21.6694 146.342 21.968C146.809 22.2667 147.117 22.7707 147.266 23.48L150.542 22.472C150.225 21.352 149.553 20.4467 148.526 19.756C147.499 19.0654 146.211 18.72 144.662 18.72C143.019 18.72 141.694 19.0934 140.686 19.84C139.678 20.568 139.174 21.6227 139.174 23.004C139.174 23.9187 139.417 24.6654 139.902 25.244C140.387 25.8227 141.031 26.28 141.834 26.616C142.637 26.9334 143.523 27.1854 144.494 27.372L145.278 27.512C146.099 27.6614 146.697 27.8574 147.07 28.1C147.443 28.324 147.63 28.6507 147.63 29.08C147.63 29.5094 147.434 29.8734 147.042 30.172C146.65 30.452 146.043 30.592 145.222 30.592C144.681 30.592 144.177 30.5174 143.71 30.368C143.262 30.2 142.879 29.9294 142.562 29.556C142.263 29.1827 142.049 28.6694 141.918 28.016L138.67 28.856C138.913 30.312 139.613 31.432 140.77 32.216Z\" fill=\"white\"/>\\n<path d=\"M133.417 33V13.4H136.945V33H133.417Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7kvqt\",\"data-border\":true,\"data-framer-name\":\"Brand 2\",name:\"Brand 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1skh2u8\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:177,name:\"Company logo\",svg:'<svg width=\"177\" height=\"48\" viewBox=\"0 0 177 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 24C0 19.9005 1.29832 16.1043 3.50621 13H13V14.7789C9.98979 16.7416 8 20.1384 8 24C8 30.0751 12.9249 35 19 35V43C8.50659 43 0 34.4934 0 24Z\" fill=\"white\"/>\\n<path d=\"M34.4938 35C36.7017 31.8957 38 28.0995 38 24C38 13.5066 29.4934 5 19 5V13C25.0751 13 30 17.9249 30 24C30 27.8616 28.0102 31.2584 25 33.2211V35H34.4938Z\" fill=\"white\"/>\\n<path d=\"M52.698 11.5401V28.6501H61.166V33.0001H48V11.5401H52.698Z\" fill=\"white\"/>\\n<path d=\"M73.1913 18.5001H77.6573V33.0001H73.4523L73.1623 31.3761C72.2633 32.5651 70.4653 33.3771 68.7253 33.3771C65.4193 33.3771 63.3893 31.1731 63.3893 27.6061V18.5001H67.8553V25.9821C67.8553 28.3601 68.6673 29.4041 70.4943 29.4041C72.4083 29.4041 73.1913 28.4181 73.1913 26.0401V18.5001Z\" fill=\"white\"/>\\n<path d=\"M85.4746 33.0001H81.0086V18.5001H85.1846L85.4746 20.0081C86.1996 18.9931 87.6206 18.0361 89.7086 18.0361C91.8836 18.0361 93.2756 19.0511 94.1166 20.5881C94.8706 19.0511 96.5816 18.0361 98.6696 18.0361C102.411 18.0361 104.267 20.2111 104.267 23.5171V33.0001H99.8006V24.7641C99.8006 22.9371 98.8436 22.0671 97.4226 22.0671C96.1466 22.0671 94.8706 22.7631 94.8706 25.2281V33.0001H90.4046V24.7641C90.4046 22.9661 89.4766 22.0961 88.0556 22.0961C86.7796 22.0961 85.4746 22.7921 85.4746 25.2281V33.0001Z\" fill=\"white\"/>\\n<path d=\"M109.664 16.2381C108.243 16.2381 107.112 15.1071 107.112 13.6861C107.112 12.2651 108.243 11.1631 109.664 11.1631C111.056 11.1631 112.187 12.2651 112.187 13.6861C112.187 15.1071 111.056 16.2381 109.664 16.2381ZM107.46 33.0001V18.5001H111.926V33.0001H107.46Z\" fill=\"white\"/>\\n<path d=\"M119.742 33.0001H115.276V18.5001H119.481L119.771 20.0081C120.67 18.7611 122.323 18.0361 124.208 18.0361C127.659 18.0361 129.66 20.2401 129.66 24.0391V33.0001H125.194V25.1121C125.194 23.2851 124.179 22.0961 122.642 22.0961C120.873 22.0961 119.742 23.2561 119.742 25.0541V33.0001Z\" fill=\"white\"/>\\n<path d=\"M137.242 33.3771C134.168 33.3771 132.254 31.5791 132.254 28.7371C132.254 26.0691 134.139 24.4161 137.619 24.1551L141.679 23.8361V23.6041C141.679 22.1831 140.809 21.4291 139.214 21.4291C137.329 21.4291 136.314 22.1541 136.314 23.4591H132.602C132.602 20.1821 135.299 18.0361 139.446 18.0361C143.651 18.0361 146.029 20.3851 146.029 24.5321V33.0001H142.085L141.795 31.0861C141.331 32.4201 139.417 33.3771 137.242 33.3771ZM138.808 30.0711C140.519 30.0711 141.708 29.2301 141.708 27.5771V26.7941L139.446 26.9971C137.503 27.1711 136.807 27.6061 136.807 28.5341C136.807 29.5781 137.445 30.0711 138.808 30.0711Z\" fill=\"white\"/>\\n<path d=\"M159.208 18.5001V22.7051H157.787C155.235 22.7051 153.698 23.8361 153.698 26.7071V33.0001H149.232V18.5291H153.437L153.669 20.6751C154.278 19.2541 155.554 18.2971 157.497 18.2971C158.019 18.2971 158.599 18.3551 159.208 18.5001Z\" fill=\"white\"/>\\n<path d=\"M160.731 39.9601V36.2191H163.196C164.704 36.2191 165.342 35.7551 165.922 34.1891L166.183 33.4931L160.354 18.5001H165.139L168.3 27.8091L171.809 18.5001H176.449L169.083 36.1611C167.865 39.1191 166.241 40.3661 163.689 40.3661C162.616 40.3661 161.601 40.2211 160.731 39.9601Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yekyba\",\"data-border\":true,\"data-framer-name\":\"Brand 3\",name:\"Brand 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-110exoz\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:169,name:\"Company logo\",svg:'<svg width=\"169\" height=\"48\" viewBox=\"0 0 169 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1061 19.6565C19.6051 17.0266 23.9086 12.5636 26.3792 6.98482C24.7853 5.3112 22.7132 4.11575 20.4817 3.39848L19.2863 3C19.2066 3.15939 19.1269 3.39849 19.1269 3.55788C17.2142 8.97724 13.3091 13.3605 8.04924 15.8311C4.38325 17.5844 1.6736 20.7723 0.398477 24.5977L0 25.7932C0.159391 25.8729 0.39848 25.9525 0.557871 25.9525C2.07208 26.5104 3.58629 27.2277 5.02081 28.1044C7.01319 24.518 10.201 21.4896 14.1061 19.6565Z\" fill=\"white\"/>\\n<path opacity=\"0.6\" d=\"M37.2173 19.9756C34.2686 24.4386 30.2041 28.0249 25.1833 30.4158C21.1188 32.3285 18.0107 35.9149 16.5762 40.2185L16.1777 41.5733C17.6919 42.9281 19.5249 43.9642 21.5173 44.6018L22.7128 45.0003C22.7924 44.8409 22.8721 44.6018 22.8721 44.4424C24.7848 39.023 28.6899 34.6397 33.9498 32.1691C37.6158 30.4158 40.4051 27.228 41.6005 23.4025L41.999 22.2071C40.3254 21.7289 38.7315 20.9319 37.2173 19.9756Z\" fill=\"white\"/>\\n<path opacity=\"0.8\" d=\"M12.9903 37.4285C14.9827 32.6467 18.6487 28.7416 23.3507 26.5101C27.6542 24.438 31.2405 21.2501 33.7111 17.345C31.8781 15.5917 30.3639 13.5993 29.2481 11.2084C26.2994 16.6277 21.6771 21.011 16.0187 23.7207C12.7512 25.2349 10.1213 27.8649 8.52734 31.0528C10.2806 32.7264 11.7152 34.7985 12.8309 37.1097C12.8309 37.1097 12.9106 37.2691 12.9903 37.4285Z\" fill=\"white\"/>\\n<path d=\"M52 33V13.3564H56.0605V29.5195H64.9858V33H52Z\" fill=\"white\"/>\\n<path d=\"M72.9229 33.29C68.8755 33.29 66.397 31.0225 66.397 27.397V19.0781H70.2862V27.1597C70.2862 28.979 71.2222 30.0601 72.9229 30.0601C74.6236 30.0601 75.5728 28.979 75.5728 27.1597V19.0781H79.4488V27.397C79.4488 31.0225 76.9703 33.29 72.9229 33.29Z\" fill=\"white\"/>\\n<path d=\"M81.6773 33V19.0781H85.4215V21.583C86.252 19.6978 87.8736 18.7881 89.6402 18.7881C91.5123 18.7881 93.0811 19.8032 93.6612 21.5039C94.3863 19.8032 96.1002 18.7881 98.1173 18.7881C100.794 18.7881 102.784 20.5811 102.784 23.7715V33H98.9083V24.4834C98.9083 22.8091 97.88 21.9917 96.5484 21.9917C95.0455 21.9917 94.1095 23.0596 94.1095 24.6152V33H90.3653V24.3779C90.3653 22.9277 89.4161 21.9917 88.0582 21.9917C86.6739 21.9917 85.5665 22.9937 85.5665 24.7866V33H81.6773Z\" fill=\"white\"/>\\n<path d=\"M105 33V19.0781H108.889V33H105ZM106.938 17.3247C105.659 17.3247 104.723 16.4414 104.723 15.2549C104.723 14.0684 105.659 13.1851 106.938 13.1851C108.216 13.1851 109.152 14.0684 109.152 15.2549C109.152 16.4414 108.216 17.3247 106.938 17.3247Z\" fill=\"white\"/>\\n<path d=\"M114.993 25.2612V33H111.104V19.0781H114.927V21.2666C115.863 19.6846 117.274 18.7881 119.278 18.7881C122.244 18.7881 124.156 20.7656 124.156 24.2856V33H120.28V24.9976C120.28 23.1255 119.344 22.1367 117.722 22.1367C116.114 22.1367 114.993 23.0991 114.993 25.2612Z\" fill=\"white\"/>\\n<path d=\"M132.844 33.3164C128.626 33.3164 125.778 30.416 125.778 26.0522C125.778 21.6885 128.626 18.7617 132.844 18.7617C137.076 18.7617 139.924 21.6885 139.924 26.0522C139.924 30.416 137.076 33.3164 132.844 33.3164ZM132.844 30.1655C134.743 30.1655 136.008 28.6362 136.008 26.0522C136.008 23.4551 134.73 21.9126 132.844 21.9126C130.972 21.9126 129.694 23.4551 129.694 26.0522C129.694 28.6362 130.959 30.1655 132.844 30.1655Z\" fill=\"white\"/>\\n<path d=\"M148.059 33.29C144.011 33.29 141.533 31.0225 141.533 27.397V19.0781H145.422V27.1597C145.422 28.979 146.358 30.0601 148.059 30.0601C149.76 30.0601 150.709 28.979 150.709 27.1597V19.0781H154.585V27.397C154.585 31.0225 152.106 33.29 148.059 33.29Z\" fill=\"white\"/>\\n<path d=\"M162.601 33.3428C158.989 33.3428 156.391 31.6157 156.154 28.623H159.977C160.122 29.8359 161.019 30.561 162.535 30.561C163.972 30.561 164.855 29.9546 164.855 29.0977C164.855 28.3594 164.183 27.9243 163.049 27.7002L160.61 27.2256C157.908 26.6982 156.47 25.3271 156.47 23.165C156.47 20.5283 158.751 18.7881 162.377 18.7881C165.976 18.7881 168.349 20.5942 168.428 23.4946H164.829C164.803 22.374 163.853 21.5435 162.482 21.5435C161.151 21.5435 160.346 22.1895 160.346 23.02C160.346 23.7319 160.966 24.1934 162.034 24.4175L164.671 24.9316C167.479 25.4854 168.771 26.6982 168.771 28.7417C168.771 31.5234 166.24 33.3428 162.601 33.3428Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kmszn4\",\"data-border\":true,\"data-framer-name\":\"Brand 4\",name:\"Brand 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dcvht1\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:151,name:\"Company logo\",svg:'<svg width=\"151\" height=\"48\" viewBox=\"0 0 151 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.0008 24C25.0008 27.3137 22.3145 30 19.0008 30C15.6871 30 13.0008 27.3137 13.0008 24C13.0008 20.6863 15.6871 18 19.0008 18C22.3145 18 25.0008 20.6863 25.0008 24Z\" fill=\"white\"/>\\n<path d=\"M25.0008 10C25.0008 13.3137 22.3145 16 19.0008 16C15.6871 16 13.0008 13.3137 13.0008 10C13.0008 6.68629 15.6871 4 19.0008 4C22.3145 4 25.0008 6.68629 25.0008 10Z\" fill=\"white\"/>\\n<path d=\"M37.125 31C37.125 34.3137 34.4387 37 31.125 37C27.8113 37 25.125 34.3137 25.125 31C25.125 27.6863 27.8113 25 31.125 25C34.4387 25 37.125 27.6863 37.125 31Z\" fill=\"white\"/>\\n<path d=\"M37.127 17.0002C37.127 20.3139 34.4407 23.0002 31.127 23.0002C27.8132 23.0002 25.127 20.3139 25.127 17.0002C25.127 13.6865 27.8132 11.0002 31.127 11.0002C34.4407 11.0002 37.127 13.6865 37.127 17.0002Z\" fill=\"white\"/>\\n<path d=\"M25.0008 38C25.0008 41.3137 22.3145 44 19.0008 44C15.6871 44 13.0008 41.3137 13.0008 38C13.0008 34.6863 15.6871 32 19.0008 32C22.3145 32 25.0008 34.6863 25.0008 38Z\" fill=\"white\"/>\\n<path d=\"M12.877 17C12.877 20.3137 10.1907 23 6.87695 23C3.56324 23 0.876953 20.3137 0.876953 17C0.876953 13.6863 3.56324 11 6.87695 11C10.1907 11 12.877 13.6863 12.877 17Z\" fill=\"white\"/>\\n<path d=\"M12.875 30.9997C12.875 34.3134 10.1887 36.9997 6.875 36.9997C3.56129 36.9997 0.875 34.3134 0.875 30.9997C0.875 27.686 3.56129 24.9997 6.875 24.9997C10.1887 24.9997 12.875 27.686 12.875 30.9997Z\" fill=\"white\"/>\\n<path d=\"M48 33V13.3564H55.752C60.1685 13.3564 62.937 15.8481 62.937 19.8032C62.937 23.7583 60.1157 26.25 55.6992 26.25H52.0605V33H48ZM52.0605 22.8486H55.4883C57.6372 22.8486 58.9688 21.6753 58.9688 19.8032C58.9688 17.9312 57.6372 16.7578 55.4883 16.7578H52.0605V22.8486Z\" fill=\"white\"/>\\n<path d=\"M70.149 33.3164C65.9302 33.3164 63.0826 30.416 63.0826 26.0522C63.0826 21.6885 65.9302 18.7617 70.149 18.7617C74.3809 18.7617 77.2286 21.6885 77.2286 26.0522C77.2286 30.416 74.3809 33.3164 70.149 33.3164ZM70.149 30.1655C72.0474 30.1655 73.313 28.6362 73.313 26.0522C73.313 23.4551 72.0342 21.9126 70.149 21.9126C68.2769 21.9126 66.9981 23.4551 66.9981 26.0522C66.9981 28.6362 68.2637 30.1655 70.149 30.1655Z\" fill=\"white\"/>\\n<path d=\"M83.3463 33C80.169 33 78.8375 31.9189 78.8375 29.2295V13.3564H82.7266V28.8604C82.7266 29.7305 83.0299 30.0205 83.9 30.0205H84.4669V33H83.3463Z\" fill=\"white\"/>\\n<path d=\"M90.1891 33C87.0118 33 85.6803 31.9189 85.6803 29.2295V13.3564H89.5695V28.8604C89.5695 29.7305 89.8727 30.0205 90.7428 30.0205H91.3097V33H90.1891Z\" fill=\"white\"/>\\n<path d=\"M92.5231 33V19.0781H96.4123V33H92.5231ZM94.4611 17.3247C93.1823 17.3247 92.2463 16.4414 92.2463 15.2549C92.2463 14.0684 93.1823 13.1851 94.4611 13.1851C95.7399 13.1851 96.6759 14.0684 96.6759 15.2549C96.6759 16.4414 95.7399 17.3247 94.4611 17.3247Z\" fill=\"white\"/>\\n<path d=\"M102.517 25.2612V33H98.6276V19.0781H102.451V21.2666C103.387 19.6846 104.798 18.7881 106.801 18.7881C109.768 18.7881 111.679 20.7656 111.679 24.2856V33H107.803V24.9976C107.803 23.1255 106.867 22.1367 105.246 22.1367C103.637 22.1367 102.517 23.0991 102.517 25.2612Z\" fill=\"white\"/>\\n<path d=\"M118.166 33.2373C115.385 33.2373 113.381 31.853 113.381 29.0713C113.381 25.9336 115.912 25.0371 118.812 24.7734C121.357 24.5229 122.253 24.4043 122.253 23.5078V23.4155C122.253 22.3872 121.396 21.6753 119.972 21.6753C118.522 21.6753 117.573 22.4136 117.481 23.4814H113.829C114 20.6074 116.268 18.7881 120.091 18.7881C123.901 18.7881 126.09 20.5811 126.09 23.5605V33H122.293V31.0356H122.24C121.502 32.3936 120.302 33.2373 118.166 33.2373ZM119.247 30.5347C121.119 30.5347 122.28 29.4141 122.28 27.9111V26.5137C121.831 26.7642 120.737 26.9487 119.485 27.1465C118.153 27.3442 117.098 27.8584 117.098 28.9658C117.098 29.9546 117.942 30.5347 119.247 30.5347Z\" fill=\"white\"/>\\n<path d=\"M136.294 19.0781V22.1235H133.447V28.7021C133.447 29.6514 133.75 29.9546 134.804 29.9546H136.294V33H134.027C130.968 33 129.557 31.8398 129.557 29.3086V22.1235H127.158V19.0781H129.557V15.2812H133.447V19.0781H136.294Z\" fill=\"white\"/>\\n<path d=\"M143.862 33.3164C139.643 33.3164 136.901 30.2842 136.901 26.0522C136.901 21.8071 139.736 18.7617 143.73 18.7617C147.83 18.7617 150.586 21.728 150.586 25.9731V27.0146H140.685C140.751 29.0713 141.937 30.4028 143.981 30.4028C145.497 30.4028 146.538 29.7041 146.894 28.623H150.441C149.927 31.3916 147.237 33.3164 143.862 33.3164ZM140.711 24.5361H146.921C146.723 22.7959 145.563 21.7148 143.809 21.7148C142.069 21.7148 140.922 22.7959 140.711 24.5361Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3yeyr\",\"data-framer-name\":\"Row 2\",name:\"Row 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1c26k\",\"data-border\":true,\"data-framer-name\":\"Brand 1\",name:\"Brand 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17mrggc\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:188,name:\"Company logo\",svg:'<svg width=\"188\" height=\"48\" viewBox=\"0 0 188 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.9706 7.03309C21.8464 3.90889 16.781 3.90889 13.6569 7.03309L2.34315 18.3468C-0.781049 21.471 -0.781049 26.5363 2.34315 29.6605L13.6569 40.9742C16.781 44.0984 21.8464 44.0984 24.9706 40.9742L30.3688 35.5759C25.8749 33.8422 22.6868 29.4815 22.6868 24.3762C22.6868 19.0675 26.134 14.5639 30.9122 12.9819C30.8187 12.8837 30.7238 12.7864 30.6274 12.6899L24.9706 7.03309Z\" fill=\"white\"/>\\n<path d=\"M30.3691 35.5798C31.7089 36.0966 33.1646 36.3799 34.6865 36.3799C41.3139 36.3799 46.6865 31.0073 46.6865 24.3799C46.6865 17.7525 41.3139 12.3799 34.6865 12.3799C33.368 12.3799 32.0992 12.5925 30.9125 12.9854C36.8748 19.2535 36.78 29.169 30.6279 35.321L30.3691 35.5798Z\" fill=\"white\"/>\\n<path d=\"M69.607 33L68.149 28.842H60.616L59.131 33H55L62.29 13.614H66.772L74.008 33H69.607ZM64.423 18.096L61.777 25.575H67.015L64.423 18.096Z\" fill=\"white\"/>\\n<path d=\"M78.7457 33H74.9657V13.614H78.7457V33Z\" fill=\"white\"/>\\n<path d=\"M95.4222 25.791C95.4222 30.057 92.9112 33.27 89.0232 33.27C87.3222 33.27 85.8642 32.541 84.7842 31.137V38.211H81.0312V18.582H84.4872V20.688C85.5942 19.149 87.1872 18.312 89.0232 18.312C92.9112 18.312 95.4222 21.552 95.4222 25.791ZM91.5612 25.791C91.5612 23.091 90.0222 21.633 88.1862 21.633C86.3502 21.633 84.8112 23.064 84.8112 25.791C84.8112 28.518 86.3502 29.922 88.1862 29.922C90.0222 29.922 91.5612 28.545 91.5612 25.791Z\" fill=\"white\"/>\\n<path d=\"M100.5 25.143V33H96.7471V13.614H100.5V20.472C101.499 19.149 102.741 18.312 104.631 18.312C107.52 18.312 109.518 20.202 109.518 23.685V33H105.792V24.954C105.792 22.821 104.955 21.633 103.254 21.633C101.769 21.633 100.5 22.821 100.5 25.143Z\" fill=\"white\"/>\\n<path d=\"M120.258 33V31.218C119.313 32.568 117.882 33.27 115.911 33.27C112.914 33.27 110.916 31.515 110.916 28.815C110.916 26.007 113.184 24.495 117.396 24.495C118.206 24.495 118.908 24.549 119.799 24.657V23.793C119.799 22.173 118.881 21.228 117.315 21.228C115.695 21.228 114.723 22.173 114.588 23.793H111.213C111.429 20.472 113.832 18.312 117.315 18.312C121.095 18.312 123.309 20.391 123.309 23.928V33H120.258ZM114.453 28.707C114.453 29.922 115.317 30.678 116.721 30.678C118.638 30.678 119.799 29.625 119.799 27.951V26.925C118.908 26.79 118.287 26.736 117.639 26.736C115.506 26.736 114.453 27.411 114.453 28.707Z\" fill=\"white\"/>\\n<path d=\"M139.157 33L135.539 19.446L131.921 33H127.763L122.795 13.614H126.791L129.923 26.763L133.487 13.614H137.672L141.128 26.817L144.287 13.614H148.31L143.315 33H139.157Z\" fill=\"white\"/>\\n<path d=\"M156.726 33V31.218C155.781 32.568 154.35 33.27 152.379 33.27C149.382 33.27 147.384 31.515 147.384 28.815C147.384 26.007 149.652 24.495 153.864 24.495C154.674 24.495 155.376 24.549 156.267 24.657V23.793C156.267 22.173 155.349 21.228 153.783 21.228C152.163 21.228 151.191 22.173 151.056 23.793H147.681C147.897 20.472 150.3 18.312 153.783 18.312C157.563 18.312 159.777 20.391 159.777 23.928V33H156.726ZM150.921 28.707C150.921 29.922 151.785 30.678 153.189 30.678C155.106 30.678 156.267 29.625 156.267 27.951V26.925C155.376 26.79 154.755 26.736 154.107 26.736C151.974 26.736 150.921 27.411 150.921 28.707Z\" fill=\"white\"/>\\n<path d=\"M174.417 18.582L169.125 33H165.021L159.702 18.582H163.752L167.181 28.734L170.637 18.582H174.417Z\" fill=\"white\"/>\\n<path d=\"M180.747 33.243C176.427 33.243 173.538 30.246 173.538 25.737C173.538 21.444 176.535 18.312 180.693 18.312C185.256 18.312 188.28 22.011 187.605 26.709H177.372C177.615 29.058 178.749 30.354 180.666 30.354C182.313 30.354 183.42 29.544 183.852 28.113H187.578C186.768 31.38 184.257 33.243 180.747 33.243ZM180.612 21.066C178.857 21.066 177.75 22.2 177.426 24.333H183.636C183.528 22.335 182.394 21.066 180.612 21.066Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vx60hx\",\"data-border\":true,\"data-framer-name\":\"Brand 2\",name:\"Brand 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tgtnsc\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:158,name:\"Company logo\",svg:'<svg width=\"158\" height=\"48\" viewBox=\"0 0 158 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M32 26C32 31.5228 27.5228 36 22 36C16.4772 36 12 31.5228 12 26H4C4 35.9411 12.0589 44 22 44C31.9411 44 40 35.9411 40 26C40 16.0589 31.9411 8 22 8V16C27.5228 16 32 20.4772 32 26Z\" fill=\"white\"/>\\n<path opacity=\"0.5\" d=\"M10 4C10 9.52285 5.52285 14 0 14V22C9.94113 22 18 13.9411 18 4H10Z\" fill=\"white\"/>\\n<path d=\"M50 13.83H63.77V17.691H54.725V21.471H63.446V25.305H54.725V29.139H63.986V33H50V13.83Z\" fill=\"white\"/>\\n<path d=\"M65.2531 23.199C65.7931 20.04 68.1691 18.366 72.1651 18.366C76.7551 18.366 79.0231 20.472 79.0231 24.657V28.734C79.0231 29.787 79.4551 29.949 79.9411 29.949H80.4271V33L79.7791 33.054C79.0231 33.081 75.7291 33.594 75.2431 30.84C74.4871 32.379 72.8671 33.324 70.1401 33.324C67.2241 33.324 65.0101 31.758 65.0101 29.22C65.0101 26.655 66.9271 25.575 70.4641 24.873L74.2981 24.09C74.2981 22.119 73.6231 21.201 72.1381 21.201C70.8961 21.201 70.1401 21.93 69.8971 23.388L65.2531 23.199ZM69.7891 29.031C69.7891 29.868 70.4641 30.462 71.7331 30.462C73.2991 30.462 74.3791 29.274 74.3791 26.925V26.79L72.3541 27.168C70.8151 27.438 69.7891 27.762 69.7891 29.031Z\" fill=\"white\"/>\\n<path d=\"M90.1465 23.415C89.9305 22.146 88.9315 21.39 87.8515 21.39C86.7175 21.39 85.9075 21.984 85.9615 22.929C86.0155 23.847 87.0415 24.279 88.3105 24.495C92.8735 25.17 94.8175 26.331 94.8175 29.004C94.8175 31.866 92.1715 33.324 88.2295 33.324C83.7745 33.324 81.0745 31.515 80.8315 28.437L85.5025 28.248C85.7455 29.517 86.6365 30.219 88.0675 30.219C89.0395 30.219 90.0925 29.841 90.0385 28.95C90.0115 27.897 88.8775 27.627 87.5545 27.384C83.1535 26.574 81.1825 25.494 81.1825 22.929C81.1825 20.04 83.6125 18.339 87.9865 18.339C91.8205 18.339 94.3045 20.148 94.7635 23.253L90.1465 23.415Z\" fill=\"white\"/>\\n<path d=\"M94.5076 18.69H98.8276L102.176 28.167L105.362 18.69H109.682L104.12 34.215C103.418 36.186 102.095 37.05 99.8806 37.05H97.0726V33.756H98.9356C99.8536 33.756 100.313 33.513 100.583 32.838L100.88 32.109H99.6376L94.5076 18.69Z\" fill=\"white\"/>\\n<path d=\"M125.686 13.83V17.691H120.016V33H115.318V17.691H109.648V13.83H125.686Z\" fill=\"white\"/>\\n<path d=\"M125.796 23.199C126.336 20.04 128.712 18.366 132.708 18.366C137.298 18.366 139.566 20.472 139.566 24.657V28.734C139.566 29.787 139.998 29.949 140.484 29.949H140.97V33L140.322 33.054C139.566 33.081 136.272 33.594 135.786 30.84C135.03 32.379 133.41 33.324 130.683 33.324C127.767 33.324 125.553 31.758 125.553 29.22C125.553 26.655 127.47 25.575 131.007 24.873L134.841 24.09C134.841 22.119 134.166 21.201 132.681 21.201C131.439 21.201 130.683 21.93 130.44 23.388L125.796 23.199ZM130.332 29.031C130.332 29.868 131.007 30.462 132.276 30.462C133.842 30.462 134.922 29.274 134.922 26.925V26.79L132.897 27.168C131.358 27.438 130.332 27.762 130.332 29.031Z\" fill=\"white\"/>\\n<path d=\"M152.359 18.663H157.381L152.332 25.737L157.516 33H152.494L149.686 28.626L146.851 33H141.829L147.013 25.737L141.964 18.663H146.959L149.686 22.821L152.359 18.663Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vm1pc\",\"data-border\":true,\"data-framer-name\":\"Brand 3\",name:\"Brand 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fk68wd\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:221,name:\"Company logo\",svg:'<svg width=\"221\" height=\"48\" viewBox=\"0 0 221 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 4C3.58172 4 0 7.58172 0 12V36C0 40.4183 3.58172 44 8 44H32C36.4183 44 40 40.4183 40 36V12C40 7.58172 36.4183 4 32 4H8ZM11 19.5H20.9645L9.23223 31.2322L12.7678 34.7678L24.5 23.0355V33H29.5V17C29.5 15.6193 28.3807 14.5 27 14.5H11V19.5Z\" fill=\"white\"/>\\n<path d=\"M50 32.9998V14.0997H54.05V29.5168H61.556V32.9998H50Z\" fill=\"white\"/>\\n<path d=\"M76.3564 19.1218V32.9998H72.23L72.6574 31.0558C71.5594 32.4418 70.1194 33.1348 68.3374 33.1348C67.1134 33.1348 66.0154 32.8468 65.0434 32.2708C64.0714 31.6948 63.3064 30.8668 62.7484 29.7868C62.2084 28.7068 61.9384 27.4558 61.9384 26.0338C61.9384 24.6298 62.2084 23.3878 62.7484 22.3078C63.3064 21.2278 64.0714 20.3998 65.0434 19.8238C66.0334 19.2298 67.1404 18.9328 68.3644 18.9328C69.3004 18.9328 70.1284 19.1128 70.8484 19.4727C71.5684 19.8327 72.1624 20.3278 72.6304 20.9578L72.26 19.1218H76.3564ZM69.2284 30.0568C70.2544 30.0568 71.0734 29.6968 71.6854 28.9768C72.2974 28.2388 72.6034 27.2758 72.6034 26.0878C72.6034 24.8818 72.2974 23.9098 71.6854 23.1718C71.0734 22.4338 70.2544 22.0648 69.2284 22.0648C68.2024 22.0648 67.3744 22.4338 66.7444 23.1718C66.1324 23.9098 65.8264 24.8818 65.8264 26.0878C65.8264 27.2758 66.1324 28.2388 66.7444 28.9768C67.3744 29.6968 68.2024 30.0568 69.2284 30.0568Z\" fill=\"white\"/>\\n<path d=\"M91.5387 19.1218V32.9998H87.41L87.8127 31.3258C87.3267 31.9018 86.7597 32.3518 86.1117 32.6758C85.4637 32.9998 84.6717 33.1618 83.7357 33.1618C82.1157 33.1618 80.7927 32.6668 79.7667 31.6768C78.7407 30.6688 78.2277 28.9948 78.2277 26.6548V19.1218H82.0347V26.1958C82.0347 27.4558 82.2507 28.4098 82.6827 29.0578C83.1327 29.6878 83.8167 30.0028 84.7347 30.0028C85.6887 30.0028 86.4267 29.6518 86.9487 28.9498C87.4707 28.2298 87.7317 27.2308 87.7317 25.9528V19.1218H91.5387Z\" fill=\"white\"/>\\n<path d=\"M101.611 18.9598C103.231 18.9598 104.563 19.4638 105.607 20.4718C106.651 21.4798 107.173 23.1448 107.173 25.4668V32.9998H103.366V25.6828C103.366 23.2888 102.43 22.0918 100.558 22.0918C99.5675 22.0918 98.8025 22.4248 98.2625 23.0908C97.7225 23.7568 97.4525 24.6928 97.4525 25.8988V32.9998H93.6455V19.1218H97.72L97.3175 20.8498C97.8035 20.2558 98.3885 19.7968 99.0725 19.4727C99.7565 19.1307 100.603 18.9598 101.611 18.9598Z\" fill=\"white\"/>\\n<path d=\"M122.369 27.7348C122.117 29.4268 121.397 30.7588 120.209 31.7308C119.039 32.6848 117.518 33.1618 115.646 33.1618C114.206 33.1618 112.946 32.8738 111.866 32.2978C110.786 31.7038 109.949 30.8668 109.355 29.7868C108.779 28.7068 108.491 27.4648 108.491 26.0608C108.491 24.6388 108.779 23.3968 109.355 22.3348C109.949 21.2548 110.786 20.4268 111.866 19.8508C112.964 19.2568 114.233 18.9598 115.673 18.9598C117.527 18.9598 119.039 19.4368 120.209 20.3908C121.379 21.3268 122.099 22.6318 122.369 24.3058H118.427C118.265 23.6218 117.941 23.0818 117.455 22.6858C116.969 22.2717 116.366 22.0648 115.646 22.0648C114.656 22.0648 113.864 22.4338 113.27 23.1718C112.676 23.9098 112.379 24.8728 112.379 26.0608C112.379 27.2488 112.676 28.2118 113.27 28.9498C113.864 29.6878 114.656 30.0568 115.646 30.0568C116.384 30.0568 116.996 29.8498 117.482 29.4358C117.986 29.0218 118.31 28.4548 118.454 27.7348H122.369Z\" fill=\"white\"/>\\n<path d=\"M131.801 18.9598C133.439 18.9598 134.78 19.4638 135.824 20.4718C136.886 21.4798 137.417 23.1448 137.417 25.4668V32.9998H133.61V25.6288C133.61 24.4768 133.376 23.6038 132.908 23.0098C132.44 22.3978 131.738 22.0918 130.802 22.0918C129.83 22.0918 129.065 22.4248 128.507 23.0908C127.967 23.7568 127.697 24.6838 127.697 25.8718V32.9998H123.89V14.0997H127.697V20.8228C128.723 19.5807 130.091 18.9598 131.801 18.9598Z\" fill=\"white\"/>\\n<path d=\"M142.785 26.8438C142.857 27.7798 143.236 28.5358 143.92 29.1118C144.622 29.6698 145.549 29.9488 146.701 29.9488C147.655 29.9488 148.428 29.7508 149.022 29.3548C149.634 28.9408 149.941 28.3738 149.941 27.6538C149.941 27.1498 149.77 26.7538 149.428 26.4658C149.104 26.1598 148.636 25.9258 148.024 25.7638C147.43 25.5838 146.503 25.3678 145.243 25.1158C144.001 24.8818 142.957 24.5848 142.111 24.2248C141.265 23.8468 140.572 23.2978 140.032 22.5778C139.51 21.8398 139.249 20.8678 139.249 19.6618C139.249 18.5638 139.546 17.5828 140.14 16.7188C140.752 15.8548 141.589 15.1798 142.651 14.6938C143.731 14.1898 144.946 13.9378 146.296 13.9378C147.682 13.9378 148.923 14.1988 150.021 14.7207C151.137 15.2247 152.011 15.9268 152.641 16.8268C153.289 17.7268 153.622 18.7438 153.64 19.8778H149.671C149.581 19.0678 149.239 18.4198 148.645 17.9338C148.051 17.4298 147.268 17.1778 146.296 17.1778C145.396 17.1778 144.676 17.3668 144.136 17.7448C143.596 18.1228 143.326 18.6628 143.326 19.3648C143.326 19.8688 143.488 20.2648 143.812 20.5528C144.136 20.8228 144.594 21.0478 145.188 21.2278C145.782 21.3898 146.701 21.5878 147.943 21.8218C149.203 22.0558 150.265 22.3528 151.129 22.7128C151.993 23.0548 152.686 23.5858 153.208 24.3058C153.748 25.0078 154.018 25.9528 154.018 27.1408C154.018 28.2928 153.703 29.3278 153.073 30.2458C152.443 31.1458 151.561 31.8568 150.427 32.3788C149.311 32.9008 148.05 33.1618 146.646 33.1618C145.134 33.1618 143.785 32.8918 142.597 32.3518C141.427 31.7938 140.508 31.0288 139.842 30.0568C139.176 29.0848 138.835 27.9958 138.817 26.7898L142.785 26.8438Z\" fill=\"white\"/>\\n<path d=\"M157.528 13.3438C158.158 13.3438 158.679 13.5508 159.093 13.9648C159.507 14.3608 159.715 14.8648 159.715 15.4767C159.715 16.0888 159.507 16.6018 159.093 17.0158C158.679 17.4298 158.158 17.6368 157.528 17.6368C156.898 17.6368 156.367 17.4298 155.935 17.0158C155.521 16.6018 155.313 16.0888 155.313 15.4767C155.313 14.8648 155.521 14.3608 155.935 13.9648C156.367 13.5508 156.898 13.3438 157.528 13.3438ZM155.611 19.1218H159.418V32.9998H155.611V19.1218Z\" fill=\"white\"/>\\n<path d=\"M178.216 18.9598C179.71 18.9598 180.925 19.4548 181.861 20.4448C182.797 21.4348 183.265 23.0818 183.265 25.3858V33.0268H179.458V25.2508C179.458 23.1448 178.657 22.0918 177.055 22.0918C176.227 22.0918 175.561 22.3888 175.057 22.9828C174.553 23.5588 174.301 24.3688 174.301 25.4128V33.0268H170.494V25.2508C170.494 23.1448 169.684 22.0918 168.064 22.0918C167.236 22.0918 166.57 22.3978 166.066 23.0098C165.58 23.6038 165.337 24.4138 165.337 25.4398V33.0268H161.53V19.1218H165.6L165.202 20.8498C165.67 20.2558 166.228 19.7968 166.876 19.4727C167.524 19.1487 168.334 18.9777 169.306 18.9598C171.286 18.9598 172.663 19.7428 173.437 21.3088C173.941 20.5528 174.598 19.9768 175.408 19.5808C176.236 19.1668 177.172 18.9598 178.216 18.9598Z\" fill=\"white\"/>\\n<path d=\"M193.135 18.9598C194.377 18.9598 195.475 19.2568 196.429 19.8508C197.401 20.4268 198.157 21.2548 198.697 22.3348C199.255 23.4148 199.534 24.6658 199.534 26.0878C199.534 27.5098 199.255 28.7518 198.697 29.8138C198.157 30.8758 197.401 31.7038 196.429 32.2978C195.457 32.8738 194.35 33.1618 193.108 33.1618C191.326 33.1618 189.931 32.5228 188.923 31.2448V38.3998H185.116V19.1218H189.19L188.815 21.0388C189.283 20.4088 189.877 19.9048 190.597 19.5268C191.335 19.1488 192.181 18.9598 193.135 18.9598ZM192.244 30.0568C193.27 30.0568 194.098 29.6878 194.728 28.9498C195.358 28.1938 195.673 27.2218 195.673 26.0338C195.673 24.8458 195.358 23.8918 194.728 23.1718C194.098 22.4338 193.27 22.0648 192.244 22.0648C191.218 22.0648 190.399 22.4338 189.787 23.1718C189.175 23.8918 188.869 24.8458 188.869 26.0338C188.869 27.2398 189.175 28.2118 189.787 28.9498C190.399 29.6878 191.218 30.0568 192.244 30.0568Z\" fill=\"white\"/>\\n<path d=\"M201.109 14.0997H204.916V32.9998H201.109V14.0997Z\" fill=\"white\"/>\\n<path d=\"M206.489 26.0878C206.489 24.6478 206.777 23.3968 207.353 22.3348C207.947 21.2548 208.766 20.4268 209.81 19.8508C210.872 19.2568 212.096 18.9598 213.482 18.9598C214.886 18.9598 216.119 19.2388 217.181 19.7968C218.261 20.3368 219.098 21.1108 219.692 22.1188C220.304 23.1088 220.619 24.2788 220.637 25.6288C220.637 26.1148 220.601 26.5468 220.529 26.9248H210.458V27.0328C210.548 28.0408 210.872 28.8328 211.43 29.4088C211.988 29.9848 212.753 30.2728 213.725 30.2728C214.499 30.2728 215.138 30.1108 215.642 29.7868C216.164 29.4448 216.506 28.9498 216.668 28.3018H220.421C220.277 29.2198 219.926 30.0478 219.368 30.7858C218.81 31.5238 218.072 32.1088 217.154 32.5408C216.236 32.9548 215.183 33.1618 213.995 33.1618C212.447 33.1618 211.106 32.8738 209.972 32.2978C208.856 31.7218 207.992 30.9028 207.38 29.8408C206.786 28.7608 206.489 27.5098 206.489 26.0878ZM216.83 24.4408C216.704 23.5948 216.353 22.9468 215.777 22.4968C215.219 22.0288 214.508 21.7948 213.644 21.7948C212.816 21.7948 212.114 22.0378 211.538 22.5238C210.98 22.9918 210.647 23.6308 210.539 24.4408H216.83Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18t8vlp\",\"data-border\":true,\"data-framer-name\":\"Brand 4\",name:\"Brand 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xmjnw6\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:197,name:\"Company logo\",svg:'<svg width=\"197\" height=\"48\" viewBox=\"0 0 197 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.4\" d=\"M45.7999 21.2374C43.7211 23.3162 40.3508 23.3162 38.272 21.2374C36.1932 19.1586 36.1932 15.7883 38.272 13.7095C40.3508 11.6307 43.7211 11.6307 45.7999 13.7095C47.8787 15.7883 47.8787 19.1586 45.7999 21.2374Z\" fill=\"white\"/>\\n<path opacity=\"0.6\" d=\"M45.7954 21.2356C43.7166 23.3143 40.3462 23.3143 38.2674 21.2356L30.8331 13.8013C28.7543 11.7225 25.384 11.7225 23.3052 13.8013C21.2264 15.8801 21.2264 19.2504 23.3052 21.3292L30.7395 28.7635C32.8183 30.8423 36.1886 30.8423 38.2674 28.7635L45.7954 21.2356Z\" fill=\"white\"/>\\n<path d=\"M38.2671 28.7652C36.1883 30.844 32.8179 30.844 30.7391 28.7652L16.3106 14.3366C13.5388 11.5649 9.04501 11.5649 6.27329 14.3366L0 20.6099C2.07879 18.5311 5.44916 18.5311 7.52795 20.6099L23.2112 36.2931C25.29 38.3719 28.6603 38.3719 30.7391 36.2931L38.2671 28.7652Z\" fill=\"white\"/>\\n<path d=\"M72.362 32.9998L68.744 19.4458L65.126 32.9998H60.968L56 13.6138H59.996L63.128 26.7628L66.692 13.6138H70.877L74.333 26.8168L77.492 13.6138H81.515L76.52 32.9998H72.362Z\" fill=\"white\"/>\\n<path d=\"M86.7726 15.2338C86.7726 16.5028 85.7466 17.4478 84.2616 17.4478C82.8036 17.4478 81.7776 16.5028 81.7776 15.2338C81.7776 13.9108 82.8036 12.9658 84.2616 12.9658C85.7466 12.9658 86.7726 13.9108 86.7726 15.2338ZM86.1786 32.9998H82.4256V18.5818H86.1786V32.9998Z\" fill=\"white\"/>\\n<path d=\"M92.2184 32.9998H88.4384V13.6138H92.2184V32.9998Z\" fill=\"white\"/>\\n<path d=\"M93.5589 25.7908C93.5589 21.5248 96.0699 18.3118 99.9579 18.3118C101.686 18.3118 103.144 19.0678 104.224 20.4448V13.6138H107.95V32.9998H104.521V30.9208C103.387 32.4328 101.821 33.2698 99.9579 33.2698C96.0699 33.2698 93.5589 30.0028 93.5589 25.7908ZM97.4199 25.7908C97.4199 28.4908 98.9589 29.9218 100.795 29.9218C102.658 29.9218 104.197 28.4638 104.197 25.7368C104.197 23.0098 102.631 21.6328 100.795 21.6328C98.9589 21.6328 97.4199 23.0368 97.4199 25.7908Z\" fill=\"white\"/>\\n<path d=\"M116.295 33.2698C112.137 33.2698 109.275 30.1918 109.275 25.7908C109.275 21.4708 112.245 18.3118 116.295 18.3118C120.048 18.3118 122.829 20.8498 123.288 24.7378H119.346C119.157 22.8208 117.996 21.6328 116.295 21.6328C114.351 21.6328 113.109 23.2258 113.109 25.7908C113.109 28.3828 114.324 29.9488 116.295 29.9488C118.023 29.9488 119.13 28.8148 119.346 26.8438H123.288C122.856 30.8128 120.156 33.2698 116.295 33.2698Z\" fill=\"white\"/>\\n<path d=\"M128.37 26.0068V32.9998H124.617V18.5818H128.073V21.3628C129.126 19.5268 131.367 18.4198 133.689 18.4198V22.3078C130.503 22.0648 128.37 22.8208 128.37 26.0068Z\" fill=\"white\"/>\\n<path d=\"M143.145 32.9998V31.2178C142.2 32.5678 140.769 33.2698 138.798 33.2698C135.801 33.2698 133.803 31.5148 133.803 28.8148C133.803 26.0068 136.071 24.4948 140.283 24.4948C141.093 24.4948 141.795 24.5488 142.686 24.6568V23.7928C142.686 22.1728 141.768 21.2278 140.202 21.2278C138.582 21.2278 137.61 22.1728 137.475 23.7928H134.1C134.316 20.4718 136.719 18.3118 140.202 18.3118C143.982 18.3118 146.196 20.3908 146.196 23.9278V32.9998H143.145ZM137.34 28.7068C137.34 29.9218 138.204 30.6778 139.608 30.6778C141.525 30.6778 142.686 29.6248 142.686 27.9508V26.9248C141.795 26.7898 141.174 26.7358 140.526 26.7358C138.393 26.7358 137.34 27.4108 137.34 28.7068Z\" fill=\"white\"/>\\n<path d=\"M153.242 32.9998H149.516V21.7948H146.6V18.5818H149.516V17.7988C149.516 14.9368 151.055 13.3168 154.052 13.3168C154.97 13.3168 155.753 13.4788 156.374 13.7488V16.7188C155.969 16.5568 155.429 16.4758 154.943 16.4758C153.917 16.4758 153.242 16.8808 153.242 17.8798V18.5818H156.995V21.7948H153.242V32.9998Z\" fill=\"white\"/>\\n<path d=\"M167.572 29.3548V32.6218C166.654 33.0808 165.79 33.2698 164.683 33.2698C161.713 33.2698 159.85 31.5688 159.85 28.3288V21.7948H156.934V18.5818H159.85V14.3158H163.576V18.5818H167.707V21.7948H163.576V27.4648C163.576 29.1388 164.332 29.8138 165.682 29.8138C166.384 29.8138 167.032 29.6518 167.572 29.3548Z\" fill=\"white\"/>\\n<path d=\"M174.866 33.2428C170.546 33.2428 167.657 30.2458 167.657 25.7368C167.657 21.4438 170.654 18.3118 174.812 18.3118C179.375 18.3118 182.399 22.0108 181.724 26.7088H171.491C171.734 29.0578 172.868 30.3538 174.785 30.3538C176.432 30.3538 177.539 29.5438 177.971 28.1128H181.697C180.887 31.3798 178.376 33.2428 174.866 33.2428ZM174.731 21.0658C172.976 21.0658 171.869 22.1998 171.545 24.3328H177.755C177.647 22.3348 176.513 21.0658 174.731 21.0658Z\" fill=\"white\"/>\\n<path d=\"M181.949 25.7908C181.949 21.5248 184.46 18.3118 188.348 18.3118C190.076 18.3118 191.534 19.0678 192.614 20.4448V13.6138H196.34V32.9998H192.911V30.9208C191.777 32.4328 190.211 33.2698 188.348 33.2698C184.46 33.2698 181.949 30.0028 181.949 25.7908ZM185.81 25.7908C185.81 28.4908 187.349 29.9218 189.185 29.9218C191.048 29.9218 192.587 28.4638 192.587 25.7368C192.587 23.0098 191.021 21.6328 189.185 21.6328C187.349 21.6328 185.81 23.0368 185.81 25.7908Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17hjxgg hidden-13jbcgs\",\"data-framer-name\":\"Row 3\",name:\"Row 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-apft8y\",\"data-border\":true,\"data-framer-name\":\"Brand 1\",name:\"Brand 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-49ndod\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:145,name:\"Company logo\",svg:'<svg width=\"145\" height=\"48\" viewBox=\"0 0 145 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.2286 4.99951C12.0132 4.99951 9.04205 6.7149 7.43435 9.49951L1.66085 19.4995C0.0531559 22.2841 0.053153 25.7149 1.66085 28.4995L7.43435 38.4995C9.04205 41.2841 12.0132 42.9995 15.2286 42.9995H26.7756C29.991 42.9995 32.9621 41.2841 34.5698 38.4995L40.3433 28.4995C41.951 25.7149 41.951 22.2841 40.3433 19.4995L34.5698 9.49951C32.9621 6.7149 29.991 4.99951 26.7756 4.99951H15.2286ZM26.7756 10.9995L19.5587 10.9995C18.404 10.9995 17.6825 12.2494 18.2607 13.2489C20.0447 16.3327 21.8329 19.4142 23.6143 22.4995C24.1502 23.4277 24.1502 24.5713 23.6143 25.4995C21.8329 28.5849 20.0447 31.6663 18.2607 34.7501C17.6825 35.7496 18.404 36.9995 19.5587 36.9995H26.7756C27.8474 36.9995 28.8378 36.4277 29.3737 35.4995L35.1472 25.4995C35.6831 24.5713 35.6831 23.4277 35.1472 22.4995L29.3737 12.4995C28.8378 11.5713 27.8474 10.9995 26.7756 10.9995Z\" fill=\"white\"/>\\n<path d=\"M66.983 20.526H62.447C61.934 18.717 60.638 17.745 58.802 17.745C56.021 17.745 54.428 20.067 54.428 23.847C54.428 27.654 55.994 29.895 58.802 29.895C60.53 29.895 61.88 28.977 62.393 27.249H66.983C66.038 31.299 62.771 33.432 58.856 33.432C53.375 33.432 50 29.787 50 23.847C50 17.907 53.375 14.208 58.91 14.208C62.852 14.208 66.2 16.341 66.983 20.526Z\" fill=\"white\"/>\\n<path d=\"M75.1442 33.432C70.7432 33.432 68.0162 30.516 68.0162 25.737C68.0162 20.796 70.8242 18.015 75.1442 18.015C79.5452 18.015 82.2992 20.985 82.2992 25.737C82.2992 30.651 79.4642 33.432 75.1442 33.432ZM75.1442 30.084C77.0612 30.084 78.0602 28.572 78.0602 25.737C78.0602 22.929 77.0342 21.363 75.1442 21.363C73.2542 21.363 72.2552 22.902 72.2552 25.737C72.2552 28.545 73.2812 30.084 75.1442 30.084Z\" fill=\"white\"/>\\n<path d=\"M83.9439 33V18.474H88.0748V20.499C88.9928 18.771 90.3969 18.015 91.8819 18.015C92.4759 18.015 93.0159 18.177 93.3129 18.474V21.957C92.8269 21.849 92.3139 21.795 91.6659 21.795C89.1819 21.795 88.0748 23.199 88.0748 25.494V33H83.9439Z\" fill=\"white\"/>\\n<path d=\"M107.851 28.221C107.095 31.569 104.395 33.432 100.831 33.432C96.3217 33.432 93.5407 30.516 93.5407 25.737C93.5407 20.796 96.3487 18.015 100.669 18.015C105.016 18.015 107.743 20.904 107.743 25.656V26.574H97.7527C97.9687 28.896 99.0487 30.138 100.831 30.138C102.181 30.138 103.099 29.544 103.531 28.221H107.851ZM100.669 21.309C99.1297 21.309 98.1577 22.308 97.8337 24.198H103.477C103.153 22.308 102.181 21.309 100.669 21.309Z\" fill=\"white\"/>\\n<path d=\"M118.324 33.432C112.627 33.432 109.117 29.76 109.117 23.847C109.117 17.907 112.627 14.208 118.324 14.208C123.994 14.208 127.504 17.907 127.504 23.847C127.504 29.76 123.994 33.432 118.324 33.432ZM118.324 29.895C121.321 29.895 123.076 27.627 123.076 23.847C123.076 20.067 121.321 17.745 118.324 17.745C115.3 17.745 113.545 20.04 113.545 23.847C113.545 27.627 115.3 29.895 118.324 29.895Z\" fill=\"white\"/>\\n<path d=\"M133.466 19.365C133.466 23.28 144.266 19.959 144.266 27.465C144.266 31.245 141.134 33.432 136.841 33.432C132.494 33.432 129.389 31.434 128.741 27.249H133.304C133.655 29.058 134.924 30.057 136.868 30.057C138.812 30.057 139.838 29.274 139.838 28.005C139.838 23.901 129.011 27.033 129.011 19.77C129.011 16.692 131.576 14.208 136.085 14.208C139.892 14.208 143.186 16.017 143.753 20.256H139.136C138.758 18.447 137.705 17.583 135.923 17.583C134.411 17.583 133.466 18.285 133.466 19.365Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13009rc\",\"data-border\":true,\"data-framer-name\":\"Brand 2\",name:\"Brand 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nw07er\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:242,name:\"Company logo\",svg:'<svg width=\"242\" height=\"48\" viewBox=\"0 0 242 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.8841 4.30933L5.9999 8.28507L12.889 12.2617L19.7752 8.28593L12.8841 4.30933ZM21.776 11.7496L14.889 15.7258L14.8883 23.679L21.776 19.7019L21.776 11.7496ZM23.776 23.166L16.8881 27.1432L23.777 31.1196L30.6641 27.1434L23.776 23.166ZM32.6639 30.6076L25.7771 34.5837V42.5359L32.6639 38.5598V30.6076ZM21.7771 42.5363V34.5838L14.888 30.6072V38.5597L21.7771 42.5363ZM10.8883 23.6793L4 19.7019V11.7492L10.889 15.7258L10.8883 23.6793ZM10.888 28.2981L1.49986 22.8772C0.571733 22.3413 0 21.3509 0 20.2792V8.2855C0 7.57105 0.381106 6.91087 0.999789 6.55357L11.3836 0.55677C12.3117 0.0208073 13.4552 0.0206161 14.3834 0.556265L24.7756 6.55323C25.3946 6.91044 25.776 7.57081 25.776 8.2855L25.776 19.7019L35.664 25.4115C36.2828 25.7688 36.6639 26.429 36.6639 27.1435V39.1371C36.6639 40.2089 36.0921 41.1993 35.1639 41.7352L24.7771 47.732C24.1584 48.0893 23.3961 48.0893 22.7773 47.7321L12.3882 41.7353C11.4599 41.1994 10.888 40.209 10.888 39.1371V28.2981Z\" fill=\"white\"/>\\n<path d=\"M47 32.9999V12.5879H57.024C59.096 12.5879 60.6547 13.0732 61.7 14.0439C62.7453 14.9959 63.268 16.2559 63.268 17.8239C63.268 18.8692 62.9973 19.8026 62.456 20.6239C61.9333 21.4452 61.1773 21.9959 60.188 22.2759V22.4999C61.364 22.7426 62.26 23.2932 62.876 24.1519C63.5107 24.9919 63.828 25.9906 63.828 27.1479C63.828 29.0706 63.184 30.5266 61.896 31.5159C60.6267 32.5052 58.8253 32.9999 56.492 32.9999H47ZM51.228 20.9599H55.988C56.996 20.9599 57.724 20.7266 58.172 20.2599C58.6387 19.7932 58.872 19.1866 58.872 18.4399C58.872 17.5999 58.592 16.9746 58.032 16.5639C57.4907 16.1346 56.7627 15.9199 55.848 15.9199H51.228V20.9599ZM51.228 29.6399H56.016C57.1733 29.6399 58.0227 29.3879 58.564 28.8839C59.1053 28.3799 59.376 27.7172 59.376 26.8959C59.376 25.9626 59.0867 25.2812 58.508 24.8519C57.948 24.4039 57.1733 24.1799 56.184 24.1799H51.228V29.6399Z\" fill=\"white\"/>\\n<path d=\"M70.9148 33.2519C69.1788 33.2519 67.8535 32.7479 66.9388 31.7399C66.0242 30.7319 65.5668 29.2666 65.5668 27.3439V17.9919H69.6828V26.2519C69.6828 27.4466 69.8975 28.3612 70.3268 28.9959C70.7748 29.6119 71.5122 29.9199 72.5388 29.9199C73.5842 29.9199 74.3868 29.5652 74.9468 28.8559C75.5255 28.1279 75.8148 27.2692 75.8148 26.2799V17.9919H79.9308V32.9999H75.9828L75.8148 30.2559H75.6188C75.2642 31.2266 74.6575 31.9732 73.7988 32.4959C72.9588 32.9999 71.9975 33.2519 70.9148 33.2519Z\" fill=\"white\"/>\\n<path d=\"M82.7562 16.0599V12.5879H86.8722V16.0599H82.7562ZM82.7562 32.9999V17.9919H86.8722V32.9999H82.7562Z\" fill=\"white\"/>\\n<path d=\"M89.8525 32.9999V12.5879H93.9685V32.9999H89.8525Z\" fill=\"white\"/>\\n<path d=\"M102.045 33.2519C100.253 33.2519 98.806 32.6079 97.7047 31.3199C96.6034 30.0132 96.0527 28.0719 96.0527 25.4959C96.0527 22.9012 96.6034 20.9599 97.7047 19.6719C98.806 18.3652 100.253 17.7119 102.045 17.7119C103.202 17.7119 104.191 17.9732 105.013 18.4959C105.853 19.0186 106.45 19.7186 106.805 20.5959H107.029V12.5879H111.145V32.9999H107.169L107.029 30.3679H106.805C106.45 31.2266 105.853 31.9266 105.013 32.4679C104.191 32.9906 103.202 33.2519 102.045 33.2519ZM103.613 29.9199C104.378 29.9199 105.003 29.7426 105.489 29.3879C105.993 29.0332 106.366 28.5759 106.609 28.0159C106.851 27.4372 106.973 26.8306 106.973 26.1959V24.7679C106.973 24.1146 106.851 23.5079 106.609 22.9479C106.366 22.3879 105.993 21.9306 105.489 21.5759C105.003 21.2212 104.378 21.0439 103.613 21.0439C102.605 21.0439 101.793 21.4079 101.177 22.1359C100.561 22.8452 100.253 23.9652 100.253 25.4959C100.253 27.0079 100.561 28.1279 101.177 28.8559C101.793 29.5652 102.605 29.9199 103.613 29.9199Z\" fill=\"white\"/>\\n<path d=\"M114.107 16.0599V12.5879H118.223V16.0599H114.107ZM114.107 32.9999V17.9919H118.223V32.9999H114.107Z\" fill=\"white\"/>\\n<path d=\"M121.204 32.9999V17.9919H125.152L125.32 20.7079H125.488C125.898 19.7186 126.533 18.9719 127.392 18.4679C128.25 17.9639 129.212 17.7119 130.276 17.7119C131.284 17.7119 132.18 17.9172 132.964 18.3279C133.766 18.7386 134.401 19.4012 134.868 20.3159C135.334 21.2119 135.568 22.4159 135.568 23.9279V32.9999H131.452V24.8239C131.452 23.5546 131.228 22.6119 130.78 21.9959C130.332 21.3799 129.613 21.0719 128.624 21.0719C127.56 21.0719 126.738 21.4359 126.16 22.1639C125.6 22.8732 125.32 23.7039 125.32 24.6559V32.9999H121.204Z\" fill=\"white\"/>\\n<path d=\"M141.806 37.6759C140.088 37.6759 138.819 37.3866 137.998 36.8079C137.195 36.2292 136.794 35.4546 136.794 34.4839C136.794 33.6626 137.092 32.9999 137.69 32.4959C138.287 31.9919 138.968 31.7026 139.734 31.6279V31.4039C139.136 31.2172 138.66 30.9092 138.306 30.4799C137.97 30.0319 137.802 29.5279 137.802 28.9679C137.802 28.2959 138.026 27.7266 138.474 27.2599C138.94 26.7746 139.547 26.4479 140.294 26.2799V25.9999C139.659 25.6452 139.146 25.1599 138.754 24.5439C138.38 23.9279 138.194 23.1999 138.194 22.3599C138.194 20.9599 138.754 19.8399 139.874 18.9999C141.012 18.1412 142.534 17.7119 144.438 17.7119C144.755 17.7119 145.082 17.7399 145.418 17.7959C145.772 17.8332 146.099 17.8986 146.398 17.9919C146.659 16.9279 147.228 16.0972 148.106 15.4999C148.983 14.8839 150.131 14.5666 151.55 14.5479V17.7399C150.84 17.7212 150.206 17.8052 149.646 17.9919C149.086 18.1599 148.656 18.4306 148.358 18.8039C149.03 19.1212 149.58 19.6252 150.01 20.3159C150.439 20.9879 150.654 21.7626 150.654 22.6399C150.654 24.0212 150.103 25.1226 149.002 25.9439C147.919 26.7652 146.379 27.1759 144.382 27.1759C144.008 27.1759 143.635 27.1572 143.262 27.1199C142.888 27.0826 142.524 27.0266 142.17 26.9519C141.871 26.9706 141.628 27.0732 141.442 27.2599C141.274 27.4279 141.19 27.6426 141.19 27.9039C141.19 28.2586 141.386 28.4919 141.778 28.6039C142.188 28.6972 142.646 28.7439 143.15 28.7439H146.79C148.544 28.7439 149.832 29.0892 150.654 29.7799C151.494 30.4519 151.932 31.4506 151.97 32.7759C152.007 33.8959 151.774 34.8106 151.27 35.5199C150.784 36.2479 150.094 36.7892 149.198 37.1439C148.302 37.4986 147.266 37.6759 146.09 37.6759H141.806ZM144.466 24.5999C145.231 24.5999 145.819 24.4039 146.23 24.0119C146.64 23.6012 146.846 23.0786 146.846 22.4439C146.846 21.7532 146.622 21.2212 146.174 20.8479C145.726 20.4746 145.147 20.2879 144.438 20.2879C143.691 20.2879 143.103 20.4932 142.674 20.9039C142.244 21.3146 142.03 21.8279 142.03 22.4439C142.03 23.1159 142.254 23.6479 142.702 24.0399C143.15 24.4132 143.738 24.5999 144.466 24.5999ZM142.422 35.3799H146.034C147.284 35.3799 147.91 34.9039 147.91 33.9519C147.91 33.4106 147.732 33.0652 147.378 32.9159C147.023 32.7479 146.612 32.6639 146.146 32.6639H141.554C141.199 32.7386 140.91 32.8972 140.686 33.1399C140.462 33.3826 140.35 33.6719 140.35 34.0079C140.35 34.4746 140.527 34.8199 140.882 35.0439C141.255 35.2679 141.768 35.3799 142.422 35.3799Z\" fill=\"white\"/>\\n<path d=\"M153.973 32.9999V12.5879H163.997C166.069 12.5879 167.628 13.0732 168.673 14.0439C169.718 14.9959 170.241 16.2559 170.241 17.8239C170.241 18.8692 169.97 19.8026 169.429 20.6239C168.906 21.4452 168.15 21.9959 167.161 22.2759V22.4999C168.337 22.7426 169.233 23.2932 169.849 24.1519C170.484 24.9919 170.801 25.9906 170.801 27.1479C170.801 29.0706 170.157 30.5266 168.869 31.5159C167.6 32.5052 165.798 32.9999 163.465 32.9999H153.973ZM158.201 20.9599H162.961C163.969 20.9599 164.697 20.7266 165.145 20.2599C165.612 19.7932 165.845 19.1866 165.845 18.4399C165.845 17.5999 165.565 16.9746 165.005 16.5639C164.464 16.1346 163.736 15.9199 162.821 15.9199H158.201V20.9599ZM158.201 29.6399H162.989C164.146 29.6399 164.996 29.3879 165.537 28.8839C166.078 28.3799 166.349 27.7172 166.349 26.8959C166.349 25.9626 166.06 25.2812 165.481 24.8519C164.921 24.4039 164.146 24.1799 163.157 24.1799H158.201V29.6399Z\" fill=\"white\"/>\\n<path d=\"M172.953 32.9999V12.5879H177.069V32.9999H172.953Z\" fill=\"white\"/>\\n<path d=\"M186.686 33.2519C185.192 33.2519 183.876 32.9439 182.738 32.3279C181.599 31.7119 180.712 30.8252 180.078 29.6679C179.462 28.5106 179.154 27.1199 179.154 25.4959C179.154 23.9466 179.452 22.5932 180.05 21.4359C180.647 20.2599 181.506 19.3452 182.626 18.6919C183.746 18.0386 185.099 17.7119 186.686 17.7119C188.179 17.7119 189.486 18.0199 190.606 18.6359C191.744 19.2519 192.622 20.1479 193.238 21.3239C193.872 22.4812 194.19 23.8719 194.19 25.4959C194.19 27.0452 193.891 28.4079 193.294 29.5839C192.696 30.7412 191.838 31.6466 190.718 32.2999C189.616 32.9346 188.272 33.2519 186.686 33.2519ZM186.658 29.9199C187.666 29.9199 188.478 29.5559 189.094 28.8279C189.71 28.0999 190.018 26.9892 190.018 25.4959C190.018 24.0026 189.719 22.8919 189.122 22.1639C188.524 21.4359 187.712 21.0719 186.686 21.0719C185.659 21.0719 184.838 21.4359 184.222 22.1639C183.606 22.8919 183.298 24.0026 183.298 25.4959C183.298 26.9706 183.596 28.0812 184.194 28.8279C184.81 29.5559 185.631 29.9199 186.658 29.9199Z\" fill=\"white\"/>\\n<path d=\"M203.077 33.2519C201.583 33.2519 200.277 32.9346 199.157 32.2999C198.037 31.6466 197.169 30.7412 196.553 29.5839C195.937 28.4079 195.629 27.0452 195.629 25.4959C195.629 23.9279 195.937 22.5652 196.553 21.4079C197.187 20.2319 198.074 19.3266 199.213 18.6919C200.351 18.0386 201.686 17.7119 203.217 17.7119C204.505 17.7119 205.653 17.9546 206.661 18.4399C207.669 18.9252 208.462 19.5972 209.041 20.4559C209.638 21.3146 209.965 22.3132 210.021 23.4519H205.989C205.858 22.6679 205.531 22.0799 205.009 21.6879C204.486 21.2772 203.851 21.0719 203.105 21.0719C202.022 21.0719 201.201 21.4732 200.641 22.2759C200.081 23.0786 199.801 24.1519 199.801 25.4959C199.801 26.9706 200.099 28.0719 200.697 28.7999C201.313 29.5279 202.106 29.8919 203.077 29.8919C203.954 29.8919 204.645 29.6679 205.149 29.2199C205.671 28.7719 205.97 28.1839 206.045 27.4559H210.049C209.993 28.6319 209.657 29.6586 209.041 30.5359C208.443 31.3946 207.631 32.0666 206.605 32.5519C205.578 33.0186 204.402 33.2519 203.077 33.2519Z\" fill=\"white\"/>\\n<path d=\"M212.016 32.9999V12.5879H216.188V24.2079L217.42 22.7799L221.872 17.9919H226.94L221.172 23.9279L227.052 32.9999H222.208L219.156 28.2399L218.26 26.6719L216.188 28.7159V32.9999H212.016Z\" fill=\"white\"/>\\n<path d=\"M234.265 33.2799C232.081 33.2799 230.391 32.8226 229.197 31.9079C228.021 30.9746 227.442 29.7612 227.461 28.2679H231.493C231.511 29.0706 231.791 29.6492 232.333 30.0039C232.893 30.3399 233.574 30.5079 234.377 30.5079C235.217 30.5079 235.851 30.3679 236.281 30.0879C236.71 29.7892 236.925 29.3879 236.925 28.8839C236.925 28.1932 236.673 27.7452 236.169 27.5399C235.683 27.3346 234.909 27.1572 233.845 27.0079C232.743 26.8586 231.735 26.6439 230.821 26.3639C229.906 26.0652 229.178 25.6172 228.637 25.0199C228.114 24.4226 227.853 23.5732 227.853 22.4719C227.853 20.8852 228.45 19.6999 229.645 18.9159C230.858 18.1132 232.445 17.7119 234.405 17.7119C236.327 17.7119 237.858 18.1319 238.997 18.9719C240.135 19.7932 240.723 20.9506 240.761 22.4439H236.729C236.729 21.8092 236.505 21.3239 236.057 20.9879C235.627 20.6519 235.039 20.4839 234.293 20.4839C233.527 20.4839 232.949 20.6332 232.557 20.9319C232.165 21.2119 231.969 21.5852 231.969 22.0519C231.969 22.6119 232.221 23.0039 232.725 23.2279C233.229 23.4519 234.031 23.6386 235.133 23.7879C235.917 23.8999 236.663 24.0399 237.373 24.2079C238.082 24.3572 238.707 24.5999 239.249 24.9359C239.809 25.2532 240.247 25.7012 240.565 26.2799C240.901 26.8399 241.069 27.5772 241.069 28.4919C241.069 30.1346 240.462 31.3479 239.249 32.1319C238.035 32.8972 236.374 33.2799 234.265 33.2799Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mhhqbj\",\"data-border\":true,\"data-framer-name\":\"Brand 3\",name:\"Brand 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vcoxuq\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:190,name:\"Company logo\",svg:'<svg width=\"190\" height=\"48\" viewBox=\"0 0 190 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"4\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.6\" x=\"20\" y=\"4\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.6\" x=\"10\" y=\"14\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.45\" x=\"20\" y=\"14\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.3\" x=\"30\" y=\"14\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.6\" y=\"24\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.45\" x=\"10\" y=\"24\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.3\" x=\"20\" y=\"24\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.15\" x=\"30\" y=\"24\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.3\" x=\"10\" y=\"34\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<rect opacity=\"0.15\" x=\"20\" y=\"34\" width=\"10\" height=\"10\" fill=\"white\"/>\\n<path d=\"M69.92 23.22C69.92 25.98 69.03 28.35 67.25 30.33C65.49 32.31 63.03 33.3 59.87 33.3C56.69 33.3 54.25 32.31 52.55 30.33C50.85 28.35 50 26 50 23.28C50 20.44 50.9 18.05 52.7 16.11C54.5 14.17 56.93 13.2 59.99 13.2C63.11 13.2 65.54 14.19 67.28 16.17C69.04 18.13 69.92 20.48 69.92 23.22ZM65.57 23.34C65.57 21.26 65.09 19.64 64.13 18.48C63.17 17.32 61.78 16.74 59.96 16.74C58.02 16.74 56.6 17.36 55.7 18.6C54.8 19.82 54.35 21.35 54.35 23.19C54.35 24.97 54.79 26.51 55.67 27.81C56.55 29.11 58.02 29.76 60.08 29.76C61.98 29.76 63.37 29.17 64.25 27.99C65.13 26.79 65.57 25.24 65.57 23.34Z\" fill=\"white\"/>\\n<path d=\"M86.7174 33H81.0474V30.48C80.6674 31.26 80.1074 31.93 79.3674 32.49C78.6274 33.03 77.6474 33.3 76.4274 33.3C74.6474 33.3 73.2474 32.69 72.2274 31.47C71.2074 30.25 70.6974 28.59 70.6974 26.49C70.6974 24.47 71.1974 22.75 72.1974 21.33C73.1974 19.91 74.7074 19.2 76.7274 19.2C77.8274 19.2 78.7274 19.42 79.4274 19.86C80.1274 20.3 80.6674 20.86 81.0474 21.54V15.3H78.3474V12.36H84.9174V30.09H86.7174V33ZM81.0474 26.16V25.83C81.0474 24.71 80.7474 23.84 80.1474 23.22C79.5674 22.58 78.8374 22.26 77.9574 22.26C77.0974 22.26 76.3374 22.58 75.6774 23.22C75.0374 23.86 74.7174 24.87 74.7174 26.25C74.7174 27.55 75.0174 28.54 75.6174 29.22C76.2174 29.9 76.9274 30.24 77.7474 30.24C78.7674 30.24 79.5674 29.81 80.1474 28.95C80.7474 28.09 81.0474 27.16 81.0474 26.16Z\" fill=\"white\"/>\\n<path d=\"M100.437 28.74C100.337 29.94 99.7468 31 98.6668 31.92C97.5868 32.84 96.0768 33.3 94.1368 33.3C92.1168 33.3 90.4468 32.73 89.1268 31.59C87.8268 30.45 87.1768 28.75 87.1768 26.49C87.1768 24.41 87.7668 22.68 88.9468 21.3C90.1468 19.9 91.8168 19.2 93.9568 19.2C95.8368 19.2 97.3568 19.74 98.5168 20.82C99.6968 21.9 100.297 23.32 100.317 25.08C100.317 25.74 100.247 26.39 100.107 27.03H91.2268C91.4468 29.17 92.5068 30.24 94.4068 30.24C95.4468 30.24 96.1468 29.99 96.5068 29.49C96.8868 28.99 97.1168 28.54 97.1968 28.14L100.437 28.74ZM96.3268 24.78C96.4068 24.1 96.2568 23.46 95.8768 22.86C95.5168 22.26 94.8768 21.96 93.9568 21.96C93.1568 21.96 92.5368 22.22 92.0968 22.74C91.6568 23.26 91.3768 23.94 91.2568 24.78H96.3268Z\" fill=\"white\"/>\\n<path d=\"M102.489 20.43C103.669 19.95 104.649 19.63 105.429 19.47C106.229 19.29 107.179 19.2 108.279 19.2C109.739 19.2 110.999 19.58 112.059 20.34C113.119 21.1 113.649 22.25 113.649 23.79V29.67C113.649 30.37 113.959 30.72 114.579 30.72C114.759 30.72 114.949 30.69 115.149 30.63L115.179 32.67C114.399 33.09 113.589 33.3 112.749 33.3C110.969 33.3 109.979 32.41 109.779 30.63V30.6C109.399 31.28 108.849 31.9 108.129 32.46C107.429 33.02 106.529 33.3 105.429 33.3C104.449 33.3 103.509 33.01 102.609 32.43C101.709 31.85 101.259 30.85 101.259 29.43C101.259 27.77 101.919 26.67 103.239 26.13C104.579 25.59 106.019 25.32 107.559 25.32C108.419 25.32 109.159 25.36 109.779 25.44V24.99C109.779 24.29 109.679 23.61 109.479 22.95C109.299 22.29 108.659 21.96 107.559 21.96C107.159 21.96 106.789 21.99 106.449 22.05C106.129 22.09 105.809 22.19 105.489 22.35L104.979 24.27L101.889 23.94L102.489 20.43ZM109.779 27.48V27.3C109.459 27.26 109.129 27.22 108.789 27.18C108.469 27.14 108.149 27.12 107.829 27.12C107.149 27.12 106.549 27.25 106.029 27.51C105.509 27.75 105.249 28.24 105.249 28.98C105.249 29.42 105.369 29.79 105.609 30.09C105.849 30.39 106.259 30.54 106.839 30.54C107.519 30.54 108.149 30.3 108.729 29.82C109.329 29.32 109.679 28.54 109.779 27.48Z\" fill=\"white\"/>\\n<path d=\"M130.115 26.25C130.115 28.39 129.415 30.1 128.015 31.38C126.615 32.66 124.835 33.3 122.675 33.3C120.595 33.3 118.895 32.7 117.575 31.5C116.275 30.28 115.625 28.58 115.625 26.4C115.625 24.42 116.225 22.72 117.425 21.3C118.625 19.88 120.445 19.17 122.885 19.17C125.325 19.17 127.135 19.88 128.315 21.3C129.515 22.7 130.115 24.35 130.115 26.25ZM126.125 26.13C126.125 24.75 125.805 23.74 125.165 23.1C124.525 22.46 123.745 22.14 122.825 22.14C121.825 22.14 121.035 22.5 120.455 23.22C119.895 23.92 119.615 24.91 119.615 26.19C119.615 27.35 119.875 28.33 120.395 29.13C120.935 29.93 121.735 30.33 122.795 30.33C123.795 30.33 124.595 29.96 125.195 29.22C125.815 28.46 126.125 27.43 126.125 26.13Z\" fill=\"white\"/>\\n<path d=\"M145.293 33H130.653V29.58H132.753V16.92H130.653V13.5H139.503V16.92H136.773V29.58H141.873L142.473 25.8L145.893 26.1L145.293 33Z\" fill=\"white\"/>\\n<path d=\"M147.652 20.43C148.832 19.95 149.812 19.63 150.592 19.47C151.392 19.29 152.342 19.2 153.442 19.2C154.902 19.2 156.162 19.58 157.222 20.34C158.282 21.1 158.812 22.25 158.812 23.79V29.67C158.812 30.37 159.122 30.72 159.742 30.72C159.922 30.72 160.112 30.69 160.312 30.63L160.342 32.67C159.562 33.09 158.752 33.3 157.912 33.3C156.132 33.3 155.142 32.41 154.942 30.63V30.6C154.562 31.28 154.012 31.9 153.292 32.46C152.592 33.02 151.692 33.3 150.592 33.3C149.612 33.3 148.672 33.01 147.772 32.43C146.872 31.85 146.422 30.85 146.422 29.43C146.422 27.77 147.082 26.67 148.402 26.13C149.742 25.59 151.182 25.32 152.722 25.32C153.582 25.32 154.322 25.36 154.942 25.44V24.99C154.942 24.29 154.842 23.61 154.642 22.95C154.462 22.29 153.822 21.96 152.722 21.96C152.322 21.96 151.952 21.99 151.612 22.05C151.292 22.09 150.972 22.19 150.652 22.35L150.142 24.27L147.052 23.94L147.652 20.43ZM154.942 27.48V27.3C154.622 27.26 154.292 27.22 153.952 27.18C153.632 27.14 153.312 27.12 152.992 27.12C152.312 27.12 151.712 27.25 151.192 27.51C150.672 27.75 150.412 28.24 150.412 28.98C150.412 29.42 150.532 29.79 150.772 30.09C151.012 30.39 151.422 30.54 152.002 30.54C152.682 30.54 153.312 30.3 153.892 29.82C154.492 29.32 154.842 28.54 154.942 27.48Z\" fill=\"white\"/>\\n<path d=\"M176.087 25.92C176.087 27.92 175.557 29.65 174.497 31.11C173.457 32.57 171.917 33.3 169.877 33.3C167.817 33.3 166.367 32.52 165.527 30.96C165.487 31.3 165.437 31.64 165.377 31.98C165.337 32.32 165.287 32.66 165.227 33H161.357C161.497 32.3 161.617 31.6 161.717 30.9C161.817 30.2 161.867 29.51 161.867 28.83V15.3H160.067V12.36H165.737V22.05C166.097 21.27 166.637 20.6 167.357 20.04C168.097 19.48 169.077 19.2 170.297 19.2C171.997 19.2 173.387 19.79 174.467 20.97C175.547 22.15 176.087 23.8 176.087 25.92ZM172.067 26.25C172.067 24.95 171.787 23.96 171.227 23.28C170.667 22.6 169.927 22.26 169.007 22.26C167.967 22.26 167.157 22.64 166.577 23.4C166.017 24.16 165.737 25.04 165.737 26.04V26.37C165.737 27.47 166.007 28.4 166.547 29.16C167.107 29.9 167.897 30.27 168.917 30.27C169.797 30.27 170.537 29.95 171.137 29.31C171.757 28.65 172.067 27.63 172.067 26.25Z\" fill=\"white\"/>\\n<path d=\"M189.161 28.86C189.161 30.36 188.561 31.48 187.361 32.22C186.181 32.94 184.641 33.3 182.741 33.3C181.761 33.3 180.771 33.2 179.771 33C178.791 32.78 177.851 32.44 176.951 31.98L177.491 28.2L180.491 28.53V30.21C180.851 30.33 181.231 30.41 181.631 30.45C182.031 30.47 182.331 30.48 182.531 30.48C183.271 30.48 183.911 30.36 184.451 30.12C184.991 29.88 185.261 29.52 185.261 29.04C185.261 28.46 184.851 28.08 184.031 27.9C183.211 27.72 182.261 27.54 181.181 27.36C180.101 27.18 179.151 26.81 178.331 26.25C177.511 25.69 177.101 24.74 177.101 23.4C177.101 21.74 177.741 20.63 179.021 20.07C180.321 19.49 181.661 19.2 183.041 19.2C184.841 19.2 186.531 19.61 188.111 20.43L188.441 23.88L185.441 24.21L185.201 22.32C184.541 22.1 183.831 21.99 183.071 21.99C182.571 21.99 182.141 22.1 181.781 22.32C181.441 22.52 181.271 22.84 181.271 23.28C181.271 23.86 181.661 24.25 182.441 24.45C183.241 24.63 184.161 24.81 185.201 24.99C186.261 25.17 187.181 25.54 187.961 26.1C188.761 26.64 189.161 27.56 189.161 28.86Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5q5zss\",\"data-border\":true,\"data-framer-name\":\"Brand 4\",name:\"Brand 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q2jxmw\",\"data-framer-name\":\"Company logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:142,name:\"Company logo\",svg:'<svg width=\"142\" height=\"48\" viewBox=\"0 0 142 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.6446 39.168C28.0414 40.5084 27.2916 41.8211 26.3927 42.9568C33.8508 40.4431 39.341 33.6514 39.9454 25.5H37.2905C34.0506 25.5 31.4481 28.0861 30.9215 31.2829C30.436 34.2297 29.6594 36.913 28.6446 39.168Z\" fill=\"white\"/>\\n<path d=\"M22.7724 25.5C26.1645 25.5 28.9394 28.3299 28.3163 31.6643C26.963 38.9067 23.7496 44 20.0008 44C15.2573 44 11.3709 35.8451 11.0258 25.5H22.7724Z\" fill=\"white\"/>\\n<path d=\"M30.9904 17.1502C31.4865 20.3769 34.101 23 37.3656 23H39.9763C39.564 14.6271 34.0028 7.60817 26.3927 5.04317C27.2916 6.17892 28.0414 7.4916 28.6446 8.83195C29.7089 11.197 30.5112 14.0331 30.9904 17.1502Z\" fill=\"white\"/>\\n<path d=\"M28.4165 16.8957C28.9839 20.2133 26.2211 23 22.8553 23H11.0119C11.2463 12.4189 15.1812 4 20.0008 4C23.8455 4 27.1271 9.35721 28.4165 16.8957Z\" fill=\"white\"/>\\n<path d=\"M8.51131 23C8.6249 17.5917 9.65667 12.6106 11.3571 8.83195C11.9602 7.4916 12.71 6.17892 13.609 5.04317C5.99889 7.60817 0.437684 14.6271 0.0253906 23H8.51131Z\" fill=\"white\"/>\\n<path d=\"M0.0562286 25.5C0.660628 33.6514 6.15088 40.4431 13.609 42.9568C12.71 41.8211 11.9602 40.5084 11.3571 39.168C9.7092 35.5061 8.68929 30.7149 8.52446 25.5H0.0562286Z\" fill=\"white\"/>\\n<path d=\"M50 32.9999V13.3169H64.985V17.0699H54.428V21.2549H63.608V24.7649H54.428V29.2469H64.985V32.9999H50Z\" fill=\"white\"/>\\n<path d=\"M72.3946 33.2699C70.7926 33.2699 69.5956 32.7479 68.8036 31.7039C68.0116 30.6419 67.6156 29.2469 67.6156 27.5189V18.5009H71.7466V26.9249C71.7466 28.0769 71.9716 28.8689 72.4216 29.3009C72.8896 29.7149 73.5106 29.9219 74.2846 29.9219C75.2026 29.9219 75.8956 29.6159 76.3636 29.0039C76.8316 28.3919 77.0656 27.5909 77.0656 26.6009V18.5009H81.1966V32.9999H77.3356L77.0386 30.6239H76.8226C76.4986 31.4159 75.9406 32.0549 75.1486 32.5409C74.3746 33.0269 73.4566 33.2699 72.3946 33.2699Z\" fill=\"white\"/>\\n<path d=\"M84.2965 32.9999V18.5009H88.1575L88.4545 20.9039H88.6975C89.0215 20.0039 89.4535 19.3469 89.9935 18.9329C90.5335 18.5009 91.3075 18.2849 92.3155 18.2849H93.6115V22.4969H91.7485C90.5605 22.4969 89.7145 22.8029 89.2105 23.4149C88.7065 24.0089 88.4545 24.8099 88.4545 25.8179V32.9999H84.2965Z\" fill=\"white\"/>\\n<path d=\"M101.564 33.2699C99.2063 33.2699 97.4513 32.5949 96.2993 31.2449C95.1473 29.8949 94.5713 28.0949 94.5713 25.8449V25.7639C94.5713 23.2079 95.2103 21.3179 96.4883 20.0939C97.7663 18.8519 99.4583 18.2309 101.564 18.2309C103.688 18.2309 105.389 18.8519 106.667 20.0939C107.963 21.3179 108.611 23.2079 108.611 25.7639V25.8449C108.593 28.0949 108.008 29.8949 106.856 31.2449C105.704 32.5949 103.94 33.2699 101.564 33.2699ZM101.564 29.9219C102.482 29.9219 103.175 29.6699 103.643 29.1659C104.129 28.6619 104.372 27.9689 104.372 27.0869V24.4949C104.372 23.5949 104.12 22.8929 103.616 22.3889C103.13 21.8669 102.446 21.6059 101.564 21.6059C100.7 21.6059 100.016 21.8669 99.5123 22.3889C99.0263 22.8929 98.7833 23.5949 98.7833 24.4949V27.0869C98.7833 27.9689 99.0173 28.6619 99.4853 29.1659C99.9713 29.6699 100.664 29.9219 101.564 29.9219Z\" fill=\"white\"/>\\n<path d=\"M110.876 37.5089V18.5009H114.818L115.034 20.6339H115.223C115.583 19.8779 116.141 19.2929 116.897 18.8789C117.671 18.4469 118.535 18.2309 119.489 18.2309C121.433 18.2309 122.846 18.8879 123.728 20.2019C124.61 21.5159 125.051 23.2709 125.051 25.4669V26.0879C125.051 28.5899 124.547 30.4169 123.539 31.5689C122.549 32.7029 121.199 33.2699 119.489 33.2699C118.553 33.2699 117.698 33.0629 116.924 32.6489C116.15 32.2169 115.583 31.6229 115.223 30.8669H115.034V37.5089H110.876ZM117.815 29.8949C118.715 29.8949 119.408 29.6429 119.894 29.1389C120.38 28.6349 120.623 27.9239 120.623 27.0059V24.5219C120.623 23.6039 120.38 22.8929 119.894 22.3889C119.408 21.8669 118.715 21.6059 117.815 21.6059C116.969 21.6059 116.294 21.8669 115.79 22.3889C115.304 22.9109 115.061 23.6399 115.061 24.5759V26.9519C115.061 27.8879 115.304 28.6169 115.79 29.1389C116.294 29.6429 116.969 29.8949 117.815 29.8949Z\" fill=\"white\"/>\\n<path d=\"M130.853 33.2699C129.521 33.2699 128.441 32.9189 127.613 32.2169C126.785 31.4969 126.371 30.5429 126.371 29.3549V29.3009C126.371 27.9149 126.812 26.8439 127.694 26.0879C128.576 25.3319 129.764 24.8639 131.258 24.6839L135.308 24.1439V23.5769C135.308 22.2089 134.48 21.5249 132.824 21.5249C132.032 21.5249 131.402 21.6779 130.934 21.9839C130.484 22.2899 130.259 22.7309 130.259 23.3069H126.506C126.506 21.7049 127.091 20.4629 128.261 19.5809C129.431 18.6809 131.078 18.2309 133.202 18.2309C135.146 18.2309 136.667 18.6449 137.765 19.4729C138.881 20.3009 139.439 21.6149 139.439 23.4149V30.0839H141.329V32.9999H136.361L136.037 30.7589H135.74C135.38 31.5509 134.777 32.1719 133.931 32.6219C133.103 33.0539 132.077 33.2699 130.853 33.2699ZM132.635 30.2999C133.355 30.2999 133.958 30.1289 134.444 29.7869C134.948 29.4269 135.236 28.9679 135.308 28.4099V26.4659L132.581 26.8709C131.969 26.9429 131.474 27.1049 131.096 27.3569C130.718 27.5909 130.529 27.9509 130.529 28.4369V28.7879C130.529 29.2379 130.709 29.6069 131.069 29.8949C131.447 30.1649 131.969 30.2999 132.635 30.2999Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-h31g04\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fhjy\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"Partnerships\"})}),className:\"framer-f0r2ig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s0q9f9\",\"data-framer-name\":\"Icon\",layout:\"position\",name:\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 16\"><path d=\"M 5.425 14.364 L 6.456 14.959 C 6.655 15.073 6.754 15.131 6.859 15.153 C 6.952 15.173 7.048 15.173 7.141 15.153 C 7.246 15.131 7.345 15.073 7.544 14.959 L 8.575 14.364 M 2.275 12.546 L 1.276 11.969 C 1.066 11.848 0.962 11.787 0.885 11.701 C 0.818 11.625 0.767 11.535 0.735 11.437 C 0.7 11.326 0.7 11.201 0.7 10.952 L 0.7 9.818 M 0.7 6.182 L 0.7 5.048 C 0.7 4.799 0.7 4.675 0.735 4.563 C 0.767 4.465 0.818 4.375 0.885 4.299 C 0.962 4.213 1.066 4.152 1.276 4.031 L 2.275 3.455 M 5.425 1.636 L 6.456 1.041 C 6.655 0.927 6.754 0.869 6.859 0.847 C 6.952 0.827 7.048 0.827 7.141 0.847 C 7.246 0.869 7.345 0.927 7.544 1.041 L 8.575 1.636 M 11.725 3.455 L 12.724 4.031 C 12.934 4.152 13.038 4.213 13.115 4.299 C 13.182 4.375 13.233 4.465 13.265 4.563 C 13.3 4.675 13.3 4.799 13.3 5.048 L 13.3 6.182 M 13.3 9.818 L 13.3 10.952 C 13.3 11.201 13.3 11.326 13.265 11.437 C 13.233 11.535 13.182 11.625 13.115 11.701 C 13.038 11.787 12.934 11.848 12.724 11.969 L 11.725 12.546 M 5.425 7.091 L 7 8 M 7 8 L 8.575 7.091 M 7 8 L 7 9.818 M 0.7 4.364 L 2.275 5.273 M 11.725 5.273 L 13.3 4.364 M 7 13.455 L 7 15.273\" fill=\"transparent\" stroke-width=\"1.18\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8920896664,withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Trusted by top quality brands.\"})}),className:\"framer-149nlp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We proud ourselves to have amazing partnerships and trust.\"})}),className:\"framer-tio9yu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13o9ot4\",\"data-framer-name\":\"Info\",name:\"Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1207zia\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"120\"})}),className:\"framer-xanpgk\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Beta testers\"})}),className:\"framer-18nblgd\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14qma61\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6f8ni\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"560\"})}),className:\"framer-jb5g7u\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Waitlist members.\"})}),className:\"framer-z213xh\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hb17jy\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14phqs6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"55+\"})}),className:\"framer-x9fipb\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Partnerships\"})}),className:\"framer-1npcd3u\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zjljf0\",\"data-framer-name\":\"FAQ section\",id:elementId6,name:\"FAQ section\",ref:ref8,children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-18zx32i\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kw09l2\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"FAQ\"})}),className:\"framer-1htz3pz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Any doubts?\"})}),className:\"framer-28fc1g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"No Worries, Just Answers!\"})}),className:\"framer-m0143u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j894ln\",\"data-framer-name\":\"FAQs\",name:\"FAQs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jeejei\",\"data-framer-name\":\"Row 1\",name:\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7257.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-acx3lr-container\",\"data-framer-name\":\"FAQ 1\",name:\"FAQ 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"pM4_cRhyC\",jwgeNOSDb:\"iLumina is a SaaS application that allows you to work and interact with multiple LLMs in the same platform.\",layoutId:\"pM4_cRhyC\",name:\"FAQ 1\",QeMmY6I4z:\"What is iLumina ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7340.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-if9omt-container\",\"data-framer-name\":\"FAQ 2\",name:\"FAQ 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"oGD3wcC1Y\",jwgeNOSDb:\"To get started, simply sign up for our free beta program or choose a subscription plan that fits your needs.\",layoutId:\"oGD3wcC1Y\",name:\"FAQ 2\",QeMmY6I4z:\"How do I get started with iLumina ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7423.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vh6qjb-container\",\"data-framer-name\":\"FAQ 3\",name:\"FAQ 3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"GQxWHlaJP\",jwgeNOSDb:\"LLMs are AI models that have been trained on vast amounts of text data to understand and generate human-like text.\",layoutId:\"GQxWHlaJP\",name:\"FAQ 3\",QeMmY6I4z:\"What are Large Language Models ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7506.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5x078j-container\",\"data-framer-name\":\"FAQ 4\",name:\"FAQ 4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"QAEABNeuP\",jwgeNOSDb:\"Yes!, iLumina offers seamless integration with popular tools and platforms. \",layoutId:\"QAEABNeuP\",name:\"FAQ 4\",QeMmY6I4z:\"Can I integrate iLumina with my existing tools ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149nrxd\",\"data-framer-name\":\"Row 2\",name:\"Row 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7257.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g17nn3-container\",\"data-framer-name\":\"FAQ 8\",name:\"FAQ 8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"KzKpj9sxY\",jwgeNOSDb:\"Yes, you can join our free beta program to test out Lumina and experience its features firsthand.\",layoutId:\"KzKpj9sxY\",name:\"FAQ 8\",QeMmY6I4z:\"Is there a free trial available?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7340.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-edopz0-container\",\"data-framer-name\":\"FAQ 5\",name:\"FAQ 5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"NT1Srr6EZ\",jwgeNOSDb:\"iLumina stands out by offering access to multiple LLMs, customizable analytics, and seamless integrations.\",layoutId:\"NT1Srr6EZ\",name:\"FAQ 5\",QeMmY6I4z:\"What makes iLumina different from other AI platforms ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7423.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5z6cfm-container\",\"data-framer-name\":\"FAQ 6\",name:\"FAQ 6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"yPP3qdZwv\",jwgeNOSDb:\"We offer various levels of support depending on your plan, ranging from email support to 24/7 premium support.\",layoutId:\"yPP3qdZwv\",name:\"FAQ 6\",QeMmY6I4z:\"What kind of support is available ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(min(100vw - 116px, 1004px), 496px)\",y:undefined},Z12g0eqg0:{width:\"min(min(100vw - 44px, 1004px), 496px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:\"496px\",y:7506.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ps8rrl-container\",\"data-framer-name\":\"FAQ 7\",name:\"FAQ 7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{style:{maxWidth:\"100%\",width:\"100%\"}},Z12g0eqg0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AccordionRow,{height:\"100%\",id:\"bAfC3Uft7\",jwgeNOSDb:\"We use industry-standard encryption and follow best practices to ensure your data is safe and secure.\",layoutId:\"bAfC3Uft7\",name:\"FAQ 7\",QeMmY6I4z:\"How secure is my data with iLumina ?\",style:{width:\"100%\"},variant:\"MMvXcBOIL\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Do you have a specific question for us?\"})}),className:\"framer-18lynzb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:7685.000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-193bv4d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"UZPkO782v\"}},children:/*#__PURE__*/_jsx(HomePageButtonsMainCTAs,{height:\"100%\",id:\"a228guZVJ\",layoutId:\"a228guZVJ\",Oh2adSLw2:\"Use iLumina\",variant:\"B1AfY8UMW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-64xmv8\",\"data-framer-name\":\"FInal CTA\",name:\"FInal CTA\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vzsnem\",\"data-border\":true,\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-64rrpd\",\"data-framer-name\":\"Vector graphic\",name:\"Vector graphic\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-owbp58\",\"data-framer-name\":\"Vector graphic\",layout:\"position\",name:\"Vector graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1474 312\"><path d=\"M 0.427 160.727 C 36.099 143.495 197.35 -6.172 717.353 149.408 C 1237.36 304.989 1391.65 251.087 1473.57 102.336\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 1.419 154.955 C 35.389 138.543 199.362 -2.342 714.745 155.083 C 1230.13 312.509 1390.64 238.879 1468.67 97.215\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 2.41 149.191 C 34.678 133.599 201.379 1.49 712.143 160.774 C 1222.91 320.058 1389.64 226.686 1463.76 92.102\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 3.4 143.421 C 33.974 128.65 203.39 5.323 709.54 166.458 C 1215.69 327.593 1388.64 214.487 1458.86 86.99\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.393 137.648 C 33.265 123.698 205.408 9.147 706.939 172.134 C 1208.47 335.12 1387.65 202.279 1453.96 81.862\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.369 126.112 C 31.845 113.803 209.438 16.817 701.722 183.506 C 1194.01 350.196 1385.63 177.884 1444.15 71.634\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.36 120.342 C 31.141 108.854 211.456 20.643 699.12 189.184 C 1186.78 357.725 1384.64 165.678 1439.24 66.515\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 9.343 108.806 C 29.728 98.959 215.485 28.306 693.909 200.557 C 1172.33 372.807 1382.62 141.284 1429.44 56.288\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 10.334 103.035 C 29.017 94.008 217.502 32.138 691.307 206.233 C 1165.11 380.328 1381.63 129.077 1424.54 51.161\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 11.319 97.263 C 28.301 89.057 219.508 35.963 688.699 211.916 C 1157.89 387.869 1380.62 116.876 1419.63 46.047\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 12.31 91.499 C 27.597 84.113 221.525 39.801 686.097 217.606 C 1150.67 395.41 1379.62 104.682 1414.73 40.934\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.302 85.726 C 26.887 79.161 223.544 43.625 683.489 223.281 C 1143.43 402.937 1378.62 92.481 1409.82 35.812\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 14.293 79.956 C 26.184 74.212 225.561 47.457 680.886 228.965 C 1136.21 410.472 1377.61 80.281 1404.92 30.693\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 15.286 74.19 C 25.475 69.267 227.573 51.288 678.286 234.654 C 1129 418.019 1376.61 68.087 1400.02 25.585\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 16.276 68.42 C 24.77 64.317 229.59 55.121 675.683 240.338 C 1121.78 425.555 1375.61 55.88 1395.11 20.466\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 19.243 51.112 C 22.64 49.471 235.63 66.615 667.863 257.387 C 1100.1 448.158 1372.6 19.279 1380.4 5.111\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 20.235 45.343 C 21.937 44.522 237.649 70.442 665.262 263.065 C 1092.88 455.688 1371.6 7.08 1375.5 0\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 23.427 50.434 C 24.256 49.552 247.746 67.07 663.335 259.72 C 1078.92 452.37 1358.61 19.57 1369.98 16.478\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 25.627 61.306 C 27.286 59.543 255.832 59.882 664.016 250.708 C 1072.2 441.533 1346.63 44.264 1369.37 38.078\" fill=\"transparent\" stroke=\"rgb(36, 43, 56)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11303580124,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uste8f\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xcexel\",\"data-framer-name\":\"Left content\",name:\"Left content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jw9bca\",\"data-framer-name\":\"Logo_mark\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:41,name:\"Logo_mark\",svg:'<svg width=\"41\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"40\" height=\"40\" rx=\"3.31\" fill=\"#050A15\"/><rect x=\"9.135\" y=\"9.134\" width=\"22.731\" height=\"22.731\" rx=\"11.366\" stroke=\"#1E4A8C\" stroke-width=\".166\"/><g filter=\"url(#a)\"><rect x=\"11.259\" y=\"10.983\" width=\"18.759\" height=\"18.759\" rx=\"9.379\" fill=\"url(#b)\"/><rect x=\"11.162\" y=\"10.886\" width=\"18.952\" height=\"18.952\" rx=\"9.476\" stroke=\"#699CE8\" stroke-width=\".193\"/><rect x=\"23.442\" y=\"17.558\" width=\"5.608\" height=\"5.608\" rx=\"2.804\" transform=\"rotate(180 23.442 17.558)\" fill=\"url(#c)\" opacity=\".2\"/><rect x=\"25.569\" y=\"16.591\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 25.57 16.591)\" fill=\"url(#d)\" opacity=\".2\"/><rect x=\"26.923\" y=\"19.105\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 26.923 19.105)\" fill=\"url(#e)\" opacity=\".2\"/><rect x=\"15.707\" y=\"17.558\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 15.707 17.558)\" fill=\"url(#f)\" opacity=\".2\"/><g filter=\"url(#g)\"><rect x=\"12.419\" y=\"12.143\" width=\"16.438\" height=\"16.438\" rx=\"8.219\" fill=\"url(#h)\"/><rect x=\"12.322\" y=\"12.046\" width=\"16.631\" height=\"16.631\" rx=\"8.316\" stroke=\"#2965C0\" stroke-width=\".193\"/><rect x=\"23.442\" y=\"18.718\" width=\"5.608\" height=\"5.608\" rx=\"2.804\" transform=\"rotate(180 23.442 18.718)\" fill=\"url(#i)\" opacity=\".2\"/><rect x=\"25.569\" y=\"17.751\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 25.57 17.751)\" fill=\"url(#j)\" opacity=\".2\"/><rect x=\"26.923\" y=\"20.265\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 26.923 20.265)\" fill=\"url(#k)\" opacity=\".2\"/><rect x=\"15.707\" y=\"18.718\" width=\".967\" height=\".967\" rx=\".483\" transform=\"rotate(180 15.707 18.718)\" fill=\"url(#l)\" opacity=\".2\"/><rect x=\"19.811\" y=\"19.535\" width=\"1.655\" height=\"1.655\" rx=\".828\" fill=\"url(#m)\"/></g></g><defs><linearGradient id=\"c\" x1=\"26.247\" y1=\"12.723\" x2=\"26.247\" y2=\"24.037\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"d\" x1=\"26.053\" y1=\"15.758\" x2=\"26.053\" y2=\"17.708\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"e\" x1=\"27.407\" y1=\"18.271\" x2=\"27.407\" y2=\"20.222\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"f\" x1=\"16.19\" y1=\"16.724\" x2=\"16.19\" y2=\"18.675\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"i\" x1=\"26.246\" y1=\"13.884\" x2=\"26.246\" y2=\"25.197\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"j\" x1=\"26.053\" y1=\"16.918\" x2=\"26.053\" y2=\"18.868\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"k\" x1=\"27.407\" y1=\"19.432\" x2=\"27.407\" y2=\"21.382\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><linearGradient id=\"l\" x1=\"16.19\" y1=\"17.885\" x2=\"16.19\" y2=\"19.835\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1469E8\"/></linearGradient><radialGradient id=\"b\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"rotate(26.45 -32.713 54.27) scale(12.4046)\"><stop stop-color=\"#AFCFFF\"/><stop offset=\"1\" stop-color=\"#0045AB\"/></radialGradient><radialGradient id=\"h\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"rotate(26.211 -33.156 54.663) scale(7.00547)\"><stop stop-color=\"#AFCFFF\"/><stop offset=\"1\" stop-color=\"#0045AB\"/></radialGradient><radialGradient id=\"m\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"rotate(90 .138 20.5) scale(.82759)\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#2A53BD\"/></radialGradient><filter id=\"a\" x=\"5.076\" y=\"4.8\" width=\"31.124\" height=\"31.123\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\".193\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect1_dropShadow_48_134\"/><feOffset/><feGaussianBlur stdDeviation=\".967\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.20568 0 0 0 0 0.386826 0 0 0 0 0.85263 0 0 0 1 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_48_134\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"4.055\" operator=\"dilate\" in=\"SourceAlpha\" result=\"effect2_dropShadow_48_134\"/><feOffset/><feGaussianBlur stdDeviation=\".967\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0.20568 0 0 0 0 0.386826 0 0 0 0 0.85263 0 0 0 0.2 0\"/><feBlend in2=\"effect1_dropShadow_48_134\" result=\"effect2_dropShadow_48_134\"/><feBlend in=\"SourceGraphic\" in2=\"effect2_dropShadow_48_134\" result=\"shape\"/></filter><filter id=\"g\" x=\"12.226\" y=\"11.563\" width=\"16.825\" height=\"17.212\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feBlend in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\".193\" in=\"SourceAlpha\" result=\"effect1_innerShadow_48_134\"/><feOffset dy=\"-.387\"/><feGaussianBlur stdDeviation=\".29\"/><feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/><feColorMatrix values=\"0 0 0 0 0.460604 0 0 0 0 0.638925 0 0 0 0 0.985078 0 0 0 1 0\"/><feBlend in2=\"shape\" result=\"effect1_innerShadow_48_134\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmbyoq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-n1zops\",\"data-styles-preset\":\"bbHXK1pmD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Embrace innovation.\"})}),className:\"framer-r6p35b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Make your AI interactions easier and more organized.\"})}),className:\"framer-x6p969\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:8020.200000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-faowa6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"gtza4TWka\"},Z12g0eqg0:{variant:\"gtza4TWka\"}},children:/*#__PURE__*/_jsx(HomePageButtonsMainCTAs,{height:\"100%\",id:\"G4Mjtlms8\",layoutId:\"G4Mjtlms8\",Oh2adSLw2:\"Use iLumina\",variant:\"pqHPWyd0Y\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1paor36\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-alignment\":\"left\"},children:\"Designers, developers and creators are already using iLumina.\"})}),className:\"framer-19gn8ey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bzcrz3\",\"data-framer-name\":\"People\",name:\"People\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"36px\",src:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg\",srcSet:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg 4000w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:6e3,pixelWidth:4e3,sizes:\"36px\",src:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg\",srcSet:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8169.700000000001),pixelHeight:6e3,pixelWidth:4e3,sizes:\"36px\",src:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg\",srcSet:\"https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/XDcRjEJ0HdfRgvjaqQFTeR8Bsk.jpg 4000w\"},className:\"framer-1k1iksg\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:2500,pixelWidth:2500,sizes:\"36px\",src:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg\",srcSet:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg 2500w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:2500,pixelWidth:2500,sizes:\"36px\",src:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg\",srcSet:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8169.700000000001),pixelHeight:2500,pixelWidth:2500,sizes:\"36px\",src:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg\",srcSet:\"https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xcqeUHqe1D2Hy1Bl7NtacQlO44.jpg 2500w\"},className:\"framer-3hik5a\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:8192,pixelWidth:5464,positionX:\"center\",positionY:\"top\",sizes:\"36px\",src:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg\",srcSet:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg 5464w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:8192,pixelWidth:5464,positionX:\"center\",positionY:\"top\",sizes:\"36px\",src:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg\",srcSet:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg 5464w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8169.700000000001),pixelHeight:8192,pixelWidth:5464,positionX:\"center\",positionY:\"top\",sizes:\"36px\",src:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg\",srcSet:\"https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg?scale-down-to=4096 2732w,https://framerusercontent.com/images/6tUHR8RvI7iGfSC3mIOy2xBSZMs.jpg 5464w\"},className:\"framer-11s6gj\",\"data-border\":true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:3854,pixelWidth:5268,sizes:\"36px\",src:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg\",srcSet:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg 5268w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:3854,pixelWidth:5268,sizes:\"36px\",src:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg\",srcSet:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg 5268w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8169.700000000001),pixelHeight:3854,pixelWidth:5268,sizes:\"36px\",src:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg\",srcSet:\"https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/789OigZOE91bhB1YngZr2BLlL4.jpg 5268w\"},className:\"framer-pi9k0k\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:5184,pixelWidth:3456,sizes:\"36px\",src:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg\",srcSet:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg 3456w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:5184,pixelWidth:3456,sizes:\"36px\",src:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg\",srcSet:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8169.700000000001),pixelHeight:5184,pixelWidth:3456,sizes:\"36px\",src:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg\",srcSet:\"https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HEUFm2gkVV9Ll94nALuIDGmsHyY.jpg 3456w\"},className:\"framer-1qxuus9\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4c4fpl\",\"data-framer-name\":\"Stars\",name:\"Stars\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1izpkin\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0.764 L 10.351 5.528 L 15.608 6.292 L 11.804 10 L 12.702 15.236 L 8 12.764 L 3.298 15.236 L 4.196 10 L 0.392 6.292 L 5.649 5.528 Z\" fill=\"rgb(176, 184, 255)\"></path></svg>',svgContentId:11233621960,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-89xuzu\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0.764 L 10.351 5.528 L 15.608 6.292 L 11.804 10 L 12.702 15.236 L 8 12.764 L 3.298 15.236 L 4.196 10 L 0.392 6.292 L 5.649 5.528 Z\" fill=\"rgb(176, 184, 255)\"></path></svg>',svgContentId:11233621960,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sh5lxr\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0.764 L 10.351 5.528 L 15.608 6.292 L 11.804 10 L 12.702 15.236 L 8 12.764 L 3.298 15.236 L 4.196 10 L 0.392 6.292 L 5.649 5.528 Z\" fill=\"rgb(176, 184, 255)\"></path></svg>',svgContentId:11233621960,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j0zrh9\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0.764 L 10.351 5.528 L 15.608 6.292 L 11.804 10 L 12.702 15.236 L 8 12.764 L 3.298 15.236 L 4.196 10 L 0.392 6.292 L 5.649 5.528 Z\" fill=\"rgb(176, 184, 255)\"></path></svg>',svgContentId:11233621960,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q46aqp\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0.764 L 10.351 5.528 L 15.608 6.292 L 11.804 10 L 12.702 15.236 L 8 12.764 L 3.298 15.236 L 4.196 10 L 0.392 6.292 L 5.649 5.528 Z\" fill=\"rgb(176, 184, 255)\"></path></svg>',svgContentId:11233621960,withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:3831,pixelWidth:5838,sizes:\"380px\",src:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png\",srcSet:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png 5838w\"}},Z12g0eqg0:{background:{alt:\"\",fit:\"fill\",pixelHeight:3831,pixelWidth:5838,sizes:\"min(min(100vw - 60px, 1110px) - 18px, 790px)\",src:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png\",srcSet:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png 5838w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7917.600000000001),pixelHeight:3831,pixelWidth:5838,sizes:\"380px\",src:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png\",srcSet:\"https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ruRH6U04BKPfTg0Hrr9y1AmLTpI.png 5838w\"},className:\"framer-1fvzkf6\",\"data-border\":true,\"data-framer-name\":\"Image\",name:\"Image\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{background:{alt:\"\",fit:\"fill\",pixelHeight:144,pixelWidth:326,src:\"https://framerusercontent.com/images/fCLBEVMIwcnLhU5eeiWoBbZ5hZs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8166.200000000001),pixelHeight:144,pixelWidth:326,src:\"https://framerusercontent.com/images/fCLBEVMIwcnLhU5eeiWoBbZ5hZs.png\"},className:\"framer-w94oz2 hidden-13jbcgs\",\"data-border\":true,\"data-framer-name\":\"Card 2\",name:\"Card 2\"})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-15rt1cf\",\"data-framer-name\":\"Newsletter section\",name:\"Newsletter section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1544nn2\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-v16ksc\",\"data-styles-preset\":\"N1D_UezK3\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Stay updated.\"})}),className:\"framer-1vm1orz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-z8ov4\",\"data-styles-preset\":\"p8Mq9SuLP\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Subscribe to receive our weekly newsletter filled with news on tech, AI and iLumina updates.\"})}),className:\"framer-1wj7604\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phdtkr\",\"data-framer-name\":\"Newsletter form\",name:\"Newsletter form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13uhcd2\",\"data-styles-preset\":\"tn3djPLZy\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our community.\"})}),className:\"framer-17pcqe7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hqxc7o-container\",children:/*#__PURE__*/_jsx(ConvertKit,{button:{buttonFont:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:16,buttonPaddingBottom:16,buttonPaddingLeft:20,buttonPaddingPerSide:true,buttonPaddingRight:20,buttonPaddingTop:16,color:\"rgb(255, 255, 255)\",fill:\"var(--token-ed774f75-0bf8-4611-b283-5d150b434756, rgb(48, 66, 243))\",insetWhenDocked:5,isDocked:false,label:\"Subscribe\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"\",convertkitFormID:\"\",font:{},gap:10,height:\"100%\",id:\"pZHDN9yRm\",input:{borderRadius:6,color:\"rgb(255, 255, 255)\",fill:\"var(--token-3554485a-f533-45e4-af11-42aa8fd156cf, rgb(27, 31, 40))\",fixedHeight:48,focusObject:{focusColor:\"rgb(0, 153, 255)\",focusWidthFrom:0,focusWidthTo:2},height:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholder:\"Your email\",placeholderColor:\"rgb(255, 255, 255)\"},layout:\"vertical\",layoutId:\"pZHDN9yRm\",style:{width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{width:\"min(100vw - 20px, 1110px)\",y:undefined},Z12g0eqg0:{width:\"min(100vw - 20px, 1110px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:352,width:\"min(100vw, 1110px)\",y:8566.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryzyv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{variant:\"YZSuOIQUX\"},Z12g0eqg0:{variant:\"YZSuOIQUX\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"O_tbOzLv9\",layoutId:\"O_tbOzLv9\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"zckaTgi0N\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f9y4db\",\"data-border\":true,\"data-framer-name\":\"Small footer\",name:\"Small footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5luxa\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2024 iLumina\"})}),className:\"framer-mhioo6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t3rjyg\",\"data-framer-name\":\"By Miguel Queir\\xf3s\",name:\"By Miguel Queir\\xf3s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-246zrq\",\"data-styles-preset\":\"oNGabnrHv\",children:\"by Miguel Queir\\xf3s\"})}),className:\"framer-14x62ek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://x.com/DopeOblivion\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-c8lepj framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Twitter link\",name:\"Twitter link\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kee902\",\"data-framer-name\":\"Group\",layout:\"position\",name:\"Group\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 13\"><path d=\"M 11.026 0 L 13.173 0 L 8.483 5.239 L 14 12.369 L 9.68 12.369 L 6.296 8.045 L 2.425 12.369 L 0.276 12.369 L 5.293 6.765 L 0 0 L 4.43 0 L 7.488 3.952 Z M 10.272 11.113 L 11.462 11.113 L 3.783 1.19 L 2.507 1.19 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11190521626,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GqgtjPc9g:{y:undefined},Z12g0eqg0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:8930.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f7zdiq-container\",children:/*#__PURE__*/_jsx(NavBarCTAsBuyTemplateButton,{height:\"100%\",id:\"k6FKgMQir\",layoutId:\"k6FKgMQir\",variant:\"kXwNFe7Ci\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Jdseo { background: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, rgb(18, 19, 22)) /* {\"name\":\"off-black #1\"} */; }`,\".framer-Jdseo.framer-lux5qc, .framer-Jdseo .framer-lux5qc { display: block; }\",\".framer-Jdseo.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, #121316); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-Jdseo .framer-1i00yxu-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Jdseo .framer-104qlkp { 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: 96px 0px 96px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-xpn7me-container { bottom: 129px; flex: none; height: 630px; left: calc(50.00000000000002% - 630px / 2); position: absolute; width: 630px; z-index: 0; }\",\".framer-Jdseo .framer-eggakj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 790px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-uizook { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-ts691r, .framer-Jdseo .framer-fo0qvx, .framer-Jdseo .framer-mr08zw, .framer-Jdseo .framer-1p4bvtc, .framer-Jdseo .framer-13fnxru, .framer-Jdseo .framer-1pqhl3d, .framer-Jdseo .framer-1r4p5q6, .framer-Jdseo .framer-1t3rjyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-zjzag8, .framer-Jdseo .framer-11pwwa0, .framer-Jdseo .framer-164dqhe, .framer-Jdseo .framer-mcfjye, .framer-Jdseo .framer-cvdadl { align-content: center; align-items: center; background-color: #181a1f; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1bx3m8r, .framer-Jdseo .framer-59u276, .framer-Jdseo .framer-1stlesh, .framer-Jdseo .framer-5aurdn, .framer-Jdseo .framer-1q4pxbj, .framer-Jdseo .framer-v5xwuv, .framer-Jdseo .framer-7v0o8c, .framer-Jdseo .framer-48dj2q, .framer-Jdseo .framer-1y7q592, .framer-Jdseo .framer-1vx9svu, .framer-Jdseo .framer-1x7gofo, .framer-Jdseo .framer-7t23jg, .framer-Jdseo .framer-1mkmtmz, .framer-Jdseo .framer-ljk9m9, .framer-Jdseo .framer-f0540v, .framer-Jdseo .framer-g4p6x1, .framer-Jdseo .framer-1lx743z, .framer-Jdseo .framer-b78z2a, .framer-Jdseo .framer-2ijynz, .framer-Jdseo .framer-1lj54xe, .framer-Jdseo .framer-154rsn3, .framer-Jdseo .framer-1de71b2, .framer-Jdseo .framer-1t0lwv2, .framer-Jdseo .framer-9uy3l2, .framer-Jdseo .framer-24yr2l, .framer-Jdseo .framer-s2lqt4, .framer-Jdseo .framer-1skqe8n, .framer-Jdseo .framer-iohgdy, .framer-Jdseo .framer-1fn3gwj, .framer-Jdseo .framer-f0r2ig, .framer-Jdseo .framer-xanpgk, .framer-Jdseo .framer-18nblgd, .framer-Jdseo .framer-jb5g7u, .framer-Jdseo .framer-z213xh, .framer-Jdseo .framer-x9fipb, .framer-Jdseo .framer-1npcd3u, .framer-Jdseo .framer-1htz3pz, .framer-Jdseo .framer-17pcqe7, .framer-Jdseo .framer-mhioo6, .framer-Jdseo .framer-14x62ek { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jdseo .framer-vcxd65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-zgvkro, .framer-Jdseo .framer-c0x3ty, .framer-Jdseo .framer-14pbq8k, .framer-Jdseo .framer-1xhvr6b, .framer-Jdseo .framer-15ezfim, .framer-Jdseo .framer-oes0z1, .framer-Jdseo .framer-1hhczf4, .framer-Jdseo .framer-cm67v8, .framer-Jdseo .framer-eigyts, .framer-Jdseo .framer-1rnzcm5, .framer-Jdseo .framer-117uqph, .framer-Jdseo .framer-10ifmmj, .framer-Jdseo .framer-13d11md, .framer-Jdseo .framer-rpzrfh, .framer-Jdseo .framer-1f3sgkd, .framer-Jdseo .framer-1kqlmz5, .framer-Jdseo .framer-pdauo8, .framer-Jdseo .framer-1r8uerv, .framer-Jdseo .framer-14uks7c, .framer-Jdseo .framer-1ol5p3l, .framer-Jdseo .framer-1tdzn7l, .framer-Jdseo .framer-pi2lig, .framer-Jdseo .framer-6s5put, .framer-Jdseo .framer-r4qagn, .framer-Jdseo .framer-ya4s5n, .framer-Jdseo .framer-1nfv2t6, .framer-Jdseo .framer-16obn5j, .framer-Jdseo .framer-1i2y5il, .framer-Jdseo .framer-febtp, .framer-Jdseo .framer-1q1xanr, .framer-Jdseo .framer-6jnnn1, .framer-Jdseo .framer-1s274xd, .framer-Jdseo .framer-tio9yu, .framer-Jdseo .framer-28fc1g, .framer-Jdseo .framer-m0143u, .framer-Jdseo .framer-18lynzb, .framer-Jdseo .framer-r6p35b, .framer-Jdseo .framer-x6p969, .framer-Jdseo .framer-1vm1orz, .framer-Jdseo .framer-1wj7604 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-yyc344 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 528px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1nddhvz-container, .framer-Jdseo .framer-zf0y9v-container, .framer-Jdseo .framer-187ivgc-container, .framer-Jdseo .framer-mdtuzf-container, .framer-Jdseo .framer-ulsuq0-container, .framer-Jdseo .framer-193bv4d-container, .framer-Jdseo .framer-faowa6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Jdseo .framer-1ctjewh-container { flex: none; height: 37px; position: relative; width: 400px; }\",\".framer-Jdseo .framer-5d6uf4, .framer-Jdseo .framer-5povdk, .framer-Jdseo .framer-tedryf, .framer-Jdseo .framer-1m8p59u, .framer-Jdseo .framer-1ysgc3l, .framer-Jdseo .framer-5d577y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; }\",\".framer-Jdseo .framer-6tpx97 { aspect-ratio: 3.1666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 72px; }\",\".framer-Jdseo .framer-ddwwxt { aspect-ratio: 3.6875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 72px; }\",\".framer-Jdseo .framer-d5the2 { aspect-ratio: 3.5208333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 74px; }\",\".framer-Jdseo .framer-10duddp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; }\",\".framer-Jdseo .framer-1vggjy6 { aspect-ratio: 3.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 80px; }\",\".framer-Jdseo .framer-1r63h86 { aspect-ratio: 3.2916666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 74px; }\",\".framer-Jdseo .framer-z7dcxs { aspect-ratio: 4.604166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 91px; }\",\".framer-Jdseo .framer-1ppkake { aspect-ratio: 4.104166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 86px; }\",\".framer-Jdseo .framer-14n0595 { --border-bottom-width: 1px; --border-color: #303030; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 518px; max-width: 790px; overflow: hidden; position: relative; width: 790px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1wi5zq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 656px; overflow: hidden; padding: 48px 2px 48px 2px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1t4aiq9 { 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: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-1q1czkh { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: auto; }\",\".framer-Jdseo .framer-1tcspnk, .framer-Jdseo .framer-1qvpfmo, .framer-Jdseo .framer-18up3nn, .framer-Jdseo .framer-1l5vxpa, .framer-Jdseo .framer-1xfhbjx, .framer-Jdseo .framer-1p3f7x1, .framer-Jdseo .framer-kw09l2 { align-content: center; align-items: center; background-color: #181a1f; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-kt07d3 { --border-bottom-width: 1px; --border-color: #242424; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1q8bs92 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 216px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-10djoz3 { align-content: flex-start; align-items: flex-start; background-color: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, #121316); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1xcwppj, .framer-Jdseo .framer-1tj193q, .framer-Jdseo .framer-1ac1id4, .framer-Jdseo .framer-ujrvm9, .framer-Jdseo .framer-1jg7tuv { flex: none; height: 14px; position: relative; width: 28px; }\",\".framer-Jdseo .framer-139blne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-17jb4c2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-2bskru { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px 0px 28px 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1q83oe-container, .framer-Jdseo .framer-ooeggx-container, .framer-Jdseo .framer-wcrxhs-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Jdseo .framer-5j70pz { align-content: center; align-items: center; background-color: #101114; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-eu5dyp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 896px; overflow: hidden; padding: 0px 0px 9px 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1bnxxl2, .framer-Jdseo .framer-16ifvnp { 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: 100%; }\",\".framer-Jdseo .framer-1ihsbln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 6px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1eljmyt, .framer-Jdseo .framer-1zq2ud, .framer-Jdseo .framer-1liw175, .framer-Jdseo .framer-sztnao, .framer-Jdseo .framer-wqn294 { --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-Jdseo .framer-13b23x3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 542px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-jtq4c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-cwhoow, .framer-Jdseo .framer-181rbe7, .framer-Jdseo .framer-77zcia, .framer-Jdseo .framer-hpzrmv, .framer-Jdseo .framer-19rgm85, .framer-Jdseo .framer-jeejei, .framer-Jdseo .framer-149nrxd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-10q5kcb { flex: none; height: 36px; position: relative; width: 32px; }\",\".framer-Jdseo .framer-156h3vd, .framer-Jdseo .framer-1ohkolw, .framer-Jdseo .framer-1yo5xdi, .framer-Jdseo .framer-x77kw4 { 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-Jdseo .framer-xdzgs5 { flex: none; height: 35px; position: relative; width: 28px; }\",\".framer-Jdseo .framer-15dbuhp { flex: none; height: 33px; position: relative; width: 30px; }\",\".framer-Jdseo .framer-1gknohm { 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: 64px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1omfdpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1h54tm5, .framer-Jdseo .framer-y0ia20 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-cjboj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1q2e634 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 16px 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-14jlsl8 { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-Jdseo .framer-nnt5ip { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 556px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1082px; }\",\".framer-Jdseo .framer-c0av06, .framer-Jdseo .framer-1vc2uon { align-content: flex-start; align-items: flex-start; align-self: center; background-color: #0c0d0f; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: auto / span 2; height: 100%; justify-content: flex-end; justify-self: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-10yn867, .framer-Jdseo .framer-1udhu16, .framer-Jdseo .framer-1460ws6 { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-Jdseo .framer-eueh4i { aspect-ratio: 1 / 1; background-color: rgba(48, 66, 243, 0.28); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-gso4gi { background-color: rgba(0, 0, 0, 0); flex: none; height: 15px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 15px / 2); width: 17px; }\",\".framer-Jdseo .framer-1e3d6if, .framer-Jdseo .framer-z2ry5b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-ioeqkf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 290px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1bz0q7p, .framer-Jdseo .framer-10ej8yy { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgb(0, 0, 0) 110.00000000000001%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-Jdseo .framer-193x534 { --border-bottom-width: 1px; --border-color: #232d3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4334470989761092 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -10px; flex: none; height: var(--framer-aspect-ratio-supported, 251px); overflow: hidden; position: absolute; right: -10px; width: 360px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Jdseo .framer-1binii2, .framer-Jdseo .framer-1sq7oz { align-content: flex-start; align-items: flex-start; align-self: center; background-color: #0c0d0f; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; justify-self: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1s8harb { aspect-ratio: 1 / 1; background-color: rgba(160, 43, 255, 0.28); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-mtd6ei { flex: none; height: 18px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 16px; }\",\".framer-Jdseo .framer-15c4r5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 56px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 201px; }\",\".framer-Jdseo .framer-7vej8e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 201px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1ptoal2 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -30px; flex: none; height: 251px; overflow: hidden; position: absolute; right: -40px; width: 294px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Jdseo .framer-1g02fc9 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Jdseo .framer-1ot5oux { aspect-ratio: 1 / 1; background-color: rgba(242, 78, 48, 0.28); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1utw5en { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-Jdseo .framer-1d19d50 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 215px; }\",\".framer-Jdseo .framer-16mswji { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 212px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-ag200w { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgb(0, 0, 0) 110.00000000000001%); flex: none; height: 100%; left: calc(50.07194244604318% - 100.14388489208632% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-Jdseo .framer-1m6d528 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 11px; flex: none; height: 187px; overflow: hidden; position: absolute; right: -30px; width: 294px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Jdseo .framer-1uk4pjc { aspect-ratio: 1 / 1; background-color: rgba(32, 181, 214, 0.2); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-zzij96 { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-Jdseo .framer-1ubg87x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 235px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1a5kn2t { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgb(0, 0, 0) 110.00000000000001%); flex: none; height: 100%; left: calc(49.965010496850965% - 99.79006298110566% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-Jdseo .framer-khsw2c { --border-bottom-width: 1px; --border-color: #232d3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -10px; flex: none; height: 267px; overflow: hidden; position: absolute; right: -10px; width: 445px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Jdseo .framer-cabatc { align-content: center; align-items: center; background-color: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, #121316); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1219icr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1si7hiv { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-gvzl2p, .framer-Jdseo .framer-gw4vcp, .framer-Jdseo .framer-1n9pyk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-156gy1g { flex: none; height: 36px; position: relative; width: 140px; }\",\".framer-Jdseo .framer-13k05wi { flex: none; height: 37px; position: relative; width: 122px; }\",\".framer-Jdseo .framer-3k28dv { flex: none; height: 37px; position: relative; width: 164px; }\",\".framer-Jdseo .framer-1c46wab { flex: none; height: 37px; position: relative; width: 153px; }\",\".framer-Jdseo .framer-wff43d { flex: none; height: 36px; position: relative; width: 143px; }\",\".framer-Jdseo .framer-m9u9o8 { flex: none; height: 37px; position: relative; width: 123px; }\",\".framer-Jdseo .framer-1k4nstj { flex: none; height: 36px; position: relative; width: 163px; }\",\".framer-Jdseo .framer-1w1ezur { flex: none; height: 37px; position: relative; width: 125px; }\",\".framer-Jdseo .framer-nhk6k5, .framer-Jdseo .framer-13nyypr, .framer-Jdseo .framer-et7spj, .framer-Jdseo .framer-9rz455, .framer-Jdseo .framer-j3almr, .framer-Jdseo .framer-1flda5g { aspect-ratio: 1 / 1; background-color: #2f364d; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-irzi4b, .framer-Jdseo .framer-mmcd0z, .framer-Jdseo .framer-1pzxnz1, .framer-Jdseo .framer-lrfilm, .framer-Jdseo .framer-11s0a2h, .framer-Jdseo .framer-vjk2oh { flex: none; height: 5px; left: calc(50.00000000000002% - 8px / 2); position: absolute; top: calc(50.00000000000002% - 5px / 2); width: 8px; }\",\".framer-Jdseo .framer-k4dot6, .framer-Jdseo .framer-15fhjy { --border-bottom-width: 1px; --border-color: #262a36; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #181a1f; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 12px 8px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-drv18j { align-content: center; align-items: center; background-color: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, #121316); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1sjqpqt { --border-bottom-width: 1px; --border-color: #1d222b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #15171c; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-nk3jjz { 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: min-content; }\",\".framer-Jdseo .framer-1op3shd { --border-bottom-width: 1px; --border-color: #232833; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: var(--token-3554485a-f533-45e4-af11-42aa8fd156cf, #1b1f28); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1ckg8ci, .framer-Jdseo .framer-1guyv1e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1n3bvf8, .framer-Jdseo .framer-xhsigx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-11qurj6, .framer-Jdseo .framer-1exikdl { align-content: center; align-items: center; background-color: var(--token-ed774f75-0bf8-4611-b283-5d150b434756, #3042f3); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-d5tqcl { background-color: #232833; bottom: 72px; flex: none; height: 1px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-Jdseo .framer-19lq9x6, .framer-Jdseo .framer-ufws8u { --border-bottom-width: 1px; --border-color: #3e4659; --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 16px 10px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-lk1e81 { --border-bottom-width: 1px; --border-color: #232833; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: #1b1f28; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 296px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-d8h5jm { background-color: #232833; bottom: 72px; flex: none; height: 1px; overflow: hidden; position: absolute; right: 0px; width: 100%; z-index: 1; }\",\".framer-Jdseo .framer-1cxs1wa { align-content: center; align-items: center; bottom: 46px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 47%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-Jdseo .framer-xsmkhw { flex: none; height: 59px; position: relative; width: 54px; }\",\".framer-Jdseo .framer-1e3bci3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-f2wopx { --border-bottom-width: 1px; --border-color: #2a2c3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, #121316); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-mf3vyk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 321px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1blqtmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; }\",\".framer-Jdseo .framer-a3z8mp { --border-bottom-width: 1px; --border-color: var(--token-ed774f75-0bf8-4611-b283-5d150b434756, #3042f3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0px 0px 4px rgba(15, 39, 255, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-c23og { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-qirsnl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1290px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-wnx94b { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-nhyg49, .framer-Jdseo .framer-149nlp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-1tbvz24 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1c46hqu { --border-bottom-width: 1px; --border-color: #27293b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-18x5t89 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; min-width: 377px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-6pq7n2 { --border-bottom-width: 1px; --border-color: #27293b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #15171c; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-341xxg { flex: none; height: 28px; position: relative; width: 48px; }\",\".framer-Jdseo .framer-1g7unf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-8jidek { --border-bottom-width: 1px; --border-color: #27293b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #15171c; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-4lrgoy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1thjezy { --border-bottom-width: 1px; --border-color: #373f54; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: #0c0e12; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; text-decoration: none; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-9sjekb { flex: none; height: 23px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 23px / 2); width: 24px; }\",\".framer-Jdseo .framer-vvo3cx { --border-bottom-width: 1px; --border-color: #27293b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: #15171c; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-urvi8n { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-9fnpo { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-if40lp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1qqt7eu, .framer-Jdseo .framer-1x9u2db, .framer-Jdseo .framer-b34nhi, .framer-Jdseo .framer-1evg0jp { --border-bottom-width: 1px; --border-color: #27293b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-807rv8, .framer-Jdseo .framer-16uyozz, .framer-Jdseo .framer-5yktbq, .framer-Jdseo .framer-1sbqact { --border-bottom-width: 0px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-wil5ht, .framer-Jdseo .framer-1yigib7, .framer-Jdseo .framer-11ccpq4, .framer-Jdseo .framer-40myqe { --border-bottom-width: 0px; --border-color: #27293b; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #15171c; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-9mg4s3, .framer-Jdseo .framer-130tnwi, .framer-Jdseo .framer-p761f7, .framer-Jdseo .framer-1kuckrj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1wczh8y, .framer-Jdseo .framer-1gfpm02, .framer-Jdseo .framer-j1k99q, .framer-Jdseo .framer-pltrjg { aspect-ratio: 1 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-qoqpsb, .framer-Jdseo .framer-h3qdog, .framer-Jdseo .framer-152bard, .framer-Jdseo .framer-b3n1vh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-xgibst, .framer-Jdseo .framer-1k8hd8r, .framer-Jdseo .framer-1w8s5rd, .framer-Jdseo .framer-dqwo5h { --border-bottom-width: 1px; --border-color: #1c253b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: #0c0e12; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: hidden; position: relative; text-decoration: none; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-jj66r0, .framer-Jdseo .framer-f4873j, .framer-Jdseo .framer-1ryc38v, .framer-Jdseo .framer-1rkh5yf { flex: none; height: 13px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 14px; }\",\".framer-Jdseo .framer-1slo5ah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1o4qj04 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1pxx1d, .framer-Jdseo .framer-1f3yeyr, .framer-Jdseo .framer-17hjxgg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1v4akug, .framer-Jdseo .framer-j7kvqt, .framer-Jdseo .framer-1yekyba, .framer-Jdseo .framer-kmszn4, .framer-Jdseo .framer-y1c26k, .framer-Jdseo .framer-vx60hx, .framer-Jdseo .framer-19vm1pc, .framer-Jdseo .framer-18t8vlp, .framer-Jdseo .framer-apft8y, .framer-Jdseo .framer-13009rc, .framer-Jdseo .framer-1mhhqbj, .framer-Jdseo .framer-5q5zss { --border-bottom-width: 0.7px; --border-color: #2c2e47; --border-left-width: 0.7px; --border-right-width: 0.7px; --border-style: solid; --border-top-width: 0.7px; align-content: center; align-items: center; background-color: #15171c; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1570e4e { aspect-ratio: 3.1666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-1skh2u8 { aspect-ratio: 3.6875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-110exoz { aspect-ratio: 3.5208333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-1dcvht1 { aspect-ratio: 3.1458333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-17mrggc { aspect-ratio: 3.9166666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-tgtnsc { aspect-ratio: 3.2916666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-1fk68wd { aspect-ratio: 4.604166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-xmjnw6 { aspect-ratio: 4.104166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 64px; }\",\".framer-Jdseo .framer-49ndod { aspect-ratio: 3.0208333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 54px; }\",\".framer-Jdseo .framer-nw07er { aspect-ratio: 5.041666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 74px; }\",\".framer-Jdseo .framer-vcoxuq { aspect-ratio: 3.9583333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 65px; }\",\".framer-Jdseo .framer-1q2jxmw { aspect-ratio: 2.9583333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 50px; }\",\".framer-Jdseo .framer-h31g04 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-s0q9f9 { flex: none; height: 16px; position: relative; width: 14px; }\",\".framer-Jdseo .framer-13o9ot4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1207zia, .framer-Jdseo .framer-14phqs6 { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-14qma61, .framer-Jdseo .framer-hb17jy { align-self: stretch; background-color: #2c2e47; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-Jdseo .framer-1e6f8ni { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-zjljf0 { 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: hidden; padding: 48px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-18zx32i { 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-Jdseo .framer-j894ln { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1004px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-acx3lr-container, .framer-Jdseo .framer-if9omt-container, .framer-Jdseo .framer-1vh6qjb-container, .framer-Jdseo .framer-5x078j-container, .framer-Jdseo .framer-g17nn3-container, .framer-Jdseo .framer-edopz0-container, .framer-Jdseo .framer-5z6cfm-container, .framer-Jdseo .framer-1ps8rrl-container { flex: none; height: auto; position: relative; width: 496px; }\",\".framer-Jdseo .framer-64xmv8 { 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: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-vzsnem { --border-bottom-width: 1px; --border-color: #242c3d; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #14171f; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1110px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-64rrpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 312px; justify-content: center; left: -181px; overflow: hidden; padding: 0px; position: absolute; right: -182px; top: -91px; z-index: 0; }\",\".framer-Jdseo .framer-owbp58 { flex: none; height: 312px; position: relative; width: 1474px; }\",\".framer-Jdseo .framer-1uste8f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 10px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-xcexel { 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 0px 6px 6px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-jw9bca { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 41px; }\",\".framer-Jdseo .framer-1xmbyoq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1paor36 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 125px; justify-content: center; overflow: hidden; padding: 0px 0px 4px 4px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-19gn8ey { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 260px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jdseo .framer-bzcrz3 { flex: none; height: 36px; overflow: hidden; position: relative; width: 158px; }\",\".framer-Jdseo .framer-1k1iksg { --border-bottom-width: 1px; --border-color: var(--token-ed774f75-0bf8-4611-b283-5d150b434756, #3042f3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 36px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-3hik5a { --border-bottom-width: 1px; --border-color: #9530f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 31px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 36px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-11s6gj { --border-bottom-width: 1px; --border-color: #ec30f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 50%; overflow: hidden; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 36px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-pi9k0k { --border-bottom-width: 1px; --border-color: #30c5f2; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 92px; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 36px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1qxuus9 { --border-bottom-width: 1px; --border-color: #f2307b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 36px); will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-4c4fpl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 138px; }\",\".framer-Jdseo .framer-1izpkin, .framer-Jdseo .framer-89xuzu, .framer-Jdseo .framer-1sh5lxr, .framer-Jdseo .framer-j0zrh9, .framer-Jdseo .framer-1q46aqp { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Jdseo .framer-1fvzkf6 { --border-bottom-width: 1px; --border-color: #303030; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 249px; max-width: 790px; overflow: hidden; position: relative; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-w94oz2 { --border-bottom-width: 1px; --border-color: #303030; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 28px; flex: none; height: 58px; overflow: hidden; position: absolute; right: 343px; width: 134px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Jdseo .framer-15rt1cf { 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: 1110px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1544nn2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Jdseo .framer-phdtkr { 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: min-content; }\",\".framer-Jdseo .framer-1hqxc7o-container { flex: none; height: auto; position: relative; width: 396px; }\",\".framer-Jdseo .framer-ryzyv-container { flex: none; height: auto; max-width: 1110px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-1f9y4db { --border-bottom-width: 0px; --border-color: #1b1f29; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #0f1012; 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-Jdseo .framer-1p5luxa { align-content: center; align-items: center; background-color: #111214; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 12px 96px 12px 96px; position: relative; width: 100%; }\",\".framer-Jdseo .framer-c8lepj { --border-bottom-width: 0.75px; --border-color: #36383d; --border-left-width: 0.75px; --border-right-width: 0.75px; --border-style: solid; --border-top-width: 0.75px; aspect-ratio: 1 / 1; background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px #111214; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; text-decoration: none; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Jdseo .framer-1kee902 { background-color: rgba(0, 0, 0, 0); flex: none; height: 13px; left: calc(50.00000000000002% - 14px / 2); position: absolute; top: calc(50.00000000000002% - 13px / 2); width: 14px; }\",\".framer-Jdseo .framer-1f7zdiq-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Jdseo.framer-72rtr7, .framer-Jdseo .framer-104qlkp, .framer-Jdseo .framer-eggakj, .framer-Jdseo .framer-uizook, .framer-Jdseo .framer-ts691r, .framer-Jdseo .framer-zjzag8, .framer-Jdseo .framer-11pwwa0, .framer-Jdseo .framer-164dqhe, .framer-Jdseo .framer-mcfjye, .framer-Jdseo .framer-cvdadl, .framer-Jdseo .framer-vcxd65, .framer-Jdseo .framer-5d6uf4, .framer-Jdseo .framer-5povdk, .framer-Jdseo .framer-tedryf, .framer-Jdseo .framer-10duddp, .framer-Jdseo .framer-1m8p59u, .framer-Jdseo .framer-1ysgc3l, .framer-Jdseo .framer-5d577y, .framer-Jdseo .framer-1wi5zq7, .framer-Jdseo .framer-1t4aiq9, .framer-Jdseo .framer-1q1czkh, .framer-Jdseo .framer-1tcspnk, .framer-Jdseo .framer-kt07d3, .framer-Jdseo .framer-10djoz3, .framer-Jdseo .framer-139blne, .framer-Jdseo .framer-2bskru, .framer-Jdseo .framer-5j70pz, .framer-Jdseo .framer-eu5dyp, .framer-Jdseo .framer-1bnxxl2, .framer-Jdseo .framer-1qvpfmo, .framer-Jdseo .framer-1ihsbln, .framer-Jdseo .framer-jtq4c6, .framer-Jdseo .framer-cwhoow, .framer-Jdseo .framer-156h3vd, .framer-Jdseo .framer-181rbe7, .framer-Jdseo .framer-1ohkolw, .framer-Jdseo .framer-77zcia, .framer-Jdseo .framer-1yo5xdi, .framer-Jdseo .framer-1gknohm, .framer-Jdseo .framer-1omfdpd, .framer-Jdseo .framer-16ifvnp, .framer-Jdseo .framer-18up3nn, .framer-Jdseo .framer-1h54tm5, .framer-Jdseo .framer-cjboj2, .framer-Jdseo .framer-1q2e634, .framer-Jdseo .framer-14jlsl8, .framer-Jdseo .framer-1l5vxpa, .framer-Jdseo .framer-y0ia20, .framer-Jdseo .framer-c0av06, .framer-Jdseo .framer-10yn867, .framer-Jdseo .framer-1e3d6if, .framer-Jdseo .framer-1binii2, .framer-Jdseo .framer-1udhu16, .framer-Jdseo .framer-15c4r5, .framer-Jdseo .framer-1sq7oz, .framer-Jdseo .framer-1g02fc9, .framer-Jdseo .framer-1d19d50, .framer-Jdseo .framer-1vc2uon, .framer-Jdseo .framer-1460ws6, .framer-Jdseo .framer-z2ry5b, .framer-Jdseo .framer-cabatc, .framer-Jdseo .framer-1219icr, .framer-Jdseo .framer-x77kw4, .framer-Jdseo .framer-1xfhbjx, .framer-Jdseo .framer-1si7hiv, .framer-Jdseo .framer-gvzl2p, .framer-Jdseo .framer-gw4vcp, .framer-Jdseo .framer-1n9pyk1, .framer-Jdseo .framer-fo0qvx, .framer-Jdseo .framer-mr08zw, .framer-Jdseo .framer-1p4bvtc, .framer-Jdseo .framer-13fnxru, .framer-Jdseo .framer-1pqhl3d, .framer-Jdseo .framer-1r4p5q6, .framer-Jdseo .framer-k4dot6, .framer-Jdseo .framer-drv18j, .framer-Jdseo .framer-1sjqpqt, .framer-Jdseo .framer-nk3jjz, .framer-Jdseo .framer-1op3shd, .framer-Jdseo .framer-1ckg8ci, .framer-Jdseo .framer-1n3bvf8, .framer-Jdseo .framer-11qurj6, .framer-Jdseo .framer-19lq9x6, .framer-Jdseo .framer-lk1e81, .framer-Jdseo .framer-1guyv1e, .framer-Jdseo .framer-xhsigx, .framer-Jdseo .framer-1exikdl, .framer-Jdseo .framer-ufws8u, .framer-Jdseo .framer-1cxs1wa, .framer-Jdseo .framer-1e3bci3, .framer-Jdseo .framer-f2wopx, .framer-Jdseo .framer-1blqtmx, .framer-Jdseo .framer-c23og, .framer-Jdseo .framer-qirsnl, .framer-Jdseo .framer-wnx94b, .framer-Jdseo .framer-1p3f7x1, .framer-Jdseo .framer-1tbvz24, .framer-Jdseo .framer-1c46hqu, .framer-Jdseo .framer-18x5t89, .framer-Jdseo .framer-6pq7n2, .framer-Jdseo .framer-1g7unf3, .framer-Jdseo .framer-4lrgoy, .framer-Jdseo .framer-vvo3cx, .framer-Jdseo .framer-9fnpo, .framer-Jdseo .framer-if40lp, .framer-Jdseo .framer-hpzrmv, .framer-Jdseo .framer-1qqt7eu, .framer-Jdseo .framer-807rv8, .framer-Jdseo .framer-9mg4s3, .framer-Jdseo .framer-qoqpsb, .framer-Jdseo .framer-1x9u2db, .framer-Jdseo .framer-16uyozz, .framer-Jdseo .framer-130tnwi, .framer-Jdseo .framer-h3qdog, .framer-Jdseo .framer-19rgm85, .framer-Jdseo .framer-b34nhi, .framer-Jdseo .framer-5yktbq, .framer-Jdseo .framer-p761f7, .framer-Jdseo .framer-152bard, .framer-Jdseo .framer-1evg0jp, .framer-Jdseo .framer-1sbqact, .framer-Jdseo .framer-1kuckrj, .framer-Jdseo .framer-b3n1vh, .framer-Jdseo .framer-1slo5ah, .framer-Jdseo .framer-1o4qj04, .framer-Jdseo .framer-1pxx1d, .framer-Jdseo .framer-1v4akug, .framer-Jdseo .framer-j7kvqt, .framer-Jdseo .framer-1yekyba, .framer-Jdseo .framer-kmszn4, .framer-Jdseo .framer-1f3yeyr, .framer-Jdseo .framer-y1c26k, .framer-Jdseo .framer-vx60hx, .framer-Jdseo .framer-19vm1pc, .framer-Jdseo .framer-18t8vlp, .framer-Jdseo .framer-17hjxgg, .framer-Jdseo .framer-apft8y, .framer-Jdseo .framer-13009rc, .framer-Jdseo .framer-1mhhqbj, .framer-Jdseo .framer-5q5zss, .framer-Jdseo .framer-h31g04, .framer-Jdseo .framer-15fhjy, .framer-Jdseo .framer-13o9ot4, .framer-Jdseo .framer-1207zia, .framer-Jdseo .framer-1e6f8ni, .framer-Jdseo .framer-14phqs6, .framer-Jdseo .framer-zjljf0, .framer-Jdseo .framer-18zx32i, .framer-Jdseo .framer-kw09l2, .framer-Jdseo .framer-j894ln, .framer-Jdseo .framer-jeejei, .framer-Jdseo .framer-149nrxd, .framer-Jdseo .framer-64xmv8, .framer-Jdseo .framer-64rrpd, .framer-Jdseo .framer-1uste8f, .framer-Jdseo .framer-xcexel, .framer-Jdseo .framer-1xmbyoq, .framer-Jdseo .framer-1paor36, .framer-Jdseo .framer-4c4fpl, .framer-Jdseo .framer-1544nn2, .framer-Jdseo .framer-phdtkr, .framer-Jdseo .framer-1f9y4db, .framer-Jdseo .framer-1t3rjyg { gap: 0px; } .framer-Jdseo.framer-72rtr7 > *, .framer-Jdseo .framer-4lrgoy > *, .framer-Jdseo .framer-1qqt7eu > *, .framer-Jdseo .framer-1x9u2db > *, .framer-Jdseo .framer-b34nhi > *, .framer-Jdseo .framer-1evg0jp > *, .framer-Jdseo .framer-1o4qj04 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Jdseo.framer-72rtr7 > :first-child, .framer-Jdseo .framer-104qlkp > :first-child, .framer-Jdseo .framer-eggakj > :first-child, .framer-Jdseo .framer-uizook > :first-child, .framer-Jdseo .framer-vcxd65 > :first-child, .framer-Jdseo .framer-5d6uf4 > :first-child, .framer-Jdseo .framer-5povdk > :first-child, .framer-Jdseo .framer-tedryf > :first-child, .framer-Jdseo .framer-1m8p59u > :first-child, .framer-Jdseo .framer-1ysgc3l > :first-child, .framer-Jdseo .framer-5d577y > :first-child, .framer-Jdseo .framer-1t4aiq9 > :first-child, .framer-Jdseo .framer-1q1czkh > :first-child, .framer-Jdseo .framer-kt07d3 > :first-child, .framer-Jdseo .framer-10djoz3 > :first-child, .framer-Jdseo .framer-2bskru > :first-child, .framer-Jdseo .framer-eu5dyp > :first-child, .framer-Jdseo .framer-1bnxxl2 > :first-child, .framer-Jdseo .framer-1ihsbln > :first-child, .framer-Jdseo .framer-cwhoow > :first-child, .framer-Jdseo .framer-156h3vd > :first-child, .framer-Jdseo .framer-181rbe7 > :first-child, .framer-Jdseo .framer-1ohkolw > :first-child, .framer-Jdseo .framer-77zcia > :first-child, .framer-Jdseo .framer-1yo5xdi > :first-child, .framer-Jdseo .framer-1gknohm > :first-child, .framer-Jdseo .framer-1omfdpd > :first-child, .framer-Jdseo .framer-16ifvnp > :first-child, .framer-Jdseo .framer-1h54tm5 > :first-child, .framer-Jdseo .framer-1q2e634 > :first-child, .framer-Jdseo .framer-14jlsl8 > :first-child, .framer-Jdseo .framer-y0ia20 > :first-child, .framer-Jdseo .framer-c0av06 > :first-child, .framer-Jdseo .framer-10yn867 > :first-child, .framer-Jdseo .framer-1e3d6if > :first-child, .framer-Jdseo .framer-1binii2 > :first-child, .framer-Jdseo .framer-1udhu16 > :first-child, .framer-Jdseo .framer-15c4r5 > :first-child, .framer-Jdseo .framer-1sq7oz > :first-child, .framer-Jdseo .framer-1g02fc9 > :first-child, .framer-Jdseo .framer-1d19d50 > :first-child, .framer-Jdseo .framer-1vc2uon > :first-child, .framer-Jdseo .framer-1460ws6 > :first-child, .framer-Jdseo .framer-z2ry5b > :first-child, .framer-Jdseo .framer-1219icr > :first-child, .framer-Jdseo .framer-x77kw4 > :first-child, .framer-Jdseo .framer-1si7hiv > :first-child, .framer-Jdseo .framer-nk3jjz > :first-child, .framer-Jdseo .framer-1op3shd > :first-child, .framer-Jdseo .framer-1n3bvf8 > :first-child, .framer-Jdseo .framer-lk1e81 > :first-child, .framer-Jdseo .framer-xhsigx > :first-child, .framer-Jdseo .framer-1e3bci3 > :first-child, .framer-Jdseo .framer-f2wopx > :first-child, .framer-Jdseo .framer-qirsnl > :first-child, .framer-Jdseo .framer-wnx94b > :first-child, .framer-Jdseo .framer-18x5t89 > :first-child, .framer-Jdseo .framer-6pq7n2 > :first-child, .framer-Jdseo .framer-1g7unf3 > :first-child, .framer-Jdseo .framer-4lrgoy > :first-child, .framer-Jdseo .framer-9fnpo > :first-child, .framer-Jdseo .framer-hpzrmv > :first-child, .framer-Jdseo .framer-1qqt7eu > :first-child, .framer-Jdseo .framer-807rv8 > :first-child, .framer-Jdseo .framer-qoqpsb > :first-child, .framer-Jdseo .framer-1x9u2db > :first-child, .framer-Jdseo .framer-16uyozz > :first-child, .framer-Jdseo .framer-h3qdog > :first-child, .framer-Jdseo .framer-19rgm85 > :first-child, .framer-Jdseo .framer-b34nhi > :first-child, .framer-Jdseo .framer-5yktbq > :first-child, .framer-Jdseo .framer-152bard > :first-child, .framer-Jdseo .framer-1evg0jp > :first-child, .framer-Jdseo .framer-1sbqact > :first-child, .framer-Jdseo .framer-b3n1vh > :first-child, .framer-Jdseo .framer-1o4qj04 > :first-child, .framer-Jdseo .framer-h31g04 > :first-child, .framer-Jdseo .framer-1207zia > :first-child, .framer-Jdseo .framer-1e6f8ni > :first-child, .framer-Jdseo .framer-14phqs6 > :first-child, .framer-Jdseo .framer-zjljf0 > :first-child, .framer-Jdseo .framer-18zx32i > :first-child, .framer-Jdseo .framer-jeejei > :first-child, .framer-Jdseo .framer-149nrxd > :first-child, .framer-Jdseo .framer-64xmv8 > :first-child, .framer-Jdseo .framer-1uste8f > :first-child, .framer-Jdseo .framer-xcexel > :first-child, .framer-Jdseo .framer-1xmbyoq > :first-child, .framer-Jdseo .framer-1paor36 > :first-child, .framer-Jdseo .framer-1544nn2 > :first-child, .framer-Jdseo .framer-phdtkr > :first-child, .framer-Jdseo .framer-1f9y4db > :first-child { margin-top: 0px; } .framer-Jdseo.framer-72rtr7 > :last-child, .framer-Jdseo .framer-104qlkp > :last-child, .framer-Jdseo .framer-eggakj > :last-child, .framer-Jdseo .framer-uizook > :last-child, .framer-Jdseo .framer-vcxd65 > :last-child, .framer-Jdseo .framer-5d6uf4 > :last-child, .framer-Jdseo .framer-5povdk > :last-child, .framer-Jdseo .framer-tedryf > :last-child, .framer-Jdseo .framer-1m8p59u > :last-child, .framer-Jdseo .framer-1ysgc3l > :last-child, .framer-Jdseo .framer-5d577y > :last-child, .framer-Jdseo .framer-1t4aiq9 > :last-child, .framer-Jdseo .framer-1q1czkh > :last-child, .framer-Jdseo .framer-kt07d3 > :last-child, .framer-Jdseo .framer-10djoz3 > :last-child, .framer-Jdseo .framer-2bskru > :last-child, .framer-Jdseo .framer-eu5dyp > :last-child, .framer-Jdseo .framer-1bnxxl2 > :last-child, .framer-Jdseo .framer-1ihsbln > :last-child, .framer-Jdseo .framer-cwhoow > :last-child, .framer-Jdseo .framer-156h3vd > :last-child, .framer-Jdseo .framer-181rbe7 > :last-child, .framer-Jdseo .framer-1ohkolw > :last-child, .framer-Jdseo .framer-77zcia > :last-child, .framer-Jdseo .framer-1yo5xdi > :last-child, .framer-Jdseo .framer-1gknohm > :last-child, .framer-Jdseo .framer-1omfdpd > :last-child, .framer-Jdseo .framer-16ifvnp > :last-child, .framer-Jdseo .framer-1h54tm5 > :last-child, .framer-Jdseo .framer-1q2e634 > :last-child, .framer-Jdseo .framer-14jlsl8 > :last-child, .framer-Jdseo .framer-y0ia20 > :last-child, .framer-Jdseo .framer-c0av06 > :last-child, .framer-Jdseo .framer-10yn867 > :last-child, .framer-Jdseo .framer-1e3d6if > :last-child, .framer-Jdseo .framer-1binii2 > :last-child, .framer-Jdseo .framer-1udhu16 > :last-child, .framer-Jdseo .framer-15c4r5 > :last-child, .framer-Jdseo .framer-1sq7oz > :last-child, .framer-Jdseo .framer-1g02fc9 > :last-child, .framer-Jdseo .framer-1d19d50 > :last-child, .framer-Jdseo .framer-1vc2uon > :last-child, .framer-Jdseo .framer-1460ws6 > :last-child, .framer-Jdseo .framer-z2ry5b > :last-child, .framer-Jdseo .framer-1219icr > :last-child, .framer-Jdseo .framer-x77kw4 > :last-child, .framer-Jdseo .framer-1si7hiv > :last-child, .framer-Jdseo .framer-nk3jjz > :last-child, .framer-Jdseo .framer-1op3shd > :last-child, .framer-Jdseo .framer-1n3bvf8 > :last-child, .framer-Jdseo .framer-lk1e81 > :last-child, .framer-Jdseo .framer-xhsigx > :last-child, .framer-Jdseo .framer-1e3bci3 > :last-child, .framer-Jdseo .framer-f2wopx > :last-child, .framer-Jdseo .framer-qirsnl > :last-child, .framer-Jdseo .framer-wnx94b > :last-child, .framer-Jdseo .framer-18x5t89 > :last-child, .framer-Jdseo .framer-6pq7n2 > :last-child, .framer-Jdseo .framer-1g7unf3 > :last-child, .framer-Jdseo .framer-4lrgoy > :last-child, .framer-Jdseo .framer-9fnpo > :last-child, .framer-Jdseo .framer-hpzrmv > :last-child, .framer-Jdseo .framer-1qqt7eu > :last-child, .framer-Jdseo .framer-807rv8 > :last-child, .framer-Jdseo .framer-qoqpsb > :last-child, .framer-Jdseo .framer-1x9u2db > :last-child, .framer-Jdseo .framer-16uyozz > :last-child, .framer-Jdseo .framer-h3qdog > :last-child, .framer-Jdseo .framer-19rgm85 > :last-child, .framer-Jdseo .framer-b34nhi > :last-child, .framer-Jdseo .framer-5yktbq > :last-child, .framer-Jdseo .framer-152bard > :last-child, .framer-Jdseo .framer-1evg0jp > :last-child, .framer-Jdseo .framer-1sbqact > :last-child, .framer-Jdseo .framer-b3n1vh > :last-child, .framer-Jdseo .framer-1o4qj04 > :last-child, .framer-Jdseo .framer-h31g04 > :last-child, .framer-Jdseo .framer-1207zia > :last-child, .framer-Jdseo .framer-1e6f8ni > :last-child, .framer-Jdseo .framer-14phqs6 > :last-child, .framer-Jdseo .framer-zjljf0 > :last-child, .framer-Jdseo .framer-18zx32i > :last-child, .framer-Jdseo .framer-jeejei > :last-child, .framer-Jdseo .framer-149nrxd > :last-child, .framer-Jdseo .framer-64xmv8 > :last-child, .framer-Jdseo .framer-1uste8f > :last-child, .framer-Jdseo .framer-xcexel > :last-child, .framer-Jdseo .framer-1xmbyoq > :last-child, .framer-Jdseo .framer-1paor36 > :last-child, .framer-Jdseo .framer-1544nn2 > :last-child, .framer-Jdseo .framer-phdtkr > :last-child, .framer-Jdseo .framer-1f9y4db > :last-child { margin-bottom: 0px; } .framer-Jdseo .framer-104qlkp > *, .framer-Jdseo .framer-5d6uf4 > *, .framer-Jdseo .framer-5povdk > *, .framer-Jdseo .framer-tedryf > *, .framer-Jdseo .framer-1m8p59u > *, .framer-Jdseo .framer-1ysgc3l > *, .framer-Jdseo .framer-5d577y > *, .framer-Jdseo .framer-1q1czkh > *, .framer-Jdseo .framer-kt07d3 > *, .framer-Jdseo .framer-10djoz3 > *, .framer-Jdseo .framer-1gknohm > *, .framer-Jdseo .framer-c0av06 > *, .framer-Jdseo .framer-1binii2 > *, .framer-Jdseo .framer-1sq7oz > *, .framer-Jdseo .framer-1vc2uon > *, .framer-Jdseo .framer-f2wopx > *, .framer-Jdseo .framer-h31g04 > *, .framer-Jdseo .framer-1207zia > *, .framer-Jdseo .framer-1e6f8ni > *, .framer-Jdseo .framer-14phqs6 > *, .framer-Jdseo .framer-18zx32i > *, .framer-Jdseo .framer-64xmv8 > *, .framer-Jdseo .framer-1uste8f > *, .framer-Jdseo .framer-1paor36 > *, .framer-Jdseo .framer-phdtkr > *, .framer-Jdseo .framer-1f9y4db > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jdseo .framer-eggakj > *, .framer-Jdseo .framer-2bskru > *, .framer-Jdseo .framer-eu5dyp > *, .framer-Jdseo .framer-1omfdpd > *, .framer-Jdseo .framer-1q2e634 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Jdseo .framer-uizook > *, .framer-Jdseo .framer-vcxd65 > *, .framer-Jdseo .framer-1e3bci3 > *, .framer-Jdseo .framer-9fnpo > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Jdseo .framer-ts691r > *, .framer-Jdseo .framer-zjzag8 > *, .framer-Jdseo .framer-11pwwa0 > *, .framer-Jdseo .framer-164dqhe > *, .framer-Jdseo .framer-mcfjye > *, .framer-Jdseo .framer-cvdadl > *, .framer-Jdseo .framer-10duddp > *, .framer-Jdseo .framer-1tcspnk > *, .framer-Jdseo .framer-139blne > *, .framer-Jdseo .framer-5j70pz > *, .framer-Jdseo .framer-1qvpfmo > *, .framer-Jdseo .framer-18up3nn > *, .framer-Jdseo .framer-cjboj2 > *, .framer-Jdseo .framer-1l5vxpa > *, .framer-Jdseo .framer-cabatc > *, .framer-Jdseo .framer-1xfhbjx > *, .framer-Jdseo .framer-fo0qvx > *, .framer-Jdseo .framer-mr08zw > *, .framer-Jdseo .framer-1p4bvtc > *, .framer-Jdseo .framer-13fnxru > *, .framer-Jdseo .framer-1pqhl3d > *, .framer-Jdseo .framer-1r4p5q6 > *, .framer-Jdseo .framer-k4dot6 > *, .framer-Jdseo .framer-drv18j > *, .framer-Jdseo .framer-1ckg8ci > *, .framer-Jdseo .framer-11qurj6 > *, .framer-Jdseo .framer-19lq9x6 > *, .framer-Jdseo .framer-1guyv1e > *, .framer-Jdseo .framer-1exikdl > *, .framer-Jdseo .framer-ufws8u > *, .framer-Jdseo .framer-1cxs1wa > *, .framer-Jdseo .framer-c23og > *, .framer-Jdseo .framer-1p3f7x1 > *, .framer-Jdseo .framer-vvo3cx > *, .framer-Jdseo .framer-1pxx1d > *, .framer-Jdseo .framer-1v4akug > *, .framer-Jdseo .framer-j7kvqt > *, .framer-Jdseo .framer-1yekyba > *, .framer-Jdseo .framer-kmszn4 > *, .framer-Jdseo .framer-1f3yeyr > *, .framer-Jdseo .framer-y1c26k > *, .framer-Jdseo .framer-vx60hx > *, .framer-Jdseo .framer-19vm1pc > *, .framer-Jdseo .framer-18t8vlp > *, .framer-Jdseo .framer-17hjxgg > *, .framer-Jdseo .framer-apft8y > *, .framer-Jdseo .framer-13009rc > *, .framer-Jdseo .framer-1mhhqbj > *, .framer-Jdseo .framer-5q5zss > *, .framer-Jdseo .framer-15fhjy > *, .framer-Jdseo .framer-kw09l2 > *, .framer-Jdseo .framer-64rrpd > *, .framer-Jdseo .framer-4c4fpl > *, .framer-Jdseo .framer-1t3rjyg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Jdseo .framer-ts691r > :first-child, .framer-Jdseo .framer-zjzag8 > :first-child, .framer-Jdseo .framer-11pwwa0 > :first-child, .framer-Jdseo .framer-164dqhe > :first-child, .framer-Jdseo .framer-mcfjye > :first-child, .framer-Jdseo .framer-cvdadl > :first-child, .framer-Jdseo .framer-10duddp > :first-child, .framer-Jdseo .framer-1wi5zq7 > :first-child, .framer-Jdseo .framer-1tcspnk > :first-child, .framer-Jdseo .framer-139blne > :first-child, .framer-Jdseo .framer-5j70pz > :first-child, .framer-Jdseo .framer-1qvpfmo > :first-child, .framer-Jdseo .framer-jtq4c6 > :first-child, .framer-Jdseo .framer-18up3nn > :first-child, .framer-Jdseo .framer-cjboj2 > :first-child, .framer-Jdseo .framer-1l5vxpa > :first-child, .framer-Jdseo .framer-cabatc > :first-child, .framer-Jdseo .framer-1xfhbjx > :first-child, .framer-Jdseo .framer-gvzl2p > :first-child, .framer-Jdseo .framer-gw4vcp > :first-child, .framer-Jdseo .framer-1n9pyk1 > :first-child, .framer-Jdseo .framer-fo0qvx > :first-child, .framer-Jdseo .framer-mr08zw > :first-child, .framer-Jdseo .framer-1p4bvtc > :first-child, .framer-Jdseo .framer-13fnxru > :first-child, .framer-Jdseo .framer-1pqhl3d > :first-child, .framer-Jdseo .framer-1r4p5q6 > :first-child, .framer-Jdseo .framer-k4dot6 > :first-child, .framer-Jdseo .framer-drv18j > :first-child, .framer-Jdseo .framer-1sjqpqt > :first-child, .framer-Jdseo .framer-1ckg8ci > :first-child, .framer-Jdseo .framer-11qurj6 > :first-child, .framer-Jdseo .framer-19lq9x6 > :first-child, .framer-Jdseo .framer-1guyv1e > :first-child, .framer-Jdseo .framer-1exikdl > :first-child, .framer-Jdseo .framer-ufws8u > :first-child, .framer-Jdseo .framer-1cxs1wa > :first-child, .framer-Jdseo .framer-1blqtmx > :first-child, .framer-Jdseo .framer-c23og > :first-child, .framer-Jdseo .framer-1p3f7x1 > :first-child, .framer-Jdseo .framer-1tbvz24 > :first-child, .framer-Jdseo .framer-1c46hqu > :first-child, .framer-Jdseo .framer-vvo3cx > :first-child, .framer-Jdseo .framer-if40lp > :first-child, .framer-Jdseo .framer-9mg4s3 > :first-child, .framer-Jdseo .framer-130tnwi > :first-child, .framer-Jdseo .framer-p761f7 > :first-child, .framer-Jdseo .framer-1kuckrj > :first-child, .framer-Jdseo .framer-1slo5ah > :first-child, .framer-Jdseo .framer-1pxx1d > :first-child, .framer-Jdseo .framer-1v4akug > :first-child, .framer-Jdseo .framer-j7kvqt > :first-child, .framer-Jdseo .framer-1yekyba > :first-child, .framer-Jdseo .framer-kmszn4 > :first-child, .framer-Jdseo .framer-1f3yeyr > :first-child, .framer-Jdseo .framer-y1c26k > :first-child, .framer-Jdseo .framer-vx60hx > :first-child, .framer-Jdseo .framer-19vm1pc > :first-child, .framer-Jdseo .framer-18t8vlp > :first-child, .framer-Jdseo .framer-17hjxgg > :first-child, .framer-Jdseo .framer-apft8y > :first-child, .framer-Jdseo .framer-13009rc > :first-child, .framer-Jdseo .framer-1mhhqbj > :first-child, .framer-Jdseo .framer-5q5zss > :first-child, .framer-Jdseo .framer-15fhjy > :first-child, .framer-Jdseo .framer-13o9ot4 > :first-child, .framer-Jdseo .framer-kw09l2 > :first-child, .framer-Jdseo .framer-j894ln > :first-child, .framer-Jdseo .framer-64rrpd > :first-child, .framer-Jdseo .framer-4c4fpl > :first-child, .framer-Jdseo .framer-1t3rjyg > :first-child { margin-left: 0px; } .framer-Jdseo .framer-ts691r > :last-child, .framer-Jdseo .framer-zjzag8 > :last-child, .framer-Jdseo .framer-11pwwa0 > :last-child, .framer-Jdseo .framer-164dqhe > :last-child, .framer-Jdseo .framer-mcfjye > :last-child, .framer-Jdseo .framer-cvdadl > :last-child, .framer-Jdseo .framer-10duddp > :last-child, .framer-Jdseo .framer-1wi5zq7 > :last-child, .framer-Jdseo .framer-1tcspnk > :last-child, .framer-Jdseo .framer-139blne > :last-child, .framer-Jdseo .framer-5j70pz > :last-child, .framer-Jdseo .framer-1qvpfmo > :last-child, .framer-Jdseo .framer-jtq4c6 > :last-child, .framer-Jdseo .framer-18up3nn > :last-child, .framer-Jdseo .framer-cjboj2 > :last-child, .framer-Jdseo .framer-1l5vxpa > :last-child, .framer-Jdseo .framer-cabatc > :last-child, .framer-Jdseo .framer-1xfhbjx > :last-child, .framer-Jdseo .framer-gvzl2p > :last-child, .framer-Jdseo .framer-gw4vcp > :last-child, .framer-Jdseo .framer-1n9pyk1 > :last-child, .framer-Jdseo .framer-fo0qvx > :last-child, .framer-Jdseo .framer-mr08zw > :last-child, .framer-Jdseo .framer-1p4bvtc > :last-child, .framer-Jdseo .framer-13fnxru > :last-child, .framer-Jdseo .framer-1pqhl3d > :last-child, .framer-Jdseo .framer-1r4p5q6 > :last-child, .framer-Jdseo .framer-k4dot6 > :last-child, .framer-Jdseo .framer-drv18j > :last-child, .framer-Jdseo .framer-1sjqpqt > :last-child, .framer-Jdseo .framer-1ckg8ci > :last-child, .framer-Jdseo .framer-11qurj6 > :last-child, .framer-Jdseo .framer-19lq9x6 > :last-child, .framer-Jdseo .framer-1guyv1e > :last-child, .framer-Jdseo .framer-1exikdl > :last-child, .framer-Jdseo .framer-ufws8u > :last-child, .framer-Jdseo .framer-1cxs1wa > :last-child, .framer-Jdseo .framer-1blqtmx > :last-child, .framer-Jdseo .framer-c23og > :last-child, .framer-Jdseo .framer-1p3f7x1 > :last-child, .framer-Jdseo .framer-1tbvz24 > :last-child, .framer-Jdseo .framer-1c46hqu > :last-child, .framer-Jdseo .framer-vvo3cx > :last-child, .framer-Jdseo .framer-if40lp > :last-child, .framer-Jdseo .framer-9mg4s3 > :last-child, .framer-Jdseo .framer-130tnwi > :last-child, .framer-Jdseo .framer-p761f7 > :last-child, .framer-Jdseo .framer-1kuckrj > :last-child, .framer-Jdseo .framer-1slo5ah > :last-child, .framer-Jdseo .framer-1pxx1d > :last-child, .framer-Jdseo .framer-1v4akug > :last-child, .framer-Jdseo .framer-j7kvqt > :last-child, .framer-Jdseo .framer-1yekyba > :last-child, .framer-Jdseo .framer-kmszn4 > :last-child, .framer-Jdseo .framer-1f3yeyr > :last-child, .framer-Jdseo .framer-y1c26k > :last-child, .framer-Jdseo .framer-vx60hx > :last-child, .framer-Jdseo .framer-19vm1pc > :last-child, .framer-Jdseo .framer-18t8vlp > :last-child, .framer-Jdseo .framer-17hjxgg > :last-child, .framer-Jdseo .framer-apft8y > :last-child, .framer-Jdseo .framer-13009rc > :last-child, .framer-Jdseo .framer-1mhhqbj > :last-child, .framer-Jdseo .framer-5q5zss > :last-child, .framer-Jdseo .framer-15fhjy > :last-child, .framer-Jdseo .framer-13o9ot4 > :last-child, .framer-Jdseo .framer-kw09l2 > :last-child, .framer-Jdseo .framer-j894ln > :last-child, .framer-Jdseo .framer-64rrpd > :last-child, .framer-Jdseo .framer-4c4fpl > :last-child, .framer-Jdseo .framer-1t3rjyg > :last-child { margin-right: 0px; } .framer-Jdseo .framer-1wi5zq7 > *, .framer-Jdseo .framer-1tbvz24 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-Jdseo .framer-1t4aiq9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Jdseo .framer-1bnxxl2 > *, .framer-Jdseo .framer-16ifvnp > *, .framer-Jdseo .framer-14jlsl8 > *, .framer-Jdseo .framer-xcexel > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Jdseo .framer-1ihsbln > *, .framer-Jdseo .framer-1h54tm5 > *, .framer-Jdseo .framer-y0ia20 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Jdseo .framer-jtq4c6 > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-Jdseo .framer-cwhoow > *, .framer-Jdseo .framer-156h3vd > *, .framer-Jdseo .framer-181rbe7 > *, .framer-Jdseo .framer-1ohkolw > *, .framer-Jdseo .framer-77zcia > *, .framer-Jdseo .framer-1yo5xdi > *, .framer-Jdseo .framer-10yn867 > *, .framer-Jdseo .framer-1udhu16 > *, .framer-Jdseo .framer-1g02fc9 > *, .framer-Jdseo .framer-1460ws6 > *, .framer-Jdseo .framer-x77kw4 > *, .framer-Jdseo .framer-nk3jjz > *, .framer-Jdseo .framer-wnx94b > *, .framer-Jdseo .framer-18x5t89 > *, .framer-Jdseo .framer-6pq7n2 > *, .framer-Jdseo .framer-hpzrmv > *, .framer-Jdseo .framer-807rv8 > *, .framer-Jdseo .framer-16uyozz > *, .framer-Jdseo .framer-19rgm85 > *, .framer-Jdseo .framer-5yktbq > *, .framer-Jdseo .framer-1sbqact > *, .framer-Jdseo .framer-jeejei > *, .framer-Jdseo .framer-149nrxd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Jdseo .framer-1e3d6if > *, .framer-Jdseo .framer-15c4r5 > *, .framer-Jdseo .framer-1d19d50 > *, .framer-Jdseo .framer-z2ry5b > *, .framer-Jdseo .framer-1g7unf3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Jdseo .framer-1219icr > *, .framer-Jdseo .framer-1op3shd > *, .framer-Jdseo .framer-lk1e81 > *, .framer-Jdseo .framer-qirsnl > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Jdseo .framer-1si7hiv > *, .framer-Jdseo .framer-zjljf0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Jdseo .framer-gvzl2p > *, .framer-Jdseo .framer-gw4vcp > *, .framer-Jdseo .framer-1n9pyk1 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Jdseo .framer-1sjqpqt > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Jdseo .framer-1n3bvf8 > *, .framer-Jdseo .framer-xhsigx > *, .framer-Jdseo .framer-1xmbyoq > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Jdseo .framer-1blqtmx > *, .framer-Jdseo .framer-13o9ot4 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Jdseo .framer-1c46hqu > *, .framer-Jdseo .framer-if40lp > *, .framer-Jdseo .framer-9mg4s3 > *, .framer-Jdseo .framer-130tnwi > *, .framer-Jdseo .framer-p761f7 > *, .framer-Jdseo .framer-1kuckrj > *, .framer-Jdseo .framer-j894ln > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Jdseo .framer-qoqpsb > *, .framer-Jdseo .framer-h3qdog > *, .framer-Jdseo .framer-152bard > *, .framer-Jdseo .framer-b3n1vh > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Jdseo .framer-1slo5ah > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Jdseo .framer-1544nn2 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-Jdseo { background: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, rgb(18, 19, 22)) /* {\"name\":\"off-black #1\"} */; } .framer-Jdseo.framer-72rtr7 { padding: 48px 10px 0px 10px; width: 810px; } .framer-Jdseo .framer-1i00yxu-container { z-index: 6; } .framer-Jdseo .framer-104qlkp { padding: 96px 40px 96px 40px; } .framer-Jdseo .framer-xpn7me-container { bottom: unset; top: calc(54.14928140936488% - 630px / 2); } .framer-Jdseo .framer-eggakj { max-width: unset; } .framer-Jdseo .framer-ts691r, .framer-Jdseo .framer-187ivgc-container, .framer-Jdseo .framer-10yn867, .framer-Jdseo .framer-1e3d6if, .framer-Jdseo .framer-1udhu16, .framer-Jdseo .framer-7vej8e, .framer-Jdseo .framer-16mswji, .framer-Jdseo .framer-1460ws6, .framer-Jdseo .framer-z2ry5b, .framer-Jdseo .framer-1ubg87x, .framer-Jdseo .framer-1hqxc7o-container { width: 100%; } .framer-Jdseo .framer-14n0595 { aspect-ratio: 1.5279805352798053 / 1; height: var(--framer-aspect-ratio-supported, 412px); max-width: 630px; width: 100%; } .framer-Jdseo .framer-eu5dyp { padding: 0px 20px 9px 20px; } .framer-Jdseo .framer-1q2e634 { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-Jdseo .framer-14jlsl8 { align-self: unset; width: 100%; } .framer-Jdseo .framer-nnt5ip { max-width: 1082px; width: 100%; } .framer-Jdseo .framer-1x7gofo, .framer-Jdseo .framer-7t23jg, .framer-Jdseo .framer-1mkmtmz, .framer-Jdseo .framer-ljk9m9, .framer-Jdseo .framer-17pcqe7 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Jdseo .framer-ioeqkf { max-width: 296.5px; width: 100%; } .framer-Jdseo .framer-193x534 { height: var(--framer-aspect-ratio-supported, 252px); right: -80px; } .framer-Jdseo .framer-15c4r5, .framer-Jdseo .framer-1d19d50 { height: min-content; width: 100%; } .framer-Jdseo .framer-1ptoal2 { bottom: 0px; height: 231px; right: -100px; width: 271px; } .framer-Jdseo .framer-1g02fc9, .framer-Jdseo .framer-64rrpd { order: 0; } .framer-Jdseo .framer-ag200w, .framer-Jdseo .framer-1uste8f { order: 1; } .framer-Jdseo .framer-1m6d528 { bottom: 21px; order: 2; right: -130px; } .framer-Jdseo .framer-khsw2c { height: 237px; right: -40px; width: 395px; } .framer-Jdseo .framer-1n9pyk1 { flex-wrap: wrap; gap: 20px; max-width: 460px; width: 100%; } .framer-Jdseo .framer-qirsnl { padding: 0px 20px 0px 20px; } .framer-Jdseo .framer-1tbvz24 { flex-direction: column; } .framer-Jdseo .framer-1c46hqu, .framer-Jdseo .framer-9fnpo, .framer-Jdseo .framer-jeejei, .framer-Jdseo .framer-149nrxd, .framer-Jdseo .framer-1544nn2 { flex: none; width: 100%; } .framer-Jdseo .framer-1slo5ah { flex-direction: column; gap: 38px; } .framer-Jdseo .framer-1o4qj04 { flex: none; order: 1; width: 100%; } .framer-Jdseo .framer-1pxx1d, .framer-Jdseo .framer-1f3yeyr, .framer-Jdseo .framer-17hjxgg, .framer-Jdseo .framer-13o9ot4 { justify-content: flex-end; } .framer-Jdseo .framer-1skh2u8 { height: var(--framer-aspect-ratio-supported, 18px); } .framer-Jdseo .framer-1dcvht1 { height: var(--framer-aspect-ratio-supported, 21px); } .framer-Jdseo .framer-17mrggc { height: var(--framer-aspect-ratio-supported, 17px); } .framer-Jdseo .framer-h31g04 { flex: none; order: 0; width: 100%; } .framer-Jdseo .framer-j894ln { align-content: center; align-items: center; flex-direction: column; } .framer-Jdseo .framer-acx3lr-container, .framer-Jdseo .framer-if9omt-container, .framer-Jdseo .framer-1vh6qjb-container, .framer-Jdseo .framer-5x078j-container, .framer-Jdseo .framer-g17nn3-container, .framer-Jdseo .framer-edopz0-container, .framer-Jdseo .framer-5z6cfm-container, .framer-Jdseo .framer-1ps8rrl-container { max-width: 496px; width: 100%; } .framer-Jdseo .framer-64xmv8 { padding: 48px 20px 48px 20px; } .framer-Jdseo .framer-1fvzkf6 { order: 2; } .framer-Jdseo .framer-w94oz2 { bottom: 58px; order: 3; } .framer-Jdseo .framer-15rt1cf { flex-direction: column; gap: 28px; justify-content: center; } .framer-Jdseo .framer-phdtkr { align-content: center; align-items: center; max-width: 600px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Jdseo .framer-1n9pyk1, .framer-Jdseo .framer-1tbvz24, .framer-Jdseo .framer-1slo5ah, .framer-Jdseo .framer-j894ln, .framer-Jdseo .framer-15rt1cf { gap: 0px; } .framer-Jdseo .framer-1n9pyk1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Jdseo .framer-1n9pyk1 > :first-child { margin-left: 0px; } .framer-Jdseo .framer-1n9pyk1 > :last-child { margin-right: 0px; } .framer-Jdseo .framer-1tbvz24 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Jdseo .framer-1tbvz24 > :first-child, .framer-Jdseo .framer-1slo5ah > :first-child, .framer-Jdseo .framer-j894ln > :first-child, .framer-Jdseo .framer-15rt1cf > :first-child { margin-top: 0px; } .framer-Jdseo .framer-1tbvz24 > :last-child, .framer-Jdseo .framer-1slo5ah > :last-child, .framer-Jdseo .framer-j894ln > :last-child, .framer-Jdseo .framer-15rt1cf > :last-child { margin-bottom: 0px; } .framer-Jdseo .framer-1slo5ah > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-Jdseo .framer-j894ln > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Jdseo .framer-15rt1cf > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Jdseo { background: var(--token-66c71f45-4367-4ca1-b5de-f1d5b4d31c39, rgb(18, 19, 22)) /* {\"name\":\"off-black #1\"} */; } .framer-Jdseo.framer-72rtr7 { padding: 48px 10px 0px 10px; width: 390px; } .framer-Jdseo .framer-1i00yxu-container { z-index: 6; } .framer-Jdseo .framer-104qlkp { padding: 96px 20px 96px 20px; } .framer-Jdseo .framer-eggakj { max-width: unset; } .framer-Jdseo .framer-ts691r { flex-wrap: wrap; width: 100%; } .framer-Jdseo .framer-14n0595 { aspect-ratio: 1.5217391304347827 / 1; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; height: var(--framer-aspect-ratio-supported, 217px); max-width: unset; width: 100%; } .framer-Jdseo .framer-1wi5zq7, .framer-Jdseo .framer-5j70pz, .framer-Jdseo .framer-jtq4c6, .framer-Jdseo .framer-cjboj2, .framer-Jdseo .framer-gvzl2p, .framer-Jdseo .framer-gw4vcp, .framer-Jdseo .framer-c23og, .framer-Jdseo .framer-1tbvz24, .framer-Jdseo .framer-if40lp { flex-direction: column; } .framer-Jdseo .framer-2bskru { align-content: center; align-items: center; align-self: unset; flex: none; height: min-content; justify-content: center; max-width: 150px; width: 100%; } .framer-Jdseo .framer-eu5dyp { flex: none; padding: 0px 20px 9px 20px; width: 100%; } .framer-Jdseo .framer-cwhoow, .framer-Jdseo .framer-181rbe7, .framer-Jdseo .framer-77zcia, .framer-Jdseo .framer-1219icr, .framer-Jdseo .framer-9fnpo, .framer-Jdseo .framer-hpzrmv, .framer-Jdseo .framer-19rgm85, .framer-Jdseo .framer-jeejei, .framer-Jdseo .framer-149nrxd, .framer-Jdseo .framer-1544nn2 { flex: none; width: 100%; } .framer-Jdseo .framer-1gknohm { padding: 64px 20px 64px 20px; } .framer-Jdseo .framer-187ivgc-container, .framer-Jdseo .framer-10yn867, .framer-Jdseo .framer-1e3d6if, .framer-Jdseo .framer-1udhu16, .framer-Jdseo .framer-7vej8e, .framer-Jdseo .framer-16mswji, .framer-Jdseo .framer-1460ws6, .framer-Jdseo .framer-z2ry5b, .framer-Jdseo .framer-1ubg87x, .framer-Jdseo .framer-1op3shd, .framer-Jdseo .framer-lk1e81, .framer-Jdseo .framer-f2wopx, .framer-Jdseo .framer-mf3vyk, .framer-Jdseo .framer-1hqxc7o-container { width: 100%; } .framer-Jdseo .framer-1q2e634 { padding: 20px; width: 100%; } .framer-Jdseo .framer-14jlsl8 { align-self: unset; width: 100%; } .framer-Jdseo .framer-nnt5ip { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; max-width: 1082px; width: 100%; } .framer-Jdseo .framer-c0av06, .framer-Jdseo .framer-1binii2, .framer-Jdseo .framer-1sq7oz, .framer-Jdseo .framer-1vc2uon { align-self: unset; height: 364px; } .framer-Jdseo .framer-1x7gofo, .framer-Jdseo .framer-7t23jg, .framer-Jdseo .framer-1mkmtmz, .framer-Jdseo .framer-ljk9m9 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Jdseo .framer-ioeqkf { max-width: 296.5px; width: 100%; } .framer-Jdseo .framer-1bz0q7p { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 17%, rgb(0, 0, 0) 87%); bottom: 0px; height: 267px; left: calc(50.00000000000002% - 100% / 2); top: unset; } .framer-Jdseo .framer-193x534 { bottom: -10px; height: var(--framer-aspect-ratio-supported, 299px); right: -190px; width: 429px; } .framer-Jdseo .framer-15c4r5, .framer-Jdseo .framer-1d19d50 { height: min-content; width: 100%; } .framer-Jdseo .framer-10ej8yy { bottom: 0px; height: 100px; left: calc(50.00000000000002% - 100% / 2); top: unset; } .framer-Jdseo .framer-1ptoal2 { bottom: 0px; height: 281px; right: -100px; width: 330px; } .framer-Jdseo .framer-1g02fc9, .framer-Jdseo .framer-64rrpd { order: 0; } .framer-Jdseo .framer-ag200w { bottom: 0px; height: 100px; left: -1px; order: 1; top: unset; width: 100%; } .framer-Jdseo .framer-1m6d528 { bottom: -9px; height: 227px; order: 2; right: -130px; width: 357px; } .framer-Jdseo .framer-1a5kn2t { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51%, rgb(0, 0, 0) 97.07154420045046%); bottom: 0px; height: 324px; left: calc(50.00000000000002% - 99.69696969696969% / 2); top: unset; width: 100%; } .framer-Jdseo .framer-khsw2c { height: 265px; right: -190px; width: 441px; } .framer-Jdseo .framer-cabatc { flex-direction: column; padding: 64px 10px 64px 10px; } .framer-Jdseo .framer-1n9pyk1 { flex-wrap: wrap; gap: 20px; max-width: 460px; width: 100%; } .framer-Jdseo .framer-drv18j { flex-direction: column; padding: 48px 10px 48px 10px; } .framer-Jdseo .framer-1sjqpqt { flex-direction: column; width: 100%; } .framer-Jdseo .framer-nk3jjz { order: 1; width: 100%; } .framer-Jdseo .framer-1cxs1wa { bottom: unset; left: 50%; order: 2; top: 291px; } .framer-Jdseo .framer-1e3bci3 { order: 0; width: 100%; } .framer-Jdseo .framer-1blqtmx { justify-content: flex-start; width: 100%; } .framer-Jdseo .framer-iohgdy { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-Jdseo .framer-qirsnl { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-Jdseo .framer-1c46hqu { flex: none; flex-direction: column; width: 100%; } .framer-Jdseo .framer-18x5t89 { flex: none; min-width: unset; width: 100%; } .framer-Jdseo .framer-vvo3cx { align-self: unset; aspect-ratio: 0.998468606431853 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 307px); width: 100%; } .framer-Jdseo .framer-urvi8n { aspect-ratio: 0.9983471074380166 / 1; height: var(--framer-aspect-ratio-supported, 283px); } .framer-Jdseo .framer-1slo5ah { flex-direction: column; gap: 38px; } .framer-Jdseo .framer-1o4qj04, .framer-Jdseo .framer-1uste8f { flex: none; order: 1; width: 100%; } .framer-Jdseo .framer-1pxx1d, .framer-Jdseo .framer-1f3yeyr { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-Jdseo .framer-1v4akug, .framer-Jdseo .framer-j7kvqt, .framer-Jdseo .framer-1yekyba, .framer-Jdseo .framer-kmszn4, .framer-Jdseo .framer-y1c26k, .framer-Jdseo .framer-vx60hx, .framer-Jdseo .framer-19vm1pc, .framer-Jdseo .framer-18t8vlp { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-Jdseo .framer-1dcvht1 { height: var(--framer-aspect-ratio-supported, 21px); } .framer-Jdseo .framer-17mrggc { height: var(--framer-aspect-ratio-supported, 17px); } .framer-Jdseo .framer-h31g04 { flex: none; order: 0; width: 100%; } .framer-Jdseo .framer-13o9ot4 { flex-wrap: wrap; justify-content: flex-end; } .framer-Jdseo .framer-1207zia, .framer-Jdseo .framer-1e6f8ni, .framer-Jdseo .framer-14phqs6 { align-content: flex-end; align-items: flex-end; } .framer-Jdseo .framer-zjljf0 { padding: 48px 12px 48px 12px; } .framer-Jdseo .framer-j894ln { align-content: center; align-items: center; flex-direction: column; } .framer-Jdseo .framer-acx3lr-container, .framer-Jdseo .framer-if9omt-container, .framer-Jdseo .framer-1vh6qjb-container, .framer-Jdseo .framer-5x078j-container, .framer-Jdseo .framer-g17nn3-container, .framer-Jdseo .framer-edopz0-container, .framer-Jdseo .framer-5z6cfm-container, .framer-Jdseo .framer-1ps8rrl-container { max-width: 496px; width: 100%; } .framer-Jdseo .framer-64xmv8 { padding: 48px 20px 48px 20px; } .framer-Jdseo .framer-vzsnem { flex-direction: column; gap: 50px; justify-content: center; padding: 40px 8px 40px 10px; } .framer-Jdseo .framer-1fvzkf6 { aspect-ratio: 1.0843373493975903 / 1; height: var(--framer-aspect-ratio-supported, 288px); order: 2; width: 100%; } .framer-Jdseo .framer-15rt1cf { flex-direction: column; gap: 28px; justify-content: center; padding: 60px 20px 60px 20px; } .framer-Jdseo .framer-phdtkr { align-content: center; align-items: center; max-width: 600px; width: 100%; } .framer-Jdseo .framer-1p5luxa { gap: 48px; justify-content: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Jdseo .framer-1wi5zq7, .framer-Jdseo .framer-5j70pz, .framer-Jdseo .framer-jtq4c6, .framer-Jdseo .framer-cjboj2, .framer-Jdseo .framer-nnt5ip, .framer-Jdseo .framer-cabatc, .framer-Jdseo .framer-gvzl2p, .framer-Jdseo .framer-gw4vcp, .framer-Jdseo .framer-1n9pyk1, .framer-Jdseo .framer-drv18j, .framer-Jdseo .framer-1sjqpqt, .framer-Jdseo .framer-c23og, .framer-Jdseo .framer-1tbvz24, .framer-Jdseo .framer-1c46hqu, .framer-Jdseo .framer-if40lp, .framer-Jdseo .framer-1slo5ah, .framer-Jdseo .framer-1pxx1d, .framer-Jdseo .framer-1f3yeyr, .framer-Jdseo .framer-j894ln, .framer-Jdseo .framer-vzsnem, .framer-Jdseo .framer-15rt1cf, .framer-Jdseo .framer-1p5luxa { gap: 0px; } .framer-Jdseo .framer-1wi5zq7 > *, .framer-Jdseo .framer-1tbvz24 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Jdseo .framer-1wi5zq7 > :first-child, .framer-Jdseo .framer-5j70pz > :first-child, .framer-Jdseo .framer-jtq4c6 > :first-child, .framer-Jdseo .framer-cjboj2 > :first-child, .framer-Jdseo .framer-nnt5ip > :first-child, .framer-Jdseo .framer-cabatc > :first-child, .framer-Jdseo .framer-gvzl2p > :first-child, .framer-Jdseo .framer-gw4vcp > :first-child, .framer-Jdseo .framer-drv18j > :first-child, .framer-Jdseo .framer-1sjqpqt > :first-child, .framer-Jdseo .framer-c23og > :first-child, .framer-Jdseo .framer-1tbvz24 > :first-child, .framer-Jdseo .framer-1c46hqu > :first-child, .framer-Jdseo .framer-if40lp > :first-child, .framer-Jdseo .framer-1slo5ah > :first-child, .framer-Jdseo .framer-j894ln > :first-child, .framer-Jdseo .framer-vzsnem > :first-child, .framer-Jdseo .framer-15rt1cf > :first-child { margin-top: 0px; } .framer-Jdseo .framer-1wi5zq7 > :last-child, .framer-Jdseo .framer-5j70pz > :last-child, .framer-Jdseo .framer-jtq4c6 > :last-child, .framer-Jdseo .framer-cjboj2 > :last-child, .framer-Jdseo .framer-nnt5ip > :last-child, .framer-Jdseo .framer-cabatc > :last-child, .framer-Jdseo .framer-gvzl2p > :last-child, .framer-Jdseo .framer-gw4vcp > :last-child, .framer-Jdseo .framer-drv18j > :last-child, .framer-Jdseo .framer-1sjqpqt > :last-child, .framer-Jdseo .framer-c23og > :last-child, .framer-Jdseo .framer-1tbvz24 > :last-child, .framer-Jdseo .framer-1c46hqu > :last-child, .framer-Jdseo .framer-if40lp > :last-child, .framer-Jdseo .framer-1slo5ah > :last-child, .framer-Jdseo .framer-j894ln > :last-child, .framer-Jdseo .framer-vzsnem > :last-child, .framer-Jdseo .framer-15rt1cf > :last-child { margin-bottom: 0px; } .framer-Jdseo .framer-5j70pz > *, .framer-Jdseo .framer-cjboj2 > *, .framer-Jdseo .framer-cabatc > *, .framer-Jdseo .framer-drv18j > *, .framer-Jdseo .framer-c23og > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jdseo .framer-jtq4c6 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-Jdseo .framer-nnt5ip > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Jdseo .framer-gvzl2p > *, .framer-Jdseo .framer-gw4vcp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Jdseo .framer-1n9pyk1 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Jdseo .framer-1n9pyk1 > :first-child, .framer-Jdseo .framer-1p5luxa > :first-child { margin-left: 0px; } .framer-Jdseo .framer-1n9pyk1 > :last-child, .framer-Jdseo .framer-1p5luxa > :last-child { margin-right: 0px; } .framer-Jdseo .framer-1sjqpqt > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Jdseo .framer-1c46hqu > *, .framer-Jdseo .framer-if40lp > *, .framer-Jdseo .framer-j894ln > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Jdseo .framer-1slo5ah > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-Jdseo .framer-1pxx1d > *, .framer-Jdseo .framer-1pxx1d > :first-child, .framer-Jdseo .framer-1pxx1d > :last-child, .framer-Jdseo .framer-1f3yeyr > *, .framer-Jdseo .framer-1f3yeyr > :first-child, .framer-Jdseo .framer-1f3yeyr > :last-child { margin: 0px; } .framer-Jdseo .framer-vzsnem > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Jdseo .framer-15rt1cf > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Jdseo .framer-1p5luxa > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-Jdseo[data-border=\"true\"]::after, .framer-Jdseo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8448\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GqgtjPc9g\":{\"layout\":[\"fixed\",\"auto\"]},\"Z12g0eqg0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Jdseo\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8448,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...NavBarFonts,...CircleBackgroundEffectFonts,...HomePageButtonsMainCTAsFonts,...TickerFonts,...StepsFonts,...FeaturesSectionToogleFonts,...HomePageButtonsSeeAllTestimonialsFonts,...AccordionRowFonts,...ConvertKitFonts,...FooterFonts,...NavBarCTAsBuyTemplateButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8448\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GqgtjPc9g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z12g0eqg0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "mailchimpRegex", "validateEmail", "email", "parseMailChimpUrl", "url", "_url_replace_match", "domain", "parameters", "safeURL", "isInternalURL", "href", "VERSION", "Input", "withCSS", "service", "redirectAs", "mailchimpURL", "loopsID", "loopsUserGroup", "formsparkID", "getwaitlistAPI", "convertkitAPI", "convertkitFormID", "input", "button", "font", "layout", "link", "gap", "style", "onSubmit", "setEmail", "ye", "isError", "setError", "isLoading", "setLoading", "isFocus", "setFocus", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "padding", "borderRadius", "borderObject", "focusObject", "shadowObject", "height", "fixedHeight", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "paddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "window", "validateForm", "te", "formControls", "handleChange", "event", "handleFocus", "handleBlur", "handleSubmit", "response", "error", "emailBody", "userGroupBody", "formBody", "data", "entries", "formData", "useAnimationControls", "focusStylesFrom", "focusStylesTo", "shadowStyles", "borderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "p", "motion", "containerStyles", "u", "defaultStyle", "Spinner", "getButtonShadow", "props", "noButtonStyles", "addPropertyControls", "ControlType", "shadows", "output", "shadow", "InputSites_js_1_12_default", "ConvertKit", "props", "p", "InputSites_js_1_12_default", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap27nt7b", "args", "onTapmme4on", "onTap1x9tk3o", "onTapegal8s", "onTap6t3r8m", "onTap1e1v4gh", "onTap2srsqz", "onTap1o2iu6o", "onTap1bfuynk", "onTap173rhkb", "onTap17cwq25", "onTap11ugpbl", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramercqWQea_JK", "withCSS", "cqWQea_JK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "SVG", "css", "FramerDolv_4me4", "withCSS", "Dolv_4me4_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "css", "Framero_6gLuZNJ", "withCSS", "o_6gLuZNJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavBarFonts", "getFonts", "oAxHrPnEq_default", "CircleBackgroundEffectFonts", "XCIaE_Sm1_default", "HomePageButtonsMainCTAsFonts", "SKp3QtTrv_default", "TickerFonts", "Ticker", "ImageWithFX", "withFX", "Image2", "StepsFonts", "o_6gLuZNJ_default", "FeaturesSectionToogleFonts", "cqWQea_JK_default", "HomePageButtonsSeeAllTestimonialsFonts", "Dolv_4me4_default", "AccordionRowFonts", "Ucu49o9Q9_default", "ConvertKitFonts", "ConvertKit", "FooterFonts", "tgaXkuUr2_default", "NavBarCTAsBuyTemplateButtonFonts", "uGfkGeC1s_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "RichText2", "x", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
