{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framer.com/m/framer/lodash.js@0.3.0", "ssg:https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js", "ssg:https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js", "ssg:https://framerusercontent.com/modules/MruKMqFsRiTyWj4OOD0g/phw7hhCm9vi0SrD4IVU2/Ki2eX48Dq-0.js", "ssg:https://framerusercontent.com/modules/MruKMqFsRiTyWj4OOD0g/phw7hhCm9vi0SrD4IVU2/Ki2eX48Dq.js", "ssg:https://framerusercontent.com/modules/5WAqyQSJjU2k2NJvLxmh/obRwufWeGCAl7QF6l2E2/ySPRC_cbM.js", "ssg:https://framerusercontent.com/modules/MxeKlk6zeyIgLqDkUMhQ/pltCuvH1osN2KmM6cf78/Ki2eX48Dq.js", "ssg:https://framerusercontent.com/modules/3yqv2rpitMuPM0dlnMAM/qHZkFLS170pRUEGqx36k/Ngha0Pyug-0.js", "ssg:https://framerusercontent.com/modules/3yqv2rpitMuPM0dlnMAM/qHZkFLS170pRUEGqx36k/Ngha0Pyug.js", "ssg:https://framerusercontent.com/modules/I5w4wuIvCEgTH0lt64pD/fMQGV1OsrrEy4lKihRCl/Ngha0Pyug.js", "ssg:https://framerusercontent.com/modules/6LJW7Pg9Zdc3XvJ6mIkj/9fsJAdJ75yRW2XqW65Be/AIAgentLanguage.js", "ssg:https://framerusercontent.com/modules/j7OqRozYawZi83fjjxxz/0y6gYtZYQfZaIVXdB2oM/AIAgentVoice.js", "ssg:https://framerusercontent.com/modules/puuYCWkJQwMS25nNAQAx/oPpb2DgasvZQElgw4uV5/LocaleComponent.js", "ssg:https://framerusercontent.com/modules/HVJwT2uNeQag7BsQQOsj/zFEnCizvM9efwgNYIVEb/ScrolltoHashAndCleanURL.js", "ssg:https://framerusercontent.com/modules/KGzbFX2JnraxZLfl7ZWc/1GfZpgU6KiMB0OeyWJud/augiA20Il.js", "ssg:https://framerusercontent.com/modules/2Naqq7eLNYC3wnYaoFd1/iI1MxnapypBMvuStvab2/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "/** Error message constants. */ var FUNC_ERROR_TEXT = \"Expected a function\";\n/* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min;\n/** Used as references for various `Number` constants. */ var NAN = 0 / 0;\n/** Used to match leading and trailing whitespace. */ var reTrim = /^\\s+|\\s+$/g;\n/** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n/** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i;\n/** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i;\n/** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt;\nvar now = function() {\n    return Date.now();\n};\nfunction isObject(value) {\n    var type = typeof value;\n    return value != null && (type == \"object\" || type == \"function\");\n}\nfunction isObjectLike(value) {\n    return value != null && typeof value == \"object\";\n}\nfunction toNumber(value) {\n    if (typeof value == \"number\") {\n        return value;\n    }\n    if (typeof value == \"symbol\") {\n        return NAN;\n    }\n    if (isObject(value)) {\n        var other = typeof value.valueOf == \"function\" ? value.valueOf() : value;\n        value = isObject(other) ? other + \"\" : other;\n    }\n    if (typeof value != \"string\") {\n        return value === 0 ? value : +value;\n    }\n    value = value.replace(reTrim, \"\");\n    var isBinary = reIsBinary.test(value);\n    return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n}\nexport function debounce(func, wait, options) {\n    var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    wait = toNumber(wait) || 0;\n    if (isObject(options)) {\n        leading = !!options.leading;\n        maxing = \"maxWait\" in options;\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    function invokeFunc(time) {\n        var args = lastArgs, thisArg = lastThis;\n        lastArgs = lastThis = undefined;\n        lastInvokeTime = time;\n        result = func.apply(thisArg, args);\n        return result;\n    }\n    function leadingEdge(time) {\n        // Reset any `maxWait` timer.\n        lastInvokeTime = time;\n        // Start the timer for the trailing edge.\n        timerId = setTimeout(timerExpired, wait);\n        // Invoke the leading edge.\n        return leading ? invokeFunc(time) : result;\n    }\n    function remainingWait(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;\n        return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;\n    }\n    function shouldInvoke(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;\n        // Either this is the first call, activity has stopped and we're at the\n        // trailing edge, the system time has gone backwards and we're treating\n        // it as the trailing edge, or we've hit the `maxWait` limit.\n        return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;\n    }\n    function timerExpired() {\n        var time = now();\n        if (shouldInvoke(time)) {\n            return trailingEdge(time);\n        }\n        // Restart the timer.\n        timerId = setTimeout(timerExpired, remainingWait(time));\n    }\n    function trailingEdge(time) {\n        timerId = undefined;\n        // Only invoke if we have `lastArgs` which means `func` has been\n        // debounced at least once.\n        if (trailing && lastArgs) {\n            return invokeFunc(time);\n        }\n        lastArgs = lastThis = undefined;\n        return result;\n    }\n    function cancel() {\n        if (timerId !== undefined) {\n            clearTimeout(timerId);\n        }\n        lastInvokeTime = 0;\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\n    }\n    function flush() {\n        return timerId === undefined ? result : trailingEdge(now());\n    }\n    function debounced() {\n        var time = now(), isInvoking = shouldInvoke(time);\n        lastArgs = arguments;\n        lastThis = this;\n        lastCallTime = time;\n        if (isInvoking) {\n            if (timerId === undefined) {\n                return leadingEdge(lastCallTime);\n            }\n            if (maxing) {\n                // Handle invocations in a tight loop.\n                clearTimeout(timerId);\n                timerId = setTimeout(timerExpired, wait);\n                return invokeFunc(lastCallTime);\n            }\n        }\n        if (timerId === undefined) {\n            timerId = setTimeout(timerExpired, wait);\n        }\n        return result;\n    }\n    debounced.cancel = cancel;\n    debounced.flush = flush;\n    return debounced;\n}\nexport function throttle(func, wait, options) {\n    var leading = true, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    if (isObject(options)) {\n        leading = \"leading\" in options ? !!options.leading : leading;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    return debounce(func, wait, {\n        leading: leading,\n        maxWait: wait,\n        trailing: trailing\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"throttle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"debounce\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./lodash.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{animate,transform,motion,useTransform}from\"framer-motion\";import{useRef,useState,useCallback}from\"react\";import{isMotionValue,useOnChange,useAutoMotionValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{throttle}from\"https://framer.com/m/framer/lodash.js@0.3.0\";var KnobOptions;(function(KnobOptions){KnobOptions[\"Hide\"]=\"Hide\";KnobOptions[\"Hover\"]=\"Hover\";KnobOptions[\"Show\"]=\"Show\";})(KnobOptions||(KnobOptions={}));/**\n * SLIDER\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Slider=withCSS(function Slider(props){const{value:valueProp,trackHeight,fillColor,focusColor,min,max,onChange,onChangeLive,onMax,onMin,trackColor,trackRadius,knobSize,knobColor,constrainKnob,shadow,shouldAnimateChange,transition,overdrag,knobSetting,style}=props;const[hovered,setHovered]=useState(false);const[focused,setFocused]=useState(false);const onCanvas=RenderTarget.current()===RenderTarget.canvas;const shouldAnimate=shouldAnimateChange&&!onCanvas;const isConstrained=constrainKnob&&knobSetting===KnobOptions.Show;const showKnob=knobSetting!==KnobOptions.Hide;const input=useRef();const knobPadding=8;// Main setting function\nconst updateValue=useCallback((newVal,target)=>{throttledInputUpdate(newVal);if(onChange)onChange(newVal);if(shouldAnimate)animate(target,newVal,transition);else requestAnimationFrame(()=>target.set(newVal));},[transition,shouldAnimate,onChange]);// \"value\" is the source of truth\n// It can be controlled via props with a motionvalue or number 0.0 - 1.0\n// Local changes are always allowed and are reported back up using \"onChange\" callback\nconst value=useAutoMotionValue(valueProp,{onChange:updateValue,transform:value=>transform(value,[0,100],[min,max])});const knobX=useTransform(value,[min,max],[\"0%\",\"100%\"]);const normalizedValue=useTransform(value,[min,max],[0,1]);const throttledInputUpdate=useCallback(throttle(val=>{var ref;if((ref=input.current)===null||ref===void 0?void 0:ref.value)input.current.value=val;},100),[input]);// Live updating callback\nuseOnChange(value,val=>{if(isMotionValue(valueProp))throttledInputUpdate(val);if(onMax&&val>=max)onMax();if(onMin&&val<=min)onMin();if(onChangeLive)onChangeLive(val);});// Read changes from input element\nconst handleInputChange=e=>{updateValue(parseFloat(e.target.value),value);};// Handle tapping on the know to trigger update\nconst handleMouseDown=e=>{if(parseFloat(e.target.value)!==0)updateValue(parseFloat(e.target.value),value);};const handleMouseUp=()=>{};const totalKnobWidth=showKnob?knobSize+knobPadding:knobPadding;const totalHeight=Math.max(knobSize+knobPadding,trackHeight);return /*#__PURE__*/ _jsxs(\"div\",{className:\"framer-default-slider\",onMouseEnter:()=>setHovered(true),onMouseLeave:()=>setHovered(false),style:{position:\"relative\",...style,alignItems:\"center\",justifyContent:\"flex-start\",border:`0px solid ${focusColor}`,\"--framer-default-slider-height\":totalHeight,\"--framer-default-slider-width\":totalKnobWidth},children:[/*#__PURE__*/ _jsx(\"input\",{ref:input,style:{flexShrink:0,minHeight:totalHeight,opacity:0,margin:0,display:\"flex\",...style,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",...!isConstrained&&{width:`calc(100% + ${totalKnobWidth}px)`,marginLeft:-totalKnobWidth/2}},onFocus:()=>setFocused(true),onBlur:()=>setFocused(false),type:\"range\",min:min,max:max,defaultValue:-1,step:\"any\",onChange:handleInputChange,onMouseDown:handleMouseDown,onMouseUp:handleMouseUp}),/*#__PURE__*/ _jsx(\"div\",{style:{background:trackColor,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,borderRadius:trackRadius,display:\"flex\",height:trackHeight,width:\"100%\",transformOrigin:\"left\",pointerEvents:\"none\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:trackHeight,width:\"100%\",background:fillColor,scaleX:normalizedValue,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,transformOrigin:\"left\",pointerEvents:\"none\"}})}),/*#__PURE__*/ _jsx(motion.div,{style:{x:knobX,position:\"absolute\",display:\"flex\",top:`calc(50% - ${Math.floor(knobSize/2)}px)`,pointerEvents:\"none\",...isConstrained?{width:`calc(100% - ${knobSize}px`,left:0}:{width:`100%`,left:-knobSize/2}},children:/*#__PURE__*/ _jsx(motion.div,{initial:false,animate:{scale:hovered&&knobSetting===KnobOptions.Hover||knobSetting===KnobOptions.Show?1:0},transition:{type:\"spring\",stiffness:900,damping:40},style:{transformOrigin:\"50% 50%\",width:knobSize,height:knobSize,borderRadius:\"50%\",background:knobColor,pointerEvents:\"none\",boxShadow:`0px 1px 2px 0px ${shadow}, \n                                0px 2px 4px 0px ${shadow}, \n                                0px 4px 8px 0px ${shadow}`}})})]});},[\".framer-default-slider input[type=range] {  width: 100%; height: 100% background:transparent margin: 0;}\",\".framer-default-slider input[type=range]:focus { outline: none; }\",\".framer-default-slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; }\",\".framer-default-slider input[type=range]::-webkit-slider-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-moz-range-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-ms-thumb  { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",]);Slider.displayName=\"Slider\";Slider.defaultProps={height:20,width:200,trackHeight:4,fillColor:\"#09F\",trackColor:\"#DDD\",knobColor:\"#FFF\",focusColor:\"rgba(0, 153, 255,0)\",shadow:\"rgba(0,0,0,0.1)\",knobSize:20,overdrag:true,min:0,max:100,value:50,trackRadius:5,knobSetting:KnobOptions.Show,constrainKnob:false,transition:{type:\"spring\",delay:0,stiffness:750,damping:50},shouldAnimateChange:true};addPropertyControls(Slider,{fillColor:{title:\"Tint\",type:ControlType.Color},trackColor:{title:\"Track\",type:ControlType.Color},knobColor:{title:\"Knob\",type:ControlType.Color},shadow:{type:ControlType.Color,title:\"Shadow\"},// focusColor: {\n//     title: \"Focus\",\n//     type: ControlType.Color,\n// },\nshouldAnimateChange:{type:ControlType.Boolean,title:\"Changes\",enabledTitle:\"Animate\",disabledTitle:\"Instant\"},transition:{type:ControlType.Transition,defaultValue:Slider.defaultProps.transition},knobSetting:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Knob\",options:[\"Hide\",\"Hover\",\"Show\"]},constrainKnob:{type:ControlType.Boolean,title:\"Constrain\",enabledTitle:\"Yes\",disabledTitle:\"No\",hidden:({knobSetting})=>knobSetting!==KnobOptions.Show},knobSize:{type:ControlType.Number,title:\"Knob\",min:10,max:100,hidden:({knobSetting})=>knobSetting===KnobOptions.Hide},value:{type:ControlType.Number,title:\"Value\",min:0,max:100,unit:\"%\"},trackHeight:{title:\"Height\",type:ControlType.Number,min:0},min:{title:\"Min\",type:ControlType.Number,displayStepper:true},trackRadius:{type:ControlType.Number,displayStepper:true,min:0,max:200,title:\"Radius\"},max:{title:\"Max\",type:ControlType.Number,displayStepper:true},onChange:{type:ControlType.EventHandler},onMax:{type:ControlType.EventHandler},onMin:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Slider\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Slider.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useRef,useState,useEffect,useCallback}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{MotionValue,motion,animate,useMotionValueEvent}from\"framer-motion\";import{useOnEnter,usePadding,useRadius,paddingControl,borderRadiusControl,useOnChange,containerStyles,secondsToMinutes,useAutoMotionValue,useOnExit,fontStack,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{Slider}from\"https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js\";const isMotionValue=v=>v instanceof MotionValue;var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));function PlayTime(props){const{currentTime,startTime}=props;const[playTime,setPlayTime]=useState(\"0:00\");useEffect(()=>{setPlayTime(secondsToMinutes(startTime));},[startTime]);useOnChange(currentTime,latest=>{setPlayTime(secondsToMinutes(latest));});return /*#__PURE__*/_jsx(_Fragment,{children:playTime});}const checkIfPlaying=player=>player.current&&!player.current.paused&&!player.current.ended&&player.current.readyState>2;/**\n * AUDIO\n *\n * Audio player component optimized for smart components.\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export const Audio=withCSS(function Audio(props){var _props_style;const{playing,background,progressColor,trackHeight,gap,trackColor,srcUrl,srcType,srcFile,loop,font,autoPlay,progress,volume,showTime,showTrack,playPauseCursor,showPlayPause,onTimeUpdate,onMetadata,onPlay,onPause,onEnd,pauseOnExit,onPlayGlobalPauseOption}=props;let iconCursor=\"pointer\";if(!!playPauseCursor){iconCursor=playPauseCursor;}else if(props===null||props===void 0?void 0:(_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.cursor){iconCursor=props.style.cursor;}// Defaults to false, only switches to play if possible\nconst[isPlaying,setIsPlaying]=useState(false);const[duration,setDuration]=useState(0);// Audio element ref and non-state info\nconst player=useRef();const playerInfo=useRef({ready:false,animation:null});// Track progress in ms, always in sync with audio element\nconst trackProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{if(player.current.duration){player.current.currentTime=newValue*player.current.duration;handlePlayStateUpdate(\"motionHook\");}}});const padding=usePadding(props);const borderRadius=useRadius(props);const{fontSize}=useFontControls(props);const shouldPlay=RenderTarget.current()===RenderTarget.preview;const shouldPausePlayers=onPlayGlobalPauseOption===\"pause\";const url=srcType===\"URL\"?srcUrl:srcFile;const shouldAutoPlay=shouldPlay&&playing;// Sync UI with state of the audio element\n// TODO look into better more performant ways of doing this\nconst handlePlayStateUpdate=useCallback(_=>{var _playerInfo_current_animation,_playerInfo_current;const currentDuration=player.current.duration;const currentTime=player.current.currentTime;(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();if(Math.abs(currentTime-trackProgress.get())>.5){trackProgress.set(currentTime);}if(!shouldPlay)return;const isNowPlaying=checkIfPlaying(player);if(isPlaying!==isNowPlaying)setIsPlaying(isNowPlaying);if(isNowPlaying&&shouldPlay){playerInfo.current.animation=animate(trackProgress,currentDuration,{type:\"tween\",ease:\"linear\",duration:currentDuration-currentTime});}},[shouldPlay,isPlaying]);const pauseAllAudioPlayers=()=>{const audioPlayerElements=document.querySelectorAll(\".framer-audio\");audioPlayerElements.forEach(el=>{el.pause();});};// Always use this for playing audio\n// No logic in here as it is async & can fail\nconst playAudio=()=>{if(shouldPlay)player.current.play().catch(e=>{})// It's likely fine, swallow error\n;};const pauseAudio=()=>{var _playerInfo_current_animation,_playerInfo_current;player.current.pause();(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();};const handleMetadata=()=>{if(onMetadata)onMetadata({duration:player.current.duration});setDuration(player.current.duration);};const initProgress=()=>{if(!isMotionValue(progress)){player.current.currentTime=progress*.01*player.current.duration;}};const handleReady=()=>{// This tries to run on every pause\n// We use playerInfo.ready to only call on initial load of a source\nif(!playerInfo.current.ready){if(shouldAutoPlay)playAudio();playerInfo.current.ready=true;initProgress();}};// Handle seek event from slider\nconst handleSeek=val=>{if(player.current.currentTime){player.current.currentTime=val;handlePlayStateUpdate(\"handleSeek\");}};const handleEnd=()=>{if(onEnd)onEnd();};const handlePlayClick=()=>{if(shouldPausePlayers)pauseAllAudioPlayers();playAudio();};// Control audio via props\nuseEffect(()=>{if(shouldPlay){// In preview when prop changes, pause/play\nif(playing===true)playAudio();else pauseAudio();}else{// Only set the state for canvas use\nif(playing===true)setIsPlaying(true);else setIsPlaying(false);}},[playing]);useEffect(()=>{var _player_current;// Do this in an effect to correct on optimised sites\nif((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)setDuration(player.current.duration);},[]);// Call event callbacks\nuseEffect(()=>{if(playerInfo.current.ready&&isPlaying&&onPlay)onPlay();else if(playerInfo.current.ready&&onPause)onPause();},[isPlaying]);// Volume Control\nuseEffect(()=>{player.current.volume=volume/100;},[volume]);// Reset ready state when src changes\nuseEffect(()=>{playerInfo.current.ready=false;},[srcFile,srcType,srcUrl]);// Play on navigation\nuseOnEnter(()=>{if(shouldAutoPlay)playAudio();});useOnExit(()=>{if(pauseOnExit)player.current.pause();});useMotionValueEvent(trackProgress,\"change\",val=>{var _player_current;const progressPercent=((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)?val/player.current.duration*100:null;if(onTimeUpdate){onTimeUpdate(val,progressPercent,secondsToMinutes(val));}});const iconStyles={marginRight:showTime||showTrack?gap:0,flexShrink:0,cursor:iconCursor};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyles,position:\"relative\",overflow:\"hidden\",background,padding,borderRadius},children:[/*#__PURE__*/_jsx(\"audio\",{src:url,loop:loop,className:\"framer-audio\",ref:player,preload:\"metadata\",autoPlay:shouldAutoPlay,onLoadedMetadata:handleMetadata,onCanPlayThrough:handleReady,// Listen to all events for status changes\nonPlaying:()=>handlePlayStateUpdate(\"playingEvent\"),onPlay:()=>handlePlayStateUpdate(\"playEvent\"),onSeeked:()=>handlePlayStateUpdate(\"seekEvent\"),onPause:()=>handlePlayStateUpdate(\"pauseEvent\"),onEnded:()=>handleEnd()}),showPlayPause&&/*#__PURE__*/_jsx(_Fragment,{children:isPlaying?/*#__PURE__*/_jsx(PauseIcon,{width:16,whileTap:{scale:.9},onClick:()=>pauseAudio(),style:iconStyles,\"aria-label\":\"pause audio\"}):/*#__PURE__*/_jsx(PlayIcon,{width:16,whileTap:{scale:.9},onClick:handlePlayClick,style:iconStyles,\"aria-label\":\"play audio\"})}),showTime&&/*#__PURE__*/_jsxs(\"p\",{style:{userSelect:\"none\",color:\"#333\",fontWeight:500,letterSpacing:-.25,margin:0,flexShrink:0,fontFamily:fontStack,fontVariantNumeric:\"tabular-nums\",marginRight:showTrack?gap:0,...font},children:[/*#__PURE__*/_jsx(PlayTime,{startTime:duration*(isMotionValue(progress)?progress.get():progress*.01),currentTime:trackProgress}),/*#__PURE__*/_jsx(\"span\",{style:{padding:\"0 2px\"},children:\"/\"}),duration>0?secondsToMinutes(duration):\"1:34\"]}),showTrack&&/*#__PURE__*/_jsx(Slider,{style:{width:\"100%\"},value:trackProgress,fillColor:progressColor,knobSetting:\"Hover\",shadow:`rgba(0,0,0,0)`,knobSize:10,knobColor:progressColor,onChange:handleSeek,shouldAnimateChange:false,min:0,max:duration,trackColor:trackColor})]});},[\".framer-audio-icon { outline: none; }\",\".framer-audio-icons:focus-visible { outline: auto; }\"]);Audio.defaultProps={background:\"#EBEBEB\",trackColor:\"#FFFFFF\",font:{fontSize:12},progressColor:\"#333333\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",srcType:\"URL\",pauseOnExit:true,borderRadius:8,padding:15,progress:0,volume:25,loop:false,playing:true,autoPlay:true,showTime:true,showTrack:true,showPlayPause:true,onPlayGlobalPauseOption:\"continue\",trackHeight:4,gap:15,height:50,width:240};addPropertyControls(Audio,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\".../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\",\"mp3\",\"wav\",\"m4a\"],hidden(props){return props.srcType===\"URL\";}},playing:{title:\"Playing\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// autoPlay: {\n//     type: ControlType.Boolean,\n//     title: \"Autoplay\",\n//     enabledTitle: \"Yes\",\n//     disabledTitle: \"No\",\n// },\nprogress:{title:\"Progress\",type:ControlType.Number,max:100,min:0,unit:\"%\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\"},progressColor:{title:\"Progress\",type:ControlType.Color,defaultValue:Audio.defaultProps.progressColor},trackColor:{title:\"Track\",type:ControlType.Color,defaultValue:Audio.defaultProps.trackColor},background:{title:\"Player\",type:ControlType.Color,defaultValue:Audio.defaultProps.background},font:{title:\"Font\",// @ts-ignore \u2013 Internal\ntype:ControlType.Font,displayFontSize:true},...paddingControl,...borderRadiusControl,gap:{type:ControlType.Number,min:0,max:100,displayStepper:true},showPlayPause:{type:ControlType.Boolean,title:\"Play/Pause\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTrack:{type:ControlType.Boolean,title:\"Track\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTime:{type:ControlType.Boolean,title:\"Time\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},pauseOnExit:{type:ControlType.Boolean,title:\"On Leave\",enabledTitle:\"Pause\",disabledTitle:\"Continue\"},onPlayGlobalPauseOption:{type:ControlType.Enum,title:\"On Play\",options:[\"continue\",\"pause\"],optionTitles:[\"Continue All\",\"Pause All\"]},onPlay:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler},onTimeUpdate:{type:ControlType.EventHandler}});const trackStyle={borderRadius:10,width:\"100%\",overflow:\"hidden\"};const trackParentStyle={position:\"relative\",border:\"1px solid red\",display:\"flex\",alignItems:\"center\",height:\"100%\",width:\"100%\"};function PlayIcon(props){return /*#__PURE__*/_jsx(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 5.379 1.292 C 4.968 1.033 4.449 1.017 4.023 1.251 C 3.598 1.486 3.334 1.933 3.333 2.419 L 3.333 13.581 C 3.334 14.067 3.598 14.514 4.023 14.749 C 4.449 14.983 4.968 14.967 5.379 14.708 L 14.215 9.127 C 14.602 8.883 14.836 8.457 14.836 8 C 14.836 7.543 14.602 7.117 14.215 6.873 Z\",fill:\"#333\"})});}function PauseIcon(props){return /*#__PURE__*/_jsxs(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 3 3 C 3 2.448 3.448 2 4 2 L 6 2 C 6.552 2 7 2.448 7 3 L 7 13 C 7 13.552 6.552 14 6 14 L 4 14 C 3.448 14 3 13.552 3 13 Z\",fill:\"#343434\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 9 3 C 9 2.448 9.448 2 10 2 L 12 2 C 12.552 2 13 2.448 13 3 L 13 13 C 13 13.552 12.552 14 12 14 L 10 14 C 9.448 14 9 13.552 9 13 Z\",fill:\"#343434\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"Audio\":{\"type\":\"reactComponent\",\"name\":\"Audio\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"50\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Audio.map", "export const v0=\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport*as localizedValues from\"./Ki2eX48Dq-0.js\";const valuesByLocaleId={yIRd9YXY4:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"t95oD26sk\",\"TGXRuHAec\",\"Y2GsbySmG\",\"vI1SQZl3o\"];const serializationHash=\"framer-3JyqR\";const variantClassNames={t95oD26sk:\"framer-v-1gipwmq\",TGXRuHAec:\"framer-v-1os38ck\",vI1SQZl3o:\"framer-v-r72mqd\",Y2GsbySmG:\"framer-v-1weewh8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Agent 1\":\"t95oD26sk\",\"Agent 2\":\"TGXRuHAec\",\"Agent 3\":\"Y2GsbySmG\",\"Agent 4\":\"vI1SQZl3o\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"t95oD26sk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t95oD26sk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1080,pixelWidth:1080,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/fAc9UQq4Etn5dUtRnyUiEsgoqvQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/fAc9UQq4Etn5dUtRnyUiEsgoqvQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/fAc9UQq4Etn5dUtRnyUiEsgoqvQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fAc9UQq4Etn5dUtRnyUiEsgoqvQ.png 1080w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1gipwmq\",className,classNames),\"data-framer-name\":\"Agent 1\",layoutDependency:layoutDependency,layoutId:\"t95oD26sk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({TGXRuHAec:{\"data-framer-name\":\"Agent 2\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1080,pixelWidth:1080,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/7mxDR6ofMAfKaRNKeNO0NBDln5c.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7mxDR6ofMAfKaRNKeNO0NBDln5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/7mxDR6ofMAfKaRNKeNO0NBDln5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7mxDR6ofMAfKaRNKeNO0NBDln5c.png 1080w\"}},vI1SQZl3o:{\"data-framer-name\":\"Agent 4\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1080,pixelWidth:1080,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/42QLbVJtOG0m1aXVqR35jU3xyU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/42QLbVJtOG0m1aXVqR35jU3xyU.png?scale-down-to=512 512w,https://framerusercontent.com/images/42QLbVJtOG0m1aXVqR35jU3xyU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/42QLbVJtOG0m1aXVqR35jU3xyU.png 1080w\"}},Y2GsbySmG:{\"data-framer-name\":\"Agent 3\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:720,loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1080,pixelWidth:1080,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ewTKDnBfuTmyRvj3uGDlXIqM7Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ewTKDnBfuTmyRvj3uGDlXIqM7Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/ewTKDnBfuTmyRvj3uGDlXIqM7Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ewTKDnBfuTmyRvj3uGDlXIqM7Y.png 1080w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3JyqR.framer-1cgogy1, .framer-3JyqR .framer-1cgogy1 { display: block; }\",\".framer-3JyqR.framer-1gipwmq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 720px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 720px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3JyqR.framer-1gipwmq { gap: 0px; } .framer-3JyqR.framer-1gipwmq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3JyqR.framer-1gipwmq > :first-child { margin-left: 0px; } .framer-3JyqR.framer-1gipwmq > :last-child { margin-right: 0px; } }\",\".framer-3JyqR.framer-v-1os38ck.framer-1gipwmq, .framer-3JyqR.framer-v-1weewh8.framer-1gipwmq, .framer-3JyqR.framer-v-r72mqd.framer-1gipwmq { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 720px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"TGXRuHAec\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y2GsbySmG\":{\"layout\":[\"fixed\",\"fixed\"]},\"vI1SQZl3o\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerySPRC_cbM=withCSS(Component,css,\"framer-3JyqR\");export default FramerySPRC_cbM;FramerySPRC_cbM.displayName=\"AI Voice Assistant/Agent\";FramerySPRC_cbM.defaultProps={height:720,width:720};addPropertyControls(FramerySPRC_cbM,{variant:{options:[\"t95oD26sk\",\"TGXRuHAec\",\"Y2GsbySmG\",\"vI1SQZl3o\"],optionTitles:[\"Agent 1\",\"Agent 2\",\"Agent 3\",\"Agent 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerySPRC_cbM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySPRC_cbM\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"720\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TGXRuHAec\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y2GsbySmG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vI1SQZl3o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"720\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ySPRC_cbM.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hjNsKSxefAvuQEUJmSpd/Ab3SyMQ0L78KHGusDwEH/OhmF0_7SX.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/e4n0yioJRTVzJQ7zsl4U/gCHoVjC8rQgPuLnWdlR2/PmFp_Rzqu.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/ehn0kuQAin8XXLc4BTV4/QmonE7QM3uwhDJFAoNGb/Q9tdI_jrF.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uiBmNJBgMvjFrzLlnFtp/VTlEpilXOcUlfnBv4koh/Y7oCdDscg.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/MruKMqFsRiTyWj4OOD0g/phw7hhCm9vi0SrD4IVU2/Ki2eX48Dq.js\";import AIVoiceAssistantAgent from\"https://framerusercontent.com/modules/5WAqyQSJjU2k2NJvLxmh/obRwufWeGCAl7QF6l2E2/ySPRC_cbM.js\";const AIVoiceAssistantAgentFonts=getFonts(AIVoiceAssistantAgent);const AudioFonts=getFonts(Audio);const MotionDivWithFX=withFX(motion.div);const AIVoiceAssistantAgentControls=getPropertyControls(AIVoiceAssistantAgent);const AudioControls=getPropertyControls(Audio);const cycleOrder=[\"a7HNi5dGV\",\"ED8F8UD4I\"];const serializationHash=\"framer-eJBZk\";const variantClassNames={a7HNi5dGV:\"framer-v-1qn50g5\",ED8F8UD4I:\"framer-v-1ndidw4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Agent 1\":\"t95oD26sk\",\"Agent 2\":\"TGXRuHAec\",\"Agent 3\":\"Y2GsbySmG\",\"Agent 4\":\"vI1SQZl3o\"};const humanReadableVariantMap={Desktop:\"a7HNi5dGV\",Mobile:\"ED8F8UD4I\"};const getProps=({agent,audioFile,description,height,id,title,width,...props})=>{return{...props,arEODMol3:title??props.arEODMol3??\"Title Here\",Hpwivmn92:humanReadableEnumMap[agent]??agent??props.Hpwivmn92??\"t95oD26sk\",ICTPMVye_:audioFile??props.ICTPMVye_,variant:humanReadableVariantMap[props.variant]??props.variant??\"a7HNi5dGV\",vrMd0cHfd:description??props.vrMd0cHfd??\"Description Here\"};};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,Hpwivmn92,arEODMol3,vrMd0cHfd,ICTPMVye_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a7HNi5dGV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ED8F8UD4I\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1qn50g5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"a7HNi5dGV\",ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(43, 48, 55, 0.7)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:\"linear-gradient(180deg, rgba(23, 27, 30, 0) 0%, rgba(43, 48, 55, 0.5) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 16px 24px 0px rgba(0, 0, 0, 0.04)\",...style},...addPropertyOverrides({ED8F8UD4I:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"160px\",y:(componentViewport?.y||0)+(32+((componentViewport?.height||230)-68-160)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v9sz7f-container\",layoutDependency:layoutDependency,layoutId:\"ydly1_ym6-container\",nodeId:\"ydly1_ym6\",rendersWithMotion:true,scopeId:\"Ki2eX48Dq\",children:/*#__PURE__*/_jsx(AIVoiceAssistantAgent,{height:\"100%\",id:\"ydly1_ym6\",layoutId:\"ydly1_ym6\",style:{height:\"100%\",width:\"100%\"},variant:Hpwivmn92,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o9gepj\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"kTntrycTu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12td98c\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"qcu3bNxLy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1babv1h\",\"data-styles-preset\":\"Y7oCdDscg\",children:\"Captura de Detalles de Clientes\"})}),className:\"framer-5ya4tn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EEtgeUgJT\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:arEODMol3,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({ED8F8UD4I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xr8krp\",\"data-styles-preset\":\"OhmF0_7SX\",children:\"Title Here\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182)))\"},children:\"Description Here\"})}),className:\"framer-gnpc4o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zdezQVy0Z\",style:{\"--extracted-r6o4lv\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\",\"--framer-paragraph-spacing\":\"0px\"},text:vrMd0cHfd,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ED8F8UD4I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182)))\"},children:\"Description Here\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ff7q3l\",\"data-framer-name\":\"Audio Container\",layoutDependency:layoutDependency,layoutId:\"vJDGlcASb\",style:{background:\"radial-gradient(75% 50% at 50% 100%, rgb(43, 48, 55) 0%, rgba(43, 48, 55, 0.02) 100%)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1iwe0j2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PoRF6h2x_-container\",nodeId:\"PoRF6h2x_\",rendersWithMotion:true,scopeId:\"Ki2eX48Dq\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgb(255, 255, 255)\",borderRadius:1e3,bottomLeftRadius:1e3,bottomRightRadius:1e3,font:{},gap:16,height:\"100%\",id:\"PoRF6h2x_\",isMixedBorderRadius:false,layoutId:\"PoRF6h2x_\",loop:false,onPlayGlobalPauseOption:\"continue\",padding:16,paddingBottom:16,paddingLeft:24,paddingPerSide:true,paddingRight:24,paddingTop:16,pauseOnExit:true,playing:false,progress:0,progressColor:\"var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, rgb(23, 27, 30))\",showPlayPause:true,showTime:true,showTrack:true,srcFile:ICTPMVye_,srcType:\"Upload\",srcUrl:getLocalizedValue(\"v0\",activeLocale)??\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:1e3,topRightRadius:1e3,trackColor:\"rgb(230, 230, 230)\",volume:25,width:\"100%\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eJBZk.framer-19q9cyn, .framer-eJBZk .framer-19q9cyn { display: block; }\",\".framer-eJBZk.framer-1qn50g5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 36px 32px; position: relative; width: 1216px; }\",\".framer-eJBZk .framer-1v9sz7f-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); position: relative; width: 160px; }\",\".framer-eJBZk .framer-1o9gepj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eJBZk .framer-12td98c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-eJBZk .framer-5ya4tn, .framer-eJBZk .framer-gnpc4o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eJBZk .framer-ff7q3l { 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: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eJBZk .framer-1iwe0j2-container { flex: 1 0 0px; height: 56px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eJBZk.framer-1qn50g5, .framer-eJBZk .framer-1o9gepj, .framer-eJBZk .framer-12td98c, .framer-eJBZk .framer-ff7q3l { gap: 0px; } .framer-eJBZk.framer-1qn50g5 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-eJBZk.framer-1qn50g5 > :first-child, .framer-eJBZk .framer-ff7q3l > :first-child { margin-left: 0px; } .framer-eJBZk.framer-1qn50g5 > :last-child, .framer-eJBZk .framer-ff7q3l > :last-child { margin-right: 0px; } .framer-eJBZk .framer-1o9gepj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eJBZk .framer-1o9gepj > :first-child, .framer-eJBZk .framer-12td98c > :first-child { margin-top: 0px; } .framer-eJBZk .framer-1o9gepj > :last-child, .framer-eJBZk .framer-12td98c > :last-child { margin-bottom: 0px; } .framer-eJBZk .framer-12td98c > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-eJBZk .framer-ff7q3l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-eJBZk.framer-v-1ndidw4.framer-1qn50g5 { gap: 20px; padding: 24px 24px 28px 24px; width: 358px; }\",\".framer-eJBZk.framer-v-1ndidw4 .framer-1o9gepj { gap: 24px; }\",\".framer-eJBZk.framer-v-1ndidw4 .framer-1iwe0j2-container { height: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eJBZk.framer-v-1ndidw4.framer-1qn50g5, .framer-eJBZk.framer-v-1ndidw4 .framer-1o9gepj { gap: 0px; } .framer-eJBZk.framer-v-1ndidw4.framer-1qn50g5 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-eJBZk.framer-v-1ndidw4.framer-1qn50g5 > :first-child { margin-left: 0px; } .framer-eJBZk.framer-v-1ndidw4.framer-1qn50g5 > :last-child { margin-right: 0px; } .framer-eJBZk.framer-v-1ndidw4 .framer-1o9gepj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-eJBZk.framer-v-1ndidw4 .framer-1o9gepj > :first-child { margin-top: 0px; } .framer-eJBZk.framer-v-1ndidw4 .framer-1o9gepj > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-eJBZk[data-border=\"true\"]::after, .framer-eJBZk [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 230\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ED8F8UD4I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Hpwivmn92\":\"agent\",\"arEODMol3\":\"title\",\"vrMd0cHfd\":\"description\",\"ICTPMVye_\":\"audioFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKi2eX48Dq=withCSS(Component,css,\"framer-eJBZk\");export default FramerKi2eX48Dq;FramerKi2eX48Dq.displayName=\"AI Voice Assistant/Card\";FramerKi2eX48Dq.defaultProps={height:230,width:1216};addPropertyControls(FramerKi2eX48Dq,{variant:{options:[\"a7HNi5dGV\",\"ED8F8UD4I\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},Hpwivmn92:AIVoiceAssistantAgentControls?.[\"variant\"]&&{...AIVoiceAssistantAgentControls[\"variant\"],defaultValue:\"t95oD26sk\",description:undefined,hidden:undefined,title:\"Agent\"},arEODMol3:{defaultValue:\"Title Here\",displayTextArea:false,title:\"Title\",type:ControlType.String},vrMd0cHfd:{defaultValue:\"Description Here\",displayTextArea:false,title:\"Description\",type:ControlType.String},ICTPMVye_:AudioControls?.[\"srcFile\"]&&{...AudioControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Audio File\"}});addFonts(FramerKi2eX48Dq,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...AIVoiceAssistantAgentFonts,...AudioFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKi2eX48Dq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1216\",\"framerIntrinsicHeight\":\"230\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Hpwivmn92\\\":\\\"agent\\\",\\\"arEODMol3\\\":\\\"title\\\",\\\"vrMd0cHfd\\\":\\\"description\\\",\\\"ICTPMVye_\\\":\\\"audioFile\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ED8F8UD4I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Comienza Hoy Mismo\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport*as localizedValues from\"./Ngha0Pyug-0.js\";const valuesByLocaleId={yIRd9YXY4:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,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*as sharedStyle3 from\"https://framerusercontent.com/modules/4lpulB59TcjcU5BZO6BE/R3yqrgXQJGPphB7jONnL/GebJgV3sK.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/h8glLcNPbM265eZ2BJVH/UED5Y54PNNwlG9ZWYQfr/H7Fper_TV.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hjNsKSxefAvuQEUJmSpd/Ab3SyMQ0L78KHGusDwEH/OhmF0_7SX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/r8omXA9FjMeXAnUjwgw0/1nc2qFn1JBBaZ5RDBfAe/OuQDtOra2.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/ehn0kuQAin8XXLc4BTV4/QmonE7QM3uwhDJFAoNGb/Q9tdI_jrF.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/3yqv2rpitMuPM0dlnMAM/qHZkFLS170pRUEGqx36k/Ngha0Pyug.js\";import BtnHero from\"https://framerusercontent.com/modules/bQUZG2szHUP1d8DVZfgK/QiCmIbKwr81eMzMZIBjV/gNLgqu4Za.js\";const BtnHeroFonts=getFonts(BtnHero);const cycleOrder=[\"YTX_gGPiH\",\"sA6uGcZyx\",\"Z2LvwJhkx\",\"Cwam_fWt6\"];const serializationHash=\"framer-0KOlI\";const variantClassNames={Cwam_fWt6:\"framer-v-1ey8e9r\",sA6uGcZyx:\"framer-v-ktq5ur\",YTX_gGPiH:\"framer-v-19d9eej\",Z2LvwJhkx:\"framer-v-1gekaft\"};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 equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"https://billing.888.studio/catalog/voice-ai-solution-setup-1742874178870975/checkout\";}else{return\"https://facturacion.888.studio/catalog/generacion-de-leads-con-ia-1743950742596717/checkout\";}};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 Default\":\"YTX_gGPiH\",\"Desktop Recommended\":\"sA6uGcZyx\",\"Mobile Default\":\"Z2LvwJhkx\",\"Mobile Recommended\":\"Cwam_fWt6\"};const getProps=({height,id,item1,item2,item4,price,shortDescription,title,width,...props})=>{return{...props,chqJbltuG:item4??props.chqJbltuG??\"Item Here\",gK4OoZGS6:item2??props.gK4OoZGS6??\"Item Here\",qI1pwLcJx:shortDescription??props.qI1pwLcJx??\"Short Description Here\",qvlS0kaOs:price??props.qvlS0kaOs??\"\u20AC0\",UlRHXnNgu:title??props.UlRHXnNgu??\"Title Here\",variant:humanReadableVariantMap[props.variant]??props.variant??\"YTX_gGPiH\",wfyyU1pPO:item1??props.wfyyU1pPO??\"Item Here\"};};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,UlRHXnNgu,qvlS0kaOs,qI1pwLcJx,wfyyU1pPO,gK4OoZGS6,chqJbltuG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YTX_gGPiH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-19d9eej\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop Default\",layoutDependency:layoutDependency,layoutId:\"YTX_gGPiH\",ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(43, 48, 55, 0.7)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:\"linear-gradient(180deg, rgba(23, 27, 30, 0) 0%, rgba(43, 48, 55, 0.5) 100%)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 16px 24px 0px rgba(0, 0, 0, 0.04)\",...style},variants:{Cwam_fWt6:{\"--border-color\":\"rgba(0, 102, 255, 0.2)\",background:\"linear-gradient(225deg, var(--token-58504713-a694-47c5-8736-53234cb14500, rgb(60, 231, 252)) 0%, var(--token-c42cd5e8-3635-4f27-9770-4979c8f5ba28, rgb(0, 102, 255)) 100%)\",boxShadow:\"0px 16px 96px 0px rgba(0, 102, 255, 0.16)\"},sA6uGcZyx:{\"--border-color\":\"rgba(0, 102, 255, 0.2)\",background:\"linear-gradient(225deg, var(--token-58504713-a694-47c5-8736-53234cb14500, rgb(60, 231, 252)) 0%, var(--token-c42cd5e8-3635-4f27-9770-4979c8f5ba28, rgb(0, 102, 255)) 100%)\",boxShadow:\"0px 16px 96px 0px rgba(0, 102, 255, 0.16)\"}},...addPropertyOverrides({Cwam_fWt6:{\"data-framer-name\":\"Mobile Recommended\"},sA6uGcZyx:{\"data-framer-name\":\"Desktop Recommended\"},Z2LvwJhkx:{\"data-framer-name\":\"Mobile Default\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ugad8\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ynKLQxHWq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-xr8krp\",\"data-styles-preset\":\"OhmF0_7SX\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Title Here\"})}),className:\"framer-dstout\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QMlX9XQZ3\",style:{\"--extracted-r6o4lv\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:UlRHXnNgu,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Title Here\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Title Here\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h49clw\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"p4xEZCkmu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1e0xi27\",\"data-styles-preset\":\"H7Fper_TV\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"$500\"})}),className:\"framer-1ndskk1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C8jV2SsKn\",style:{\"--extracted-gdpscs\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:qvlS0kaOs,variants:{Cwam_fWt6:{\"--extracted-1w1cjl5\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},Z2LvwJhkx:{\"--extracted-1w1cjl5\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1kme4dn\",\"data-styles-preset\":\"GebJgV3sK\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"\u20AC0\"})})},sA6uGcZyx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1e0xi27\",\"data-styles-preset\":\"H7Fper_TV\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"\u20AC0\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1kme4dn\",\"data-styles-preset\":\"GebJgV3sK\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"\u20AC0\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182)))\"},children:\"Short Description Here\"})}),className:\"framer-1q5grnm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gcoCbzwlG\",style:{\"--extracted-r6o4lv\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\",\"--framer-paragraph-spacing\":\"0px\"},text:qI1pwLcJx,variants:{Cwam_fWt6:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"},sA6uGcZyx:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Short Description Here\"})})},sA6uGcZyx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Short Description Here\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182)))\"},children:\"Short Description Here\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7gb6q\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"u5dvZsAl2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14c89sl\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"CMPLEOq30\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a81fp\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oIcckhFGa\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376},sA6uGcZyx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})}),className:\"framer-6upz3d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QniQYYouf\",style:{\"--extracted-r6o4lv\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:wfyyU1pPO,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mb1o0q\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"Xtz8VQgeN\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9leu0z\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"igYoUX5Nk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376},sA6uGcZyx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})}),className:\"framer-1ykfuuq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aKIXxHJPJ\",style:{\"--extracted-r6o4lv\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:gK4OoZGS6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qvvtab\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"pIQVGpSan\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zh4ms1\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QMwA_NkRP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376},sA6uGcZyx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Light 01&quot;} */\"></path></svg>',svgContentId:10473000376}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-uk0in7\",\"data-styles-preset\":\"OuQDtOra2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})}),className:\"framer-1p0rl48\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IBx8pui4c\",style:{\"--extracted-r6o4lv\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:chqJbltuG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Cwam_fWt6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})},Z2LvwJhkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)))\"},children:\"Item Here\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-109tgy4\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"kUmXhNYsL\",style:{boxShadow:\"none\"},variants:{Cwam_fWt6:{boxShadow:\"0px 16px 24px 0px rgba(0, 0, 0, 0.04)\"},sA6uGcZyx:{boxShadow:\"0px 16px 24px 0px rgba(0, 0, 0, 0.04)\"},Z2LvwJhkx:{boxShadow:\"none\"}},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined},{href:convertFromBoolean(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined},{href:convertFromBoolean(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined},{href:convertFromBoolean(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+32+(((componentViewport?.height||420)-72-732)/2+604+72)+8,...addPropertyOverrides({Cwam_fWt6:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+24+591+8},sA6uGcZyx:{y:(componentViewport?.y||0)+32+674+8},Z2LvwJhkx:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+24+(((componentViewport?.height||363)-52-647)/2+531+60)+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dijnvf-container\",layoutDependency:layoutDependency,layoutId:\"HA0J_JkV5-container\",nodeId:\"HA0J_JkV5\",rendersWithMotion:true,scopeId:\"Ngha0Pyug\",children:/*#__PURE__*/_jsx(BtnHero,{height:\"100%\",hx5PFjvCK:\"12px\",id:\"HA0J_JkV5\",IyyVj7L5D:getLocalizedValue(\"v0\",activeLocale)??\"Get Started Today\",layoutId:\"HA0J_JkV5\",style:{width:\"100%\"},variant:\"hGESuJGfH\",width:\"100%\",wYqVjLUJE:resolvedLinks[0],YFSZU9dyl:true,ZTkcUyJvl:\"calendar\",...addPropertyOverrides({Cwam_fWt6:{variant:\"g1yfu6f1R\",wYqVjLUJE:resolvedLinks[3]},sA6uGcZyx:{variant:\"g1yfu6f1R\",wYqVjLUJE:resolvedLinks[1]},Z2LvwJhkx:{wYqVjLUJE:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0KOlI.framer-oyhdfm, .framer-0KOlI .framer-oyhdfm { display: block; }\",\".framer-0KOlI.framer-19d9eej { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 32px 40px 32px; position: relative; width: 520px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0KOlI .framer-4ugad8 { 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: 100%; }\",\".framer-0KOlI .framer-dstout, .framer-0KOlI .framer-1ndskk1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0KOlI .framer-h49clw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 3px 0px 3px 0px; position: relative; width: 100%; }\",\".framer-0KOlI .framer-1q5grnm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0KOlI .framer-i7gb6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0KOlI .framer-14c89sl, .framer-0KOlI .framer-1mb1o0q, .framer-0KOlI .framer-qvvtab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0KOlI .framer-a81fp, .framer-0KOlI .framer-9leu0z, .framer-0KOlI .framer-zh4ms1 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-0KOlI .framer-6upz3d, .framer-0KOlI .framer-1ykfuuq, .framer-0KOlI .framer-1p0rl48 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0KOlI .framer-109tgy4 { 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: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-0KOlI .framer-1dijnvf-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0KOlI.framer-19d9eej, .framer-0KOlI .framer-4ugad8, .framer-0KOlI .framer-h49clw, .framer-0KOlI .framer-i7gb6q, .framer-0KOlI .framer-14c89sl, .framer-0KOlI .framer-1mb1o0q, .framer-0KOlI .framer-qvvtab, .framer-0KOlI .framer-109tgy4 { gap: 0px; } .framer-0KOlI.framer-19d9eej > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0KOlI.framer-19d9eej > :first-child, .framer-0KOlI .framer-h49clw > :first-child, .framer-0KOlI .framer-i7gb6q > :first-child { margin-top: 0px; } .framer-0KOlI.framer-19d9eej > :last-child, .framer-0KOlI .framer-h49clw > :last-child, .framer-0KOlI .framer-i7gb6q > :last-child { margin-bottom: 0px; } .framer-0KOlI .framer-4ugad8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0KOlI .framer-4ugad8 > :first-child, .framer-0KOlI .framer-14c89sl > :first-child, .framer-0KOlI .framer-1mb1o0q > :first-child, .framer-0KOlI .framer-qvvtab > :first-child, .framer-0KOlI .framer-109tgy4 > :first-child { margin-left: 0px; } .framer-0KOlI .framer-4ugad8 > :last-child, .framer-0KOlI .framer-14c89sl > :last-child, .framer-0KOlI .framer-1mb1o0q > :last-child, .framer-0KOlI .framer-qvvtab > :last-child, .framer-0KOlI .framer-109tgy4 > :last-child { margin-right: 0px; } .framer-0KOlI .framer-h49clw > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-0KOlI .framer-i7gb6q > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-0KOlI .framer-14c89sl > *, .framer-0KOlI .framer-1mb1o0q > *, .framer-0KOlI .framer-qvvtab > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-0KOlI .framer-109tgy4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-0KOlI.framer-v-ktq5ur.framer-19d9eej { height: 420px; justify-content: flex-start; overflow: visible; padding: 32px 32px 52px 32px; will-change: unset; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-4ugad8 { order: 0; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-h49clw { order: 1; padding: 0px; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-1ndskk1 { height: 64px; order: 0; z-index: 1; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-1q5grnm { order: 1; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-i7gb6q { order: 2; }\",\".framer-0KOlI.framer-v-ktq5ur .framer-109tgy4 { order: 3; }\",\".framer-0KOlI.framer-v-1gekaft.framer-19d9eej { gap: 20px; padding: 24px 24px 28px 24px; width: 358px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0KOlI.framer-v-1gekaft.framer-19d9eej { gap: 0px; } .framer-0KOlI.framer-v-1gekaft.framer-19d9eej > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0KOlI.framer-v-1gekaft.framer-19d9eej > :first-child { margin-top: 0px; } .framer-0KOlI.framer-v-1gekaft.framer-19d9eej > :last-child { margin-bottom: 0px; } }\",\".framer-0KOlI.framer-v-1ey8e9r.framer-19d9eej { gap: 20px; justify-content: flex-start; overflow: visible; padding: 24px 24px 28px 24px; width: 358px; will-change: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0KOlI.framer-v-1ey8e9r.framer-19d9eej { gap: 0px; } .framer-0KOlI.framer-v-1ey8e9r.framer-19d9eej > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0KOlI.framer-v-1ey8e9r.framer-19d9eej > :first-child { margin-top: 0px; } .framer-0KOlI.framer-v-1ey8e9r.framer-19d9eej > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-0KOlI[data-border=\"true\"]::after, .framer-0KOlI [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 420\n * @framerIntrinsicWidth 520\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sA6uGcZyx\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z2LvwJhkx\":{\"layout\":[\"fixed\",\"auto\"]},\"Cwam_fWt6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UlRHXnNgu\":\"title\",\"qvlS0kaOs\":\"price\",\"qI1pwLcJx\":\"shortDescription\",\"wfyyU1pPO\":\"item1\",\"gK4OoZGS6\":\"item2\",\"chqJbltuG\":\"item4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNgha0Pyug=withCSS(Component,css,\"framer-0KOlI\");export default FramerNgha0Pyug;FramerNgha0Pyug.displayName=\"Pricing/Card\";FramerNgha0Pyug.defaultProps={height:420,width:520};addPropertyControls(FramerNgha0Pyug,{variant:{options:[\"YTX_gGPiH\",\"sA6uGcZyx\",\"Z2LvwJhkx\",\"Cwam_fWt6\"],optionTitles:[\"Desktop Default\",\"Desktop Recommended\",\"Mobile Default\",\"Mobile Recommended\"],title:\"Variant\",type:ControlType.Enum},UlRHXnNgu:{defaultValue:\"Title Here\",displayTextArea:false,title:\"Title\",type:ControlType.String},qvlS0kaOs:{defaultValue:\"\u20AC0\",displayTextArea:false,title:\"Price\",type:ControlType.String},qI1pwLcJx:{defaultValue:\"Short Description Here\",displayTextArea:false,title:\"Short Description\",type:ControlType.String},wfyyU1pPO:{defaultValue:\"Item Here\",displayTextArea:false,title:\"Item 1\",type:ControlType.String},gK4OoZGS6:{defaultValue:\"Item Here\",title:\"Item 2\",type:ControlType.String},chqJbltuG:{defaultValue:\"Item Here\",title:\"Item 4\",type:ControlType.String}});addFonts(FramerNgha0Pyug,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...BtnHeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNgha0Pyug\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UlRHXnNgu\\\":\\\"title\\\",\\\"qvlS0kaOs\\\":\\\"price\\\",\\\"qI1pwLcJx\\\":\\\"shortDescription\\\",\\\"wfyyU1pPO\\\":\\\"item1\\\",\\\"gK4OoZGS6\\\":\\\"item2\\\",\\\"chqJbltuG\\\":\\\"item4\\\"}\",\"framerIntrinsicWidth\":\"520\",\"framerIntrinsicHeight\":\"420\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sA6uGcZyx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z2LvwJhkx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cwam_fWt6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export function AutoSelectLanguage(){useEffect(()=>{const updateSelection=()=>{// Select the correct dropdown using the \"name\" attribute\nconst selectElements=document.querySelectorAll(\"select.framer-form-input\");selectElements.forEach(selectElement=>{// Type casting to HTMLSelectElement to access 'value'\nconst select=selectElement;const name=select.getAttribute(\"name\");if(name===\"language\"){// Check the current URL to decide the language\nconst currentURL=window.location.href;if(currentURL.includes(\"/es/\")){select.value=\"spanish-agent\"// Select Spanish\n;}else{select.value=\"english-agent\"// Select English\n;}// Uncomment below to use the lang version instead of URL check\n// const lang = document.documentElement.lang || navigator.language\n// if (lang.startsWith(\"es\")) {\n//     select.value = \"spanish-agent\" // Select Spanish based on lang\n// } else {\n//     select.value = \"english-agent\" // Select English based on lang\n// }\n// Trigger change event for Framer reactivity\nselect.dispatchEvent(new Event(\"change\",{bubbles:true}));}});};setTimeout(updateSelection,500)// Delay to ensure Framer renders the dropdowns\n;},[]);return{};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withAutoSelectLanguage(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AutoSelectLanguage(props)});};}withAutoSelectLanguage.displayName=\"AutoSelectLanguage\";\nexport const __FramerMetadata__ = {\"exports\":{\"withAutoSelectLanguage\":{\"type\":\"reactHoc\",\"name\":\"withAutoSelectLanguage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"AutoSelectLanguage\":{\"type\":\"override\",\"name\":\"AutoSelectLanguage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AIAgentLanguage.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";function hideElement(target){target.style.visibility=\"hidden\";target.style.position=\"absolute\";target.style.pointerEvents=\"none\";target.style.opacity=\"0\";target.style.height=\"0\";target.style.overflow=\"hidden\";}function showElement(target){target.style.visibility=\"visible\";target.style.position=\"relative\";target.style.pointerEvents=\"auto\";target.style.opacity=\"1\";target.style.height=\"auto\"// \u2190 added for your request\n;target.style.overflow=\"visible\";}export function AIAgentEN(){useEffect(()=>{const target=document.querySelector('[data-framer-name=\"Items - EN\"]');const currentURL=window.location.pathname;if(target){if(currentURL.includes(\"/es/\")){hideElement(target);}else{showElement(target);}}},[]);return{};}export function AIAgentES(){useEffect(()=>{const interval=setInterval(()=>{const target=document.querySelector('[data-framer-name=\"Items - ES\"]');const currentURL=window.location.pathname;if(target){const isSpanish=currentURL.includes(\"/es/\");isSpanish?showElement(target):hideElement(target);clearInterval(interval);}},100);return()=>clearInterval(interval);},[]);return{};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withAIAgentEN(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AIAgentEN(props)});};}withAIAgentEN.displayName=\"AIAgentEN\";export function withAIAgentES(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...AIAgentES(props)});};}withAIAgentES.displayName=\"AIAgentES\";\nexport const __FramerMetadata__ = {\"exports\":{\"AIAgentEN\":{\"type\":\"override\",\"name\":\"AIAgentEN\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"AIAgentES\":{\"type\":\"override\",\"name\":\"AIAgentES\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAIAgentES\":{\"type\":\"reactHoc\",\"name\":\"withAIAgentES\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withAIAgentEN\":{\"type\":\"reactHoc\",\"name\":\"withAIAgentEN\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AIAgentVoice.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame}from\"framer\";export function LocaleComponent(){const[locale,setLocale]=React.useState(\"en\");React.useEffect(()=>{const clientLocale=navigator.language||navigator.userLanguage||\"en\";setLocale(clientLocale);},[]);return /*#__PURE__*/_jsx(Frame,{background:\"none\",center:true,children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Detected Locale: \",locale]})});}\nexport const __FramerMetadata__ = {\"exports\":{\"LocaleComponent\":{\"type\":\"reactComponent\",\"name\":\"LocaleComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleComponent.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect}from\"react\";export function ScrollToHashAndCleanURL(){useEffect(()=>{const hash=window.location.hash.slice(1);const validTargets=[\"start\",\"consultation\",\"examples\",\"call-ai\"];if(validTargets.includes(hash)){const el=document.getElementById(hash);if(el){// Clean the URL before scrolling to reduce flicker\nwindow.history.replaceState(null,\"\",`/${hash}`);// Slight delay to ensure DOM is ready before scrolling\nsetTimeout(()=>{el.scrollIntoView({behavior:\"smooth\"});},100);}}},[]);return{};}import{useContext as __legacyOverrideHOC_useContext}from\"react\";import{DataObserverContext as __legacyOverrideHOC_DataObserverContext}from\"framer\";export function withScrollToHashAndCleanURL(C){return props=>{__legacyOverrideHOC_useContext(__legacyOverrideHOC_DataObserverContext);return _jsx(C,{...props,...ScrollToHashAndCleanURL(props)});};}withScrollToHashAndCleanURL.displayName=\"ScrollToHashAndCleanURL\";\nexport const __FramerMetadata__ = {\"exports\":{\"withScrollToHashAndCleanURL\":{\"type\":\"reactHoc\",\"name\":\"withScrollToHashAndCleanURL\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ScrollToHashAndCleanURL\":{\"type\":\"override\",\"name\":\"ScrollToHashAndCleanURL\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrolltoHashAndCleanURL.map", "// Generated by Framer (0afc761)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={yIRd9YXY4:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js\";import Button from\"#framer/local/canvasComponent/ai8_eCbtb/ai8_eCbtb.js\";import HeaderMobile from\"#framer/local/canvasComponent/EATHTe04r/EATHTe04r.js\";import BtnHero from\"#framer/local/canvasComponent/gNLgqu4Za/gNLgqu4Za.js\";import FAQsDesktop from\"#framer/local/canvasComponent/GPqtBlhuP/GPqtBlhuP.js\";import AIVoiceAssistantCard from\"#framer/local/canvasComponent/Ki2eX48Dq/Ki2eX48Dq.js\";import HeaderTablet from\"#framer/local/canvasComponent/KNGKUvtt5/KNGKUvtt5.js\";import PricingCard from\"#framer/local/canvasComponent/Ngha0Pyug/Ngha0Pyug.js\";import FAQsMobile from\"#framer/local/canvasComponent/oa9qTSzq4/oa9qTSzq4.js\";import LineDivider from\"#framer/local/canvasComponent/qdskGjTS4/qdskGjTS4.js\";import HeaderDesktop from\"#framer/local/canvasComponent/siegIULqh/siegIULqh.js\";import FooterFooter from\"#framer/local/canvasComponent/WBs6Mk0xk/WBs6Mk0xk.js\";import{withAutoSelectLanguage}from\"#framer/local/codeFile/pu7uXTV/AIAgentLanguage.js\";import{withAIAgentEN,withAIAgentES}from\"#framer/local/codeFile/lK_NhuF/AIAgentVoice.js\";import{LocaleComponent}from\"#framer/local/codeFile/CVlzk5T/LocaleComponent.js\";import{withScrollToHashAndCleanURL}from\"#framer/local/codeFile/lZ2L43J/ScrolltoHashAndCleanURL.js\";import*as sharedStyle1 from\"#framer/local/css/PmFp_Rzqu/PmFp_Rzqu.js\";import*as sharedStyle from\"#framer/local/css/Q9tdI_jrF/Q9tdI_jrF.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const HeaderDesktopFonts=getFonts(HeaderDesktop);const HeaderDesktopWithVariantAppearEffect=withVariantAppearEffect(HeaderDesktop);const LocaleComponentFonts=getFonts(LocaleComponent);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const LineDividerFonts=getFonts(LineDivider);const RichTextWithFX=withFX(RichText);const BtnHeroFonts=getFonts(BtnHero);const MotionDivWithFX=withFX(motion.div);const AIVoiceAssistantCardFonts=getFonts(AIVoiceAssistantCard);const MotionDivWithAIAgentEN1cn5zdn=withCodeBoundaryForOverrides(motion.div,{nodeId:\"FK7BmAvju\",override:withAIAgentEN,scopeId:\"augiA20Il\"});const MotionDivWithAIAgentEStf0faa=withCodeBoundaryForOverrides(motion.div,{nodeId:\"kBV0DvekC\",override:withAIAgentES,scopeId:\"augiA20Il\"});const ButtonFonts=getFonts(Button);const FormSelectWithAutoSelectLanguage2tze3p=withCodeBoundaryForOverrides(FormSelect,{nodeId:\"YreHclpz8\",override:withAutoSelectLanguage,scopeId:\"augiA20Il\"});const FormContainerWithFX=withFX(FormContainer);const PricingCardFonts=getFonts(PricingCard);const ContainerWithFX=withFX(Container);const EmbedFonts=getFonts(Embed);const FAQsDesktopFonts=getFonts(FAQsDesktop);const FAQsMobileFonts=getFonts(FAQsMobile);const FooterFooterFonts=getFonts(FooterFooter);const HeaderTabletFonts=getFonts(HeaderTablet);const HeaderTabletWithVariantAppearEffect=withVariantAppearEffect(HeaderTablet);const HeaderMobileFonts=getFonts(HeaderMobile);const HeaderMobileWithVariantAppearEffect=withVariantAppearEffect(HeaderMobile);const MotionDivWithScrollToHashAndCleanURL72rtr7=withCodeBoundaryForOverrides(motion.div,{nodeId:\"WQLkyLRf1\",override:withScrollToHashAndCleanURL,scopeId:\"augiA20Il\"});const breakpoints={crGXJtEJk:\"(max-width: 809px)\",gBNt_gqu7:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-c6YRl\";const variantClassNames={crGXJtEJk:\"framer-v-11nlz57\",gBNt_gqu7:\"framer-v-1iuqy3\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"crGXJtEJk\",Tablet:\"gBNt_gqu7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"gBNt_gqu7\",\"crGXJtEJk\"].includes(baseVariant))return false;return true;};const ref1=React.useRef(null);const elementId=useRouteElementId(\"kKxV4Ws22\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"giKafxgad\");usePreloadLocalizedValues(activeLocale);const elementId2=useRouteElementId(\"yShimmjh6\");const ref3=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"UYNo5ooZp\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"PTXl0n6UO\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"HHVrzFUdu\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"PyfSTaK4p\");const ref7=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"crGXJtEJk\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"gBNt_gqu7\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, rgb(23, 27, 30)); }\"}),/*#__PURE__*/_jsxs(MotionDivWithScrollToHashAndCleanURL72rtr7,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-epqne3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ATzAc9bRq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ATzAc9bRq\",intensity:16,layoutId:\"ATzAc9bRq\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dfbvgw-container hidden-1iuqy3 hidden-11nlz57\",\"data-framer-name\":\"Blur Header\",id:\"1dfbvgw\",layoutScroll:true,name:\"Blur Header\",nodeId:\"eUks4yweJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderDesktopWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"dlO5YcdXB\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"eUks4yweJ\",layoutId:\"eUks4yweJ\",name:\"Blur Header\",style:{height:\"100%\",width:\"100%\"},variant:\"dj_NDIT0K\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eqp7sx\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wr3m69\",\"data-framer-name\":\"Top\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dzkyfm-container\",isAuthoredByUser:true,nodeId:\"Ipw_Oaazk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LocaleComponent,{height:\"100%\",id:\"Ipw_Oaazk\",layoutId:\"Ipw_Oaazk\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p2ae5u\",\"data-framer-name\":\"Hero Section\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-2cckid\",\"data-framer-appear-id\":\"2cckid\",\"data-framer-name\":\"Hero Text\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13w01er\",\"data-framer-name\":\"Main Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 50% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Generate More Leads\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 50% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Generate More Leads\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 50% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Generate More Leads\"})})}),className:\"framer-1ajkxxa\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-semibold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, var(--token-c42cd5e8-3635-4f27-9770-4979c8f5ba28, rgb(0, 102, 255)) 0%, var(--token-58504713-a694-47c5-8736-53234cb14500, rgb(60, 231, 252)) 100%)\"},children:\"With AI-Powered Agents!\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, var(--token-c42cd5e8-3635-4f27-9770-4979c8f5ba28, rgb(0, 102, 255)) 0%, var(--token-58504713-a694-47c5-8736-53234cb14500, rgb(60, 231, 252)) 100%)\"},children:\"With AI-Powered Agents!\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLXNlbWlib2xk\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, var(--token-c42cd5e8-3635-4f27-9770-4979c8f5ba28, rgb(0, 102, 255)) 0%, var(--token-58504713-a694-47c5-8736-53234cb14500, rgb(60, 231, 252)) 100%)\"},children:\"With AI-Powered Agents!\"})})}),className:\"framer-1nsrvle\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-semibold\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"Save and Optimize Your Business\u2014Start Today!\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"Save and Optimize Your Business\u2014Start Today!\"})}),className:\"framer-1t4i3b4\",\"data-framer-name\":\"Subtext\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xwy7uq\",\"data-framer-appear-id\":\"1xwy7uq\",\"data-framer-name\":\"Hero Video\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vlkbd1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UauYCIcDK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"UauYCIcDK\",isMixedBorderRadius:false,isRed:false,layoutId:\"UauYCIcDK\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:getLocalizedValue(\"v8\",activeLocale)??\"https://youtu.be/Hh9Q1AHnIAU\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+546.125},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+701.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+0+864,children:/*#__PURE__*/_jsx(Container,{className:\"framer-riine-container\",nodeId:\"KaQJjcHX4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineDivider,{height:\"100%\",id:\"KaQJjcHX4\",layoutId:\"KaQJjcHX4\",style:{width:\"100%\"},variant:\"p19UShFxr\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1207rv4\",\"data-framer-name\":\"Title\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Discover the Most Innovative AI-Powered Lead Generation!\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Discover the Most Innovative AI-Powered Lead Generation!\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Discover the Most Innovative AI-Powered Lead Generation!\"})})}),className:\"framer-20hnom\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"We help businesses optimize their lead generation systems with AI. Effortlessly capture, qualify, and nurture leads so your team can focus on closing deals.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"We help businesses optimize their lead generation systems with AI. Effortlessly capture, qualify, and nurture leads so your team can focus on closing deals.\"})}),className:\"framer-1ic1ug7\",\"data-framer-name\":\"Subtext\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-75m9bg\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Q2JeZbbNz\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Q2JeZbbNz\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Q2JeZbbNz\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+595.125+0+188+8},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+750.65+0+262+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+200+0+913+0+262+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pkbd5r-container\",nodeId:\"z3OyDQ1Oq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{wYqVjLUJE:resolvedLinks[2]},gBNt_gqu7:{wYqVjLUJE:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BtnHero,{height:\"100%\",hx5PFjvCK:\"1000px\",id:\"z3OyDQ1Oq\",IyyVj7L5D:getLocalizedValue(\"v14\",activeLocale)??\"Book Your Free Consultation\",layoutId:\"z3OyDQ1Oq\",variant:\"hGESuJGfH\",width:\"100%\",wYqVjLUJE:resolvedLinks[0],YFSZU9dyl:true,ZTkcUyJvl:\"calendar\"})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4y1dl9\",\"data-framer-name\":\"Why Us\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nsf7wi\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s3a1nt\",\"data-framer-name\":\"Table\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ryovpb\",\"data-border\":true,\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yomu9a\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zzu969\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"24/7 Coverage \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"24/7 Coverage \"})}),className:\"framer-1f2w1ya\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-va2fuf\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-828k4i\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Affordable Prices\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Affordable Prices\"})}),className:\"framer-t9tp2y\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6nzvme\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kjfnzp\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Persistent Follow-Ups\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Persistent Follow-Ups\"})}),className:\"framer-1m0x42d\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v1hbfc\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ig4tbx\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Higher Lead Conversions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Higher Lead Conversions\"})}),className:\"framer-142munf\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cttxe2\",\"data-border\":true,\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5b1ra3\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e81p16\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Instant Lead Response\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Instant Lead Response\"})}),className:\"framer-jgnoav\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-afd4pp\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10obmtv\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Automated Follow-Ups\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Automated Follow-Ups\"})}),className:\"framer-1iuh2mc\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zyq9q4\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17nntbb\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Instant Lead Engagement \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Instant Lead Engagement \"})}),className:\"framer-112uxst\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109mz26\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jh349o\",\"data-framer-name\":\"Check\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.958 15 L 3.208 10.25 L 4.396 9.063 L 7.958 12.625 L 15.604 4.979 L 16.792 6.167 Z\" fill=\"var(--token-110d9abc-d288-4745-b5cb-faf9692fe6fa, rgb(58, 166, 86)) /* {&quot;name&quot;:&quot;Success&quot;} */\"></path></svg>',svgContentId:12607455111,withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Pre-Appointment Confirmation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1x5t40d\",\"data-styles-preset\":\"PmFp_Rzqu\",style:{\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Pre-Appointment Confirmation\"})}),className:\"framer-5qdy0i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+2023.125},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+2460.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+0+1979,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5vzq15-container\",nodeId:\"N_2SEzDlr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineDivider,{height:\"100%\",id:\"N_2SEzDlr\",layoutId:\"N_2SEzDlr\",style:{width:\"100%\"},variant:\"KzfC6LDzh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bh6pb6\",\"data-framer-name\":\"AI Voice Assistant\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(MotionDivWithAIAgentEN1cn5zdn,{className:\"framer-1cn5zdn\",\"data-framer-name\":\"Items - EN\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"358px\",y:(componentViewport?.y||0)+0+200+0+2072.125+28+0+0+0},gBNt_gqu7:{width:`calc(${componentViewport?.width||\"100vw\"} - 144px)`,y:(componentViewport?.y||0)+0+200+0+2509.65+28+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:\"1216px\",y:(componentViewport?.y||0)+0+200+0+2028+28+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x3s3av-container\",nodeId:\"N2j0F1hoD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"ED8F8UD4I\"}},children:/*#__PURE__*/_jsx(AIVoiceAssistantCard,{arEODMol3:getLocalizedValue(\"v31\",activeLocale)??\"AI Appointment Coordinator\",height:\"100%\",Hpwivmn92:\"TGXRuHAec\",ICTPMVye_:\"https://framerusercontent.com/assets/sug0zBL4GHPQ2dIRHCzynUT9g.mp3\",id:\"N2j0F1hoD\",layoutId:\"N2j0F1hoD\",style:{width:\"100%\"},variant:\"a7HNi5dGV\",vrMd0cHfd:getLocalizedValue(\"v32\",activeLocale)??\"Our AI agent, Isabella, actively interacts with leads, assesses their needs, and effectively directs them to schedule appointments in a professional manner.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"358px\",y:(componentViewport?.y||0)+0+200+0+2072.125+28+0+0+262},gBNt_gqu7:{width:`calc(${componentViewport?.width||\"100vw\"} - 144px)`,y:(componentViewport?.y||0)+0+200+0+2509.65+28+0+0+262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:\"1216px\",y:(componentViewport?.y||0)+0+200+0+2028+28+0+0+262,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a1ycfy-container\",nodeId:\"AtX1RfLVL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"ED8F8UD4I\"}},children:/*#__PURE__*/_jsx(AIVoiceAssistantCard,{arEODMol3:getLocalizedValue(\"v33\",activeLocale)??\"AI Appointment Confirmation\",height:\"100%\",Hpwivmn92:\"vI1SQZl3o\",ICTPMVye_:\"https://framerusercontent.com/assets/W91P9ALvchE3BwrDFaqumf5HmY.wav\",id:\"AtX1RfLVL\",layoutId:\"AtX1RfLVL\",style:{width:\"100%\"},variant:\"a7HNi5dGV\",vrMd0cHfd:getLocalizedValue(\"v34\",activeLocale)??\"Our AI agent, Anthony, places follow-up calls one hour prior to scheduled appointments to confirm client attendance. This reduces no-shows and enhances lead conversions.\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithAIAgentEStf0faa,{className:\"framer-tf0faa\",\"data-framer-name\":\"Items - ES\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"358px\",y:(componentViewport?.y||0)+0+200+0+2072.125+28+540+0+-245.5},gBNt_gqu7:{width:`calc(${componentViewport?.width||\"100vw\"} - 144px)`,y:(componentViewport?.y||0)+0+200+0+2509.65+28+492+0+-245.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:\"1216px\",y:(componentViewport?.y||0)+0+200+0+2028+28+492+0+-245.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cs9nfp-container\",nodeId:\"ECYvpWXEc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"ED8F8UD4I\"}},children:/*#__PURE__*/_jsx(AIVoiceAssistantCard,{arEODMol3:getLocalizedValue(\"v35\",activeLocale)??\"Coordinador de Citas de IA\",height:\"100%\",Hpwivmn92:\"TGXRuHAec\",ICTPMVye_:\"https://framerusercontent.com/assets/rp8nthAZPJ5opO059y9Q2pkGgow.mp3\",id:\"ECYvpWXEc\",layoutId:\"ECYvpWXEc\",style:{width:\"100%\"},variant:\"a7HNi5dGV\",vrMd0cHfd:getLocalizedValue(\"v36\",activeLocale)??\"Nuestra agente de IA, Isabella, interact\\xfaa activamente con los clientes potenciales, eval\\xfaa sus necesidades y los dirige de manera efectiva a programar citas de manera profesional.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"358px\",y:(componentViewport?.y||0)+0+200+0+2072.125+28+540+0+16.5},gBNt_gqu7:{width:`calc(${componentViewport?.width||\"100vw\"} - 144px)`,y:(componentViewport?.y||0)+0+200+0+2509.65+28+492+0+16.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:\"1216px\",y:(componentViewport?.y||0)+0+200+0+2028+28+492+0+16.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10e2340-container\",nodeId:\"Nq4Vgz2dY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"ED8F8UD4I\"}},children:/*#__PURE__*/_jsx(AIVoiceAssistantCard,{arEODMol3:getLocalizedValue(\"v37\",activeLocale)??\"Confirmaci\\xf3n de Cita de IA\",height:\"100%\",Hpwivmn92:\"t95oD26sk\",ICTPMVye_:\"https://framerusercontent.com/assets/T5RJf6jLAdgt1rA1dJxUS3AKHU.mp3\",id:\"Nq4Vgz2dY\",layoutId:\"Nq4Vgz2dY\",style:{width:\"100%\"},variant:\"a7HNi5dGV\",vrMd0cHfd:getLocalizedValue(\"v38\",activeLocale)??\"Nuestro agente de IA, Isabella, realiza llamadas de seguimiento una hora antes de las citas programadas para confirmar la asistencia del cliente. Esto reduce las ausencias y mejora las conversiones de clientes potenciales.\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+2673.125},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+3874.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+0+2581,children:/*#__PURE__*/_jsx(Container,{className:\"framer-grnsej-container\",nodeId:\"z8M_OuulH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineDivider,{height:\"100%\",id:\"z8M_OuulH\",layoutId:\"z8M_OuulH\",style:{width:\"100%\"},variant:\"KzfC6LDzh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ncfqud\",\"data-framer-name\":\"Demo Call\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bhu6hq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Experience AI-powered Lead Generation Firsthand!\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Experience AI-powered Lead Generation Firsthand!\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Experience AI-powered Lead Generation Firsthand!\"})})}),className:\"framer-y6r74q\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y82byx\",\"data-framer-name\":\"Demo Items\",children:/*#__PURE__*/_jsx(FormContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,action:\"https://api.framer.com/forms/v1/forms/f9fc3253-0a35-4723-bb42-2663e5e6d311/submit\",className:\"framer-eydwdo\",nodeId:\"VEqJniEqq\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1foh0du\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1vpnzhf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"First Name\"})}),className:\"framer-emcrdz\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1htn9qb\",inputName:\"lead_first_name\",placeholder:getLocalizedValue(\"v43\",activeLocale)??\"John\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-jbi7pf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Last Name\"})}),className:\"framer-8ss1a\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-9m1drt\",inputName:\"lead_last_name\",placeholder:getLocalizedValue(\"v45\",activeLocale)??\"Doe\",required:true,type:\"text\"})]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1uj9ja9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Email Address\"})}),className:\"framer-9rs6p3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1uhivyk\",inputName:\"lead_email_address\",placeholder:getLocalizedValue(\"v47\",activeLocale)??\"john@example.com\",required:true,type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-17opdar\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"AI Agent\"})}),className:\"framer-jjw6fy\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{selectOptions:[{disabled:true,title:getLocalizedValue(\"v49\",activeLocale)??\"Select\u2026\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v54\",activeLocale)??\"Male\",type:\"option\",value:\"male\"},{title:getLocalizedValue(\"v53\",activeLocale)??\"Female\",type:\"option\",value:\"female\"}]},gBNt_gqu7:{selectOptions:[{disabled:true,title:getLocalizedValue(\"v49\",activeLocale)??\"Select\u2026\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v52\",activeLocale)??\"Male\",type:\"option\",value:\"male\"},{title:getLocalizedValue(\"v53\",activeLocale)??\"Female\",type:\"option\",value:\"female\"}]}},children:/*#__PURE__*/_jsx(FormSelect,{className:\"framer-13b6sjh\",defaultValue:\"\",inputName:\"ai_agent\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v49\",activeLocale)??\"Select\u2026\",type:\"option\",value:\"\"},{title:getLocalizedValue(\"v50\",activeLocale)??\"Male Agent\",type:\"option\",value:\"male\"},{title:getLocalizedValue(\"v51\",activeLocale)??\"Female Agent\",type:\"option\",value:\"female\"}]})})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-14bjxck\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Phone Number\"})}),className:\"framer-kjirac\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{placeholder:\"+34951234567\"},gBNt_gqu7:{placeholder:\"+34951234567\"}},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1gtjel5\",inputName:\"lead_phone_number\",placeholder:getLocalizedValue(\"v56\",activeLocale)??\"+34951234567\",required:true,type:\"tel\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Please enter the phone number including the country code and without spaces.\"})}),className:\"framer-1b4exk6\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"294px\",y:(componentViewport?.y||0)+0+200+0+2722.125+36+83+0+0+32+435.2},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+3111.65+36+100.8+0+0+32+467.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"528px\",y:(componentViewport?.y||0)+0+200+0+2630+36+101.8+0+32+467.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bv6c4u-container\",nodeId:\"IA93oQgrf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{D_f7sKIvf:getLocalizedValue(\"v58\",activeLocale)??\"Free Outbound Call Test\",height:\"100%\",id:\"IA93oQgrf\",layoutId:\"IA93oQgrf\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{incomplete:\"xRoOasFXu\",pending:\"ZVvt9Z7F6\",success:\"PSkZsQD2f\"},\"ZLsOcUbAo\"),width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-199e8ek\",\"data-framer-name\":\"Hidden Form\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-18ra8u\",\"data-framer-name\":\"Form Source\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"Form Source\"})}),className:\"framer-2nfkyo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{required:false}},children:/*#__PURE__*/_jsx(FormSelect,{className:\"framer-zk8rsw\",inputName:\"lead_form_source\",required:true,selectOptions:[{title:getLocalizedValue(\"v60\",activeLocale)??\"Website\",type:\"option\",value:\"website\"}]})})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-p1bjhp\",\"data-framer-name\":\"Language\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:\"AI Langauge\"})}),className:\"framer-3hiqk8\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelectWithAutoSelectLanguage2tze3p,{className:\"framer-2tze3p\",inputName:\"language\",required:false,selectOptions:[{title:getLocalizedValue(\"v62\",activeLocale)??\"English Agent\",type:\"option\",value:\"english-agent\"},{title:getLocalizedValue(\"v63\",activeLocale)??\"Spanish Agent\",type:\"option\",value:\"spanish-agent\"}]})]})]})]})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+4430.325},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+3062.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+0+3375,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iel5cj-container\",id:elementId5,nodeId:\"HHVrzFUdu\",ref:ref6,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineDivider,{height:\"100%\",id:\"HHVrzFUdu\",layoutId:\"HHVrzFUdu\",style:{width:\"100%\"},variant:\"KzfC6LDzh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u3tf73\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c0ee7t\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Transparent Prices\u2014No Surprises, Just Benefits!\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Transparent Prices\u2014No Surprises, Just Benefits!\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Transparent Prices\u2014No Surprises, Just Benefits!\"})})}),className:\"framer-b5jdnc\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10elbzp\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:\"358px\",y:(componentViewport?.y||0)+0+200+0+3458.325+32+67+0+-19.5},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+3923.65+32+132.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:\"520px\",y:(componentViewport?.y||0)+0+200+0+3424+32+108.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qwk6vo-container\",nodeId:\"eqBElu_p8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"Z2LvwJhkx\"}},children:/*#__PURE__*/_jsx(PricingCard,{chqJbltuG:getLocalizedValue(\"v72\",activeLocale)??\"Official launch and ongoing support\",gK4OoZGS6:getLocalizedValue(\"v71\",activeLocale)??\"Customized lead-flow creation\",height:\"100%\",id:\"eqBElu_p8\",layoutId:\"eqBElu_p8\",qI1pwLcJx:getLocalizedValue(\"v69\",activeLocale)??\"Setup Fee \u2014 All Inclusive\",qvlS0kaOs:getLocalizedValue(\"v68\",activeLocale)??\"$3,000\",style:{width:\"100%\"},UlRHXnNgu:getLocalizedValue(\"v67\",activeLocale)??\"Initial Setup Cost\",variant:\"YTX_gGPiH\",wfyyU1pPO:getLocalizedValue(\"v70\",activeLocale)??\"Voice selection and testing\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{height:420,width:\"358px\",y:(componentViewport?.y||0)+0+200+0+3458.325+32+67+0+432.5},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+3923.65+32+132.2+0+468}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:419,width:\"520px\",y:(componentViewport?.y||0)+0+200+0+3424+32+108.2+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mtgj1z-container\",nodeId:\"SqnrEgFJg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{style:{width:\"100%\"},variant:\"Cwam_fWt6\"}},children:/*#__PURE__*/_jsx(PricingCard,{chqJbltuG:getLocalizedValue(\"v78\",activeLocale)??\"1-hour prior appointment confirmation\",gK4OoZGS6:getLocalizedValue(\"v77\",activeLocale)??\"Up to 4 follow-ups if unanswered\",height:\"100%\",id:\"SqnrEgFJg\",layoutId:\"SqnrEgFJg\",qI1pwLcJx:getLocalizedValue(\"v75\",activeLocale)??\"Per-Lead Contacted\",qvlS0kaOs:getLocalizedValue(\"v74\",activeLocale)??\"$3.00\",style:{height:\"100%\",width:\"100%\"},UlRHXnNgu:getLocalizedValue(\"v73\",activeLocale)??\"Per-Lead Contact Cost\",variant:\"sA6uGcZyx\",wfyyU1pPO:getLocalizedValue(\"v76\",activeLocale)??\"First call within 5 minutes\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{y:(componentViewport?.y||0)+0+200+0+3409.325},gBNt_gqu7:{y:(componentViewport?.y||0)+0+200+0+5056.65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200+0+4060,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bzn798-container\",nodeId:\"Q2JeZbbNz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(LineDivider,{height:\"100%\",id:\"Q2JeZbbNz\",layoutId:\"Q2JeZbbNz\",style:{width:\"100%\"},variant:\"KzfC6LDzh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g74bhx\",\"data-framer-name\":\"Book a Call\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cvc0dh\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Reduce Your Response Time to Leads by 50%!\"})})})},gBNt_gqu7:{children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Reduce Your Response Time to Leads by 50%!\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:\"Reduce Your Response Time to Leads by 50%!\"})})}),className:\"framer-ce3hrz\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10fdeqf\",\"data-styles-preset\":\"Q9tdI_jrF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"Don't miss the opportunity\u2014Convert more leads with our solutions!\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ef500486-7730-478d-b7ba-c8baf7fbe1a7, rgb(170, 175, 182))\"},children:\"Don't miss the opportunity\u2014Convert more leads with our solutions!\"})}),className:\"framer-1l3itpy\",\"data-framer-name\":\"Subtext\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ydtzy7\",\"data-framer-name\":\"Calendar\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3eyc8k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DdSZw4lm4\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{style:{height:\"100%\",width:\"100%\"}},gBNt_gqu7:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v84\",activeLocale)??'<iframe src=\"https://client.888.studio/widget/booking/lidE5sFHoVUb8l2wkCJ9\" style=\"width: 100%;border:none;overflow: hidden;\" scrolling=\"no\" id=\"lidE5sFHoVUb8l2wkCJ9_1743589520191\"></iframe>\\n<script>\\n    var script = document.createElement(\"script\");\\n    script.src = \"https://client.888.studio/js/form_embed.js\";\\n    script.type = \"text/javascript\";\\n    document.body.appendChild(script);\\n</script>',id:\"DdSZw4lm4\",layoutId:\"DdSZw4lm4\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ug47ej\",\"data-framer-name\":\"FAQs Container\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-btjkmc\",\"data-border\":true,\"data-framer-name\":\"FAQs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sptvkx\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.sec.gov/edgar/searchedgar/edgarfulltextfaq.htm\",motionChild:true,nodeId:\"Y1h6qSi3L\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Frequently Asked Questions\"})})})})})},gBNt_gqu7:{children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.sec.gov/edgar/searchedgar/edgarfulltextfaq.htm\",motionChild:true,nodeId:\"Y1h6qSi3L\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Frequently Asked Questions\"})})})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7QXV0aG9yLW1lZGl1bQ==\",\"--framer-font-family\":'\"Author\", \"Author Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(69% 50% at 51.6% 50%, var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, rgb(255, 255, 255)) 0%, rgba(255, 255, 255, 0.7) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.sec.gov/edgar/searchedgar/edgarfulltextfaq.htm\",motionChild:true,nodeId:\"Y1h6qSi3L\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Frequently Asked Questions\"})})})})}),className:\"framer-zl32y4\",\"data-framer-name\":\"Text\",fonts:[\"FS;Author-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+595},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+104.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fjok76-container\",nodeId:\"peiTRNWQg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"peiTRNWQg\",layoutId:\"peiTRNWQg\",style:{width:\"100%\"},variant:\"IXS7wyOiX\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+809},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+353.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+235.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ov82cu-container\",nodeId:\"TgdWX2icE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"TgdWX2icE\",layoutId:\"TgdWX2icE\",style:{width:\"100%\"},variant:\"HVQ6JWl_D\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+702},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+222.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+366.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i29i7-container\",nodeId:\"QmCUFwM5P\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"QmCUFwM5P\",layoutId:\"QmCUFwM5P\",style:{width:\"100%\"},variant:\"CC_ilECbE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+1130},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+746.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+497.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ou5axk-container\",nodeId:\"CI9kbMzJJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"CI9kbMzJJ\",layoutId:\"CI9kbMzJJ\",style:{width:\"100%\"},variant:\"GcePnFQta\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+916},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+484.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+628.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ft87n6-container\",nodeId:\"nwZbeqbCW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"nwZbeqbCW\",layoutId:\"nwZbeqbCW\",style:{width:\"100%\"},variant:\"pJHTKj4qO\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nitgot hidden-72rtr7 hidden-1iuqy3\",\"data-framer-name\":\"Mobile Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fgfiol-container\",nodeId:\"o6T9eYfR5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"o6T9eYfR5\",layoutId:\"o6T9eYfR5\",style:{width:\"100%\"},variant:\"YXRiJAgMy\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+76}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4ojxzm-container\",nodeId:\"Xk6HMCPUM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"Xk6HMCPUM\",layoutId:\"Xk6HMCPUM\",style:{width:\"100%\"},variant:\"m7lKxufgf\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+152}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hbnnxz-container\",nodeId:\"sjlAAutLF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"sjlAAutLF\",layoutId:\"sjlAAutLF\",style:{width:\"100%\"},variant:\"WtIxnNBk8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+228}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-eyos4w-container\",nodeId:\"TunsuH6fx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"TunsuH6fx\",layoutId:\"TunsuH6fx\",style:{width:\"100%\"},variant:\"wJ783XCOT\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+304}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13lbpde-container\",nodeId:\"KOFeDH5p6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"KOFeDH5p6\",layoutId:\"KOFeDH5p6\",style:{width:\"100%\"},variant:\"ICa2POrZO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+380}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oauub8-container\",nodeId:\"PG3INrOtt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"PG3INrOtt\",layoutId:\"PG3INrOtt\",style:{width:\"100%\"},variant:\"z12x4k9ie\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+59+0+456}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wgsqhh-container\",nodeId:\"wx4tb1ddm\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsMobile,{height:\"100%\",id:\"wx4tb1ddm\",layoutId:\"wx4tb1ddm\",style:{width:\"100%\"},variant:\"f2Rvy4ZI6\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 32px, 1px) - 48px)`,y:(componentViewport?.y||0)+0+200+0+5335.325+48+32+1023},gBNt_gqu7:{width:\"558px\",y:(componentViewport?.y||0)+0+200+0+5910.45+64+52+615.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:83,width:\"1120px\",y:(componentViewport?.y||0)+0+200+0+5046.8+64+52+759.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r20e4a-container\",nodeId:\"dxGkAQZCW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQsDesktop,{height:\"100%\",id:\"dxGkAQZCW\",layoutId:\"dxGkAQZCW\",style:{width:\"100%\"},variant:\"iYNYeRofa\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7a4fpf\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+200+0+6676.325+0},gBNt_gqu7:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+200+0+6928.65+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:\"1440px\",y:(componentViewport?.y||0)+0+200+0+6078.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yajkkw-container\",nodeId:\"T4RovKRLf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{variant:\"sT7XCmwNh\"},gBNt_gqu7:{variant:\"zzxlJB4vq\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"T4RovKRLf\",layoutId:\"T4RovKRLf\",style:{width:\"100%\"},variant:\"KgIjnnFaQ\",width:\"100%\"})})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBNt_gqu7:{height:96,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1laneat-container hidden-72rtr7 hidden-11nlz57\",layoutScroll:true,nodeId:\"ngh4y4a64\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderTabletWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"NCmDs3ZJj\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ngh4y4a64\",layoutId:\"ngh4y4a64\",style:{height:\"100%\",width:\"100%\"},variant:\"XHBKFSVoz\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{crGXJtEJk:{height:64,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q1g7up-container hidden-72rtr7 hidden-1iuqy3\",\"data-framer-name\":\"Mobile/Header\",layoutScroll:true,name:\"Mobile/Header\",nodeId:\"WmTozOYPp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HeaderMobileWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"jMkBR3gWq\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"WmTozOYPp\",layoutId:\"WmTozOYPp\",name:\"Mobile/Header\",style:{width:\"100%\"},variant:\"KDRXku6UV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1phxmb9\",\"data-framer-name\":\"BG\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBNt_gqu7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-15kbgx7\",\"data-border\":true,\"data-framer-appear-id\":\"15kbgx7\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBNt_gqu7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-12ufe9h\",\"data-border\":true,\"data-framer-appear-id\":\"12ufe9h\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBNt_gqu7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ck8jia\",\"data-border\":true,\"data-framer-appear-id\":\"ck8jia\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gBNt_gqu7:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-12tgwep\",\"data-border\":true,\"data-framer-appear-id\":\"12tgwep\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ostilp\",\"data-border\":true,\"data-framer-appear-id\":\"1ostilp\",\"data-framer-name\":\"Circle\",initial:animation1,optimized:true,transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzw2yn\",\"data-framer-name\":\"Shadow\"})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c6YRl.framer-lux5qc, .framer-c6YRl .framer-lux5qc { display: block; }\",\".framer-c6YRl.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, #171b1e); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-c6YRl .framer-epqne3-container, .framer-c6YRl .framer-dzkyfm-container, .framer-c6YRl .framer-pkbd5r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-c6YRl .framer-1dfbvgw-container, .framer-c6YRl .framer-1laneat-container { flex: none; height: 96px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-c6YRl .framer-eqp7sx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-c6YRl .framer-1wr3m69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 86px; justify-content: center; overflow: hidden; padding: 64px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1p2ae5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 48px 112px 0px 112px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-2cckid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1072px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-13w01er { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1ajkxxa, .framer-c6YRl .framer-1nsrvle, .framer-c6YRl .framer-20hnom, .framer-c6YRl .framer-b5jdnc, .framer-c6YRl .framer-zl32y4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c6YRl .framer-1t4i3b4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-c6YRl .framer-1xwy7uq { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-vlkbd1-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); position: relative; width: 800px; }\",\".framer-c6YRl .framer-riine-container, .framer-c6YRl .framer-5vzq15-container, .framer-c6YRl .framer-grnsej-container, .framer-c6YRl .framer-1iel5cj-container, .framer-c6YRl .framer-1bzn798-container, .framer-c6YRl .framer-fjok76-container, .framer-c6YRl .framer-ov82cu-container, .framer-c6YRl .framer-i29i7-container, .framer-c6YRl .framer-1ou5axk-container, .framer-c6YRl .framer-1ft87n6-container, .framer-c6YRl .framer-1fgfiol-container, .framer-c6YRl .framer-4ojxzm-container, .framer-c6YRl .framer-1hbnnxz-container, .framer-c6YRl .framer-eyos4w-container, .framer-c6YRl .framer-13lbpde-container, .framer-c6YRl .framer-oauub8-container, .framer-c6YRl .framer-wgsqhh-container, .framer-c6YRl .framer-r20e4a-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1207rv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 128px; width: 100%; }\",\".framer-c6YRl .framer-1ic1ug7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1050px; word-break: break-word; word-wrap: break-word; }\",\".framer-c6YRl .framer-75m9bg { 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: hidden; padding: 8px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-4y1dl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-nsf7wi { --border-bottom-width: 2px; --border-color: rgba(43, 48, 55, 0.7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, #171b1e) 0%, rgba(43, 48, 55, 0.5) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 1072px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-s3a1nt { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-ryovpb, .framer-c6YRl .framer-1cttxe2 { --border-bottom-width: 1px; --border-color: var(--token-cdf52198-4efd-4d22-a378-2e47640f943b, #394049); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-yomu9a, .framer-c6YRl .framer-va2fuf, .framer-c6YRl .framer-6nzvme, .framer-c6YRl .framer-v1hbfc, .framer-c6YRl .framer-5b1ra3, .framer-c6YRl .framer-afd4pp, .framer-c6YRl .framer-zyq9q4, .framer-c6YRl .framer-109mz26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-zzu969, .framer-c6YRl .framer-828k4i, .framer-c6YRl .framer-kjfnzp, .framer-c6YRl .framer-ig4tbx, .framer-c6YRl .framer-1e81p16, .framer-c6YRl .framer-10obmtv, .framer-c6YRl .framer-17nntbb, .framer-c6YRl .framer-1jh349o { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-c6YRl .framer-1f2w1ya, .framer-c6YRl .framer-t9tp2y, .framer-c6YRl .framer-1m0x42d, .framer-c6YRl .framer-142munf, .framer-c6YRl .framer-jgnoav, .framer-c6YRl .framer-1iuh2mc, .framer-c6YRl .framer-112uxst, .framer-c6YRl .framer-5qdy0i { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-c6YRl .framer-1bh6pb6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 28px 112px 32px 112px; position: relative; scroll-margin-top: 128px; width: 100%; }\",\".framer-c6YRl .framer-1cn5zdn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-x3s3av-container, .framer-c6YRl .framer-1a1ycfy-container, .framer-c6YRl .framer-1cs9nfp-container, .framer-c6YRl .framer-10e2340-container { flex: none; height: auto; position: relative; width: 1216px; }\",\".framer-c6YRl .framer-tf0faa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; opacity: 0; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1ncfqud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: visible; padding: 36px 0px 35px 0px; position: relative; scroll-margin-top: 128px; width: 100%; }\",\".framer-c6YRl .framer-bhu6hq, .framer-c6YRl .framer-1cvc0dh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-y6r74q, .framer-c6YRl .framer-ce3hrz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1216px; word-break: break-word; word-wrap: break-word; }\",\".framer-c6YRl .framer-y82byx { align-content: center; align-items: center; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-eydwdo { align-content: flex-start; align-items: flex-start; background-color: #1c2024; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 32px 0px 32px; position: relative; width: 592px; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-1foh0du { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1vpnzhf, .framer-c6YRl .framer-jbi7pf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-c6YRl .framer-emcrdz, .framer-c6YRl .framer-8ss1a, .framer-c6YRl .framer-9rs6p3, .framer-c6YRl .framer-jjw6fy, .framer-c6YRl .framer-kjirac, .framer-c6YRl .framer-2nfkyo, .framer-c6YRl .framer-3hiqk8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-c6YRl .framer-1htn9qb, .framer-c6YRl .framer-9m1drt { --framer-input-background: rgba(204, 192, 192, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, #ffffff); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-c6YRl .framer-1uj9ja9, .framer-c6YRl .framer-17opdar, .framer-c6YRl .framer-14bjxck, .framer-c6YRl .framer-18ra8u, .framer-c6YRl .framer-p1bjhp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-c6YRl .framer-1uhivyk, .framer-c6YRl .framer-1gtjel5 { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-dd5f68c7-12bc-44b6-883c-68c081e51396, #ffffff); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-c6YRl .framer-13b6sjh, .framer-c6YRl .framer-zk8rsw, .framer-c6YRl .framer-2tze3p { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-c6YRl .framer-1b4exk6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c6YRl .framer-bv6c4u-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-199e8ek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; opacity: 0; overflow: hidden; padding: 0px; position: relative; width: 528px; }\",\".framer-c6YRl .framer-u3tf73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: 636px; justify-content: center; overflow: hidden; padding: 32px 112px 57px 112px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1c0ee7t, .framer-c6YRl .framer-sptvkx { 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-c6YRl .framer-10elbzp { display: grid; flex: none; gap: 32px; grid-auto-rows: 200px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, 200px); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1072px; }\",\".framer-c6YRl .framer-qwk6vo-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-c6YRl .framer-mtgj1z-container { align-self: start; flex: none; height: 419px; justify-self: start; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1g74bhx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 26px 0px 12px 0px; position: relative; scroll-margin-top: 128px; width: 100%; }\",\".framer-c6YRl .framer-1l3itpy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-c6YRl .framer-1ydtzy7 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 766px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-c6YRl .framer-3eyc8k-container { flex: none; height: auto; position: relative; width: 878px; }\",\".framer-c6YRl .framer-1ug47ej { align-content: center; align-items: center; background-color: var(--token-bfa5ee38-43b5-4426-a463-544ae1be7f7a, #1d2024); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-btjkmc { --border-bottom-width: 2px; --border-color: rgba(43, 48, 55, 0.7); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background: linear-gradient(180deg, rgba(29, 32, 36, 0) 0%, rgba(43, 48, 55, 0.5) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 52px 48px 49px 48px; position: relative; width: 1216px; }\",\".framer-c6YRl .framer-nitgot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-7a4fpf { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-bfa5ee38-43b5-4426-a463-544ae1be7f7a, #1d2024) 0%, var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, rgb(23, 27, 30)) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-c6YRl .framer-1yajkkw-container { flex: none; height: auto; position: relative; width: 1440px; }\",\".framer-c6YRl .framer-q1g7up-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-c6YRl .framer-1phxmb9 { background: linear-gradient(180deg, var(--token-bfa5ee38-43b5-4426-a463-544ae1be7f7a, #1d2024) 0%, var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, rgb(23, 27, 30)) 100%); flex: none; height: 1058px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-c6YRl .framer-15kbgx7 { --border-bottom-width: 1px; --border-color: var(--token-a8a251e7-6e75-4876-a7e3-8b2bf67fa4ba, #2b3037); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -1125px; box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 2250px); left: 50%; position: absolute; transform: translateX(-50%); width: 2250px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-12ufe9h { --border-bottom-width: 1px; --border-color: var(--token-a8a251e7-6e75-4876-a7e3-8b2bf67fa4ba, #2b3037); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -938px; box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 1875px); left: 50%; position: absolute; transform: translateX(-50%); width: 1875px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-ck8jia { --border-bottom-width: 1px; --border-color: var(--token-a8a251e7-6e75-4876-a7e3-8b2bf67fa4ba, #2b3037); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -750px; box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 1500px); left: 50%; position: absolute; transform: translateX(-50%); width: 1500px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-12tgwep { --border-bottom-width: 1px; --border-color: var(--token-a8a251e7-6e75-4876-a7e3-8b2bf67fa4ba, #2b3037); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -562px; box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 1125px); left: 50%; position: absolute; transform: translateX(-50%); width: 1125px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-1ostilp { --border-bottom-width: 1px; --border-color: var(--token-a8a251e7-6e75-4876-a7e3-8b2bf67fa4ba, #2b3037); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: -375px; box-shadow: 0px -16px 24px 0px rgba(0, 0, 0, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 750px); left: 50%; position: absolute; transform: translateX(-50%); width: 750px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-c6YRl .framer-1vzw2yn { background: linear-gradient(180deg, rgba(23, 27, 30, 0) 0%, var(--token-f39d6f52-995d-4304-8e9b-2e3afc34fb6a, rgb(23, 27, 30)) 100%); bottom: 0px; flex: none; height: 636px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c6YRl.framer-72rtr7, .framer-c6YRl .framer-eqp7sx, .framer-c6YRl .framer-1wr3m69, .framer-c6YRl .framer-1p2ae5u, .framer-c6YRl .framer-2cckid, .framer-c6YRl .framer-13w01er, .framer-c6YRl .framer-1xwy7uq, .framer-c6YRl .framer-1207rv4, .framer-c6YRl .framer-75m9bg, .framer-c6YRl .framer-4y1dl9, .framer-c6YRl .framer-nsf7wi, .framer-c6YRl .framer-s3a1nt, .framer-c6YRl .framer-ryovpb, .framer-c6YRl .framer-yomu9a, .framer-c6YRl .framer-va2fuf, .framer-c6YRl .framer-6nzvme, .framer-c6YRl .framer-v1hbfc, .framer-c6YRl .framer-1cttxe2, .framer-c6YRl .framer-5b1ra3, .framer-c6YRl .framer-afd4pp, .framer-c6YRl .framer-zyq9q4, .framer-c6YRl .framer-109mz26, .framer-c6YRl .framer-1bh6pb6, .framer-c6YRl .framer-1cn5zdn, .framer-c6YRl .framer-tf0faa, .framer-c6YRl .framer-1ncfqud, .framer-c6YRl .framer-bhu6hq, .framer-c6YRl .framer-y82byx, .framer-c6YRl .framer-eydwdo, .framer-c6YRl .framer-1foh0du, .framer-c6YRl .framer-1vpnzhf, .framer-c6YRl .framer-jbi7pf, .framer-c6YRl .framer-1uj9ja9, .framer-c6YRl .framer-17opdar, .framer-c6YRl .framer-14bjxck, .framer-c6YRl .framer-199e8ek, .framer-c6YRl .framer-18ra8u, .framer-c6YRl .framer-p1bjhp, .framer-c6YRl .framer-u3tf73, .framer-c6YRl .framer-1c0ee7t, .framer-c6YRl .framer-1g74bhx, .framer-c6YRl .framer-1cvc0dh, .framer-c6YRl .framer-1ydtzy7, .framer-c6YRl .framer-1ug47ej, .framer-c6YRl .framer-btjkmc, .framer-c6YRl .framer-sptvkx, .framer-c6YRl .framer-nitgot, .framer-c6YRl .framer-7a4fpf { gap: 0px; } .framer-c6YRl.framer-72rtr7 > *, .framer-c6YRl .framer-eqp7sx > *, .framer-c6YRl .framer-13w01er > *, .framer-c6YRl .framer-1bh6pb6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c6YRl.framer-72rtr7 > :first-child, .framer-c6YRl .framer-eqp7sx > :first-child, .framer-c6YRl .framer-1wr3m69 > :first-child, .framer-c6YRl .framer-1p2ae5u > :first-child, .framer-c6YRl .framer-2cckid > :first-child, .framer-c6YRl .framer-13w01er > :first-child, .framer-c6YRl .framer-1207rv4 > :first-child, .framer-c6YRl .framer-4y1dl9 > :first-child, .framer-c6YRl .framer-nsf7wi > :first-child, .framer-c6YRl .framer-ryovpb > :first-child, .framer-c6YRl .framer-1cttxe2 > :first-child, .framer-c6YRl .framer-1bh6pb6 > :first-child, .framer-c6YRl .framer-1cn5zdn > :first-child, .framer-c6YRl .framer-tf0faa > :first-child, .framer-c6YRl .framer-1ncfqud > :first-child, .framer-c6YRl .framer-bhu6hq > :first-child, .framer-c6YRl .framer-eydwdo > :first-child, .framer-c6YRl .framer-1vpnzhf > :first-child, .framer-c6YRl .framer-jbi7pf > :first-child, .framer-c6YRl .framer-1uj9ja9 > :first-child, .framer-c6YRl .framer-17opdar > :first-child, .framer-c6YRl .framer-14bjxck > :first-child, .framer-c6YRl .framer-199e8ek > :first-child, .framer-c6YRl .framer-18ra8u > :first-child, .framer-c6YRl .framer-p1bjhp > :first-child, .framer-c6YRl .framer-u3tf73 > :first-child, .framer-c6YRl .framer-1g74bhx > :first-child, .framer-c6YRl .framer-1cvc0dh > :first-child, .framer-c6YRl .framer-btjkmc > :first-child, .framer-c6YRl .framer-nitgot > :first-child { margin-top: 0px; } .framer-c6YRl.framer-72rtr7 > :last-child, .framer-c6YRl .framer-eqp7sx > :last-child, .framer-c6YRl .framer-1wr3m69 > :last-child, .framer-c6YRl .framer-1p2ae5u > :last-child, .framer-c6YRl .framer-2cckid > :last-child, .framer-c6YRl .framer-13w01er > :last-child, .framer-c6YRl .framer-1207rv4 > :last-child, .framer-c6YRl .framer-4y1dl9 > :last-child, .framer-c6YRl .framer-nsf7wi > :last-child, .framer-c6YRl .framer-ryovpb > :last-child, .framer-c6YRl .framer-1cttxe2 > :last-child, .framer-c6YRl .framer-1bh6pb6 > :last-child, .framer-c6YRl .framer-1cn5zdn > :last-child, .framer-c6YRl .framer-tf0faa > :last-child, .framer-c6YRl .framer-1ncfqud > :last-child, .framer-c6YRl .framer-bhu6hq > :last-child, .framer-c6YRl .framer-eydwdo > :last-child, .framer-c6YRl .framer-1vpnzhf > :last-child, .framer-c6YRl .framer-jbi7pf > :last-child, .framer-c6YRl .framer-1uj9ja9 > :last-child, .framer-c6YRl .framer-17opdar > :last-child, .framer-c6YRl .framer-14bjxck > :last-child, .framer-c6YRl .framer-199e8ek > :last-child, .framer-c6YRl .framer-18ra8u > :last-child, .framer-c6YRl .framer-p1bjhp > :last-child, .framer-c6YRl .framer-u3tf73 > :last-child, .framer-c6YRl .framer-1g74bhx > :last-child, .framer-c6YRl .framer-1cvc0dh > :last-child, .framer-c6YRl .framer-btjkmc > :last-child, .framer-c6YRl .framer-nitgot > :last-child { margin-bottom: 0px; } .framer-c6YRl .framer-1wr3m69 > *, .framer-c6YRl .framer-1207rv4 > *, .framer-c6YRl .framer-1cn5zdn > *, .framer-c6YRl .framer-tf0faa > *, .framer-c6YRl .framer-eydwdo > *, .framer-c6YRl .framer-199e8ek > *, .framer-c6YRl .framer-nitgot > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-c6YRl .framer-1p2ae5u > *, .framer-c6YRl .framer-nsf7wi > *, .framer-c6YRl .framer-btjkmc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-c6YRl .framer-2cckid > *, .framer-c6YRl .framer-bhu6hq > *, .framer-c6YRl .framer-1cvc0dh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-c6YRl .framer-1xwy7uq > *, .framer-c6YRl .framer-75m9bg > *, .framer-c6YRl .framer-1c0ee7t > *, .framer-c6YRl .framer-1ydtzy7 > *, .framer-c6YRl .framer-1ug47ej > *, .framer-c6YRl .framer-sptvkx > *, .framer-c6YRl .framer-7a4fpf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-c6YRl .framer-1xwy7uq > :first-child, .framer-c6YRl .framer-75m9bg > :first-child, .framer-c6YRl .framer-s3a1nt > :first-child, .framer-c6YRl .framer-yomu9a > :first-child, .framer-c6YRl .framer-va2fuf > :first-child, .framer-c6YRl .framer-6nzvme > :first-child, .framer-c6YRl .framer-v1hbfc > :first-child, .framer-c6YRl .framer-5b1ra3 > :first-child, .framer-c6YRl .framer-afd4pp > :first-child, .framer-c6YRl .framer-zyq9q4 > :first-child, .framer-c6YRl .framer-109mz26 > :first-child, .framer-c6YRl .framer-y82byx > :first-child, .framer-c6YRl .framer-1foh0du > :first-child, .framer-c6YRl .framer-1c0ee7t > :first-child, .framer-c6YRl .framer-1ydtzy7 > :first-child, .framer-c6YRl .framer-1ug47ej > :first-child, .framer-c6YRl .framer-sptvkx > :first-child, .framer-c6YRl .framer-7a4fpf > :first-child { margin-left: 0px; } .framer-c6YRl .framer-1xwy7uq > :last-child, .framer-c6YRl .framer-75m9bg > :last-child, .framer-c6YRl .framer-s3a1nt > :last-child, .framer-c6YRl .framer-yomu9a > :last-child, .framer-c6YRl .framer-va2fuf > :last-child, .framer-c6YRl .framer-6nzvme > :last-child, .framer-c6YRl .framer-v1hbfc > :last-child, .framer-c6YRl .framer-5b1ra3 > :last-child, .framer-c6YRl .framer-afd4pp > :last-child, .framer-c6YRl .framer-zyq9q4 > :last-child, .framer-c6YRl .framer-109mz26 > :last-child, .framer-c6YRl .framer-y82byx > :last-child, .framer-c6YRl .framer-1foh0du > :last-child, .framer-c6YRl .framer-1c0ee7t > :last-child, .framer-c6YRl .framer-1ydtzy7 > :last-child, .framer-c6YRl .framer-1ug47ej > :last-child, .framer-c6YRl .framer-sptvkx > :last-child, .framer-c6YRl .framer-7a4fpf > :last-child { margin-right: 0px; } .framer-c6YRl .framer-4y1dl9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-c6YRl .framer-s3a1nt > *, .framer-c6YRl .framer-y82byx > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-c6YRl .framer-ryovpb > *, .framer-c6YRl .framer-1cttxe2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-c6YRl .framer-yomu9a > *, .framer-c6YRl .framer-va2fuf > *, .framer-c6YRl .framer-6nzvme > *, .framer-c6YRl .framer-v1hbfc > *, .framer-c6YRl .framer-5b1ra3 > *, .framer-c6YRl .framer-afd4pp > *, .framer-c6YRl .framer-zyq9q4 > *, .framer-c6YRl .framer-109mz26 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-c6YRl .framer-1ncfqud > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-c6YRl .framer-1foh0du > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-c6YRl .framer-1vpnzhf > *, .framer-c6YRl .framer-jbi7pf > *, .framer-c6YRl .framer-1uj9ja9 > *, .framer-c6YRl .framer-17opdar > *, .framer-c6YRl .framer-14bjxck > *, .framer-c6YRl .framer-18ra8u > *, .framer-c6YRl .framer-p1bjhp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c6YRl .framer-u3tf73 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-c6YRl .framer-1g74bhx > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-c6YRl[data-border=\"true\"]::after, .framer-c6YRl [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-c6YRl.framer-72rtr7 { width: 810px; } .framer-c6YRl .framer-epqne3-container, .framer-c6YRl .framer-1wr3m69 { order: 0; } .framer-c6YRl .framer-eqp7sx, .framer-c6YRl .framer-r20e4a-container { order: 6; } .framer-c6YRl .framer-1p2ae5u { gap: 64px; order: 1; padding: 36px 64px 0px 64px; } .framer-c6YRl .framer-2cckid, .framer-c6YRl .framer-1ic1ug7, .framer-c6YRl .framer-x3s3av-container, .framer-c6YRl .framer-1a1ycfy-container, .framer-c6YRl .framer-1cs9nfp-container, .framer-c6YRl .framer-10e2340-container, .framer-c6YRl .framer-y6r74q, .framer-c6YRl .framer-ce3hrz { width: 100%; } .framer-c6YRl .framer-1ajkxxa, .framer-c6YRl .framer-1nsrvle, .framer-c6YRl .framer-20hnom { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-c6YRl .framer-vlkbd1-container { height: var(--framer-aspect-ratio-supported, 336px); width: 596px; } .framer-c6YRl .framer-riine-container, .framer-c6YRl .framer-fjok76-container { order: 2; } .framer-c6YRl .framer-1207rv4 { order: 3; width: 654px; } .framer-c6YRl .framer-4y1dl9 { order: 4; padding: 60px 78px 28px 78px; } .framer-c6YRl .framer-nsf7wi, .framer-c6YRl .framer-btjkmc { width: 654px; } .framer-c6YRl .framer-s3a1nt { flex-direction: column; } .framer-c6YRl .framer-ryovpb, .framer-c6YRl .framer-1cttxe2 { flex: none; width: 100%; } .framer-c6YRl .framer-5vzq15-container, .framer-c6YRl .framer-1ft87n6-container { order: 5; } .framer-c6YRl .framer-1bh6pb6 { order: 6; padding: 28px 72px 32px 72px; } .framer-c6YRl .framer-grnsej-container { order: 9; } .framer-c6YRl .framer-1ncfqud { gap: 48px; order: 8; padding: 36px 0px 54px 0px; } .framer-c6YRl .framer-bhu6hq, .framer-c6YRl .framer-1cvc0dh { width: 624px; } .framer-c6YRl .framer-y82byx { flex-direction: column; gap: 48px; } .framer-c6YRl .framer-1iel5cj-container, .framer-c6YRl .framer-1ou5axk-container, .framer-c6YRl .framer-1phxmb9 { order: 7; } .framer-c6YRl .framer-u3tf73 { gap: 48px; height: 1133px; order: 10; padding: 32px 72px 54px 72px; } .framer-c6YRl .framer-1c0ee7t, .framer-c6YRl .framer-sptvkx { flex-direction: column; gap: 32px; order: 0; } .framer-c6YRl .framer-b5jdnc { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; } .framer-c6YRl .framer-10elbzp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; order: 1; width: min-content; } .framer-c6YRl .framer-qwk6vo-container { align-self: unset; order: 0; width: 520px; } .framer-c6YRl .framer-mtgj1z-container { align-self: unset; order: 1; width: 520px; } .framer-c6YRl .framer-1bzn798-container { order: 11; } .framer-c6YRl .framer-1g74bhx { gap: 48px; order: 12; padding: 26px 0px 72px 0px; } .framer-c6YRl .framer-1ydtzy7 { height: min-content; } .framer-c6YRl .framer-3eyc8k-container { height: 560px; width: 592px; } .framer-c6YRl .framer-1ug47ej { order: 13; padding: 64px 72px 24px 72px; } .framer-c6YRl .framer-ov82cu-container { order: 4; } .framer-c6YRl .framer-i29i7-container, .framer-c6YRl .framer-1laneat-container { order: 3; } .framer-c6YRl .framer-7a4fpf { order: 14; } .framer-c6YRl .framer-1yajkkw-container { flex: 1 0 0px; width: 1px; } .framer-c6YRl .framer-15kbgx7 { left: -720px; right: -720px; transform: unset; width: unset; } .framer-c6YRl .framer-12ufe9h { left: -532px; right: -533px; transform: unset; width: unset; } .framer-c6YRl .framer-ck8jia { left: -345px; right: -345px; transform: unset; width: unset; } .framer-c6YRl .framer-12tgwep { bottom: -563px; left: -157px; right: -157px; transform: unset; width: unset; } .framer-c6YRl .framer-1vzw2yn { left: -315px; right: -315px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c6YRl .framer-1p2ae5u, .framer-c6YRl .framer-s3a1nt, .framer-c6YRl .framer-1ncfqud, .framer-c6YRl .framer-y82byx, .framer-c6YRl .framer-u3tf73, .framer-c6YRl .framer-1c0ee7t, .framer-c6YRl .framer-10elbzp, .framer-c6YRl .framer-1g74bhx, .framer-c6YRl .framer-sptvkx { gap: 0px; } .framer-c6YRl .framer-1p2ae5u > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-c6YRl .framer-1p2ae5u > :first-child, .framer-c6YRl .framer-s3a1nt > :first-child, .framer-c6YRl .framer-1ncfqud > :first-child, .framer-c6YRl .framer-y82byx > :first-child, .framer-c6YRl .framer-u3tf73 > :first-child, .framer-c6YRl .framer-1c0ee7t > :first-child, .framer-c6YRl .framer-10elbzp > :first-child, .framer-c6YRl .framer-1g74bhx > :first-child, .framer-c6YRl .framer-sptvkx > :first-child { margin-top: 0px; } .framer-c6YRl .framer-1p2ae5u > :last-child, .framer-c6YRl .framer-s3a1nt > :last-child, .framer-c6YRl .framer-1ncfqud > :last-child, .framer-c6YRl .framer-y82byx > :last-child, .framer-c6YRl .framer-u3tf73 > :last-child, .framer-c6YRl .framer-1c0ee7t > :last-child, .framer-c6YRl .framer-10elbzp > :last-child, .framer-c6YRl .framer-1g74bhx > :last-child, .framer-c6YRl .framer-sptvkx > :last-child { margin-bottom: 0px; } .framer-c6YRl .framer-s3a1nt > *, .framer-c6YRl .framer-1c0ee7t > *, .framer-c6YRl .framer-sptvkx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-c6YRl .framer-1ncfqud > *, .framer-c6YRl .framer-y82byx > *, .framer-c6YRl .framer-u3tf73 > *, .framer-c6YRl .framer-10elbzp > *, .framer-c6YRl .framer-1g74bhx > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (max-width: 809px) { .framer-c6YRl.framer-72rtr7 { width: 390px; } .framer-c6YRl .framer-epqne3-container, .framer-c6YRl .framer-1fgfiol-container { order: 0; } .framer-c6YRl .framer-eqp7sx { justify-content: flex-start; order: 6; overflow: hidden; } .framer-c6YRl .framer-1wr3m69 { height: 64px; order: 0; } .framer-c6YRl .framer-1p2ae5u { gap: 32px; order: 1; padding: 32px 24px 28px 24px; } .framer-c6YRl .framer-2cckid, .framer-c6YRl .framer-1ic1ug7 { width: 100%; } .framer-c6YRl .framer-1nsrvle, .framer-c6YRl .framer-1t4i3b4, .framer-c6YRl .framer-20hnom, .framer-c6YRl .framer-b5jdnc, .framer-c6YRl .framer-zl32y4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-c6YRl .framer-1xwy7uq { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; } .framer-c6YRl .framer-vlkbd1-container { height: var(--framer-aspect-ratio-supported, 199px); width: 354px; } .framer-c6YRl .framer-riine-container, .framer-c6YRl .framer-fjok76-container, .framer-c6YRl .framer-1hbnnxz-container { order: 2; } .framer-c6YRl .framer-1207rv4 { gap: 24px; order: 3; width: 358px; } .framer-c6YRl .framer-4y1dl9 { gap: 32px; order: 4; padding: 48px 16px 24px 16px; } .framer-c6YRl .framer-nsf7wi { gap: 24px; padding: 32px; width: 358px; } .framer-c6YRl .framer-s3a1nt { flex-direction: column; gap: 24px; } .framer-c6YRl .framer-ryovpb, .framer-c6YRl .framer-1cttxe2 { flex: none; padding: 24px; width: 100%; } .framer-c6YRl .framer-5vzq15-container, .framer-c6YRl .framer-1ft87n6-container, .framer-c6YRl .framer-oauub8-container { order: 5; } .framer-c6YRl .framer-1bh6pb6 { gap: 48px; order: 6; padding: 28px 16px 32px 16px; } .framer-c6YRl .framer-x3s3av-container, .framer-c6YRl .framer-1a1ycfy-container, .framer-c6YRl .framer-1cs9nfp-container, .framer-c6YRl .framer-10e2340-container, .framer-c6YRl .framer-y6r74q, .framer-c6YRl .framer-ce3hrz { width: 358px; } .framer-c6YRl .framer-grnsej-container, .framer-c6YRl .framer-1ou5axk-container { order: 7; } .framer-c6YRl .framer-1ncfqud { gap: 48px; order: 8; padding: 36px 0px 36px 0px; } .framer-c6YRl .framer-bhu6hq, .framer-c6YRl .framer-1cvc0dh { gap: 12px; } .framer-c6YRl .framer-y82byx { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; width: 358px; } .framer-c6YRl .framer-eydwdo { gap: 24px; width: 100%; } .framer-c6YRl .framer-1iel5cj-container { order: 11; } .framer-c6YRl .framer-u3tf73 { gap: 32px; height: 972px; order: 10; padding: 32px 16px 40px 16px; } .framer-c6YRl .framer-1c0ee7t { flex-direction: column; gap: 16px; } .framer-c6YRl .framer-10elbzp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; width: 100%; } .framer-c6YRl .framer-qwk6vo-container { align-self: unset; width: 358px; } .framer-c6YRl .framer-mtgj1z-container { align-self: unset; height: auto; width: 358px; } .framer-c6YRl .framer-1bzn798-container { order: 9; } .framer-c6YRl .framer-1g74bhx { gap: 48px; order: 12; padding: 48px 0px 48px 0px; } .framer-c6YRl .framer-1ydtzy7 { height: min-content; justify-content: flex-start; width: 358px; } .framer-c6YRl .framer-3eyc8k-container { height: 560px; width: 358px; } .framer-c6YRl .framer-1ug47ej { order: 13; padding: 48px 16px 24px 16px; } .framer-c6YRl .framer-btjkmc { flex: 1 0 0px; gap: 24px; padding: 32px 24px 24px 24px; width: 1px; } .framer-c6YRl .framer-sptvkx { flex-direction: column; gap: 16px; order: 0; } .framer-c6YRl .framer-ov82cu-container, .framer-c6YRl .framer-13lbpde-container { order: 4; } .framer-c6YRl .framer-i29i7-container, .framer-c6YRl .framer-eyos4w-container { order: 3; } .framer-c6YRl .framer-nitgot { gap: 20px; order: 1; } .framer-c6YRl .framer-4ojxzm-container, .framer-c6YRl .framer-q1g7up-container { order: 1; } .framer-c6YRl .framer-wgsqhh-container, .framer-c6YRl .framer-r20e4a-container { order: 6; } .framer-c6YRl .framer-7a4fpf { order: 14; } .framer-c6YRl .framer-1yajkkw-container { flex: 1 0 0px; width: 1px; } .framer-c6YRl .framer-1phxmb9 { height: 852px; order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-c6YRl .framer-1p2ae5u, .framer-c6YRl .framer-1207rv4, .framer-c6YRl .framer-4y1dl9, .framer-c6YRl .framer-nsf7wi, .framer-c6YRl .framer-s3a1nt, .framer-c6YRl .framer-1bh6pb6, .framer-c6YRl .framer-1ncfqud, .framer-c6YRl .framer-bhu6hq, .framer-c6YRl .framer-y82byx, .framer-c6YRl .framer-eydwdo, .framer-c6YRl .framer-u3tf73, .framer-c6YRl .framer-1c0ee7t, .framer-c6YRl .framer-10elbzp, .framer-c6YRl .framer-1g74bhx, .framer-c6YRl .framer-1cvc0dh, .framer-c6YRl .framer-btjkmc, .framer-c6YRl .framer-sptvkx, .framer-c6YRl .framer-nitgot { gap: 0px; } .framer-c6YRl .framer-1p2ae5u > *, .framer-c6YRl .framer-4y1dl9 > *, .framer-c6YRl .framer-y82byx > *, .framer-c6YRl .framer-u3tf73 > *, .framer-c6YRl .framer-10elbzp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-c6YRl .framer-1p2ae5u > :first-child, .framer-c6YRl .framer-1207rv4 > :first-child, .framer-c6YRl .framer-4y1dl9 > :first-child, .framer-c6YRl .framer-nsf7wi > :first-child, .framer-c6YRl .framer-s3a1nt > :first-child, .framer-c6YRl .framer-1bh6pb6 > :first-child, .framer-c6YRl .framer-1ncfqud > :first-child, .framer-c6YRl .framer-bhu6hq > :first-child, .framer-c6YRl .framer-y82byx > :first-child, .framer-c6YRl .framer-eydwdo > :first-child, .framer-c6YRl .framer-u3tf73 > :first-child, .framer-c6YRl .framer-1c0ee7t > :first-child, .framer-c6YRl .framer-10elbzp > :first-child, .framer-c6YRl .framer-1g74bhx > :first-child, .framer-c6YRl .framer-1cvc0dh > :first-child, .framer-c6YRl .framer-btjkmc > :first-child, .framer-c6YRl .framer-sptvkx > :first-child, .framer-c6YRl .framer-nitgot > :first-child { margin-top: 0px; } .framer-c6YRl .framer-1p2ae5u > :last-child, .framer-c6YRl .framer-1207rv4 > :last-child, .framer-c6YRl .framer-4y1dl9 > :last-child, .framer-c6YRl .framer-nsf7wi > :last-child, .framer-c6YRl .framer-s3a1nt > :last-child, .framer-c6YRl .framer-1bh6pb6 > :last-child, .framer-c6YRl .framer-1ncfqud > :last-child, .framer-c6YRl .framer-bhu6hq > :last-child, .framer-c6YRl .framer-y82byx > :last-child, .framer-c6YRl .framer-eydwdo > :last-child, .framer-c6YRl .framer-u3tf73 > :last-child, .framer-c6YRl .framer-1c0ee7t > :last-child, .framer-c6YRl .framer-10elbzp > :last-child, .framer-c6YRl .framer-1g74bhx > :last-child, .framer-c6YRl .framer-1cvc0dh > :last-child, .framer-c6YRl .framer-btjkmc > :last-child, .framer-c6YRl .framer-sptvkx > :last-child, .framer-c6YRl .framer-nitgot > :last-child { margin-bottom: 0px; } .framer-c6YRl .framer-1207rv4 > *, .framer-c6YRl .framer-nsf7wi > *, .framer-c6YRl .framer-s3a1nt > *, .framer-c6YRl .framer-eydwdo > *, .framer-c6YRl .framer-btjkmc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-c6YRl .framer-1bh6pb6 > *, .framer-c6YRl .framer-1ncfqud > *, .framer-c6YRl .framer-1g74bhx > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-c6YRl .framer-bhu6hq > *, .framer-c6YRl .framer-1cvc0dh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-c6YRl .framer-1c0ee7t > *, .framer-c6YRl .framer-sptvkx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-c6YRl .framer-nitgot > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5781\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gBNt_gqu7\":{\"layout\":[\"fixed\",\"auto\"]},\"crGXJtEJk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kKxV4Ws22\":{\"pattern\":\":kKxV4Ws22\",\"name\":\"top\"},\"giKafxgad\":{\"pattern\":\":giKafxgad\",\"name\":\"hero\"},\"yShimmjh6\":{\"pattern\":\":yShimmjh6\",\"name\":\"start\"},\"UYNo5ooZp\":{\"pattern\":\":UYNo5ooZp\",\"name\":\"examples\"},\"PTXl0n6UO\":{\"pattern\":\":PTXl0n6UO\",\"name\":\"call-ai\"},\"HHVrzFUdu\":{\"pattern\":\":HHVrzFUdu\",\"name\":\"llama\"},\"PyfSTaK4p\":{\"pattern\":\":PyfSTaK4p\",\"name\":\"consultation\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-c6YRl\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5781,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Author\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/SOMYN4ADSSWI6J5BFZQBKA6CY7IMYE4J/XLQ5CIIXFDPIW5K3736URN7FNJQZELPJ/J4WWWV5RAQXSNV6FEZNCUHMQ3BYNLNIH.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Author\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LTSH35TIMZ5MLLXHCSLOSG3NFKFIZONR/WF4NBOLSRS4ZNYNSQG4E4NROC7H2YIOE/6LYCTMFTSOH5KPOR5B2XLUTK5R6YPJEE.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...HeaderDesktopFonts,...LocaleComponentFonts,...YouTubeFonts,...LineDividerFonts,...BtnHeroFonts,...AIVoiceAssistantCardFonts,...ButtonFonts,...PricingCardFonts,...EmbedFonts,...FAQsDesktopFonts,...FAQsMobileFonts,...FooterFooterFonts,...HeaderTabletFonts,...HeaderMobileFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gBNt_gqu7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"crGXJtEJk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"kKxV4Ws22\\\":{\\\"pattern\\\":\\\":kKxV4Ws22\\\",\\\"name\\\":\\\"top\\\"},\\\"giKafxgad\\\":{\\\"pattern\\\":\\\":giKafxgad\\\",\\\"name\\\":\\\"hero\\\"},\\\"yShimmjh6\\\":{\\\"pattern\\\":\\\":yShimmjh6\\\",\\\"name\\\":\\\"start\\\"},\\\"UYNo5ooZp\\\":{\\\"pattern\\\":\\\":UYNo5ooZp\\\",\\\"name\\\":\\\"examples\\\"},\\\"PTXl0n6UO\\\":{\\\"pattern\\\":\\\":PTXl0n6UO\\\",\\\"name\\\":\\\"call-ai\\\"},\\\"HHVrzFUdu\\\":{\\\"pattern\\\":\\\":HHVrzFUdu\\\",\\\"name\\\":\\\"llama\\\"},\\\"PyfSTaK4p\\\":{\\\"pattern\\\":\\\":PyfSTaK4p\\\",\\\"name\\\":\\\"consultation\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"5781\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "FUNC_ERROR_TEXT", "nativeMax", "nativeMin", "NAN", "reTrim", "reIsBadHex", "reIsBinary", "reIsOctal", "freeParseInt", "now", "isObject", "value", "type", "toNumber", "value", "NAN", "isObject", "other", "reTrim", "isBinary", "reIsBinary", "reIsOctal", "freeParseInt", "reIsBadHex", "debounce", "func", "wait", "options", "lastArgs", "lastThis", "maxWait", "result", "timerId", "lastCallTime", "lastInvokeTime", "leading", "maxing", "trailing", "FUNC_ERROR_TEXT", "nativeMax", "invokeFunc", "time", "args", "thisArg", "leadingEdge", "timerExpired", "remainingWait", "timeSinceLastCall", "timeSinceLastInvoke", "timeWaiting", "nativeMin", "shouldInvoke", "now", "trailingEdge", "cancel", "flush", "debounced", "isInvoking", "throttle", "KnobOptions", "Slider", "withCSS", "props", "valueProp", "trackHeight", "fillColor", "focusColor", "min", "max", "onChange", "onChangeLive", "onMax", "onMin", "trackColor", "trackRadius", "knobSize", "knobColor", "constrainKnob", "shadow", "shouldAnimateChange", "transition", "overdrag", "knobSetting", "style", "hovered", "setHovered", "ye", "focused", "setFocused", "onCanvas", "RenderTarget", "shouldAnimate", "isConstrained", "showKnob", "input", "pe", "knobPadding", "updateValue", "te", "newVal", "target", "throttledInputUpdate", "animate", "value", "useAutoMotionValue", "transform", "knobX", "useTransform", "normalizedValue", "throttle", "val", "ref", "useOnChange", "isMotionValue", "handleInputChange", "e", "handleMouseDown", "handleMouseUp", "totalKnobWidth", "totalHeight", "u", "p", "motion", "addPropertyControls", "ControlType", "isMotionValue", "v", "MotionValue", "SrcType", "PlayTime", "props", "currentTime", "startTime", "playTime", "setPlayTime", "ye", "ue", "secondsToMinutes", "useOnChange", "latest", "p", "l", "checkIfPlaying", "player", "Audio", "withCSS", "_props_style", "playing", "background", "progressColor", "trackHeight", "gap", "trackColor", "srcUrl", "srcType", "srcFile", "loop", "font", "autoPlay", "progress", "volume", "showTime", "showTrack", "playPauseCursor", "showPlayPause", "onTimeUpdate", "onMetadata", "onPlay", "onPause", "onEnd", "pauseOnExit", "onPlayGlobalPauseOption", "iconCursor", "isPlaying", "setIsPlaying", "duration", "setDuration", "pe", "playerInfo", "trackProgress", "useAutoMotionValue", "value", "newValue", "handlePlayStateUpdate", "padding", "usePadding", "borderRadius", "useRadius", "fontSize", "useFontControls", "shouldPlay", "RenderTarget", "shouldPausePlayers", "url", "shouldAutoPlay", "te", "_", "_playerInfo_current_animation", "_playerInfo_current", "currentDuration", "isNowPlaying", "animate", "pauseAllAudioPlayers", "el", "playAudio", "e", "pauseAudio", "handleMetadata", "initProgress", "handleReady", "handleSeek", "val", "handleEnd", "handlePlayClick", "_player_current", "useOnEnter", "useOnExit", "useMotionValueEvent", "progressPercent", "iconStyles", "u", "containerStyles", "PauseIcon", "PlayIcon", "fontStack", "Slider", "addPropertyControls", "ControlType", "paddingControl", "borderRadiusControl", "PlayIcon", "props", "p", "motion", "PauseIcon", "u", "Ki2eX48Dq_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "Ki2eX48Dq_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerySPRC_cbM", "withCSS", "ySPRC_cbM_default", "addPropertyControls", "ControlType", "addFonts", "AIVoiceAssistantAgentFonts", "getFonts", "ySPRC_cbM_default", "AudioFonts", "Audio", "MotionDivWithFX", "withFX", "motion", "AIVoiceAssistantAgentControls", "getPropertyControls", "AudioControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "agent", "audioFile", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Hpwivmn92", "arEODMol3", "vrMd0cHfd", "ICTPMVye_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLocalizedValue", "css", "FramerKi2eX48Dq", "withCSS", "Ki2eX48Dq_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Ngha0Pyug_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "Ngha0Pyug_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "BtnHeroFonts", "getFonts", "gNLgqu4Za_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "equals", "a", "b", "convertFromBoolean", "value", "activeLocale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "item1", "item2", "item4", "price", "shortDescription", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "UlRHXnNgu", "qvlS0kaOs", "qI1pwLcJx", "wfyyU1pPO", "gK4OoZGS6", "chqJbltuG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "FramerNgha0Pyug", "withCSS", "Ngha0Pyug_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AutoSelectLanguage", "ue", "selectElement", "select", "window", "withAutoSelectLanguage", "C", "props", "re", "DataObserverContext", "p", "hideElement", "target", "showElement", "AIAgentEN", "ue", "currentURL", "window", "AIAgentES", "interval", "withAIAgentEN", "C", "props", "re", "DataObserverContext", "p", "withAIAgentES", "LocaleComponent", "locale", "setLocale", "ye", "ue", "clientLocale", "navigator", "p", "Frame", "u", "ScrollToHashAndCleanURL", "ue", "hash", "window", "el", "withScrollToHashAndCleanURL", "C", "props", "re", "DataObserverContext", "p", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "HeaderDesktopFonts", "siegIULqh_default", "HeaderDesktopWithVariantAppearEffect", "withVariantAppearEffect", "LocaleComponentFonts", "LocaleComponent", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "YouTubeFonts", "Youtube", "LineDividerFonts", "qdskGjTS4_default", "RichTextWithFX", "withFX", "RichText2", "BtnHeroFonts", "gNLgqu4Za_default", "MotionDivWithFX", "AIVoiceAssistantCardFonts", "Ki2eX48Dq_default", "MotionDivWithAIAgentEN1cn5zdn", "withCodeBoundaryForOverrides", "withAIAgentEN", "MotionDivWithAIAgentEStf0faa", "withAIAgentES", "ButtonFonts", "ai8_eCbtb_default", "FormSelectWithAutoSelectLanguage2tze3p", "FormSelect", "withAutoSelectLanguage", "FormContainerWithFX", "FormContainer", "PricingCardFonts", "Ngha0Pyug_default", "ContainerWithFX", "Container", "EmbedFonts", "Embed", "FAQsDesktopFonts", "GPqtBlhuP_default", "FAQsMobileFonts", "oa9qTSzq4_default", "FooterFooterFonts", "WBs6Mk0xk_default", "HeaderTabletFonts", "KNGKUvtt5_default", "HeaderTabletWithVariantAppearEffect", "HeaderMobileFonts", "EATHTe04r_default", "HeaderMobileWithVariantAppearEffect", "MotionDivWithScrollToHashAndCleanURL72rtr7", "withScrollToHashAndCleanURL", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "formVariants", "form", "variants", "currentVariant", "transformTemplate1", "_", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "ref1", "elementId", "useRouteElementId", "ref2", "elementId1", "usePreloadLocalizedValues", "elementId2", "ref3", "router", "useRouter", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "SVG", "formState", "l", "FormPlainTextInput2", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
