{"version":3,"file":"JSmZBOu5b.dih-ArVa.mjs","names":["addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","css","Highlight8","USP"],"sources":["https:/framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js","https:/framerusercontent.com/modules/olaoHEqJ8PAWzVs5arFf/4T1RNpSjy66rfOmtyqa7/fauncGb7C.js","https:/framerusercontent.com/modules/NZ3Eof9IcaDmsVXwmYHa/uVVU4CuoM5Y2hHycmNQU/JSmZBOu5b.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Animator(props){/* Properties */ const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */ const hasChildren=Children.count(slots)>0;/* Empty State */ let customShape=/*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✍️\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */ const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties */ /* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */ const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */ const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */ if(isCanvas){customShape=firstChild;}/* If on a web page */ if(!isCanvas&&svgChild){/* Pass Attributes */ let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */ let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/ _jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/ _jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity}})})});}}return customShape;};/* Default Properties */ Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */ addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map","// Generated by Framer (400c93f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"JScVGv9NL\",\"Gzt6P9nkd\"];const serializationHash=\"framer-jjEVj\";const variantClassNames={Gzt6P9nkd:\"framer-v-skvvuf\",JScVGv9NL:\"framer-v-1t1g371\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:3,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={Animate:\"Gzt6P9nkd\",Default:\"JScVGv9NL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JScVGv9NL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JScVGv9NL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"Gzt6P9nkd\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1t1g371\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"JScVGv9NL\",ref:refBinding,style:{...style},...addPropertyOverrides({Gzt6P9nkd:{\"data-framer-name\":\"Animate\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oy1pwu-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mJ7RU_HeH-container\",nodeId:\"mJ7RU_HeH\",rendersWithMotion:true,scopeId:\"fauncGb7C\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"mJ7RU_HeH\",layoutId:\"mJ7RU_HeH\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1gj7rhz\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"xEieWBao0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 450 6\"><path d=\"M 1.992 2.758 L 451.992 3\" fill=\"transparent\" stroke-width=\"2.7\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:12531209514,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jjEVj.framer-s8sorf, .framer-jjEVj .framer-s8sorf { display: block; }\",\".framer-jjEVj.framer-1t1g371 { height: 27px; overflow: visible; position: relative; width: 450px; }\",\".framer-jjEVj .framer-1oy1pwu-container { bottom: 0px; flex: none; left: -1px; position: absolute; right: 1px; top: 0px; }\",\".framer-jjEVj .framer-1gj7rhz { height: 6px; position: relative; width: 450px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gzt6P9nkd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfauncGb7C=withCSS(Component,css,\"framer-jjEVj\");export default FramerfauncGb7C;FramerfauncGb7C.displayName=\"Highlight 8\";FramerfauncGb7C.defaultProps={height:27,width:450};addPropertyControls(FramerfauncGb7C,{variant:{options:[\"JScVGv9NL\",\"Gzt6P9nkd\"],optionTitles:[\"Default\",\"Animate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfauncGb7C,[{explicitInter:true,fonts:[]},...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfauncGb7C\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"450\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gzt6P9nkd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"27\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fauncGb7C.map","// Generated by Framer (455587d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Highlight8 from\"https://framerusercontent.com/modules/olaoHEqJ8PAWzVs5arFf/4T1RNpSjy66rfOmtyqa7/fauncGb7C.js\";import USP from\"https://framerusercontent.com/modules/mCdR60Qt4ZpJy1bZ4LWr/4pLh4yqWsnQJEyvmijU0/RjFVWqYXW.js\";const Highlight8Fonts=getFonts(Highlight8);const Highlight8WithVariantAppearEffect=withVariantAppearEffect(Highlight8);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const USPFonts=getFonts(USP);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"Tj3hhMQGy\",\"tL4dknruD\",\"lKXvDqqY2\"];const serializationHash=\"framer-eWZDK\";const variantClassNames={lKXvDqqY2:\"framer-v-1putd2e\",Tj3hhMQGy:\"framer-v-1t8iaec\",tL4dknruD:\"framer-v-jkdznn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.2,duration:1,type:\"spring\"};const textEffect={effect:animation,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const transition3={bounce:0,delay:.6,duration:1,type:\"spring\"};const textEffect1={effect:animation,startDelay:.6,threshold:.5,tokenization:\"line\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const inertia={bounceDamping:30,bounceStiffness:400,delay:0,type:\"inertia\"};const preventDefault=e=>e.preventDefault();const animation1={cursor:\"grabbing\"};const textEffect2={effect:animation,startDelay:.8,threshold:.5,tokenization:\"element\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"Tj3hhMQGy\",Phone:\"lKXvDqqY2\",Tablet:\"tL4dknruD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Tj3hhMQGy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Tj3hhMQGy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1t8iaec\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Tj3hhMQGy\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(227, 227, 227)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({lKXvDqqY2:{\"data-framer-name\":\"Phone\"},tL4dknruD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-127bjaf\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"wHucMlrHH\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7vr1s\",layoutDependency:layoutDependency,layoutId:\"FvP5ufEqc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lxv6pq\",layoutDependency:layoutDependency,layoutId:\"JTqCamh_n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(175, 175, 175))\"},children:\"We prioritize your \"})]}),className:\"framer-6kw1i7\",\"data-framer-name\":\"We prioritize your security and privacy, ensuring safe database connectivity with strict data processing controls.\",effect:textEffect,fonts:[\"CUSTOM;Aspekta 500\"],layoutDependency:layoutDependency,layoutId:\"iXikNQLdw\",style:{\"--extracted-2gxw0f\":\"rgb(175, 175, 175)\",\"--extracted-r6o4lv\":\"rgb(175, 175, 175)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lKXvDqqY2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(175, 175, 175))\"},children:\"We prioritize your \"})]})},tL4dknruD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(175, 175, 175))\"},children:\"We prioritize your \"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xc7m9c\",layoutDependency:layoutDependency,layoutId:\"WDef7uPhI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 29, 29))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(29, 29, 29))\"},children:\"security and privacy,\"})]}),className:\"framer-bh55cf\",\"data-framer-name\":\"security and privacy,\",effect:textEffect1,fonts:[\"CUSTOM;Aspekta 500\"],layoutDependency:layoutDependency,layoutId:\"BOLOc1edn\",style:{\"--extracted-2gxw0f\":\"rgb(29, 29, 29)\",\"--extracted-r6o4lv\":\"rgb(29, 29, 29)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lKXvDqqY2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 29, 29))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(29, 29, 29))\"},children:\"security and privacy,\"})]})},tL4dknruD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 29, 29))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(29, 29, 29))\"},children:\"security and privacy,\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+(((componentViewport?.height||384)-0-384)/2+0+0)+80+-71.5+0+-76.26+0+118.72-17,...addPropertyOverrides({lKXvDqqY2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||624)-0-1052.72)/2+0+0)+60+0+0+0+0+487.6+76.32-15},tL4dknruD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||493)-0-493)/2+0+0)+40+0+0+-25.38+8.48+84.8-15.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1x4rds-container\",drag:true,dragMomentum:false,layoutDependency:layoutDependency,layoutId:\"zFjTsrxSy-container\",nodeId:\"zFjTsrxSy\",onMouseDown:preventDefault,rendersWithMotion:true,scopeId:\"JSmZBOu5b\",whileTap:animation1,children:/*#__PURE__*/_jsx(Highlight8WithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"JScVGv9NL\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"Gzt6P9nkd\",height:\"100%\",id:\"zFjTsrxSy\",layoutId:\"zFjTsrxSy\",style:{height:\"100%\",width:\"100%\"},variant:\"JScVGv9NL\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:\"ensuring safe database connectivity with strict data processing controls.\"})}),className:\"framer-oxvlz8\",\"data-framer-name\":\"We prioritize your security and privacy, ensuring safe database connectivity with strict data processing controls.\",effect:textEffect2,fonts:[\"CUSTOM;Aspekta 500\"],layoutDependency:layoutDependency,layoutId:\"sWxWFgqGW\",style:{\"--extracted-r6o4lv\":\"rgb(175, 175, 175)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lKXvDqqY2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:\"ensuring safe database connectivity with strict data processing controls.\"})})},tL4dknruD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FzcGVrdGEgNTAw\",\"--framer-font-family\":'\"Aspekta 500\", \"Aspekta 500 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"106%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(175, 175, 175))\"},children:\"ensuring safe database connectivity with strict data processing controls.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-uy3ba\",\"data-framer-name\":\"USPs\",layoutDependency:layoutDependency,layoutId:\"P7RXFWjMX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||384)-0-384)/2+0+0)+80+251.5+0,...addPropertyOverrides({lKXvDqqY2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||624)-0-1052.72)/2+0+0)+60+804.72+0+0},tL4dknruD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||493)-0-493)/2+0+0)+40+283+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13tpfgp-container\",layoutDependency:layoutDependency,layoutId:\"NYcYwRXPj-container\",nodeId:\"NYcYwRXPj\",rendersWithMotion:true,scopeId:\"JSmZBOu5b\",children:/*#__PURE__*/_jsx(USP,{DVM_D1mX9:\"Data Retention Policies\",height:\"100%\",id:\"NYcYwRXPj\",iHINXqsXv:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/5ekmaP2Tf6xbqKwQS7a5LD5F7w.svg\"},\"\"),layoutId:\"NYcYwRXPj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||384)-0-384)/2+0+0)+80+251.5+0,...addPropertyOverrides({lKXvDqqY2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||624)-0-1052.72)/2+0+0)+60+804.72+0+52},tL4dknruD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||493)-0-493)/2+0+0)+40+283+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jrtkfn-container\",layoutDependency:layoutDependency,layoutId:\"DhYQIKaLs-container\",nodeId:\"DhYQIKaLs\",rendersWithMotion:true,scopeId:\"JSmZBOu5b\",children:/*#__PURE__*/_jsx(USP,{DVM_D1mX9:\"Vulnerability & Threat Tracking\",height:\"100%\",id:\"DhYQIKaLs\",iHINXqsXv:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/pNNXcRYniyCKoU2e03yWDfCo.svg\"},\"\"),layoutId:\"DhYQIKaLs\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+(((componentViewport?.height||384)-0-384)/2+0+0)+80+251.5+0,...addPropertyOverrides({lKXvDqqY2:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||624)-0-1052.72)/2+0+0)+60+804.72+0+104},tL4dknruD:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||493)-0-493)/2+0+0)+40+283+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13kwe0o-container\",layoutDependency:layoutDependency,layoutId:\"zAD7mEKvT-container\",nodeId:\"zAD7mEKvT\",rendersWithMotion:true,scopeId:\"JSmZBOu5b\",children:/*#__PURE__*/_jsx(USP,{DVM_D1mX9:\"No Training on your Data\",height:\"100%\",id:\"zAD7mEKvT\",iHINXqsXv:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/WSCybuGv024nfEl6EIBEbPfJg.svg\"},\"\"),layoutId:\"zAD7mEKvT\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eWZDK.framer-sdc42y, .framer-eWZDK .framer-sdc42y { display: block; }\",\".framer-eWZDK.framer-1t8iaec { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-eWZDK .framer-127bjaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 384px; justify-content: center; overflow: hidden; padding: 80px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-eWZDK .framer-j7vr1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 263px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eWZDK .framer-lxv6pq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eWZDK .framer-6kw1i7, .framer-eWZDK .framer-bh55cf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eWZDK .framer-xc7m9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eWZDK .framer-1x4rds-container { bottom: -10px; cursor: grab; flex: none; height: 27px; left: 0px; position: absolute; width: 100%; z-index: 0; }\",\".framer-eWZDK .framer-oxvlz8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1032px; word-break: break-word; word-wrap: break-word; }\",\".framer-eWZDK .framer-uy3ba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eWZDK .framer-13tpfgp-container, .framer-eWZDK .framer-jrtkfn-container, .framer-eWZDK .framer-13kwe0o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eWZDK.framer-v-jkdznn.framer-1t8iaec { width: 810px; }\",\".framer-eWZDK.framer-v-jkdznn .framer-127bjaf { gap: 20px; height: min-content; padding: 40px 0px 50px 0px; width: 800px; }\",\".framer-eWZDK.framer-v-jkdznn .framer-1x4rds-container { bottom: -11px; right: 0px; width: unset; }\",\".framer-eWZDK.framer-v-jkdznn .framer-oxvlz8, .framer-eWZDK.framer-v-1putd2e .framer-oxvlz8 { width: 100%; }\",\".framer-eWZDK.framer-v-jkdznn .framer-uy3ba { flex-direction: column; gap: 24px; width: 100%; }\",\".framer-eWZDK.framer-v-1putd2e.framer-1t8iaec { width: 390px; }\",\".framer-eWZDK.framer-v-1putd2e .framer-127bjaf { gap: 50px; height: min-content; padding: 60px 20px 60px 20px; width: 100%; }\",\".framer-eWZDK.framer-v-1putd2e .framer-j7vr1s { height: min-content; }\",\".framer-eWZDK.framer-v-1putd2e .framer-lxv6pq { flex-direction: column; }\",\".framer-eWZDK.framer-v-1putd2e .framer-6kw1i7 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eWZDK.framer-v-1putd2e .framer-1x4rds-container { bottom: -12px; left: 1px; right: 1px; width: unset; }\",\".framer-eWZDK.framer-v-1putd2e .framer-uy3ba { flex-direction: column; gap: 28px; }\",'.framer-eWZDK[data-border=\"true\"]::after, .framer-eWZDK [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 384\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tL4dknruD\":{\"layout\":[\"fixed\",\"auto\"]},\"lKXvDqqY2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJSmZBOu5b=withCSS(Component,css,\"framer-eWZDK\");export default FramerJSmZBOu5b;FramerJSmZBOu5b.displayName=\"Message & USPs\";FramerJSmZBOu5b.defaultProps={height:384,width:1440};addPropertyControls(FramerJSmZBOu5b,{variant:{options:[\"Tj3hhMQGy\",\"tL4dknruD\",\"lKXvDqqY2\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJSmZBOu5b,[{explicitInter:true,fonts:[{family:\"Aspekta 500\",source:\"custom\",url:\"https://framerusercontent.com/assets/tNmTnokvuRyJXZde0ltrymyCY.woff2\"}]},...Highlight8Fonts,...USPFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJSmZBOu5b\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"384\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tL4dknruD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lKXvDqqY2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}