{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0", "ssg:https://framerusercontent.com/modules/kpe7auPRGuDOzCOGe8KB/6jSrvE7Westfv99U1PXL/Input_2.js", "ssg:https://framerusercontent.com/modules/J997ctdlA9PWmyZgisN7/TFoBfEJFO89EyjQ7AD1P/Loading_1.js", "ssg:https://framerusercontent.com/modules/NW1bDPqS50s4bGhfe159/GDa1u7FnGslFbU2VqTKe/Select_5.js", "ssg:https://framerusercontent.com/modules/WZt6nDGyUEScvcns5tl3/bZmT9vGpaGHoa3eYNKzX/VL9KDhx3_.js", "ssg:https://framerusercontent.com/modules/9TPhQgse5DTzJ1fpHRbp/EXWwoiYBeDbKWnlfPwSv/EIa7lzreq.js"],
  "sourcesContent": ["import{useLayoutEffect,useEffect}from\"react\";/**\n * Swaps `useLayoutEffect` for `useEffect` on the server to avoid React warnings.\n * NOTE! The effect won't run on the server.\n */ export const useIsomorphicLayoutEffect=typeof document!==\"undefined\"?useLayoutEffect:useEffect;\nexport const __FramerMetadata__ = {\"exports\":{\"useIsomorphicLayoutEffect\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useIsomorphicLayoutEffect.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return /*#__PURE__*/_jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard});},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\"]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\"]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"260\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_2.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,useAnimation,motion}from\"framer\";import{defaultEvents,useOnEnter,useOnExit}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var Indicators;(function(Indicators){Indicators[\"DotWave\"]=\"Dots\";Indicators[\"Material\"]=\"Material\";Indicators[\"IOS\"]=\"iOS\";})(Indicators||(Indicators={}));const angleInRadians=angleInDegrees=>(angleInDegrees-90)*(Math.PI/180);const polarToCartesian=(centerX,centerY,radius,angleInDegrees)=>{const a=angleInRadians(angleInDegrees);return{x:centerX+radius*Math.cos(a),y:centerY+radius*Math.sin(a)};};const arc=(x,y,radius,startAngle,endAngle)=>{const fullCircle=endAngle-startAngle===360;const start=polarToCartesian(x,y,radius,endAngle-.01);const end=polarToCartesian(x,y,radius,startAngle);const arcFlag=endAngle-startAngle<=180?\"0\":\"1\";let d=[\"M\",start.x,start.y,\"A\",radius,radius,0,arcFlag,0,end.x,end.y].join(\" \");if(fullCircle)d+=\"z\";return d;};function Spinner({color}){const length=360;const endPercentage=length/360*100;const strokeWidth=10;const width=100;const height=100;return /*#__PURE__*/_jsxs(motion.div,{style:{height:\"85%\",width:\"85%\",position:\"relative\",originX:.5,originY:.5},animate:{rotate:360},transition:{loop:Infinity,ease:\"linear\",duration:.5},children:[/*#__PURE__*/_jsx(motion.svg,{style:{height:\"100%\",width:\"100%\",top:0,left:0,right:0,bottom:0,position:\"absolute\",WebkitMask:`conic-gradient(rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0,1.0) ${endPercentage}%)`},viewBox:\"0 0 100 100\",children:/*#__PURE__*/_jsx(\"g\",{transform:\"translate(0 0)\",children:/*#__PURE__*/_jsx(\"path\",{d:arc(width/2,height/2,width/2-strokeWidth/2,0,length),fill:\"none\",stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\"})})}),/*#__PURE__*/_jsx(motion.svg,{style:{height:\"100%\",width:\"100%\",position:\"absolute\"},viewBox:\"0 0 100 100\",children:/*#__PURE__*/_jsx(\"g\",{transform:\"translate(50 0)\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 0 0 C 2.761 0 5 2.239 5 5 C 5 7.761 2.761 10 0 10 C 0 10 0 0 0 0 Z\",fill:color})})})]});}// <path d=\"M 0 0 C 2.761 0 5 2.239 5 5 C 5 7.761 2.761 10 0 10 C 0 10 0 0 0 0 Z\" fill=\"#CCC\"></path>\n// function Spinner({ color }) {\n//     return (\n//         <svg style={{ height: \"85%\", width: \"85%\" }} viewBox=\"0 0 100 100\">\n//             <motion.g\n//                 transform=\"translate(3 3)\"\n//                 animate={{ rotate: 360 }}\n//                 transition={{ loop: Infinity, ease: \"linear\", duration: 1 }}\n//             >\n//                 {pathStrings.map((data, i) => {\n//                     return <path d={data} fill={color} opacity={i / pathStrings.length} />\n//                 })}\n//             </motion.g>\n//         </svg>\n//     )\n// }\nfunction DotWave({color,animation}){const circles=[0,1,2];const{delay,ease,duration,...animProps}=animation;const transition=animation.type===\"spring\"?animProps:{...animProps,ease,duration};// console.log(animProps)\nreturn /*#__PURE__*/_jsx(motion.svg,{style:{height:\"85%\",width:\"85%\"},viewBox:\"0 0 30 30\",variants:{show:{transition:{delayChildren:.1,staggerChildren:.12}}},animate:\"show\",children:circles.map(circle=>/*#__PURE__*/_jsx(motion.circle,{style:{fill:color},variants:{hidden:{y:0},show:{y:[0,0,0,-10,0,0,0]}},transition:{...transition,yoyo:Infinity},r:3,cx:circle*10+5,cy:15},circle))});}function Material({color,animation}){return /*#__PURE__*/_jsx(motion.svg,{style:{height:\"85%\",width:\"85%\",overflow:\"visible\",originX:\"50%\",originY:\"50%\"},animate:{rotate:360},transition:{ease:\"linear\",loop:Infinity,duration:2},viewBox:\"25 25 50 50\",children:/*#__PURE__*/_jsx(motion.circle,{style:{stroke:color,strokeLinecap:\"round\"},animate:{strokeDasharray:[\"1, 200\",\"89, 200\",\"89, 200\"],strokeDashoffset:[0,-35,-124]},transition:{...animation,loop:Infinity,ease:\"easeInOut\"},cx:\"50\",cy:\"50\",r:\"20\",fill:\"none\",strokeWidth:2,strokeMiterlimit:\"10\"})});}function IOS({color,animation}){const particles=12;// this was the death of me\nconst arrayRotate=(arr,n)=>arr.slice(n,arr.length).concat(arr.slice(0,n));const lines=[...new Array(particles)].map((l,i)=>.9/particles*i+.1).reverse();const lineOpacities=lines.map((l,i)=>arrayRotate(lines,i));return /*#__PURE__*/_jsx(motion.svg,{viewBox:\"-15 -15 30 30\",style:{width:\"100%\",height:\"100%\"},children:lineOpacities.map((lineKeyframes,i)=>/*#__PURE__*/_jsx(motion.g,{initial:{opacity:lineKeyframes[0]},animate:{opacity:lineKeyframes},transition:{...animation,loop:Infinity,repeatDelay:5e-4},children:/*#__PURE__*/_jsx(\"rect\",{style:{width:7,height:2,fill:color,transform:`rotate(${(particles-i)/particles*360-90}deg)`},x:5,y:-1,rx:1})},i))});}function getIndicator(indicator,props){switch(indicator){case\"Dots\":return /*#__PURE__*/_jsx(DotWave,{...props});case\"Material\":return /*#__PURE__*/_jsx(Material,{...props});case\"iOS\":return /*#__PURE__*/_jsx(IOS,{...props});// case Indicators.Spinner:\n//     return <Spinner {...props} />\ndefault:return /*#__PURE__*/_jsx(DotWave,{...props});}}export function handleTimeout(duration,callback){const id=setTimeout(callback,duration*1e3);return()=>clearTimeout(id);}/**\n * Loading\n *\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Loading(props){const{duration,onTimeout,fadeOut,hasDuration,indicator,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,style}=props;const controls=useAnimation();const animDuration=fadeOut?Math.min(duration,.35):0;const animDelay=fadeOut?duration-animDuration:duration;const currentIndicator=getIndicator(indicator,props);const handlers=useRef([]);const onFadeOut=React.useCallback(()=>{if(hasDuration)controls.start({opacity:0,transition:{duration:animDuration,ease:\"easeIn\"}});},[hasDuration,animDuration]);const resetOpacity=async()=>{controls.set({opacity:1});};useOnEnter(()=>{resetOpacity();if(hasDuration)handlers.current=[handleTimeout(duration,onTimeout),handleTimeout(animDelay,onFadeOut)];});// Cancel all timers on exit.\nuseOnExit(()=>handlers.current.forEach(cleanup=>cleanup));// Cancel all timers on unmount.\nuseEffect(()=>()=>handlers.current.forEach(cleanup=>cleanup),[]);return /*#__PURE__*/_jsx(motion.div,{onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,animate:controls,style:{position:\"relative\",overflow:\"show\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",...style},children:currentIndicator});}Loading.defaultProps={height:40,width:40,duration:2,color:\"#888\",animation:{type:\"tween\",ease:\"linear\",duration:1.3},hasDuration:false};// Learn more: https://framer.com/api/property-controls/\naddPropertyControls(Loading,{indicator:{title:\"Indicator\",type:ControlType.Enum,options:Object.keys(Indicators).map(i=>Indicators[i])},color:{type:ControlType.Color,defaultValue:\"#888\"},// transition: { title: \"Animation\", type: ControlType.Transition },\nhasDuration:{title:\"Duration\",type:ControlType.Boolean,defaultValue:Loading.defaultProps.hasDuration,enabledTitle:\"Timeout\",disabledTitle:\"Infinity\"},duration:{title:\"Time\",hidden:({hasDuration})=>!hasDuration,min:.1,max:10,defaultValue:Loading.defaultProps.duration,type:ControlType.Number,step:.1},animation:{type:ControlType.Transition},fadeOut:{title:\"Fade Out\",hidden:({hasDuration})=>!hasDuration,type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},onTimeout:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Loading\":{\"type\":\"reactComponent\",\"name\":\"Loading\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"40\"}},\"handleTimeout\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Loading_1.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{getVariantControls,fontSizeOptions,fontControls,useFontControls,usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * SELECT\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export const Select=withCSS(function Select(props){const{disabled,focused,options=[],defaultTextColor,defaultIconColor,defaultBackgroundColor,defaultBorderColor,defaultBorderWidth,focusTextColor,focusIconColor,focusBackgroundColor,focusBorderColor,focusBorderWidth,disabledTextColor,disabledIconColor,disabledBackgroundColor,disabledBorderColor,disabledBorderWidth,disabledOpacity,radius,fontSize,fontFamily,fontWeight,value,variant,onFocus,onBlur,onChange,onSelectOption1,onSelectOption2,onSelectOption3,onSelectOption4,onSelectOption5,onSelectOption6,onSelectOption7,onSelectOption8,onSelectOption9,onSelectOption10,style,padding,...rest}=props;const[currentValue,setCurrentValue]=React.useState(value-1);const isInPreview=RenderTarget.current()===RenderTarget.preview;const handleSelectChange=React.useCallback(event=>{const index=parseInt(event.currentTarget.value,10);const label=options[index];// This shouldn't happen!\nif(!label){console.error(`Could not find option label at index ${index}`);}setCurrentValue(index);if(onChange){onChange(index,label);}switch(index){case 0:onSelectOption1();break;case 1:onSelectOption2();break;case 2:onSelectOption3();break;case 3:onSelectOption4();break;case 4:onSelectOption5();break;case 5:onSelectOption6();break;case 6:onSelectOption7();break;case 7:onSelectOption8();break;case 8:onSelectOption9();break;case 9:onSelectOption10();break;}},[options,onSelectOption1,onSelectOption2,onSelectOption3,onSelectOption4,onSelectOption5,onSelectOption6,onSelectOption7,onSelectOption8,onSelectOption9,onSelectOption10]);const handleFocus=React.useCallback(()=>{if(onFocus){onFocus();}},[onFocus]);const handleBlur=React.useCallback(()=>{if(onBlur){onBlur();}},[onBlur]);React.useEffect(()=>setCurrentValue(value-1),[value]);const variants={default:{backgroundColor:defaultBackgroundColor,caretColor:defaultTextColor,color:defaultTextColor,boxShadow:`inset 0 0 0 ${defaultBorderWidth}px ${defaultBorderColor}`},disabled:{backgroundColor:disabledBackgroundColor,color:disabledTextColor,caretColor:disabledTextColor,boxShadow:`inset 0 0 0 ${disabledBorderWidth}px ${disabledBorderColor}`,opacity:disabledOpacity/100},focus:{backgroundColor:focusBackgroundColor,color:focusTextColor,caretColor:focusTextColor,boxShadow:`inset 0 0 0 ${focusBorderWidth}px ${focusBorderColor}`}};const currentVariantStyle=disabled?variants.disabled:variants[variant];const fontStyles=useFontControls(props);const paddingValue=usePadding(props);return /*#__PURE__*/_jsx(\"select\",{className:\"framer-default-select\",disabled:variant===\"disabled\"||disabled,autoFocus:focused&&isInPreview,style:{...selectStyles,...fontStyles,...style,\"--framer-default-select-focus-background-color\":variants.focus.backgroundColor,\"--framer-default-select-focus-color\":variants.focus.color,\"--framer-default-select-focus-box-shadow\":variants.focus.boxShadow,\"--framer-default-select-disabled-color\":variants.disabled.opacity,padding:paddingValue,borderRadius:radius,fontSize,backgroundImage:`url(\"data:image/svg+xml,${encodeURIComponent(`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\">\n                        <path d=\"M 0 9 L 4.5 4.5 L 0 0\" transform=\"translate(5.75 3.75) rotate(90 2.25 4.5)\" fill=\"transparent\" stroke-width=\"2\" stroke=\"${defaultIconColor}\" stroke-linecap=\"round\"></path>\n                      </svg>`)}\")`,...currentVariantStyle},value:currentValue,onChange:handleSelectChange,onFocus:handleFocus,onBlur:handleBlur,children:options.map((option,index)=>/*#__PURE__*/_jsx(\"option\",{value:index,children:option},`option-${index}`))});},[\".framer-default-select:focus {background-color: var(--framer-default-select-focus-background-color);color: var(--framer-default-select-focus-color);box-shadow: var(--framer-default-select-focus-box-shadow);}\",\".framer-default-select:disabled {opacity: var(--framer-default-select-disabled-color);cursor:default;}\"]);Select.defaultProps={height:50,width:140,value:1,disabled:false,focused:false,defaultTextColor:\"#444444\",defaultIconColor:\"#999999\",defaultBackgroundColor:\"#EBEBEB\",defaultBorderColor:\"#09F\",defaultBorderWidth:0,focusTextColor:\"#444444\",focusIconColor:\"#999999\",focusBackgroundColor:\"#f2f2f2\",focusBorderColor:\"#09F\",focusBorderWidth:1,disabledTextColor:\"#444444\",disabledIconColor:\"#999999\",disabledBackgroundColor:\"#f2f2f2\",disabledBorderColor:\"#09F\",disabledBorderWidth:0,disabledOpacity:60,radius:8,padding:10,paddingPerSide:true,paddingTop:15,paddingRight:50,paddingBottom:15,paddingLeft:15,fontWeight:500,fontSize:16,options:[\"Option 1\",\"Option 2\"],onChange:(index,label)=>{},onFocus:()=>{},onBlur:()=>{},onSelectOption1:(index,label)=>{},onSelectOption2:(index,label)=>{},onSelectOption3:(index,label)=>{},onSelectOption4:(index,label)=>{},onSelectOption5:(index,label)=>{},onSelectOption6:(index,label)=>{},onSelectOption7:(index,label)=>{},onSelectOption8:(index,label)=>{},onSelectOption9:(index,label)=>{},onSelectOption10:(index,label)=>{}};const selectStyles={pointerEvents:\"auto\",WebkitAppearance:\"none\",appearance:\"none\",position:\"relative\",border:\"none\",margin:0,cursor:\"pointer\",outline:0,outlineWidth:0,display:\"inline-block\",backgroundRepeat:\"no-repeat\",boxSizing:\"border-box\",backgroundPosition:\"right 15px center\",paddingLeft:15,paddingRight:15};addPropertyControls(Select,{value:{type:ControlType.Number,title:\"Default\",min:1,displayStepper:true,step:1,defaultValue:Select.defaultProps.value},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:Select.defaultProps.disabled,enabledTitle:\"Yes\",disabledTitle:\"No\"},variant:{title:\"Variant\",type:ControlType.Enum,options:[\"default\",\"focus\",\"disabled\"],optionTitles:[\"Default\",\"Focus\",\"Disabled\"]},...getVariantControls(Select,\"default\"),...getVariantControls(Select,\"focus\"),...getVariantControls(Select,\"disabled\",{disabledOpacity:{title:\"Opacity\",type:ControlType.Number,min:0,max:100,unit:\"%\",defaultValue:Select.defaultProps.disabledOpacity,hidden:props=>props.variant!==\"disabled\"}}),...paddingControl,radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:Select.defaultProps.radius,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},...fontControls,fontSize:{...fontSizeOptions,defaultValue:Select.defaultProps.fontSize},fontWeight:{...fontControls.fontWeight,defaultValue:Select.defaultProps.fontWeight},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:Select.defaultProps.focused,enabledTitle:\"Yes\",disabledTitle:\"No\"},options:{type:ControlType.Array,title:\"Options\",defaultValue:Select.defaultProps.options,propertyControl:{type:ControlType.String,placeholder:\"Option\u2026\"}},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler},onSelectOption1:{type:ControlType.EventHandler},onSelectOption2:{type:ControlType.EventHandler},onSelectOption3:{type:ControlType.EventHandler},onSelectOption4:{type:ControlType.EventHandler},onSelectOption5:{type:ControlType.EventHandler},onSelectOption6:{type:ControlType.EventHandler},onSelectOption7:{type:ControlType.EventHandler},onSelectOption8:{type:ControlType.EventHandler},onSelectOption9:{type:ControlType.EventHandler},onSelectOption10:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Select\":{\"type\":\"reactComponent\",\"name\":\"Select\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"140\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Select_5.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-hCwZn .framer-styles-preset-71wtd5:not(.rich-text-wrapper), .framer-hCwZn .framer-styles-preset-71wtd5.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-d756aace-4e08-4219-8a32-a4d9841ee41e, #ffffff); --framer-link-text-decoration: underline; }\"];export const className=\"framer-hCwZn\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114832d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/cGBHXozmXUtcAABEfMAq/Hubspot.js\";import{generic_tracking,track_book_expert}from\"https://framerusercontent.com/modules/LgCs8oqN8F9BBTB8SwZM/7eEBJMl16DREZVtwJFqh/Add_ID_trackers.js\";import{withTogglePositionHome}from\"https://framerusercontent.com/modules/57T5qW4OiZMGKbgyACwd/ULbBcUFLvrXrGjnyi0jT/AISection.js\";import{Input}from\"https://framerusercontent.com/modules/kpe7auPRGuDOzCOGe8KB/6jSrvE7Westfv99U1PXL/Input_2.js\";import{Loading}from\"https://framerusercontent.com/modules/J997ctdlA9PWmyZgisN7/TFoBfEJFO89EyjQ7AD1P/Loading_1.js\";import{Select}from\"https://framerusercontent.com/modules/NW1bDPqS50s4bGhfe159/GDa1u7FnGslFbU2VqTKe/Select_5.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/WZt6nDGyUEScvcns5tl3/bZmT9vGpaGHoa3eYNKzX/VL9KDhx3_.js\";const SelectFonts=getFonts(Select);const InputFonts=getFonts(Input);const EmbedFonts=getFonts(Embed);const LoadingFonts=getFonts(Loading);const HubSpotFormFonts=getFonts(HubSpotForm);const MotionDivGeneric_tracking=generic_tracking(motion.div);const RichTextTrack_book_expert=track_book_expert(RichText);const RichTextWithTogglePositionHome=withTogglePositionHome(RichText);const cycleOrder=[\"ifyo_zl7P\",\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\",\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"];const serializationHash=\"framer-PqFXN\";const variantClassNames={Bx_PnpsPp:\"framer-v-itjv0e\",cManqmx7p:\"framer-v-19nh5kz\",deFkV7Xof:\"framer-v-77v20\",Gdo18QINl:\"framer-v-18uv4qt\",GPwqVgXv_:\"framer-v-1hhnnk5\",HW8bLvfxY:\"framer-v-o7pcsu\",ifyo_zl7P:\"framer-v-2uleqq\",Ju_aAM_4A:\"framer-v-q57rs7\",KEcnciUpZ:\"framer-v-3iytix\",MCBSxdS2b:\"framer-v-4kvb38\",mxd1tAkdF:\"framer-v-18p0hej\",N8HSddbmT:\"framer-v-173x2xn\",nNyHcWc10:\"framer-v-1b34zn6\",nx7Z7CGf2:\"framer-v-1xnmvc0\",PRc25eKF4:\"framer-v-1997vb6\",PuOeFLzb4:\"framer-v-dkd0po\",qMHH26X1m:\"framer-v-1wqocu1\",r5NME5GL3:\"framer-v-zswkxu\",s0Uv500xq:\"framer-v-58j74a\",San5hVE9n:\"framer-v-fufi9i\",t81cxxbaZ:\"framer-v-jmo0rp\",tbJdfbJrw:\"framer-v-ahwsr2\",U422H5rig:\"framer-v-f642y8\",VijhG3n2j:\"framer-v-j06k9w\",Wd30Mwqll:\"framer-v-1w2q3q5\",xKlmQYvTQ:\"framer-v-1owwy0a\",YlI30mhCn:\"framer-v-vqjyv2\",YT8x2e3Hg:\"framer-v-sl73q\",zjTBiJKxp:\"framer-v-e8ev98\",zkecmXv3X:\"framer-v-o0yqgq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"loading option 2\":\"xKlmQYvTQ\",\"loading option 3\":\"U422H5rig\",\"loading option 4\":\"s0Uv500xq\",\"loading option 5\":\"GPwqVgXv_\",\"loading option 6\":\"Bx_PnpsPp\",\"loading option 7\":\"mxd1tAkdF\",\"Mobile : default\":\"PuOeFLzb4\",\"mobile : form\":\"deFkV7Xof\",\"Mobile : loading form\":\"San5hVE9n\",\"mobile : loading option 2 \":\"N8HSddbmT\",\"mobile : loading option 3\":\"t81cxxbaZ\",\"mobile : loading option 4\":\"Wd30Mwqll\",\"mobile : loading option 5\":\"tbJdfbJrw\",\"mobile : loading option 6\":\"Gdo18QINl\",\"mobile : option 2\":\"zjTBiJKxp\",\"mobile : option 3\":\"YT8x2e3Hg\",\"mobile : option 4\":\"HW8bLvfxY\",\"mobile : option 5\":\"PRc25eKF4\",\"mobile : option 6\":\"qMHH26X1m\",\"mobile : option 7\":\"VijhG3n2j\",\"mobile: loading option 7\":\"Ju_aAM_4A\",\"option 2\":\"MCBSxdS2b\",\"option 3\":\"nx7Z7CGf2\",\"option 4\":\"cManqmx7p\",\"option 5\":\"KEcnciUpZ\",\"option 6\":\"nNyHcWc10\",\"option 7\":\"YlI30mhCn\",Default:\"ifyo_zl7P\",form:\"zkecmXv3X\",loading:\"r5NME5GL3\"};const getProps=({height,id,tap,width,...props})=>{return{...props,OG5wahFKB:tap??props.OG5wahFKB,variant:humanReadableVariantMap[props.variant]??props.variant??\"ifyo_zl7P\"};};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,OG5wahFKB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ifyo_zl7P\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapfsm2h6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(OG5wahFKB){const res=await OG5wahFKB(...args);if(res===false)return false;}});const onAppear1wdvkqm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MCBSxdS2b\"),5e3);});const onAppearwkh3xg=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nx7Z7CGf2\"),5e3);});const onAppear1vf0x95=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"cManqmx7p\"),5e3);});const onAppear1n086t9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KEcnciUpZ\"),5e3);});const onAppear1y9sudf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zkecmXv3X\"),5e3);});const onAppearwthp3x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nNyHcWc10\"),5e3);});const onAppear176w9sv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YlI30mhCn\"),5e3);});const onAppearybeyek=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"deFkV7Xof\"),5e3);});const onAppear1x1mxwl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zjTBiJKxp\"),5e3);});const onAppeary8ynhc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YT8x2e3Hg\"),5e3);});const onAppearujry8y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"HW8bLvfxY\"),5e3);});const onAppearyfks7l=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PRc25eKF4\"),5e3);});const onAppear1bjd22s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qMHH26X1m\"),5e3);});const onAppear1k4r2ip=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VijhG3n2j\"),5e3);});const onSelectOption2js5agx=activeVariantCallback(async(...args)=>{setVariant(\"N8HSddbmT\");});const onSelectOption35lnaws=activeVariantCallback(async(...args)=>{setVariant(\"t81cxxbaZ\");});const onSelectOption412jfq7c=activeVariantCallback(async(...args)=>{setVariant(\"Wd30Mwqll\");});const onSelectOption5znh7l0=activeVariantCallback(async(...args)=>{setVariant(\"tbJdfbJrw\");});const onSelectOption67e9q0e=activeVariantCallback(async(...args)=>{setVariant(\"Gdo18QINl\");});const onSelectOption71n18s58=activeVariantCallback(async(...args)=>{setVariant(\"Ju_aAM_4A\");});const onTapveffz2=activeVariantCallback(async(...args)=>{setVariant(\"San5hVE9n\");});const onChange1cgpnk5=activeVariantCallback(async(...args)=>{setVariant(\"ifyo_zl7P\");});const onSelectOption11cgpnk5=activeVariantCallback(async(...args)=>{setVariant(\"ifyo_zl7P\");});const onSelectOption2abm6jj=activeVariantCallback(async(...args)=>{setVariant(\"xKlmQYvTQ\");});const onSelectOption3ok93gw=activeVariantCallback(async(...args)=>{setVariant(\"U422H5rig\");});const onSelectOption41xqpo69=activeVariantCallback(async(...args)=>{setVariant(\"s0Uv500xq\");});const onSelectOption51y0qu9e=activeVariantCallback(async(...args)=>{setVariant(\"GPwqVgXv_\");});const onSelectOption6ycvqn2=activeVariantCallback(async(...args)=>{setVariant(\"Bx_PnpsPp\");});const onSelectOption79fi0jf=activeVariantCallback(async(...args)=>{setVariant(\"mxd1tAkdF\");});const onTapn8d6j7=activeVariantCallback(async(...args)=>{setVariant(\"r5NME5GL3\");});const onTap12y29ao=activeVariantCallback(async(...args)=>{setVariant(\"MCBSxdS2b\");});const onTapb215ga=activeVariantCallback(async(...args)=>{setVariant(\"zkecmXv3X\");});useOnVariantChange(baseVariant,{Bx_PnpsPp:onAppearwthp3x,Gdo18QINl:onAppear1bjd22s,GPwqVgXv_:onAppear1n086t9,Ju_aAM_4A:onAppear1k4r2ip,mxd1tAkdF:onAppear176w9sv,N8HSddbmT:onAppear1x1mxwl,r5NME5GL3:onAppear1y9sudf,s0Uv500xq:onAppear1vf0x95,San5hVE9n:onAppearybeyek,t81cxxbaZ:onAppeary8ynhc,tbJdfbJrw:onAppearyfks7l,U422H5rig:onAppearwkh3xg,Wd30Mwqll:onAppearujry8y,xKlmQYvTQ:onAppear1wdvkqm});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"VijhG3n2j\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"qMHH26X1m\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"PRc25eKF4\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"HW8bLvfxY\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"YT8x2e3Hg\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"zjTBiJKxp\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"deFkV7Xof\")return true;return false;};const isDisplayed8=()=>{if([\"deFkV7Xof\",\"zjTBiJKxp\",\"YT8x2e3Hg\",\"HW8bLvfxY\",\"PRc25eKF4\",\"qMHH26X1m\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"PuOeFLzb4\")return false;return true;};const isDisplayed10=()=>{if([\"zjTBiJKxp\",\"YT8x2e3Hg\",\"HW8bLvfxY\",\"PRc25eKF4\",\"qMHH26X1m\",\"VijhG3n2j\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if([\"San5hVE9n\",\"N8HSddbmT\",\"t81cxxbaZ\",\"Wd30Mwqll\",\"tbJdfbJrw\",\"Gdo18QINl\",\"Ju_aAM_4A\"].includes(baseVariant))return true;return false;};const isDisplayed12=()=>{if([\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if([\"San5hVE9n\",\"N8HSddbmT\",\"t81cxxbaZ\",\"Wd30Mwqll\",\"tbJdfbJrw\",\"Gdo18QINl\",\"Ju_aAM_4A\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"].includes(baseVariant))return false;return true;};const isDisplayed15=()=>{if(baseVariant===\"zkecmXv3X\")return false;return true;};const isDisplayed16=()=>{if([\"nNyHcWc10\",\"YlI30mhCn\"].includes(baseVariant))return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"MCBSxdS2b\")return true;return false;};const isDisplayed18=()=>{if([\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\"].includes(baseVariant))return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"zkecmXv3X\")return true;return false;};const isDisplayed20=()=>{if([\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"r5NME5GL3\",\"Bx_PnpsPp\",\"mxd1tAkdF\"].includes(baseVariant))return true;return false;};const isDisplayed21=()=>{if([\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\"].includes(baseVariant))return true;return false;};const isDisplayed22=()=>{if([\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\"].includes(baseVariant))return false;return true;};const isDisplayed23=()=>{if([\"nx7Z7CGf2\",\"cManqmx7p\",\"KEcnciUpZ\",\"nNyHcWc10\",\"YlI30mhCn\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2uleqq\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ifyo_zl7P\",onTap:onTapfsm2h6,ref:ref??ref1,style:{backgroundColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",...style},...addPropertyOverrides({Bx_PnpsPp:{\"data-framer-name\":\"loading option 6\"},cManqmx7p:{\"data-framer-name\":\"option 4\"},deFkV7Xof:{\"data-framer-name\":\"mobile : form\"},Gdo18QINl:{\"data-framer-name\":\"mobile : loading option 6\"},GPwqVgXv_:{\"data-framer-name\":\"loading option 5\"},HW8bLvfxY:{\"data-framer-name\":\"mobile : option 4\"},Ju_aAM_4A:{\"data-framer-name\":\"mobile: loading option 7\"},KEcnciUpZ:{\"data-framer-name\":\"option 5\"},MCBSxdS2b:{\"data-framer-name\":\"option 2\"},mxd1tAkdF:{\"data-framer-name\":\"loading option 7\"},N8HSddbmT:{\"data-framer-name\":\"mobile : loading option 2 \"},nNyHcWc10:{\"data-framer-name\":\"option 6\"},nx7Z7CGf2:{\"data-framer-name\":\"option 3\"},PRc25eKF4:{\"data-framer-name\":\"mobile : option 5\"},PuOeFLzb4:{\"data-framer-name\":\"Mobile : default\"},qMHH26X1m:{\"data-framer-name\":\"mobile : option 6\"},r5NME5GL3:{\"data-framer-name\":\"loading\",onTap:undefined},s0Uv500xq:{\"data-framer-name\":\"loading option 4\"},San5hVE9n:{\"data-framer-name\":\"Mobile : loading form\"},t81cxxbaZ:{\"data-framer-name\":\"mobile : loading option 3\"},tbJdfbJrw:{\"data-framer-name\":\"mobile : loading option 5\"},U422H5rig:{\"data-framer-name\":\"loading option 3\"},VijhG3n2j:{\"data-framer-name\":\"mobile : option 7\"},Wd30Mwqll:{\"data-framer-name\":\"mobile : loading option 4\"},xKlmQYvTQ:{\"data-framer-name\":\"loading option 2\"},YlI30mhCn:{\"data-framer-name\":\"option 7\"},YT8x2e3Hg:{\"data-framer-name\":\"mobile : option 3\"},zjTBiJKxp:{\"data-framer-name\":\"mobile : option 2\"},zkecmXv3X:{\"data-framer-name\":\"form\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hnabak\",layoutDependency:layoutDependency,layoutId:\"HjZNjkWvz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:[\"Turn any prompt \",/*#__PURE__*/_jsx(motion.br,{}),\"into ready-to-go flows\"]})}),className:\"framer-ox774d\",\"data-framer-name\":\"Turn any prompt \\u2028into ready-to-go workflows\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"eiNLnkExn\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Introducing our AI text-to-automation, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a complete tailored workspace with AI-generated flows.\"})}),className:\"framer-1vx0jgx\",\"data-framer-name\":\"Introducing our AI Agent, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a personalized workspace with AI-generated workflows.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KhUkkPEJf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bs67wr\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"XWIhwXB8b\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q9zs0x\",layoutDependency:layoutDependency,layoutId:\"fZK1dDFUL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t3d7rw-container\",layoutDependency:layoutDependency,layoutId:\"l1dEjobHv-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"l1dEjobHv\",isMixed:false,layoutId:\"l1dEjobHv\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ypo0vn-container\",layoutDependency:layoutDependency,layoutId:\"lCpnyf6G_-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"lCpnyf6G_\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"lCpnyf6G_\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-187ut56\",layoutDependency:layoutDependency,layoutId:\"AUecE1gPV\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s6bno0\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ge8qK3CV3\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-3t1a7t\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"qX6bdP8Qc\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ia0ep\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"wlJ025__N\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-odz0p2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"V5RiHX5Jy\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fw2q8j\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"MsEhArqy9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2mwz\",layoutDependency:layoutDependency,layoutId:\"sDaOudUg4\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gni2kn-container\",layoutDependency:layoutDependency,layoutId:\"cxsSAkBn5-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"cxsSAkBn5\",isMixed:false,layoutId:\"cxsSAkBn5\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-103ryso-container\",layoutDependency:layoutDependency,layoutId:\"N0PPNI82a-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"N0PPNI82a\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"N0PPNI82a\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jd32zu\",layoutDependency:layoutDependency,layoutId:\"iv2IXEjKH\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6kgcc3\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vqYP5FUhY\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-wis9gn\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"v3t_B9vhu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-im76xn\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"iKKyv2F9r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gb0n40\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"x36zsBXB_\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g34u9c\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"uA6AcdCzW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vq03oz\",layoutDependency:layoutDependency,layoutId:\"e15UPGQBG\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7nu3f-container\",layoutDependency:layoutDependency,layoutId:\"IcfjAVOdA-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"IcfjAVOdA\",isMixed:false,layoutId:\"IcfjAVOdA\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3qmmgg-container\",layoutDependency:layoutDependency,layoutId:\"TGZzb3TMq-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"TGZzb3TMq\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"TGZzb3TMq\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Add a chrome extension to the Blocklist on JAMF Pro\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oazd7\",layoutDependency:layoutDependency,layoutId:\"g5pFWagr0\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-unim6u\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kCRYFUvhL\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-1vn7d7u\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ipGFAucTr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1khx7pq\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"fTMDiHQR7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19345zk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"mTLMsCcFQ\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qamon8\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"fvHCFrUpv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jtjxhm\",layoutDependency:layoutDependency,layoutId:\"I9gVW8H3A\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4m1yz0-container\",layoutDependency:layoutDependency,layoutId:\"alHn34NZS-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"alHn34NZS\",isMixed:false,layoutId:\"alHn34NZS\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-75tj1c-container\",layoutDependency:layoutDependency,layoutId:\"MylczHnlr-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"MylczHnlr\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"MylczHnlr\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t90ltm\",layoutDependency:layoutDependency,layoutId:\"K95qD7AJe\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o0yrrl\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CohyeME6F\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-qlc2gr\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"YT5ze7ZrD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jsnan\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"puyZuJpGJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-majloa\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"CQqlbPEaG\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bor7sp\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"joXeQxf3g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nz7rff\",layoutDependency:layoutDependency,layoutId:\"CyGuYHHB_\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s79b16-container\",layoutDependency:layoutDependency,layoutId:\"a_xqCYV5L-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"a_xqCYV5L\",isMixed:false,layoutId:\"a_xqCYV5L\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iasi5x-container\",layoutDependency:layoutDependency,layoutId:\"bW86nZnnC-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"bW86nZnnC\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"bW86nZnnC\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5kg8z\",layoutDependency:layoutDependency,layoutId:\"SdhoKz2Eh\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pvjf1z\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ip1TOVYiP\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-17ipnhw\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"eQRUvFgm_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-saf4et\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"IikLLXGBS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ugq3ab\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LJX1NTg4A\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13dxr1g\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"E9nT4XEQe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iohmia\",layoutDependency:layoutDependency,layoutId:\"tPoH9EY2D\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14owq1k-container\",layoutDependency:layoutDependency,layoutId:\"Z94GEdugR-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"Z94GEdugR\",isMixed:false,layoutId:\"Z94GEdugR\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b68hfh-container\",layoutDependency:layoutDependency,layoutId:\"zf9wUCSxP-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"zf9wUCSxP\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"zf9wUCSxP\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1luz97r\",layoutDependency:layoutDependency,layoutId:\"Wcm_lKLkP\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wnmazx\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Hm8d26WlG\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-2tmkw5\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"RgJKX88v7\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8zs73\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"qLP6nyz3y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xzr0kc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"FrI8yRJQO\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1awunps\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"EGVOswtgW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lt41vt\",layoutDependency:layoutDependency,layoutId:\"idCOwYziD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jfxbk-container\",layoutDependency:layoutDependency,layoutId:\"JNzRgztT8-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"JNzRgztT8\",isMixed:false,layoutId:\"JNzRgztT8\",onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qxcaqq-container\",layoutDependency:layoutDependency,layoutId:\"Y2ANN0dEJ-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"Y2ANN0dEJ\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"Y2ANN0dEJ\",lineHeight:1.4,maxLength:10,multiLine:false,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11qzmf1\",layoutDependency:layoutDependency,layoutId:\"DCnSlGNha\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-alocv7\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AUk56gROI\",onTap:onTapveffz2,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-nj81gf\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"cxW1TDBdB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gh6p58\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"GhEY49u04\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p1w32h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"sBZtOyQ5x\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-145ngsx\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"J3gRZ5AEm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lzc6ja\",layoutDependency:layoutDependency,layoutId:\"hlD3smTRT\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-usgwgu-container\",layoutDependency:layoutDependency,layoutId:\"dKLqzAbkH-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"dKLqzAbkH\",isMixed:false,layoutId:\"dKLqzAbkH\",options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\",...addPropertyOverrides({PuOeFLzb4:{onSelectOption2:onSelectOption2js5agx,onSelectOption3:onSelectOption35lnaws,onSelectOption4:onSelectOption412jfq7c,onSelectOption5:onSelectOption5znh7l0,onSelectOption6:onSelectOption67e9q0e,onSelectOption7:onSelectOption71n18s58}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-44cobi-container\",layoutDependency:layoutDependency,layoutId:\"S3Bb19L4z-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"S3Bb19L4z\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"S3Bb19L4z\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\",...addPropertyOverrides({Gdo18QINl:{onChange:undefined,value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},Ju_aAM_4A:{onChange:undefined,value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"},N8HSddbmT:{onChange:undefined,value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},PuOeFLzb4:{onChange:undefined},San5hVE9n:{onChange:undefined},t81cxxbaZ:{onChange:undefined,value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDBreported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},tbJdfbJrw:{onChange:undefined,value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},Wd30Mwqll:{onChange:undefined,value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"}},baseVariant,gestureVariant)})})})]}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7ixtd\",layoutDependency:layoutDependency,layoutId:\"dgfdVCuF_\",style:{backgroundColor:\"rgb(51, 170, 255)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z98qb5\",\"data-framer-name\":\"button\",layoutDependency:layoutDependency,layoutId:\"nmAEjNJT1\",style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({PuOeFLzb4:{\"data-highlight\":true,onTap:onTapveffz2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-r4jv9q\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"nPsSxW8pG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxai6t\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"P7QR6U3bm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-28xdsk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"LdawHAHD3\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-11us6z\",layoutDependency:layoutDependency,layoutId:\"oFh1J5XDF\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{Gdo18QINl:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},HW8bLvfxY:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},Ju_aAM_4A:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},N8HSddbmT:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},PRc25eKF4:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},qMHH26X1m:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},t81cxxbaZ:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},tbJdfbJrw:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},VijhG3n2j:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},Wd30Mwqll:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},YT8x2e3Hg:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},zjTBiJKxp:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z0s8i9\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"pIvkdm9Ec\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.11999999731779099)\"},children:[isDisplayed10()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ivwzi3-container\",layoutDependency:layoutDependency,layoutId:\"pFXXT0tdw-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"pFXXT0tdw\",layoutId:\"pFXXT0tdw\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\",width:\"100%\",...addPropertyOverrides({HW8bLvfxY:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},PRc25eKF4:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},qMHH26X1m:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},VijhG3n2j:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"},YT8x2e3Hg:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed11()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13mi94h\",layoutDependency:layoutDependency,layoutId:\"GXlnRSMje\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-phxlb4-container\",layoutDependency:layoutDependency,layoutId:\"Emx4d0nV3-container\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,fadeOut:true,hasDuration:false,height:\"100%\",id:\"Emx4d0nV3\",indicator:\"Dots\",layoutId:\"Emx4d0nV3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"We're generating your automation for you.\"]})}),className:\"framer-5mkjfa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MRaFhZRO3\",style:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q25qku\",layoutDependency:layoutDependency,layoutId:\"EHAVpghHq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i29jdj\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"LPC1juFzu\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.03999999910593033)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m32z0q\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"M3smkfC6z\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"23px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-uffoy9\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"m2FeJCwcn\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",viewBox:\"0 0 23 20\",viewBoxScale:.5,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-exg097\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"ma9pVcHNY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gy0k8h\",layoutDependency:layoutDependency,layoutId:\"bP0dfEVI9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5hbiul\",layoutDependency:layoutDependency,layoutId:\"o_GMcHEBQ\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngbwmt\",layoutDependency:layoutDependency,layoutId:\"S27PZzWzX\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}})]})})]})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ycn3ux\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"bcAoOzIk4\",children:[isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-v5xann\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"krnFkLAQH\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-124xebh\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"atVIXSXBb\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-wjjuxy\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"lh_97Lhww\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kuoxdt-container\",layoutDependency:layoutDependency,layoutId:\"mvL8mb7lG-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"mvL8mb7lG\",layoutId:\"mvL8mb7lG\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed12()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-jnh8e\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PM_Prny3E\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed14()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-m8qi6q\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"GMEiaNsCb\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})]})}),className:\"framer-az3qh\",\"data-framer-name\":\"Interested in exploring edge cases? \\u2028Investigate combinations with an expert\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Shj0zUwuh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PuOeFLzb4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pxQ2zrRqb\"},nodeId:\"Shj0zUwuh\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-71wtd5\",\"data-styles-preset\":\"VL9KDhx3_\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})})})]})})}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:561,intrinsicWidth:1121,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:561,pixelWidth:1121,sizes:\"1121px\",src:\"https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png\",srcSet:\"https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png?scale-down-to=512 512w,https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/r1nM7xwUV6UjaTRe8BlfPIsuDYU.png 1121w\"},className:\"framer-1c3qce\",\"data-framer-name\":\"bg_onBlue\",layoutDependency:layoutDependency,layoutId:\"aGuZM9BI9\"}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g47uxu\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:10326\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ft8s4y\",\"data-framer-name\":\"Frame 39271\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:9712\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:[\"Turn any prompt \",/*#__PURE__*/_jsx(motion.br,{}),\"into ready-to-go flows\"]})}),className:\"framer-dz3eiy\",\"data-framer-name\":\"Turn any prompt \\u2028into ready-to-go workflows\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:9713\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bkbdwe\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11333\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1raklki\",layoutDependency:layoutDependency,layoutId:\"p2eYboeIF\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6fu5n1-container\",layoutDependency:layoutDependency,layoutId:\"yNoeUwU2z-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"yNoeUwU2z\",isMixed:false,layoutId:\"yNoeUwU2z\",onSelectOption1:onSelectOption11cgpnk5,onSelectOption2:onSelectOption2abm6jj,onSelectOption3:onSelectOption3ok93gw,onSelectOption4:onSelectOption41xqpo69,onSelectOption5:onSelectOption51y0qu9e,onSelectOption6:onSelectOption6ycvqn2,onSelectOption7:onSelectOption79fi0jf,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jfohg4-container\",layoutDependency:layoutDependency,layoutId:\"hv74UtC1B-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"hv74UtC1B\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"hv74UtC1B\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},cManqmx7p:{value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"},GPwqVgXv_:{value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},KEcnciUpZ:{value:\"Add a chrome extension to the Blocklist on JAMF Pro\"},MCBSxdS2b:{value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},mxd1tAkdF:{value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"},nNyHcWc10:{value:\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\"},nx7Z7CGf2:{value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\"},s0Uv500xq:{value:\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\"},U422H5rig:{value:\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\"},xKlmQYvTQ:{value:\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\"},YlI30mhCn:{value:\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_tracking,{className:\"framer-qlrm89\",\"data-framer-name\":\"ai_section-generate\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340\",onTap:onTapn8d6j7,style:{backgroundColor:\"var(--token-8c03a662-8370-4507-8a8e-621a9b62852c, rgb(25, 3, 67))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},...addPropertyOverrides({Bx_PnpsPp:{\"data-highlight\":undefined,onTap:undefined},GPwqVgXv_:{\"data-highlight\":undefined,onTap:undefined},mxd1tAkdF:{\"data-highlight\":undefined,onTap:undefined},r5NME5GL3:{onTap:onTapb215ga},s0Uv500xq:{\"data-highlight\":undefined,onTap:undefined},U422H5rig:{\"data-highlight\":undefined,onTap:undefined},xKlmQYvTQ:{onTap:onTap12y29ao}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-1mtxiha\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9728\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pxxhex\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9897\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rcaw5f\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:11340;2:9897;102:5919\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qj3w8q\",layoutDependency:layoutDependency,layoutId:\"Oc19rkLOJ\"}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4284j\",layoutDependency:layoutDependency,layoutId:\"Gt76iGpmP\"}),isDisplayed18()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-111ydkk\",layoutDependency:layoutDependency,layoutId:\"N58MatPv9\"}),isDisplayed19()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v7l2xu\",\"data-framer-name\":\"prompt_bar\",layoutDependency:layoutDependency,layoutId:\"KcbRqr5Wy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozi222\",layoutDependency:layoutDependency,layoutId:\"JG32Ajp4G\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dolm7w-container\",layoutDependency:layoutDependency,layoutId:\"nYd0DmXn9-container\",children:/*#__PURE__*/_jsx(Select,{bottomLeft:0,bottomRight:0,defaultBackgroundColor:\"rgb(255, 255, 255)\",defaultBorderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",defaultBorderWidth:0,defaultIconColor:\"rgb(153, 153, 153)\",defaultTextColor:\"rgba(99, 102, 242, 0)\",disabled:false,disabledBackgroundColor:\"rgb(242, 242, 242)\",disabledBorderColor:\"rgb(0, 153, 255)\",disabledBorderWidth:0,disabledIconColor:\"rgb(153, 153, 153)\",disabledOpacity:60,disabledTextColor:\"rgb(68, 68, 68)\",focusBackgroundColor:\"rgb(242, 242, 242)\",focusBorderColor:\"rgb(0, 153, 255)\",focusBorderWidth:1,focused:false,focusIconColor:\"rgb(153, 153, 153)\",focusTextColor:\"rgb(68, 68, 68)\",font:false,fontFamily:\"\",fontSize:16,fontWeight:500,height:\"100%\",id:\"nYd0DmXn9\",isMixed:false,layoutId:\"nYd0DmXn9\",onSelectOption1:onSelectOption11cgpnk5,onSelectOption2:onSelectOption2abm6jj,onSelectOption3:onSelectOption3ok93gw,onSelectOption4:onSelectOption41xqpo69,onSelectOption5:onSelectOption51y0qu9e,onSelectOption6:onSelectOption6ycvqn2,onSelectOption7:onSelectOption79fi0jf,options:[\"---\",\"Enrich reported incidents on PagerDuty and create a ticket in ServiceNow if needed\",\"Analyze each incoming email IP addresses, URLs, and attachments with VT, URLScan, and AbuseIPDB\",\"Monitor and analyze each connection token issued to employees using Google Admin Directory, IPInfo, and AirTable\",\"Add a chrome extension to the Blocklist on JAMF Pro\",\"Create an offboarding flow with Google Admin Directory, Okta, GitHub, and report on Jira\",\"Enrich a Crowdstrike webhook with VirusTotal and create an incident ticket in TheHive\"],padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,value:1,variant:\"default\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10kapk2-container\",layoutDependency:layoutDependency,layoutId:\"YEfoOk4ow-container\",children:/*#__PURE__*/_jsx(Input,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:0,borderWidth:1,bottomLeftRadius:0,bottomRightRadius:0,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"rgb(0, 153, 255)\",focused:false,font:true,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"YEfoOk4ow\",isMixedBorderRadius:true,isRTL:false,keyboard:\"\",layoutId:\"YEfoOk4ow\",lineHeight:1.4,maxLength:10,multiLine:false,onChange:onChange1cgpnk5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,password:false,placeholder:\"Select or type your prompt...\",placeholderColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",topLeftRadius:0,topRightRadius:0,truncate:false,value:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_tracking,{className:\"framer-1rjqtkh\",\"data-framer-name\":\"button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lzTidNtGt\",onTap:onTapn8d6j7,style:{backgroundColor:\"rgb(47, 17, 105)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"4px 4px 12px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Generate\"})}),className:\"framer-q8uomn\",\"data-framer-name\":\"Button\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"TIaYPACgq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c9z8wb\",\"data-framer-name\":\"icons\",layoutDependency:layoutDependency,layoutId:\"LjnGW7HXW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pycye7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"rWBjtEUt4\",svg:'<svg width=\"16\" height=\"22\" viewBox=\"0 0 16 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.8761 8.66098C9.02275 8.22103 9.64402 8.22103 9.79067 8.66098L10.6506 11.2434C10.8399 11.811 11.1587 12.3268 11.582 12.7498C12.0052 13.1729 12.5212 13.4915 13.089 13.6804L15.67 14.5403C16.11 14.687 16.11 15.3083 15.67 15.4549L13.0876 16.3148C12.52 16.5041 12.0042 16.823 11.5812 17.2462C11.1582 17.6695 10.8395 18.1855 10.6506 18.7532L9.79067 21.3343C9.75905 21.4306 9.69781 21.5145 9.6157 21.574C9.53358 21.6335 9.43478 21.6655 9.33338 21.6655C9.23199 21.6655 9.13318 21.6335 9.05107 21.574C8.96895 21.5145 8.90772 21.4306 8.8761 21.3343L8.01619 18.7519C7.82705 18.1844 7.50835 17.6687 7.08535 17.2457C6.66234 16.8227 6.14665 16.504 5.57912 16.3148L2.99673 15.4549C2.90039 15.4233 2.8165 15.3621 2.75702 15.2799C2.69755 15.1978 2.66552 15.099 2.66552 14.9976C2.66552 14.8962 2.69755 14.7974 2.75702 14.7153C2.8165 14.6332 2.90039 14.572 2.99673 14.5403L5.57912 13.6804C6.14665 13.4913 6.66234 13.1726 7.08535 12.7496C7.50835 12.3266 7.82705 11.8109 8.01619 11.2434L8.8761 8.66098ZM3.72598 1.86304C3.7451 1.80531 3.78193 1.75506 3.83123 1.71945C3.88053 1.68384 3.9398 1.66468 4.00062 1.66468C4.06144 1.66468 4.12071 1.68384 4.17001 1.71945C4.21931 1.75506 4.25614 1.80531 4.27526 1.86304L4.7912 3.41221C5.02184 4.1028 5.56312 4.64408 6.25371 4.87472L7.80288 5.39066C7.86061 5.40978 7.91086 5.44661 7.94646 5.49591C7.98207 5.54521 8.00124 5.60448 8.00124 5.6653C8.00124 5.72612 7.98207 5.78539 7.94646 5.83469C7.91086 5.88399 7.86061 5.92082 7.80288 5.93994L6.25371 6.45588C5.91292 6.56899 5.60323 6.7601 5.34933 7.01401C5.09542 7.26791 4.90431 7.57759 4.7912 7.91839L4.27526 9.46756C4.25614 9.52529 4.21931 9.57553 4.17001 9.61114C4.12071 9.64675 4.06144 9.66592 4.00062 9.66592C3.9398 9.66592 3.88053 9.64675 3.83123 9.61114C3.78193 9.57553 3.7451 9.52529 3.72598 9.46756L3.21004 7.91839C3.09693 7.57759 2.90582 7.26791 2.65191 7.01401C2.39801 6.7601 2.08833 6.56899 1.74753 6.45588L0.198362 5.93994C0.140627 5.92082 0.0903855 5.88399 0.054776 5.83469C0.0191664 5.78539 0 5.72612 0 5.6653C0 5.60448 0.0191664 5.54521 0.054776 5.49591C0.0903855 5.44661 0.140627 5.40978 0.198362 5.39066L1.74753 4.87472C2.08833 4.76161 2.39801 4.5705 2.65191 4.31659C2.90582 4.06269 3.09693 3.753 3.21004 3.41221L3.72598 1.86304ZM13.1503 0.464523C13.1635 0.426562 13.1881 0.393645 13.2209 0.370349C13.2536 0.347052 13.2928 0.334534 13.333 0.334534C13.3731 0.334534 13.4123 0.347052 13.445 0.370349C13.4778 0.393645 13.5024 0.426562 13.5156 0.464523L13.8596 1.49641C14.0129 1.9577 14.3742 2.31899 14.8355 2.47231L15.8673 2.81627C15.9053 2.82943 15.9382 2.85409 15.9615 2.88683C15.9848 2.91956 15.9973 2.95874 15.9973 2.99892C15.9973 3.0391 15.9848 3.07827 15.9615 3.11101C15.9382 3.14374 15.9053 3.1684 15.8673 3.18157L14.8355 3.52553C14.6083 3.60152 14.402 3.72922 14.2326 3.89858C14.0633 4.06793 13.9356 4.2743 13.8596 4.50142L13.5156 5.53331C13.5024 5.57127 13.4778 5.60419 13.445 5.62749C13.4123 5.65078 13.3731 5.6633 13.333 5.6633C13.2928 5.6633 13.2536 5.65078 13.2209 5.62749C13.1881 5.60419 13.1635 5.57127 13.1503 5.53331L12.8063 4.50142C12.7303 4.2743 12.6026 4.06793 12.4333 3.89858C12.2639 3.72922 12.0576 3.60152 11.8304 3.52553L10.7999 3.18157C10.7619 3.1684 10.729 3.14374 10.7057 3.11101C10.6824 3.07827 10.6699 3.0391 10.6699 2.99892C10.6699 2.95874 10.6824 2.91956 10.7057 2.88683C10.729 2.85409 10.7619 2.82943 10.7999 2.81627L11.8318 2.47231C12.2931 2.31899 12.6544 1.9577 12.8077 1.49641L13.1503 0.464523Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivGeneric_tracking,{className:\"framer-1vi5dhd\",\"data-framer-name\":\"ai_section-investigate_with_expert\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19677\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Introducing our AI text-to-automation, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a complete tailored workspace with AI-generated flows.\"})}),className:\"framer-1we07fi\",\"data-framer-name\":\"Introducing our AI Agent, capable of programmatically calling service APIs. Simply describe your use case and let our AI build the necessary steps for you, and even craft a personalized workspace with AI-generated workflows.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19798\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextTrack_book_expert,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\"Interested in exploring edge cases? \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NVrk61RPa\"},nodeId:\"I22:1644;204:19810\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-71wtd5\",\"data-styles-preset\":\"VL9KDhx3_\",children:/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-decoration\":\"underline\"},children:\"Investigate combinations with an expert\"})})})]})}),className:\"framer-13vc93y\",\"data-framer-name\":\"Interested in exploring edge cases? \\u2028Investigate combinations with an expert\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19810\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41q8v6\",\"data-framer-name\":\"playbook\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14955\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12m1h4s\",\"data-framer-name\":\"embed_container\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14811\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.11999999731779099)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1012xke-container\",layoutDependency:layoutDependency,layoutId:\"zb5elPLxX-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"zb5elPLxX\",layoutId:\"zb5elPLxX\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sgbpd6-container\",layoutDependency:layoutDependency,layoutId:\"Bt6BEwatf-container\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"Bt6BEwatf\",indicator:\"Material\",layoutId:\"Bt6BEwatf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h09md8-container\",layoutDependency:layoutDependency,layoutId:\"KKKicX1je-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"KKKicX1je\",layoutId:\"KKKicX1je\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16k1d8h-container\",layoutDependency:layoutDependency,layoutId:\"KdeVw6dYo-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"KdeVw6dYo\",layoutId:\"KdeVw6dYo\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gkeuqi\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.03999999910593033)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3ql3d\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19423\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8j3vsx\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19445\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-anczf9\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19424\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h569ca\",layoutDependency:layoutDependency,layoutId:\"bcMSDZFn5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jjkxut\",layoutDependency:layoutDependency,layoutId:\"cyJlAwX0r\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-1252i19\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19425\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xze19s\",layoutDependency:layoutDependency,layoutId:\"ddfGhXegY\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-19g1me4\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:14643;204:19426\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bocpd\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19513\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10jspw7\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19486\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlvtjj\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19487\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-1ws13qi\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19488\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-1ef3qzc\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19566\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed23()&&/*#__PURE__*/_jsx(RichTextWithTogglePositionHome,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-1gnuge4\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"I22:1644;204:19849\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-13xae93\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dIxYUpIm8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"We're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ewzt24\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"Fvv3rMtxl\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.11999999731779099)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1robtk-container\",layoutDependency:layoutDependency,layoutId:\"uKI8rJxsa-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"uKI8rJxsa\",layoutId:\"uKI8rJxsa\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hgnisw-container\",layoutDependency:layoutDependency,layoutId:\"YBfj79JmF-container\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"YBfj79JmF\",indicator:\"Material\",layoutId:\"YBfj79JmF\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tlg2aj-container\",layoutDependency:layoutDependency,layoutId:\"QcKZwZDL8-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"QcKZwZDL8\",layoutId:\"QcKZwZDL8\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pt78el-container\",layoutDependency:layoutDependency,layoutId:\"JNi0s_2EZ-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"JNi0s_2EZ\",layoutId:\"JNi0s_2EZ\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjhar1\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"bJP4yAkTZ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.03999999910593033)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eefyyb\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"SeD510aU5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nc8s6v\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"U454FcyCg\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-v1imn2\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"fYXYfSz12\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-naiak4\",layoutDependency:layoutDependency,layoutId:\"qjHIqJw4X\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ymast1\",layoutDependency:layoutDependency,layoutId:\"cL7MFxmCo\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-75s5tp\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"PgKA8cDbh\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ku6hj\",layoutDependency:layoutDependency,layoutId:\"oh26YQlb2\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-wo6zwo\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tyv99xmxQ\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p3koh1\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"XexEdBtDf\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-padny8\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"ZKJ8r3JH4\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3t7vq\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"xYgEz90cS\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-p2b0d4\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"uqTy9oFNa\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-352isd\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HdW_Pgf7p\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-12k92ga\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"CiZ13LrAx\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-1bq6me5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WJAJs969K\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-153bxvp\",\"data-framer-name\":\"light designer\",layoutDependency:layoutDependency,layoutId:\"i7ysL3DoD\",style:{backgroundColor:\"rgb(251, 251, 254)\",borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"8px 4px 12px 0px rgba(0, 0, 0, 0.11999999731779099)\"},children:[isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nakyvp-container\",layoutDependency:layoutDependency,layoutId:\"bInpe648n-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"bInpe648n\",layoutId:\"bInpe648n\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-db9cba6b-61dc-4bec-9724-8aaef1b0e70f?scale=0.6\",width:\"100%\",...addPropertyOverrides({nNyHcWc10:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-6182940a-6ffd-4803-adbb-817f45385355?scale=0.6&x=350&y=100\"},YlI30mhCn:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-4712e95a-2f4a-5a92-baed-16ec0f4d5ec0?scale=0.6&x=100&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bylgpu-container\",layoutDependency:layoutDependency,layoutId:\"x4NSnplZY-container\",children:/*#__PURE__*/_jsx(Loading,{animation:{delay:0,duration:1.3,ease:[.44,0,.56,1],type:\"tween\"},color:\"rgb(136, 136, 136)\",duration:2,fadeOut:true,hasDuration:false,height:\"100%\",id:\"x4NSnplZY\",indicator:\"Material\",layoutId:\"x4NSnplZY\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bx_PnpsPp:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},GPwqVgXv_:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},mxd1tAkdF:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},r5NME5GL3:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"},s0Uv500xq:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},U422H5rig:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",indicator:\"Dots\"},xKlmQYvTQ:{color:\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\",duration:10,indicator:\"Dots\"}},baseVariant,gestureVariant)})})}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9w8lrx-container\",layoutDependency:layoutDependency,layoutId:\"g6qaQailr-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"g6qaQailr\",layoutId:\"g6qaQailr\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-20896bb4-b98a-4032-abb3-58963858cddf?scale=0.6\",width:\"100%\",...addPropertyOverrides({cManqmx7p:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-29be5c75-ae03-50f3-959f-c7d15fad876c?scale=0.6&x=-200&y=0\"},KEcnciUpZ:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-231f3db6-0e26-5534-8912-c69adc8383ba?scale=0.6&x=300&y=0\"},MCBSxdS2b:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-8bea616b-dbb8-418d-839c-b183c4bce803?scale=0.6&x=0\"},nx7Z7CGf2:{url:\"https://embed-app-zenwab.mindflow.io/flow/PLAY-46c7d2b9-20f5-59da-9a54-40cca853958c?scale=0.6&x=-550&y=100\"}},baseVariant,gestureVariant)})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m7vy2h-container\",layoutDependency:layoutDependency,layoutId:\"mNjUFrnCE-container\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:false,formId:\"6d456f8e-048d-4961-9a55-5b81a0233389\",height:\"100%\",id:\"mNjUFrnCE\",layoutId:\"mNjUFrnCE\",portalId:\"25091674\",region:\"eu1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8xn98\",\"data-border\":true,\"data-framer-name\":\"STEP\",layoutDependency:layoutDependency,layoutId:\"ghrfUArIz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 236, 239)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"2px 2px 12px 0px rgba(0, 0, 0, 0.03999999910593033)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wut0fc\",\"data-framer-name\":\"Frame 39287\",layoutDependency:layoutDependency,layoutId:\"KzkWw0aKR\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1end2m1\",\"data-framer-name\":\"Frame 39303\",layoutDependency:layoutDependency,layoutId:\"WqlgnFLJ4\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"auto_fix_high\"})}),className:\"framer-816oa0\",\"data-framer-name\":\"AI\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"inKXXck8Z\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-816av\",layoutDependency:layoutDependency,layoutId:\"ZcTn7YYCD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-117vl5v\",layoutDependency:layoutDependency,layoutId:\"alVZFowmO\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"text-to-automation\"})}),className:\"framer-zhmp6q\",\"data-framer-name\":\"text-to-workflows\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yVqM8ENFS\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fbv1je\",layoutDependency:layoutDependency,layoutId:\"HUYmtn1Dk\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(230, 230, 230))\"},children:\"Build flows with NLP and AI Agents\"})}),className:\"framer-i1io2v\",\"data-framer-name\":\"Build flows with NLP\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RsRmg1sC_\",style:{\"--extracted-r6o4lv\":\"rgb(230, 230, 230)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hzdbi4\",\"data-framer-name\":\"Frame 2\",layoutDependency:layoutDependency,layoutId:\"xGcRtS2ST\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pk6cwo\",\"data-framer-name\":\"Vector 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"jV6odsoJk\",svg:'<svg width=\"48\" height=\"56\" viewBox=\"-1 -1 48 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.6464 53.7417C22.8417 53.937 23.1583 53.937 23.3535 53.7417L26.5355 50.5598C26.7308 50.3645 26.7308 50.0479 26.5355 49.8527C26.3403 49.6574 26.0237 49.6574 25.8284 49.8527L23 52.6811L20.1716 49.8527C19.9763 49.6574 19.6597 49.6574 19.4645 49.8527C19.2692 50.0479 19.2692 50.3645 19.4645 50.5598L22.6464 53.7417ZM22.5 1.55425C22.5 1.83039 22.7239 2.05425 23 2.05425C23.2761 2.05425 23.5 1.83039 23.5 1.55425L22.5 1.55425ZM23.5 7.20886C23.5 6.93272 23.2761 6.70886 23 6.70886C22.7239 6.70886 22.5 6.93272 22.5 7.20886L23.5 7.20886ZM22.5 9.09373C22.5 9.36988 22.7239 9.59373 23 9.59373C23.2761 9.59373 23.5 9.36988 23.5 9.09373L22.5 9.09373ZM23.5 14.7483C23.5 14.4722 23.2761 14.2483 23 14.2483C22.7239 14.2483 22.5 14.4722 22.5 14.7483L23.5 14.7483ZM22.5 16.6332C22.5 16.9094 22.7239 17.1332 23 17.1332C23.2761 17.1332 23.5 16.9094 23.5 16.6332L22.5 16.6332ZM23.5 22.2878C23.5 22.0117 23.2761 21.7878 23 21.7878C22.7239 21.7878 22.5 22.0117 22.5 22.2878L23.5 22.2878ZM22.5 24.1727C22.5 24.4488 22.7239 24.6727 23 24.6727C23.2761 24.6727 23.5 24.4488 23.5 24.1727L22.5 24.1727ZM23.5 29.8273C23.5 29.5512 23.2761 29.3273 23 29.3273C22.7239 29.3273 22.5 29.5512 22.5 29.8273L23.5 29.8273ZM22.5 31.7122C22.5 31.9883 22.7239 32.2122 23 32.2122C23.2761 32.2122 23.5 31.9883 23.5 31.7122L22.5 31.7122ZM23.5 37.3668C23.5 37.0906 23.2761 36.8668 23 36.8668C22.7239 36.8668 22.5 37.0906 22.5 37.3668L23.5 37.3668ZM22.5 39.2517C22.5 39.5278 22.7239 39.7517 23 39.7517C23.2761 39.7517 23.5 39.5278 23.5 39.2517L22.5 39.2517ZM23.5 44.9063C23.5 44.6301 23.2761 44.4063 23 44.4063C22.7238 44.4063 22.5 44.6301 22.5 44.9063L23.5 44.9063ZM22.5 46.7911C22.5 47.0673 22.7238 47.2911 23 47.2911C23.2761 47.2911 23.5 47.0673 23.5 46.7911L22.5 46.7911ZM23.5 52.4457C23.5 52.1696 23.2761 51.9457 23 51.9457C22.7238 51.9457 22.5 52.1696 22.5 52.4457L23.5 52.4457ZM22.5 0.611816L22.5 1.55425L23.5 1.55425L23.5 0.611816L22.5 0.611816ZM22.5 7.20886L22.5 9.09373L23.5 9.09373L23.5 7.20886L22.5 7.20886ZM22.5 14.7483L22.5 16.6332L23.5 16.6332L23.5 14.7483L22.5 14.7483ZM22.5 22.2878L22.5 24.1727L23.5 24.1727L23.5 22.2878L22.5 22.2878ZM22.5 29.8273L22.5 31.7122L23.5 31.7122L23.5 29.8273L22.5 29.8273ZM22.5 37.3668L22.5 39.2517L23.5 39.2517L23.5 37.3668L22.5 37.3668ZM22.5 44.9063L22.5 46.7911L23.5 46.7911L23.5 44.9063L22.5 44.9063ZM22.5 52.4457L22.5 53.3882L23.5 53.3882L23.5 52.4457L22.5 52.4457Z\" fill=\"#6366F1\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kru7x\",\"data-framer-name\":\"Frame 39295\",layoutDependency:layoutDependency,layoutId:\"whLWSPoI4\",style:{backgroundColor:\"rgb(99, 102, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"edit\"})}),className:\"framer-1q61c2u\",\"data-framer-name\":\"edit\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"u6tM1qe2U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:[\"Waiting instructions from promp\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"t...\"})]})}),className:\"framer-ylfkgv\",\"data-framer-name\":\"Waiting instructions from prompt...\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yW1ksjpHz\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF0ZXJpYWwgSWNvbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Material Icons\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(99, 102, 241))\"},children:\"open_in_full\"})}),className:\"framer-4r0bel\",\"data-framer-name\":\"open_in_full\",fonts:[\"GF;Material Icons-regular\"],layoutDependency:layoutDependency,layoutId:\"lt2YAcKzE\",style:{\"--extracted-r6o4lv\":\"rgb(99, 102, 241)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed20()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Take a coffee and chill, we generate your automation. \"})}),className:\"framer-1mpbyf6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sdVdyfiOj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Bx_PnpsPp:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},GPwqVgXv_:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},mxd1tAkdF:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},r5NME5GL3:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},s0Uv500xq:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},U422H5rig:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"},xKlmQYvTQ:{\"--extracted-r6o4lv\":\"var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bx_PnpsPp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},GPwqVgXv_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},mxd1tAkdF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},r5NME5GL3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},s0Uv500xq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},U422H5rig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})},xKlmQYvTQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2b44f44c-e555-4132-b2fb-83c2e0702eeb, rgb(99, 102, 241)))\"},children:[\"Grab a coffee and relax.\",/*#__PURE__*/_jsx(motion.br,{}),\"we're generating your automation for you.\"]})})}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PqFXN.framer-1fjocni, .framer-PqFXN .framer-1fjocni { display: block; }\",\".framer-PqFXN.framer-2uleqq { align-content: center; align-items: center; cursor: default; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 640px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1400px; }\",\".framer-PqFXN .framer-1hnabak { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-ox774d, .framer-PqFXN .framer-1vx0jgx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 196px; word-break: break-word; word-wrap: break-word; }\",\".framer-PqFXN .framer-bs67wr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 133px; }\",\".framer-PqFXN .framer-q9zs0x, .framer-PqFXN .framer-w2mwz, .framer-PqFXN .framer-1vq03oz, .framer-PqFXN .framer-1jtjxhm, .framer-PqFXN .framer-nz7rff, .framer-PqFXN .framer-iohmia, .framer-PqFXN .framer-1lt41vt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN .framer-t3d7rw-container, .framer-PqFXN .framer-gni2kn-container, .framer-PqFXN .framer-d7nu3f-container, .framer-PqFXN .framer-4m1yz0-container, .framer-PqFXN .framer-1s79b16-container, .framer-PqFXN .framer-14owq1k-container, .framer-PqFXN .framer-12jfxbk-container, .framer-PqFXN .framer-usgwgu-container { flex: none; height: 100%; position: relative; width: 15%; }\",\".framer-PqFXN .framer-ypo0vn-container, .framer-PqFXN .framer-103ryso-container, .framer-PqFXN .framer-3qmmgg-container, .framer-PqFXN .framer-75tj1c-container, .framer-PqFXN .framer-iasi5x-container, .framer-PqFXN .framer-1b68hfh-container, .framer-PqFXN .framer-1qxcaqq-container, .framer-PqFXN .framer-44cobi-container { flex: none; height: 100%; position: relative; width: 85%; }\",\".framer-PqFXN .framer-187ut56, .framer-PqFXN .framer-1jd32zu, .framer-PqFXN .framer-1oazd7, .framer-PqFXN .framer-1t90ltm, .framer-PqFXN .framer-c5kg8z, .framer-PqFXN .framer-1luz97r, .framer-PqFXN .framer-11qzmf1, .framer-PqFXN .framer-s7ixtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 48px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-s6bno0, .framer-PqFXN .framer-6kgcc3, .framer-PqFXN .framer-unim6u, .framer-PqFXN .framer-1o0yrrl, .framer-PqFXN .framer-1pvjf1z, .framer-PqFXN .framer-1wnmazx, .framer-PqFXN .framer-alocv7, .framer-PqFXN .framer-qlrm89, .framer-PqFXN .framer-1rjqtkh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 48px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN .framer-3t1a7t, .framer-PqFXN .framer-wis9gn, .framer-PqFXN .framer-1vn7d7u, .framer-PqFXN .framer-qlc2gr, .framer-PqFXN .framer-17ipnhw, .framer-PqFXN .framer-2tmkw5, .framer-PqFXN .framer-nj81gf, .framer-PqFXN .framer-r4jv9q, .framer-PqFXN .framer-wjjuxy, .framer-PqFXN .framer-jnh8e, .framer-PqFXN .framer-1mtxiha, .framer-PqFXN .framer-q8uomn, .framer-PqFXN .framer-13vc93y, .framer-PqFXN .framer-anczf9, .framer-PqFXN .framer-1252i19, .framer-PqFXN .framer-19g1me4, .framer-PqFXN .framer-1ws13qi, .framer-PqFXN .framer-1ef3qzc, .framer-PqFXN .framer-13xae93, .framer-PqFXN .framer-v1imn2, .framer-PqFXN .framer-75s5tp, .framer-PqFXN .framer-wo6zwo, .framer-PqFXN .framer-p2b0d4, .framer-PqFXN .framer-352isd, .framer-PqFXN .framer-1bq6me5, .framer-PqFXN .framer-816oa0, .framer-PqFXN .framer-zhmp6q, .framer-PqFXN .framer-i1io2v, .framer-PqFXN .framer-1q61c2u, .framer-PqFXN .framer-ylfkgv, .framer-PqFXN .framer-1mpbyf6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PqFXN .framer-10ia0ep, .framer-PqFXN .framer-im76xn, .framer-PqFXN .framer-1khx7pq, .framer-PqFXN .framer-16jsnan, .framer-PqFXN .framer-saf4et, .framer-PqFXN .framer-i8zs73, .framer-PqFXN .framer-gh6p58, .framer-PqFXN .framer-vxai6t, .framer-PqFXN .framer-1pxxhex, .framer-PqFXN .framer-c9z8wb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 24px; }\",\".framer-PqFXN .framer-odz0p2, .framer-PqFXN .framer-gb0n40, .framer-PqFXN .framer-19345zk, .framer-PqFXN .framer-majloa, .framer-PqFXN .framer-ugq3ab, .framer-PqFXN .framer-1xzr0kc, .framer-PqFXN .framer-p1w32h, .framer-PqFXN .framer-28xdsk, .framer-PqFXN .framer-1rcaw5f, .framer-PqFXN .framer-1pycye7 { flex: none; height: 22px; position: relative; width: 16px; }\",\".framer-PqFXN .framer-fw2q8j, .framer-PqFXN .framer-g34u9c, .framer-PqFXN .framer-1qamon8, .framer-PqFXN .framer-bor7sp, .framer-PqFXN .framer-13dxr1g, .framer-PqFXN .framer-1awunps { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: auto; }\",\".framer-PqFXN .framer-145ngsx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 196px; }\",\".framer-PqFXN .framer-1lzc6ja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN .framer-z98qb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 48px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN .framer-11us6z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 371px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PqFXN .framer-z0s8i9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 344px; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-PqFXN .framer-1ivwzi3-container, .framer-PqFXN .framer-16k1d8h-container, .framer-PqFXN .framer-1pt78el-container, .framer-PqFXN .framer-m7vy2h-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-13mi94h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 108px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 244px; }\",\".framer-PqFXN .framer-phxlb4-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-5mkjfa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PqFXN .framer-1q25qku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 108px; justify-content: center; overflow: visible; padding: 0px 16px 9px 16px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-i29jdj { 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: visible; padding: 20px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-1m32z0q { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 36px; }\",\".framer-PqFXN .framer-uffoy9 { flex: none; height: auto; position: relative; white-space: pre; width: 100%; }\",\".framer-PqFXN .framer-exg097, .framer-PqFXN .framer-f3ql3d, .framer-PqFXN .framer-eefyyb, .framer-PqFXN .framer-wut0fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-1gy0k8h, .framer-PqFXN .framer-1h569ca, .framer-PqFXN .framer-naiak4, .framer-PqFXN .framer-816av { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 37px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 116px; }\",\".framer-PqFXN .framer-5hbiul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-PqFXN .framer-ngbwmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100px; }\",\".framer-PqFXN .framer-ycn3ux, .framer-PqFXN .framer-13bocpd, .framer-PqFXN .framer-1p3koh1, .framer-PqFXN .framer-1hzdbi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-v5xann, .framer-PqFXN .framer-10jspw7, .framer-PqFXN .framer-padny8, .framer-PqFXN .framer-pk6cwo { flex: none; height: 56px; position: relative; width: 48px; }\",\".framer-PqFXN .framer-124xebh, .framer-PqFXN .framer-1rlvtjj, .framer-PqFXN .framer-1b3t7vq, .framer-PqFXN .framer-2kru7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 16px; }\",\".framer-PqFXN .framer-kuoxdt-container { flex: none; height: 520px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-m8qi6q, .framer-PqFXN .framer-12k92ga, .framer-PqFXN .framer-4r0bel { flex: none; height: auto; position: absolute; right: 24px; top: 24px; white-space: pre; width: auto; z-index: 1; }\",\".framer-PqFXN .framer-az3qh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 244px; word-break: break-word; word-wrap: break-word; }\",\".framer-PqFXN .framer-1c3qce { aspect-ratio: 1.9982174688057042 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 561px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 1121px; z-index: 1; }\",\".framer-PqFXN .framer-1g47uxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: visible; padding: 120px 80px 80px 80px; position: relative; width: 720px; z-index: 1; }\",\".framer-PqFXN .framer-1ft8s4y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-dz3eiy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-PqFXN .framer-bkbdwe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 46px 0px 46px 0px; position: relative; width: 560px; }\",\".framer-PqFXN .framer-1raklki, .framer-PqFXN .framer-ozi222 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN .framer-6fu5n1-container, .framer-PqFXN .framer-dolm7w-container { flex: none; height: 100%; position: relative; width: 56px; }\",\".framer-PqFXN .framer-jfohg4-container { cursor: text; flex: none; height: 100%; position: relative; width: 340px; }\",\".framer-PqFXN .framer-1qj3w8q, .framer-PqFXN .framer-111ydkk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 59px; min-width: 190px; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-1w4284j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 71px; min-width: 295px; overflow: hidden; padding: 22px 0px 22px 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-v7l2xu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 46px 0px 0px 0px; position: relative; width: 560px; }\",\".framer-PqFXN .framer-10kapk2-container { flex: none; height: 100%; position: relative; width: 340px; }\",\".framer-PqFXN .framer-1vi5dhd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PqFXN .framer-1we07fi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 555px; word-break: break-word; word-wrap: break-word; }\",\".framer-PqFXN .framer-41q8v6 { align-content: flex-start; align-items: flex-start; cursor: default; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 80px 40px 0px 0px; position: relative; width: 1px; }\",\".framer-PqFXN .framer-12m1h4s { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; width: 94%; z-index: 1; }\",\".framer-PqFXN .framer-1012xke-container, .framer-PqFXN .framer-h09md8-container, .framer-PqFXN .framer-1robtk-container, .framer-PqFXN .framer-1tlg2aj-container, .framer-PqFXN .framer-1nakyvp-container, .framer-PqFXN .framer-9w8lrx-container { flex: none; height: 560px; position: relative; width: 640px; }\",\".framer-PqFXN .framer-sgbpd6-container, .framer-PqFXN .framer-hgnisw-container, .framer-PqFXN .framer-1bylgpu-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-PqFXN .framer-gkeuqi, .framer-PqFXN .framer-1xjhar1, .framer-PqFXN .framer-1c8xn98 { 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: visible; padding: 20px; position: relative; width: 321px; }\",\".framer-PqFXN .framer-8j3vsx, .framer-PqFXN .framer-1nc8s6v, .framer-PqFXN .framer-1end2m1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: visible; padding: 16px; position: relative; width: 52px; }\",\".framer-PqFXN .framer-jjkxut, .framer-PqFXN .framer-1ymast1, .framer-PqFXN .framer-117vl5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-xze19s, .framer-PqFXN .framer-15ku6hj, .framer-PqFXN .framer-fbv1je { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 15px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PqFXN .framer-1gnuge4 { flex: none; height: auto; position: absolute; right: 24px; top: 24px; white-space: pre; width: auto; z-index: 10; }\",\".framer-PqFXN .framer-ewzt24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -858px; top: -1551px; width: 94%; z-index: 5; }\",\".framer-PqFXN .framer-153bxvp { align-content: center; align-items: center; bottom: -608px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 560px; justify-content: center; left: -400px; overflow: visible; padding: 0px; position: absolute; width: 94%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-2uleqq, .framer-PqFXN .framer-1hnabak, .framer-PqFXN .framer-bs67wr, .framer-PqFXN .framer-q9zs0x, .framer-PqFXN .framer-187ut56, .framer-PqFXN .framer-s6bno0, .framer-PqFXN .framer-10ia0ep, .framer-PqFXN .framer-fw2q8j, .framer-PqFXN .framer-w2mwz, .framer-PqFXN .framer-1jd32zu, .framer-PqFXN .framer-6kgcc3, .framer-PqFXN .framer-im76xn, .framer-PqFXN .framer-g34u9c, .framer-PqFXN .framer-1vq03oz, .framer-PqFXN .framer-1oazd7, .framer-PqFXN .framer-unim6u, .framer-PqFXN .framer-1khx7pq, .framer-PqFXN .framer-1qamon8, .framer-PqFXN .framer-1jtjxhm, .framer-PqFXN .framer-1t90ltm, .framer-PqFXN .framer-1o0yrrl, .framer-PqFXN .framer-16jsnan, .framer-PqFXN .framer-bor7sp, .framer-PqFXN .framer-nz7rff, .framer-PqFXN .framer-c5kg8z, .framer-PqFXN .framer-1pvjf1z, .framer-PqFXN .framer-saf4et, .framer-PqFXN .framer-13dxr1g, .framer-PqFXN .framer-iohmia, .framer-PqFXN .framer-1luz97r, .framer-PqFXN .framer-1wnmazx, .framer-PqFXN .framer-i8zs73, .framer-PqFXN .framer-1awunps, .framer-PqFXN .framer-1lt41vt, .framer-PqFXN .framer-11qzmf1, .framer-PqFXN .framer-alocv7, .framer-PqFXN .framer-gh6p58, .framer-PqFXN .framer-145ngsx, .framer-PqFXN .framer-1lzc6ja, .framer-PqFXN .framer-s7ixtd, .framer-PqFXN .framer-z98qb5, .framer-PqFXN .framer-vxai6t, .framer-PqFXN .framer-11us6z, .framer-PqFXN .framer-z0s8i9, .framer-PqFXN .framer-13mi94h, .framer-PqFXN .framer-1q25qku, .framer-PqFXN .framer-i29jdj, .framer-PqFXN .framer-1m32z0q, .framer-PqFXN .framer-exg097, .framer-PqFXN .framer-1gy0k8h, .framer-PqFXN .framer-5hbiul, .framer-PqFXN .framer-ngbwmt, .framer-PqFXN .framer-ycn3ux, .framer-PqFXN .framer-124xebh, .framer-PqFXN .framer-1g47uxu, .framer-PqFXN .framer-1ft8s4y, .framer-PqFXN .framer-bkbdwe, .framer-PqFXN .framer-1raklki, .framer-PqFXN .framer-qlrm89, .framer-PqFXN .framer-1pxxhex, .framer-PqFXN .framer-1qj3w8q, .framer-PqFXN .framer-1w4284j, .framer-PqFXN .framer-111ydkk, .framer-PqFXN .framer-v7l2xu, .framer-PqFXN .framer-ozi222, .framer-PqFXN .framer-1rjqtkh, .framer-PqFXN .framer-c9z8wb, .framer-PqFXN .framer-1vi5dhd, .framer-PqFXN .framer-12m1h4s, .framer-PqFXN .framer-gkeuqi, .framer-PqFXN .framer-f3ql3d, .framer-PqFXN .framer-8j3vsx, .framer-PqFXN .framer-1h569ca, .framer-PqFXN .framer-jjkxut, .framer-PqFXN .framer-xze19s, .framer-PqFXN .framer-13bocpd, .framer-PqFXN .framer-1rlvtjj, .framer-PqFXN .framer-ewzt24, .framer-PqFXN .framer-1xjhar1, .framer-PqFXN .framer-eefyyb, .framer-PqFXN .framer-1nc8s6v, .framer-PqFXN .framer-naiak4, .framer-PqFXN .framer-1ymast1, .framer-PqFXN .framer-15ku6hj, .framer-PqFXN .framer-1p3koh1, .framer-PqFXN .framer-1b3t7vq, .framer-PqFXN .framer-153bxvp, .framer-PqFXN .framer-1c8xn98, .framer-PqFXN .framer-wut0fc, .framer-PqFXN .framer-1end2m1, .framer-PqFXN .framer-816av, .framer-PqFXN .framer-117vl5v, .framer-PqFXN .framer-fbv1je, .framer-PqFXN .framer-1hzdbi4, .framer-PqFXN .framer-2kru7x { gap: 0px; } .framer-PqFXN.framer-2uleqq > *, .framer-PqFXN .framer-q9zs0x > *, .framer-PqFXN .framer-w2mwz > *, .framer-PqFXN .framer-1vq03oz > *, .framer-PqFXN .framer-1jtjxhm > *, .framer-PqFXN .framer-nz7rff > *, .framer-PqFXN .framer-iohmia > *, .framer-PqFXN .framer-1lt41vt > *, .framer-PqFXN .framer-1lzc6ja > *, .framer-PqFXN .framer-1raklki > *, .framer-PqFXN .framer-ozi222 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PqFXN.framer-2uleqq > :first-child, .framer-PqFXN .framer-q9zs0x > :first-child, .framer-PqFXN .framer-187ut56 > :first-child, .framer-PqFXN .framer-s6bno0 > :first-child, .framer-PqFXN .framer-10ia0ep > :first-child, .framer-PqFXN .framer-w2mwz > :first-child, .framer-PqFXN .framer-1jd32zu > :first-child, .framer-PqFXN .framer-6kgcc3 > :first-child, .framer-PqFXN .framer-im76xn > :first-child, .framer-PqFXN .framer-1vq03oz > :first-child, .framer-PqFXN .framer-1oazd7 > :first-child, .framer-PqFXN .framer-unim6u > :first-child, .framer-PqFXN .framer-1khx7pq > :first-child, .framer-PqFXN .framer-1jtjxhm > :first-child, .framer-PqFXN .framer-1t90ltm > :first-child, .framer-PqFXN .framer-1o0yrrl > :first-child, .framer-PqFXN .framer-16jsnan > :first-child, .framer-PqFXN .framer-nz7rff > :first-child, .framer-PqFXN .framer-c5kg8z > :first-child, .framer-PqFXN .framer-1pvjf1z > :first-child, .framer-PqFXN .framer-saf4et > :first-child, .framer-PqFXN .framer-iohmia > :first-child, .framer-PqFXN .framer-1luz97r > :first-child, .framer-PqFXN .framer-1wnmazx > :first-child, .framer-PqFXN .framer-i8zs73 > :first-child, .framer-PqFXN .framer-1lt41vt > :first-child, .framer-PqFXN .framer-11qzmf1 > :first-child, .framer-PqFXN .framer-alocv7 > :first-child, .framer-PqFXN .framer-gh6p58 > :first-child, .framer-PqFXN .framer-1lzc6ja > :first-child, .framer-PqFXN .framer-s7ixtd > :first-child, .framer-PqFXN .framer-z98qb5 > :first-child, .framer-PqFXN .framer-vxai6t > :first-child, .framer-PqFXN .framer-11us6z > :first-child, .framer-PqFXN .framer-1q25qku > :first-child, .framer-PqFXN .framer-i29jdj > :first-child, .framer-PqFXN .framer-exg097 > :first-child, .framer-PqFXN .framer-bkbdwe > :first-child, .framer-PqFXN .framer-1raklki > :first-child, .framer-PqFXN .framer-qlrm89 > :first-child, .framer-PqFXN .framer-1pxxhex > :first-child, .framer-PqFXN .framer-v7l2xu > :first-child, .framer-PqFXN .framer-ozi222 > :first-child, .framer-PqFXN .framer-1rjqtkh > :first-child, .framer-PqFXN .framer-c9z8wb > :first-child, .framer-PqFXN .framer-gkeuqi > :first-child, .framer-PqFXN .framer-f3ql3d > :first-child, .framer-PqFXN .framer-1xjhar1 > :first-child, .framer-PqFXN .framer-eefyyb > :first-child, .framer-PqFXN .framer-1c8xn98 > :first-child, .framer-PqFXN .framer-wut0fc > :first-child { margin-left: 0px; } .framer-PqFXN.framer-2uleqq > :last-child, .framer-PqFXN .framer-q9zs0x > :last-child, .framer-PqFXN .framer-187ut56 > :last-child, .framer-PqFXN .framer-s6bno0 > :last-child, .framer-PqFXN .framer-10ia0ep > :last-child, .framer-PqFXN .framer-w2mwz > :last-child, .framer-PqFXN .framer-1jd32zu > :last-child, .framer-PqFXN .framer-6kgcc3 > :last-child, .framer-PqFXN .framer-im76xn > :last-child, .framer-PqFXN .framer-1vq03oz > :last-child, .framer-PqFXN .framer-1oazd7 > :last-child, .framer-PqFXN .framer-unim6u > :last-child, .framer-PqFXN .framer-1khx7pq > :last-child, .framer-PqFXN .framer-1jtjxhm > :last-child, .framer-PqFXN .framer-1t90ltm > :last-child, .framer-PqFXN .framer-1o0yrrl > :last-child, .framer-PqFXN .framer-16jsnan > :last-child, .framer-PqFXN .framer-nz7rff > :last-child, .framer-PqFXN .framer-c5kg8z > :last-child, .framer-PqFXN .framer-1pvjf1z > :last-child, .framer-PqFXN .framer-saf4et > :last-child, .framer-PqFXN .framer-iohmia > :last-child, .framer-PqFXN .framer-1luz97r > :last-child, .framer-PqFXN .framer-1wnmazx > :last-child, .framer-PqFXN .framer-i8zs73 > :last-child, .framer-PqFXN .framer-1lt41vt > :last-child, .framer-PqFXN .framer-11qzmf1 > :last-child, .framer-PqFXN .framer-alocv7 > :last-child, .framer-PqFXN .framer-gh6p58 > :last-child, .framer-PqFXN .framer-1lzc6ja > :last-child, .framer-PqFXN .framer-s7ixtd > :last-child, .framer-PqFXN .framer-z98qb5 > :last-child, .framer-PqFXN .framer-vxai6t > :last-child, .framer-PqFXN .framer-11us6z > :last-child, .framer-PqFXN .framer-1q25qku > :last-child, .framer-PqFXN .framer-i29jdj > :last-child, .framer-PqFXN .framer-exg097 > :last-child, .framer-PqFXN .framer-bkbdwe > :last-child, .framer-PqFXN .framer-1raklki > :last-child, .framer-PqFXN .framer-qlrm89 > :last-child, .framer-PqFXN .framer-1pxxhex > :last-child, .framer-PqFXN .framer-v7l2xu > :last-child, .framer-PqFXN .framer-ozi222 > :last-child, .framer-PqFXN .framer-1rjqtkh > :last-child, .framer-PqFXN .framer-c9z8wb > :last-child, .framer-PqFXN .framer-gkeuqi > :last-child, .framer-PqFXN .framer-f3ql3d > :last-child, .framer-PqFXN .framer-1xjhar1 > :last-child, .framer-PqFXN .framer-eefyyb > :last-child, .framer-PqFXN .framer-1c8xn98 > :last-child, .framer-PqFXN .framer-wut0fc > :last-child { margin-right: 0px; } .framer-PqFXN .framer-1hnabak > *, .framer-PqFXN .framer-z0s8i9 > *, .framer-PqFXN .framer-13mi94h > *, .framer-PqFXN .framer-1m32z0q > *, .framer-PqFXN .framer-1gy0k8h > *, .framer-PqFXN .framer-5hbiul > *, .framer-PqFXN .framer-ngbwmt > *, .framer-PqFXN .framer-ycn3ux > *, .framer-PqFXN .framer-124xebh > *, .framer-PqFXN .framer-1qj3w8q > *, .framer-PqFXN .framer-1w4284j > *, .framer-PqFXN .framer-111ydkk > *, .framer-PqFXN .framer-12m1h4s > *, .framer-PqFXN .framer-8j3vsx > *, .framer-PqFXN .framer-1h569ca > *, .framer-PqFXN .framer-jjkxut > *, .framer-PqFXN .framer-xze19s > *, .framer-PqFXN .framer-13bocpd > *, .framer-PqFXN .framer-1rlvtjj > *, .framer-PqFXN .framer-ewzt24 > *, .framer-PqFXN .framer-1nc8s6v > *, .framer-PqFXN .framer-naiak4 > *, .framer-PqFXN .framer-1ymast1 > *, .framer-PqFXN .framer-15ku6hj > *, .framer-PqFXN .framer-1p3koh1 > *, .framer-PqFXN .framer-1b3t7vq > *, .framer-PqFXN .framer-153bxvp > *, .framer-PqFXN .framer-1end2m1 > *, .framer-PqFXN .framer-816av > *, .framer-PqFXN .framer-117vl5v > *, .framer-PqFXN .framer-fbv1je > *, .framer-PqFXN .framer-1hzdbi4 > *, .framer-PqFXN .framer-2kru7x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PqFXN .framer-1hnabak > :first-child, .framer-PqFXN .framer-bs67wr > :first-child, .framer-PqFXN .framer-fw2q8j > :first-child, .framer-PqFXN .framer-g34u9c > :first-child, .framer-PqFXN .framer-1qamon8 > :first-child, .framer-PqFXN .framer-bor7sp > :first-child, .framer-PqFXN .framer-13dxr1g > :first-child, .framer-PqFXN .framer-1awunps > :first-child, .framer-PqFXN .framer-145ngsx > :first-child, .framer-PqFXN .framer-z0s8i9 > :first-child, .framer-PqFXN .framer-13mi94h > :first-child, .framer-PqFXN .framer-1m32z0q > :first-child, .framer-PqFXN .framer-1gy0k8h > :first-child, .framer-PqFXN .framer-5hbiul > :first-child, .framer-PqFXN .framer-ngbwmt > :first-child, .framer-PqFXN .framer-ycn3ux > :first-child, .framer-PqFXN .framer-124xebh > :first-child, .framer-PqFXN .framer-1g47uxu > :first-child, .framer-PqFXN .framer-1ft8s4y > :first-child, .framer-PqFXN .framer-1qj3w8q > :first-child, .framer-PqFXN .framer-1w4284j > :first-child, .framer-PqFXN .framer-111ydkk > :first-child, .framer-PqFXN .framer-1vi5dhd > :first-child, .framer-PqFXN .framer-12m1h4s > :first-child, .framer-PqFXN .framer-8j3vsx > :first-child, .framer-PqFXN .framer-1h569ca > :first-child, .framer-PqFXN .framer-jjkxut > :first-child, .framer-PqFXN .framer-xze19s > :first-child, .framer-PqFXN .framer-13bocpd > :first-child, .framer-PqFXN .framer-1rlvtjj > :first-child, .framer-PqFXN .framer-ewzt24 > :first-child, .framer-PqFXN .framer-1nc8s6v > :first-child, .framer-PqFXN .framer-naiak4 > :first-child, .framer-PqFXN .framer-1ymast1 > :first-child, .framer-PqFXN .framer-15ku6hj > :first-child, .framer-PqFXN .framer-1p3koh1 > :first-child, .framer-PqFXN .framer-1b3t7vq > :first-child, .framer-PqFXN .framer-153bxvp > :first-child, .framer-PqFXN .framer-1end2m1 > :first-child, .framer-PqFXN .framer-816av > :first-child, .framer-PqFXN .framer-117vl5v > :first-child, .framer-PqFXN .framer-fbv1je > :first-child, .framer-PqFXN .framer-1hzdbi4 > :first-child, .framer-PqFXN .framer-2kru7x > :first-child { margin-top: 0px; } .framer-PqFXN .framer-1hnabak > :last-child, .framer-PqFXN .framer-bs67wr > :last-child, .framer-PqFXN .framer-fw2q8j > :last-child, .framer-PqFXN .framer-g34u9c > :last-child, .framer-PqFXN .framer-1qamon8 > :last-child, .framer-PqFXN .framer-bor7sp > :last-child, .framer-PqFXN .framer-13dxr1g > :last-child, .framer-PqFXN .framer-1awunps > :last-child, .framer-PqFXN .framer-145ngsx > :last-child, .framer-PqFXN .framer-z0s8i9 > :last-child, .framer-PqFXN .framer-13mi94h > :last-child, .framer-PqFXN .framer-1m32z0q > :last-child, .framer-PqFXN .framer-1gy0k8h > :last-child, .framer-PqFXN .framer-5hbiul > :last-child, .framer-PqFXN .framer-ngbwmt > :last-child, .framer-PqFXN .framer-ycn3ux > :last-child, .framer-PqFXN .framer-124xebh > :last-child, .framer-PqFXN .framer-1g47uxu > :last-child, .framer-PqFXN .framer-1ft8s4y > :last-child, .framer-PqFXN .framer-1qj3w8q > :last-child, .framer-PqFXN .framer-1w4284j > :last-child, .framer-PqFXN .framer-111ydkk > :last-child, .framer-PqFXN .framer-1vi5dhd > :last-child, .framer-PqFXN .framer-12m1h4s > :last-child, .framer-PqFXN .framer-8j3vsx > :last-child, .framer-PqFXN .framer-1h569ca > :last-child, .framer-PqFXN .framer-jjkxut > :last-child, .framer-PqFXN .framer-xze19s > :last-child, .framer-PqFXN .framer-13bocpd > :last-child, .framer-PqFXN .framer-1rlvtjj > :last-child, .framer-PqFXN .framer-ewzt24 > :last-child, .framer-PqFXN .framer-1nc8s6v > :last-child, .framer-PqFXN .framer-naiak4 > :last-child, .framer-PqFXN .framer-1ymast1 > :last-child, .framer-PqFXN .framer-15ku6hj > :last-child, .framer-PqFXN .framer-1p3koh1 > :last-child, .framer-PqFXN .framer-1b3t7vq > :last-child, .framer-PqFXN .framer-153bxvp > :last-child, .framer-PqFXN .framer-1end2m1 > :last-child, .framer-PqFXN .framer-816av > :last-child, .framer-PqFXN .framer-117vl5v > :last-child, .framer-PqFXN .framer-fbv1je > :last-child, .framer-PqFXN .framer-1hzdbi4 > :last-child, .framer-PqFXN .framer-2kru7x > :last-child { margin-bottom: 0px; } .framer-PqFXN .framer-bs67wr > *, .framer-PqFXN .framer-fw2q8j > *, .framer-PqFXN .framer-g34u9c > *, .framer-PqFXN .framer-1qamon8 > *, .framer-PqFXN .framer-bor7sp > *, .framer-PqFXN .framer-13dxr1g > *, .framer-PqFXN .framer-1awunps > *, .framer-PqFXN .framer-145ngsx > *, .framer-PqFXN .framer-1vi5dhd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PqFXN .framer-187ut56 > *, .framer-PqFXN .framer-10ia0ep > *, .framer-PqFXN .framer-1jd32zu > *, .framer-PqFXN .framer-im76xn > *, .framer-PqFXN .framer-1oazd7 > *, .framer-PqFXN .framer-1khx7pq > *, .framer-PqFXN .framer-1t90ltm > *, .framer-PqFXN .framer-16jsnan > *, .framer-PqFXN .framer-c5kg8z > *, .framer-PqFXN .framer-saf4et > *, .framer-PqFXN .framer-1luz97r > *, .framer-PqFXN .framer-i8zs73 > *, .framer-PqFXN .framer-11qzmf1 > *, .framer-PqFXN .framer-gh6p58 > *, .framer-PqFXN .framer-s7ixtd > *, .framer-PqFXN .framer-vxai6t > *, .framer-PqFXN .framer-11us6z > *, .framer-PqFXN .framer-1q25qku > *, .framer-PqFXN .framer-1pxxhex > *, .framer-PqFXN .framer-c9z8wb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PqFXN .framer-s6bno0 > *, .framer-PqFXN .framer-6kgcc3 > *, .framer-PqFXN .framer-unim6u > *, .framer-PqFXN .framer-1o0yrrl > *, .framer-PqFXN .framer-1pvjf1z > *, .framer-PqFXN .framer-1wnmazx > *, .framer-PqFXN .framer-alocv7 > *, .framer-PqFXN .framer-z98qb5 > *, .framer-PqFXN .framer-qlrm89 > *, .framer-PqFXN .framer-1rjqtkh > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-PqFXN .framer-i29jdj > *, .framer-PqFXN .framer-gkeuqi > *, .framer-PqFXN .framer-1xjhar1 > *, .framer-PqFXN .framer-1c8xn98 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-PqFXN .framer-exg097 > *, .framer-PqFXN .framer-bkbdwe > *, .framer-PqFXN .framer-v7l2xu > *, .framer-PqFXN .framer-f3ql3d > *, .framer-PqFXN .framer-eefyyb > *, .framer-PqFXN .framer-wut0fc > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-PqFXN .framer-1g47uxu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PqFXN .framer-1ft8s4y > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } }\",\".framer-PqFXN.framer-v-o0yqgq .framer-12m1h4s, .framer-PqFXN.framer-v-o0yqgq .framer-ewzt24, .framer-PqFXN.framer-v-o0yqgq .framer-153bxvp { padding: 40px; }\",\".framer-PqFXN.framer-v-o0yqgq .framer-16k1d8h-container { order: 4; }\",\".framer-PqFXN.framer-v-o0yqgq .framer-1pt78el-container, .framer-PqFXN.framer-v-o0yqgq .framer-m7vy2h-container, .framer-PqFXN.framer-v-1xnmvc0 .framer-153bxvp, .framer-PqFXN.framer-v-19nh5kz .framer-153bxvp, .framer-PqFXN.framer-v-3iytix .framer-153bxvp { order: 3; }\",\".framer-PqFXN.framer-v-4kvb38 .framer-bkbdwe, .framer-PqFXN.framer-v-1xnmvc0 .framer-bkbdwe, .framer-PqFXN.framer-v-19nh5kz .framer-bkbdwe, .framer-PqFXN.framer-v-3iytix .framer-bkbdwe, .framer-PqFXN.framer-v-1b34zn6 .framer-bkbdwe, .framer-PqFXN.framer-v-vqjyv2 .framer-bkbdwe { padding: 46px 0px 0px 0px; }\",\".framer-PqFXN.framer-v-4kvb38 .framer-12m1h4s { order: 1; width: 94%; }\",\".framer-PqFXN.framer-v-4kvb38 .framer-h09md8-container, .framer-PqFXN.framer-v-4kvb38 .framer-1tlg2aj-container, .framer-PqFXN.framer-v-4kvb38 .framer-9w8lrx-container, .framer-PqFXN.framer-v-1xnmvc0 .framer-h09md8-container, .framer-PqFXN.framer-v-1xnmvc0 .framer-1tlg2aj-container, .framer-PqFXN.framer-v-1xnmvc0 .framer-9w8lrx-container, .framer-PqFXN.framer-v-1b34zn6 .framer-1012xke-container, .framer-PqFXN.framer-v-1b34zn6 .framer-1robtk-container, .framer-PqFXN.framer-v-1b34zn6 .framer-1nakyvp-container { bottom: 0px; height: unset; left: 0px; position: absolute; right: 0px; top: 24px; width: unset; z-index: 1; }\",\".framer-PqFXN.framer-v-4kvb38 .framer-ewzt24 { order: 2; width: 94%; }\",\".framer-PqFXN.framer-v-4kvb38 .framer-153bxvp { order: 3; width: 94%; }\",\".framer-PqFXN.framer-v-1xnmvc0 .framer-12m1h4s, .framer-PqFXN.framer-v-19nh5kz .framer-12m1h4s, .framer-PqFXN.framer-v-3iytix .framer-12m1h4s { order: 1; }\",\".framer-PqFXN.framer-v-1xnmvc0 .framer-ewzt24, .framer-PqFXN.framer-v-19nh5kz .framer-ewzt24, .framer-PqFXN.framer-v-3iytix .framer-ewzt24 { order: 2; }\",\".framer-PqFXN.framer-v-19nh5kz .framer-h09md8-container, .framer-PqFXN.framer-v-19nh5kz .framer-1tlg2aj-container, .framer-PqFXN.framer-v-19nh5kz .framer-9w8lrx-container, .framer-PqFXN.framer-v-3iytix .framer-h09md8-container, .framer-PqFXN.framer-v-3iytix .framer-1tlg2aj-container, .framer-PqFXN.framer-v-3iytix .framer-9w8lrx-container, .framer-PqFXN.framer-v-vqjyv2 .framer-1012xke-container, .framer-PqFXN.framer-v-vqjyv2 .framer-1robtk-container, .framer-PqFXN.framer-v-vqjyv2 .framer-1nakyvp-container { bottom: 0px; height: unset; left: 0px; position: absolute; right: 0px; top: 30px; width: unset; z-index: 1; }\",\".framer-PqFXN.framer-v-f642y8 .framer-qlrm89, .framer-PqFXN.framer-v-58j74a .framer-qlrm89, .framer-PqFXN.framer-v-1hhnnk5 .framer-qlrm89, .framer-PqFXN.framer-v-itjv0e .framer-qlrm89, .framer-PqFXN.framer-v-18p0hej .framer-qlrm89 { cursor: unset; }\",\".framer-PqFXN.framer-v-dkd0po.framer-2uleqq, .framer-PqFXN.framer-v-fufi9i.framer-2uleqq, .framer-PqFXN.framer-v-77v20.framer-2uleqq, .framer-PqFXN.framer-v-e8ev98.framer-2uleqq, .framer-PqFXN.framer-v-173x2xn.framer-2uleqq, .framer-PqFXN.framer-v-jmo0rp.framer-2uleqq, .framer-PqFXN.framer-v-sl73q.framer-2uleqq, .framer-PqFXN.framer-v-1w2q3q5.framer-2uleqq, .framer-PqFXN.framer-v-o7pcsu.framer-2uleqq, .framer-PqFXN.framer-v-1997vb6.framer-2uleqq, .framer-PqFXN.framer-v-ahwsr2.framer-2uleqq, .framer-PqFXN.framer-v-18uv4qt.framer-2uleqq, .framer-PqFXN.framer-v-1wqocu1.framer-2uleqq, .framer-PqFXN.framer-v-q57rs7.framer-2uleqq, .framer-PqFXN.framer-v-j06k9w.framer-2uleqq { flex-direction: column; flex-wrap: wrap; gap: 48px; height: min-content; padding: 48px 24px 48px 24px; width: min-content; }\",\".framer-PqFXN.framer-v-dkd0po .framer-1hnabak, .framer-PqFXN.framer-v-fufi9i .framer-1hnabak, .framer-PqFXN.framer-v-77v20 .framer-1hnabak, .framer-PqFXN.framer-v-e8ev98 .framer-1hnabak, .framer-PqFXN.framer-v-173x2xn .framer-1hnabak, .framer-PqFXN.framer-v-jmo0rp .framer-1hnabak, .framer-PqFXN.framer-v-sl73q .framer-1hnabak, .framer-PqFXN.framer-v-1w2q3q5 .framer-1hnabak, .framer-PqFXN.framer-v-o7pcsu .framer-1hnabak, .framer-PqFXN.framer-v-1997vb6 .framer-1hnabak, .framer-PqFXN.framer-v-ahwsr2 .framer-1hnabak, .framer-PqFXN.framer-v-18uv4qt .framer-1hnabak, .framer-PqFXN.framer-v-1wqocu1 .framer-1hnabak, .framer-PqFXN.framer-v-q57rs7 .framer-1hnabak, .framer-PqFXN.framer-v-j06k9w .framer-1hnabak { align-self: stretch; gap: 56px; max-width: 800px; order: 0; width: auto; }\",\".framer-PqFXN.framer-v-dkd0po .framer-ox774d, .framer-PqFXN.framer-v-dkd0po .framer-1vx0jgx, .framer-PqFXN.framer-v-dkd0po .framer-145ngsx, .framer-PqFXN.framer-v-fufi9i .framer-ox774d, .framer-PqFXN.framer-v-fufi9i .framer-1vx0jgx, .framer-PqFXN.framer-v-fufi9i .framer-145ngsx, .framer-PqFXN.framer-v-77v20 .framer-ox774d, .framer-PqFXN.framer-v-77v20 .framer-1vx0jgx, .framer-PqFXN.framer-v-e8ev98 .framer-ox774d, .framer-PqFXN.framer-v-e8ev98 .framer-1vx0jgx, .framer-PqFXN.framer-v-173x2xn .framer-ox774d, .framer-PqFXN.framer-v-173x2xn .framer-1vx0jgx, .framer-PqFXN.framer-v-173x2xn .framer-145ngsx, .framer-PqFXN.framer-v-jmo0rp .framer-ox774d, .framer-PqFXN.framer-v-jmo0rp .framer-1vx0jgx, .framer-PqFXN.framer-v-jmo0rp .framer-145ngsx, .framer-PqFXN.framer-v-sl73q .framer-ox774d, .framer-PqFXN.framer-v-sl73q .framer-1vx0jgx, .framer-PqFXN.framer-v-1w2q3q5 .framer-ox774d, .framer-PqFXN.framer-v-1w2q3q5 .framer-1vx0jgx, .framer-PqFXN.framer-v-1w2q3q5 .framer-145ngsx, .framer-PqFXN.framer-v-o7pcsu .framer-ox774d, .framer-PqFXN.framer-v-o7pcsu .framer-1vx0jgx, .framer-PqFXN.framer-v-1997vb6 .framer-ox774d, .framer-PqFXN.framer-v-1997vb6 .framer-1vx0jgx, .framer-PqFXN.framer-v-ahwsr2 .framer-ox774d, .framer-PqFXN.framer-v-ahwsr2 .framer-1vx0jgx, .framer-PqFXN.framer-v-ahwsr2 .framer-145ngsx, .framer-PqFXN.framer-v-18uv4qt .framer-ox774d, .framer-PqFXN.framer-v-18uv4qt .framer-1vx0jgx, .framer-PqFXN.framer-v-18uv4qt .framer-145ngsx, .framer-PqFXN.framer-v-1wqocu1 .framer-ox774d, .framer-PqFXN.framer-v-1wqocu1 .framer-1vx0jgx, .framer-PqFXN.framer-v-q57rs7 .framer-ox774d, .framer-PqFXN.framer-v-q57rs7 .framer-1vx0jgx, .framer-PqFXN.framer-v-q57rs7 .framer-145ngsx, .framer-PqFXN.framer-v-j06k9w .framer-ox774d, .framer-PqFXN.framer-v-j06k9w .framer-1vx0jgx { width: 100%; }\",\".framer-PqFXN.framer-v-dkd0po .framer-1lzc6ja, .framer-PqFXN.framer-v-fufi9i .framer-1lzc6ja, .framer-PqFXN.framer-v-173x2xn .framer-1lzc6ja, .framer-PqFXN.framer-v-jmo0rp .framer-1lzc6ja, .framer-PqFXN.framer-v-1w2q3q5 .framer-1lzc6ja, .framer-PqFXN.framer-v-ahwsr2 .framer-1lzc6ja, .framer-PqFXN.framer-v-18uv4qt .framer-1lzc6ja, .framer-PqFXN.framer-v-q57rs7 .framer-1lzc6ja { max-width: 800px; }\",\".framer-PqFXN.framer-v-dkd0po .framer-z98qb5 { cursor: pointer; }\",\".framer-PqFXN.framer-v-dkd0po .framer-11us6z, .framer-PqFXN.framer-v-fufi9i .framer-11us6z, .framer-PqFXN.framer-v-173x2xn .framer-11us6z, .framer-PqFXN.framer-v-jmo0rp .framer-11us6z, .framer-PqFXN.framer-v-1w2q3q5 .framer-11us6z, .framer-PqFXN.framer-v-ahwsr2 .framer-11us6z, .framer-PqFXN.framer-v-18uv4qt .framer-11us6z, .framer-PqFXN.framer-v-q57rs7 .framer-11us6z { align-self: stretch; flex: none; order: 1; width: auto; }\",\".framer-PqFXN.framer-v-dkd0po .framer-az3qh, .framer-PqFXN.framer-v-fufi9i .framer-az3qh, .framer-PqFXN.framer-v-77v20 .framer-az3qh, .framer-PqFXN.framer-v-e8ev98 .framer-az3qh, .framer-PqFXN.framer-v-173x2xn .framer-az3qh, .framer-PqFXN.framer-v-jmo0rp .framer-az3qh, .framer-PqFXN.framer-v-sl73q .framer-az3qh, .framer-PqFXN.framer-v-1w2q3q5 .framer-az3qh, .framer-PqFXN.framer-v-o7pcsu .framer-az3qh, .framer-PqFXN.framer-v-1997vb6 .framer-az3qh, .framer-PqFXN.framer-v-ahwsr2 .framer-az3qh, .framer-PqFXN.framer-v-18uv4qt .framer-az3qh, .framer-PqFXN.framer-v-1wqocu1 .framer-az3qh, .framer-PqFXN.framer-v-q57rs7 .framer-az3qh, .framer-PqFXN.framer-v-j06k9w .framer-az3qh { align-self: stretch; order: 3; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-dkd0po.framer-2uleqq, .framer-PqFXN.framer-v-dkd0po .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-dkd0po.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-dkd0po.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-dkd0po .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-dkd0po.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-dkd0po .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-dkd0po .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-PqFXN.framer-v-fufi9i .framer-z0s8i9, .framer-PqFXN.framer-v-173x2xn .framer-z0s8i9, .framer-PqFXN.framer-v-jmo0rp .framer-z0s8i9, .framer-PqFXN.framer-v-1w2q3q5 .framer-z0s8i9, .framer-PqFXN.framer-v-ahwsr2 .framer-z0s8i9, .framer-PqFXN.framer-v-18uv4qt .framer-z0s8i9, .framer-PqFXN.framer-v-q57rs7 .framer-z0s8i9 { order: 0; }\",\".framer-PqFXN.framer-v-fufi9i .framer-ycn3ux, .framer-PqFXN.framer-v-173x2xn .framer-ycn3ux, .framer-PqFXN.framer-v-jmo0rp .framer-ycn3ux, .framer-PqFXN.framer-v-1w2q3q5 .framer-ycn3ux, .framer-PqFXN.framer-v-ahwsr2 .framer-ycn3ux, .framer-PqFXN.framer-v-18uv4qt .framer-ycn3ux, .framer-PqFXN.framer-v-q57rs7 .framer-ycn3ux { min-height: 53px; min-width: 46px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-fufi9i.framer-2uleqq, .framer-PqFXN.framer-v-fufi9i .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-fufi9i.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-fufi9i.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-fufi9i .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-fufi9i.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-fufi9i .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-fufi9i .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-PqFXN.framer-v-77v20 .framer-1awunps, .framer-PqFXN.framer-v-e8ev98 .framer-13dxr1g, .framer-PqFXN.framer-v-sl73q .framer-bor7sp, .framer-PqFXN.framer-v-o7pcsu .framer-1qamon8, .framer-PqFXN.framer-v-1997vb6 .framer-g34u9c, .framer-PqFXN.framer-v-1wqocu1 .framer-fw2q8j { align-self: unset; width: 100%; }\",\".framer-PqFXN.framer-v-77v20 .framer-11us6z { align-self: stretch; flex: none; height: min-content; order: 1; width: auto; }\",\".framer-PqFXN.framer-v-77v20 .framer-z0s8i9 { height: min-content; max-width: unset; order: 0; padding: 40px 24px 40px 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-77v20.framer-2uleqq, .framer-PqFXN.framer-v-77v20 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-77v20.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-77v20.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-77v20 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-77v20.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-77v20 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-77v20 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\".framer-PqFXN.framer-v-e8ev98 .framer-11us6z, .framer-PqFXN.framer-v-sl73q .framer-11us6z, .framer-PqFXN.framer-v-o7pcsu .framer-11us6z, .framer-PqFXN.framer-v-1997vb6 .framer-11us6z, .framer-PqFXN.framer-v-1wqocu1 .framer-11us6z, .framer-PqFXN.framer-v-j06k9w .framer-11us6z { align-self: stretch; flex: none; height: min-content; order: 1; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-PqFXN.framer-v-e8ev98 .framer-z0s8i9, .framer-PqFXN.framer-v-sl73q .framer-z0s8i9, .framer-PqFXN.framer-v-o7pcsu .framer-z0s8i9, .framer-PqFXN.framer-v-1997vb6 .framer-z0s8i9, .framer-PqFXN.framer-v-1wqocu1 .framer-z0s8i9, .framer-PqFXN.framer-v-j06k9w .framer-z0s8i9 { height: 600px; max-width: unset; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-e8ev98.framer-2uleqq, .framer-PqFXN.framer-v-e8ev98 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-e8ev98.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-e8ev98.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-e8ev98 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-e8ev98.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-e8ev98 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-e8ev98 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-173x2xn.framer-2uleqq, .framer-PqFXN.framer-v-173x2xn .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-173x2xn.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-173x2xn.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-173x2xn .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-173x2xn.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-173x2xn .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-173x2xn .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-jmo0rp.framer-2uleqq, .framer-PqFXN.framer-v-jmo0rp .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-jmo0rp.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-jmo0rp.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-jmo0rp .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-jmo0rp.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-jmo0rp .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-jmo0rp .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-sl73q.framer-2uleqq, .framer-PqFXN.framer-v-sl73q .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-sl73q.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-sl73q.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-sl73q .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-sl73q.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-sl73q .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-sl73q .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-1w2q3q5.framer-2uleqq, .framer-PqFXN.framer-v-1w2q3q5 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-1w2q3q5.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-1w2q3q5.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-1w2q3q5 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-1w2q3q5.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-1w2q3q5 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-1w2q3q5 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-o7pcsu.framer-2uleqq, .framer-PqFXN.framer-v-o7pcsu .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-o7pcsu.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-o7pcsu.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-o7pcsu .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-o7pcsu.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-o7pcsu .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-o7pcsu .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-1997vb6.framer-2uleqq, .framer-PqFXN.framer-v-1997vb6 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-1997vb6.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-1997vb6.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-1997vb6 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-1997vb6.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-1997vb6 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-1997vb6 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-ahwsr2.framer-2uleqq, .framer-PqFXN.framer-v-ahwsr2 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-ahwsr2.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-ahwsr2.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-ahwsr2 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-ahwsr2.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-ahwsr2 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-ahwsr2 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-18uv4qt.framer-2uleqq, .framer-PqFXN.framer-v-18uv4qt .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-18uv4qt.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-18uv4qt.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-18uv4qt .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-18uv4qt.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-18uv4qt .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-18uv4qt .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-1wqocu1.framer-2uleqq, .framer-PqFXN.framer-v-1wqocu1 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-1wqocu1.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-1wqocu1.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-1wqocu1 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-1wqocu1.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-1wqocu1 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-1wqocu1 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-q57rs7.framer-2uleqq, .framer-PqFXN.framer-v-q57rs7 .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-q57rs7.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-q57rs7.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-q57rs7 .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-q57rs7.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-q57rs7 .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-q57rs7 .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PqFXN.framer-v-j06k9w.framer-2uleqq, .framer-PqFXN.framer-v-j06k9w .framer-1hnabak { gap: 0px; } .framer-PqFXN.framer-v-j06k9w.framer-2uleqq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PqFXN.framer-v-j06k9w.framer-2uleqq > :first-child, .framer-PqFXN.framer-v-j06k9w .framer-1hnabak > :first-child { margin-top: 0px; } .framer-PqFXN.framer-v-j06k9w.framer-2uleqq > :last-child, .framer-PqFXN.framer-v-j06k9w .framer-1hnabak > :last-child { margin-bottom: 0px; } .framer-PqFXN.framer-v-j06k9w .framer-1hnabak > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",...sharedStyle.css,'.framer-PqFXN[data-border=\"true\"]::after, .framer-PqFXN [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 640\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zkecmXv3X\":{\"layout\":[\"fixed\",\"fixed\"]},\"MCBSxdS2b\":{\"layout\":[\"fixed\",\"fixed\"]},\"nx7Z7CGf2\":{\"layout\":[\"fixed\",\"fixed\"]},\"cManqmx7p\":{\"layout\":[\"fixed\",\"fixed\"]},\"xKlmQYvTQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"U422H5rig\":{\"layout\":[\"fixed\",\"fixed\"]},\"s0Uv500xq\":{\"layout\":[\"fixed\",\"fixed\"]},\"GPwqVgXv_\":{\"layout\":[\"fixed\",\"fixed\"]},\"KEcnciUpZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"r5NME5GL3\":{\"layout\":[\"fixed\",\"fixed\"]},\"nNyHcWc10\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bx_PnpsPp\":{\"layout\":[\"fixed\",\"fixed\"]},\"mxd1tAkdF\":{\"layout\":[\"fixed\",\"fixed\"]},\"YlI30mhCn\":{\"layout\":[\"fixed\",\"fixed\"]},\"PuOeFLzb4\":{\"layout\":[\"auto\",\"auto\"]},\"San5hVE9n\":{\"layout\":[\"auto\",\"auto\"]},\"deFkV7Xof\":{\"layout\":[\"auto\",\"auto\"]},\"zjTBiJKxp\":{\"layout\":[\"auto\",\"auto\"]},\"N8HSddbmT\":{\"layout\":[\"auto\",\"auto\"]},\"t81cxxbaZ\":{\"layout\":[\"auto\",\"auto\"]},\"YT8x2e3Hg\":{\"layout\":[\"auto\",\"auto\"]},\"Wd30Mwqll\":{\"layout\":[\"auto\",\"auto\"]},\"HW8bLvfxY\":{\"layout\":[\"auto\",\"auto\"]},\"PRc25eKF4\":{\"layout\":[\"auto\",\"auto\"]},\"tbJdfbJrw\":{\"layout\":[\"auto\",\"auto\"]},\"Gdo18QINl\":{\"layout\":[\"auto\",\"auto\"]},\"qMHH26X1m\":{\"layout\":[\"auto\",\"auto\"]},\"Ju_aAM_4A\":{\"layout\":[\"auto\",\"auto\"]},\"VijhG3n2j\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"OG5wahFKB\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEIa7lzreq=withCSS(Component,css,\"framer-PqFXN\");export default FramerEIa7lzreq;FramerEIa7lzreq.displayName=\"fake_prompt_no_code\";FramerEIa7lzreq.defaultProps={height:640,width:1400};addPropertyControls(FramerEIa7lzreq,{variant:{options:[\"ifyo_zl7P\",\"zkecmXv3X\",\"MCBSxdS2b\",\"nx7Z7CGf2\",\"cManqmx7p\",\"xKlmQYvTQ\",\"U422H5rig\",\"s0Uv500xq\",\"GPwqVgXv_\",\"KEcnciUpZ\",\"r5NME5GL3\",\"nNyHcWc10\",\"Bx_PnpsPp\",\"mxd1tAkdF\",\"YlI30mhCn\",\"PuOeFLzb4\",\"San5hVE9n\",\"deFkV7Xof\",\"zjTBiJKxp\",\"N8HSddbmT\",\"t81cxxbaZ\",\"YT8x2e3Hg\",\"Wd30Mwqll\",\"HW8bLvfxY\",\"PRc25eKF4\",\"tbJdfbJrw\",\"Gdo18QINl\",\"qMHH26X1m\",\"Ju_aAM_4A\",\"VijhG3n2j\"],optionTitles:[\"Default\",\"form\",\"option 2\",\"option 3\",\"option 4\",\"loading option 2\",\"loading option 3\",\"loading option 4\",\"loading option 5\",\"option 5\",\"loading\",\"option 6\",\"loading option 6\",\"loading option 7\",\"option 7\",\"Mobile : default\",\"Mobile : loading form\",\"mobile : form\",\"mobile : option 2\",\"mobile : loading option 2 \",\"mobile : loading option 3\",\"mobile : option 3\",\"mobile : loading option 4\",\"mobile : option 4\",\"mobile : option 5\",\"mobile : loading option 5\",\"mobile : loading option 6\",\"mobile : option 6\",\"mobile: loading option 7\",\"mobile : option 7\"],title:\"Variant\",type:ControlType.Enum},OG5wahFKB:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerEIa7lzreq,[{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Material Icons\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhI8tIHh.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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SelectFonts,...InputFonts,...EmbedFonts,...LoadingFonts,...HubSpotFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEIa7lzreq\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1400\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"640\",\"framerVariables\":\"{\\\"OG5wahFKB\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zkecmXv3X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MCBSxdS2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nx7Z7CGf2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cManqmx7p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xKlmQYvTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U422H5rig\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s0Uv500xq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GPwqVgXv_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KEcnciUpZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r5NME5GL3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nNyHcWc10\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bx_PnpsPp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mxd1tAkdF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YlI30mhCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PuOeFLzb4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"San5hVE9n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"deFkV7Xof\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zjTBiJKxp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"N8HSddbmT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"t81cxxbaZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YT8x2e3Hg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Wd30Mwqll\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HW8bLvfxY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PRc25eKF4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tbJdfbJrw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Gdo18QINl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qMHH26X1m\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ju_aAM_4A\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VijhG3n2j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EIa7lzreq.map"],
  "mappings": "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",
  "names": ["useIsomorphicLayoutEffect", "fe", "ue", "Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "Indicators", "DotWave", "color", "animation", "circles", "delay", "ease", "duration", "animProps", "transition", "p", "motion", "circle", "Material", "IOS", "arrayRotate", "arr", "n", "lines", "l", "i", "lineOpacities", "lineKeyframes", "getIndicator", "indicator", "props", "handleTimeout", "callback", "id", "Loading", "onTimeout", "fadeOut", "hasDuration", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "style", "controls", "useAnimation", "animDuration", "animDelay", "currentIndicator", "handlers", "pe", "onFadeOut", "te", "resetOpacity", "useOnEnter", "useOnExit", "cleanup", "ue", "addPropertyControls", "ControlType", "Indicators", "defaultEvents", "Select", "withCSS", "props", "disabled", "focused", "options", "defaultTextColor", "defaultIconColor", "defaultBackgroundColor", "defaultBorderColor", "defaultBorderWidth", "focusTextColor", "focusIconColor", "focusBackgroundColor", "focusBorderColor", "focusBorderWidth", "disabledTextColor", "disabledIconColor", "disabledBackgroundColor", "disabledBorderColor", "disabledBorderWidth", "disabledOpacity", "radius", "fontSize", "fontFamily", "fontWeight", "value", "variant", "onFocus", "onBlur", "onChange", "onSelectOption1", "onSelectOption2", "onSelectOption3", "onSelectOption4", "onSelectOption5", "onSelectOption6", "onSelectOption7", "onSelectOption8", "onSelectOption9", "onSelectOption10", "style", "padding", "rest", "currentValue", "setCurrentValue", "ye", "isInPreview", "RenderTarget", "handleSelectChange", "te", "event", "index", "label", "handleFocus", "handleBlur", "ue", "variants", "currentVariantStyle", "fontStyles", "useFontControls", "paddingValue", "usePadding", "p", "selectStyles", "option", "addPropertyControls", "ControlType", "getVariantControls", "paddingControl", "fontControls", "fontSizeOptions", "fontStore", "fonts", "css", "className", "SelectFonts", "getFonts", "Select", "InputFonts", "Input", "EmbedFonts", "Embed", "LoadingFonts", "Loading", "HubSpotFormFonts", "HubSpotForm", "MotionDivGeneric_tracking", "generic_tracking", "motion", "RichTextTrack_book_expert", "track_book_expert", "RichText2", "RichTextWithTogglePositionHome", "withTogglePositionHome", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OG5wahFKB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapfsm2h6", "args", "onAppear1wdvkqm", "onAppearwkh3xg", "onAppear1vf0x95", "onAppear1n086t9", "onAppear1y9sudf", "onAppearwthp3x", "onAppear176w9sv", "onAppearybeyek", "onAppear1x1mxwl", "onAppeary8ynhc", "onAppearujry8y", "onAppearyfks7l", "onAppear1bjd22s", "onAppear1k4r2ip", "onSelectOption2js5agx", "onSelectOption35lnaws", "onSelectOption412jfq7c", "onSelectOption5znh7l0", "onSelectOption67e9q0e", "onSelectOption71n18s58", "onTapveffz2", "onChange1cgpnk5", "onSelectOption11cgpnk5", "onSelectOption2abm6jj", "onSelectOption3ok93gw", "onSelectOption41xqpo69", "onSelectOption51y0qu9e", "onSelectOption6ycvqn2", "onSelectOption79fi0jf", "onTapn8d6j7", "onTap12y29ao", "onTapb215ga", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SVG", "Link", "Image2", "getLoadingLazyAtYPosition", "css", "FramerEIa7lzreq", "withCSS", "EIa7lzreq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
