{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/eQvY24Hm5NJQnoBa0OvZ/1IUFueycEfZkkJ9txgUG/arfM_WdQf-0.js", "ssg:https://framerusercontent.com/modules/eQvY24Hm5NJQnoBa0OvZ/1IUFueycEfZkkJ9txgUG/arfM_WdQf.js", "ssg:https://framerusercontent.com/modules/g67zzAdSx79IphJR69dm/hDE0tBZ0cejSDphVrsDU/arfM_WdQf.js", "ssg:https://framerusercontent.com/modules/xKiYKpyDkiR5waWGHRHx/CP1URrjd3fRlQOuxsrzl/KifQTESfI.js", "ssg:https://framerusercontent.com/modules/3U8jN7IQFYVcVYuXf38p/9j9iuxnQDLwm3NWD6Z5l/Qh4cMR41t.js", "ssg:https://framerusercontent.com/modules/gIJqDnVdydkrOBoiqaE7/f3Bz9zBB0N0Fe5A5k9Rf/Qh4cMR41t.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Enviar\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Gracias\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Algo no esta funcionando\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (cbb0119)\nimport*as localizedValues from\"./arfM_WdQf-0.js\";const valuesByLocaleId={Bwc5z3Qjw: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 (cbb0119)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/eQvY24Hm5NJQnoBa0OvZ/1IUFueycEfZkkJ9txgUG/arfM_WdQf.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={IbVsIhofk:{hover:true,pressed:true}};const cycleOrder=[\"IbVsIhofk\",\"erVnRXGjn\",\"X_K8J206b\",\"ZQh2tAKKo\",\"XTUZDRYuh\"];const serializationHash=\"framer-nupYu\";const variantClassNames={erVnRXGjn:\"framer-v-kssdcg\",IbVsIhofk:\"framer-v-npskgh\",X_K8J206b:\"framer-v-1uo69z0\",XTUZDRYuh:\"framer-v-gxiamv\",ZQh2tAKKo:\"framer-v-sjyivs\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Default:\"IbVsIhofk\",Disabled:\"X_K8J206b\",Error:\"XTUZDRYuh\",Loading:\"erVnRXGjn\",Success:\"ZQh2tAKKo\"};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:\"IbVsIhofk\"};};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:\"IbVsIhofk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"erVnRXGjn\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"erVnRXGjn\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-npskgh\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"IbVsIhofk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"IbVsIhofk-hover\":{backgroundColor:\"rgba(245, 85, 54, 0.85)\"},\"IbVsIhofk-pressed\":{backgroundColor:\"rgb(181, 68, 45)\"},X_K8J206b:{opacity:.5},XTUZDRYuh:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"IbVsIhofk-hover\":{\"data-framer-name\":undefined},\"IbVsIhofk-pressed\":{\"data-framer-name\":undefined},erVnRXGjn:{\"data-framer-name\":\"Loading\"},X_K8J206b:{\"data-framer-name\":\"Disabled\"},XTUZDRYuh:{\"data-framer-name\":\"Error\"},ZQh2tAKKo:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-1c4lrz7\",fonts:[\"GF;Roboto-700\"],layoutDependency:layoutDependency,layoutId:\"L3DksRpmH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{XTUZDRYuh:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XTUZDRYuh:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something is not working\"})}),fonts:[\"Inter-SemiBold\"]},ZQh2tAKKo:{children:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank You\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bmsetg\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"eRcLbL3Kt\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-c5ra2s\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"KTF51QtMh\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{erVnRXGjn:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u5i7c3\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"cZq7FV0Ho\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nupYu.framer-1kky5zb, .framer-nupYu .framer-1kky5zb { display: block; }\",\".framer-nupYu.framer-npskgh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 240px; }\",\".framer-nupYu .framer-1c4lrz7 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-nupYu .framer-bmsetg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-nupYu .framer-c5ra2s { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-nupYu .framer-u5i7c3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nupYu.framer-npskgh { gap: 0px; } .framer-nupYu.framer-npskgh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-nupYu.framer-npskgh > :first-child { margin-left: 0px; } .framer-nupYu.framer-npskgh > :last-child { margin-right: 0px; } }\",\".framer-nupYu.framer-v-kssdcg.framer-npskgh, .framer-nupYu.framer-v-1uo69z0.framer-npskgh, .framer-nupYu.framer-v-sjyivs.framer-npskgh, .framer-nupYu.framer-v-gxiamv.framer-npskgh { cursor: unset; }\",\".framer-nupYu.framer-v-kssdcg .framer-c5ra2s { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"erVnRXGjn\":{\"layout\":[\"fixed\",\"fixed\"]},\"X_K8J206b\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZQh2tAKKo\":{\"layout\":[\"fixed\",\"fixed\"]},\"XTUZDRYuh\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uy3SvKcm5\":{\"layout\":[\"fixed\",\"fixed\"]},\"T5hAEzjeK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerarfM_WdQf=withCSS(Component,css,\"framer-nupYu\");export default FramerarfM_WdQf;FramerarfM_WdQf.displayName=\"Button English 2\";FramerarfM_WdQf.defaultProps={height:60,width:240};addPropertyControls(FramerarfM_WdQf,{variant:{options:[\"IbVsIhofk\",\"erVnRXGjn\",\"X_K8J206b\",\"ZQh2tAKKo\",\"XTUZDRYuh\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerarfM_WdQf,[{explicitInter:true,fonts:[{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v32/KFOlCnqEu92Fr1MmWUlvBh05IsDqlA.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerarfM_WdQf\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"erVnRXGjn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X_K8J206b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZQh2tAKKo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XTUZDRYuh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uy3SvKcm5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T5hAEzjeK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import*as localizedValues from\"./KifQTESfI-0.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"pgimbtWS7\",\"WpKC72UyC\",\"srskZK2oT\"];const serializationHash=\"framer-aUaIm\";const variantClassNames={pgimbtWS7:\"framer-v-v9ael1\",srskZK2oT:\"framer-v-qrd0xi\",WpKC72UyC:\"framer-v-500z0j\"};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 valuesByLocaleId={Bwc5z3Qjw:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"English Videos\":\"pgimbtWS7\",\"Phone English\":\"srskZK2oT\",\"Tablet English\":\"WpKC72UyC\"};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:\"pgimbtWS7\"};};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:\"pgimbtWS7\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v9ael1\",className,classNames),\"data-framer-name\":\"English Videos\",layoutDependency:layoutDependency,layoutId:\"pgimbtWS7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({srskZK2oT:{\"data-framer-name\":\"Phone English\"},WpKC72UyC:{\"data-framer-name\":\"Tablet English\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5o8lx6\",layoutDependency:layoutDependency,layoutId:\"lmGvX1IBr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1szc8u1\",layoutDependency:layoutDependency,layoutId:\"RikfWjM3c\",style:{backgroundColor:\"rgb(187, 221, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15d2cwk-container\",layoutDependency:layoutDependency,layoutId:\"ksVDslF5E-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"ksVDslF5E\",isMixedBorderRadius:false,layoutId:\"ksVDslF5E\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/qjAbKd4JjFdaKQM17csdmiUbIRc.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/egT4AXmd8RgZ5cRR2rGZmxOmFY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({srskZK2oT:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-osz84k\",layoutDependency:layoutDependency,layoutId:\"wmM5iDBax\",style:{backgroundColor:\"rgb(187, 221, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yjy12l-container\",layoutDependency:layoutDependency,layoutId:\"eMmdqee6F-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"eMmdqee6F\",isMixedBorderRadius:false,layoutId:\"eMmdqee6F\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/5tg3HfplNdrgFK8XQTZ7uxQZKU.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ULmOeXbjyN8w0hC6p4zj8NmYE.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({srskZK2oT:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8qz16c\",layoutDependency:layoutDependency,layoutId:\"p_fRQHBVx\",style:{backgroundColor:\"rgb(187, 221, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ku2baq-container\",layoutDependency:layoutDependency,layoutId:\"HONN6gINo-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"HONN6gINo\",isMixedBorderRadius:false,layoutId:\"HONN6gINo\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/grwh64TVmhXcyvbmUNCQjlqWRoQ.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/fnc9GjjkqgbIIYbJj3y9r0v6VM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({srskZK2oT:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ejfct4\",layoutDependency:layoutDependency,layoutId:\"kjTKcLhb0\",style:{backgroundColor:\"rgb(187, 221, 255)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l7whc4-container\",layoutDependency:layoutDependency,layoutId:\"uBc8gKv5j-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"uBc8gKv5j\",isMixedBorderRadius:false,layoutId:\"uBc8gKv5j\",loop:true,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/zwBJDK1phibRgBaqN3L4jASRpk.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/6JqqiVnPGMAzBbIOI2MXnLrwdhI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({WpKC72UyC:{style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aUaIm.framer-c5uwma, .framer-aUaIm .framer-c5uwma { display: block; }\",\".framer-aUaIm.framer-v9ael1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-aUaIm .framer-5o8lx6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-aUaIm .framer-1szc8u1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 521px; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-aUaIm .framer-15d2cwk-container, .framer-aUaIm .framer-yjy12l-container { flex: 1 0 0px; height: 521px; position: relative; width: 1px; }\",\".framer-aUaIm .framer-osz84k, .framer-aUaIm .framer-8qz16c, .framer-aUaIm .framer-1ejfct4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 521px; justify-content: center; padding: 0px; position: relative; width: 293px; }\",\".framer-aUaIm .framer-1ku2baq-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-aUaIm .framer-1l7whc4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aUaIm.framer-v9ael1, .framer-aUaIm .framer-5o8lx6, .framer-aUaIm .framer-1szc8u1, .framer-aUaIm .framer-osz84k, .framer-aUaIm .framer-8qz16c, .framer-aUaIm .framer-1ejfct4 { gap: 0px; } .framer-aUaIm.framer-v9ael1 > *, .framer-aUaIm .framer-5o8lx6 > *, .framer-aUaIm .framer-1szc8u1 > *, .framer-aUaIm .framer-osz84k > *, .framer-aUaIm .framer-8qz16c > *, .framer-aUaIm .framer-1ejfct4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aUaIm.framer-v9ael1 > :first-child, .framer-aUaIm .framer-5o8lx6 > :first-child, .framer-aUaIm .framer-1szc8u1 > :first-child, .framer-aUaIm .framer-osz84k > :first-child, .framer-aUaIm .framer-8qz16c > :first-child, .framer-aUaIm .framer-1ejfct4 > :first-child { margin-left: 0px; } .framer-aUaIm.framer-v9ael1 > :last-child, .framer-aUaIm .framer-5o8lx6 > :last-child, .framer-aUaIm .framer-1szc8u1 > :last-child, .framer-aUaIm .framer-osz84k > :last-child, .framer-aUaIm .framer-8qz16c > :last-child, .framer-aUaIm .framer-1ejfct4 > :last-child { margin-right: 0px; } }\",\".framer-aUaIm.framer-v-500z0j.framer-v9ael1, .framer-aUaIm.framer-v-qrd0xi.framer-v9ael1 { width: 810px; }\",\".framer-aUaIm.framer-v-500z0j .framer-5o8lx6 { max-width: unset; }\",\".framer-aUaIm.framer-v-500z0j .framer-osz84k, .framer-aUaIm.framer-v-500z0j .framer-8qz16c, .framer-aUaIm.framer-v-500z0j .framer-1ejfct4 { flex: 1 0 0px; width: 1px; }\",\".framer-aUaIm.framer-v-500z0j .framer-1ku2baq-container, .framer-aUaIm.framer-v-500z0j .framer-1l7whc4-container { height: 521px; }\",\".framer-aUaIm.framer-v-qrd0xi .framer-5o8lx6 { flex-direction: column; max-width: unset; }\",\".framer-aUaIm.framer-v-qrd0xi .framer-1szc8u1 { flex: none; height: min-content; width: 100%; }\",\".framer-aUaIm.framer-v-qrd0xi .framer-15d2cwk-container, .framer-aUaIm.framer-v-qrd0xi .framer-yjy12l-container, .framer-aUaIm.framer-v-qrd0xi .framer-1ku2baq-container { height: auto; }\",\".framer-aUaIm.framer-v-qrd0xi .framer-osz84k, .framer-aUaIm.framer-v-qrd0xi .framer-8qz16c, .framer-aUaIm.framer-v-qrd0xi .framer-1ejfct4 { height: min-content; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aUaIm.framer-v-qrd0xi .framer-5o8lx6 { gap: 0px; } .framer-aUaIm.framer-v-qrd0xi .framer-5o8lx6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aUaIm.framer-v-qrd0xi .framer-5o8lx6 > :first-child { margin-top: 0px; } .framer-aUaIm.framer-v-qrd0xi .framer-5o8lx6 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 521\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WpKC72UyC\":{\"layout\":[\"fixed\",\"auto\"]},\"srskZK2oT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKifQTESfI=withCSS(Component,css,\"framer-aUaIm\");export default FramerKifQTESfI;FramerKifQTESfI.displayName=\"Video Testimonials\";FramerKifQTESfI.defaultProps={height:521,width:1200};addPropertyControls(FramerKifQTESfI,{variant:{options:[\"pgimbtWS7\",\"WpKC72UyC\",\"srskZK2oT\"],optionTitles:[\"English Videos\",\"Tablet English\",\"Phone English\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKifQTESfI,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKifQTESfI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"521\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpKC72UyC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"srskZK2oT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KifQTESfI.map", "// Generated by Framer (98a2bb2)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={Bwc5z3Qjw:new LazyValue(()=>import(\"./Qh4cMR41t-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\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98a2bb2)\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,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import ButtonEnglish2 from\"#framer/local/canvasComponent/arfM_WdQf/arfM_WdQf.js\";import NestedCalculatorFinal from\"#framer/local/canvasComponent/C60pZtkzb/C60pZtkzb.js\";import LandingPageNavCopy from\"#framer/local/canvasComponent/kBkbWWeFN/kBkbWWeFN.js\";import VideoTestimonials from\"#framer/local/canvasComponent/KifQTESfI/KifQTESfI.js\";import ButtonEnglish from\"#framer/local/canvasComponent/koEHAIIyZ/koEHAIIyZ.js\";import*as sharedStyle from\"#framer/local/css/HauJfJ6ty/HauJfJ6ty.js\";import*as sharedStyle1 from\"#framer/local/css/KKzmrtW4M/KKzmrtW4M.js\";import*as sharedStyle2 from\"#framer/local/css/xNM6HsTUr/xNM6HsTUr.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Qh4cMR41t/Qh4cMR41t.js\";import metadataProvider from\"#framer/local/webPageMetadata/Qh4cMR41t/Qh4cMR41t.js\";const LandingPageNavCopyFonts=getFonts(LandingPageNavCopy);const HeroFonts=getFonts(Hero);const DownloadFonts=getFonts(Download);const ButtonEnglish2Fonts=getFonts(ButtonEnglish2);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonEnglishFonts=getFonts(ButtonEnglish);const NestedCalculatorFinalFonts=getFonts(NestedCalculatorFinal);const VideoTestimonialsFonts=getFonts(VideoTestimonials);const EmbedFonts=getFonts(Embed);const breakpoints={g4RjBPeSW:\"(min-width: 810px) and (max-width: 1439px)\",U7tF6CHK8:\"(min-width: 1440px)\",UdZtn4DZA:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-M5lEg\";const variantClassNames={g4RjBPeSW:\"framer-v-x1r2mg\",U7tF6CHK8:\"framer-v-1uxseb6\",UdZtn4DZA:\"framer-v-1j5w2i6\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};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:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2,y:-2};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1,y:-1};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 getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2,y:-4};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"U7tF6CHK8\",Phone:\"UdZtn4DZA\",Tablet:\"g4RjBPeSW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"U7tF6CHK8\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UdZtn4DZA\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"U7tF6CHK8\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(237, 237, 237); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1uxseb6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10xirn4\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`},UdZtn4DZA:{height:70,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fu9wyh-container\",\"data-framer-name\":\"Navigation Bar\",name:\"Navigation Bar\",nodeId:\"j1muocyYZ\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{style:{height:\"100%\",width:\"100%\"}},UdZtn4DZA:{style:{width:\"100%\"},variant:\"RVsGyyl9U\"}},children:/*#__PURE__*/_jsx(LandingPageNavCopy,{height:\"100%\",id:\"j1muocyYZ\",layoutId:\"j1muocyYZ\",name:\"Navigation Bar\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"BNPuFH8ZO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2mj3j\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{background:{alt:\"LED screen with light on concert scenario\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/f1Hu1KjMQ2X936Cn1cNOyE6nIaU.jpg\",srcSet:\"https://framerusercontent.com/images/f1Hu1KjMQ2X936Cn1cNOyE6nIaU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f1Hu1KjMQ2X936Cn1cNOyE6nIaU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1Hu1KjMQ2X936Cn1cNOyE6nIaU.jpg 2000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"LED screen with light on concert scenario\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ibWZggeWUn2INSlRs05GJ1e0h78.jpeg\",srcSet:\"https://framerusercontent.com/images/ibWZggeWUn2INSlRs05GJ1e0h78.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ibWZggeWUn2INSlRs05GJ1e0h78.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ibWZggeWUn2INSlRs05GJ1e0h78.jpeg 2048w\"},className:\"framer-1hzuhm3\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-phkq20\",\"data-framer-appear-id\":\"phkq20\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LED Screens for Events, Promotion & More \u2014 Buy or Rent with Confidence\"})})},UdZtn4DZA:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LED Screens for Events, Promotion & More \u2014 Buy or Rent with Confidence\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LED Screens for Events, Promotion & More \u2014 Buy or Rent with Confidence\"})}),className:\"framer-lufark\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tu5h6o\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"z9BflWchj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1hj1jj4 framer-twfjko\",\"data-framer-name\":\"Hero Book Consultation\",\"data-reset\":\"button\",id:\"1hj1jj4\",onTap:onTap3bnx0g({overlay}),whileHover:animation2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lwdbjo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book My Consultation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book My Consultation\"})}),className:\"framer-1yqrffg\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1hwgp9l\"),\"data-framer-portal-id\":\"1hj1jj4\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"PEJ3nwuW4\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-airz9i\"),\"data-framer-name\":\"Form Frame\",\"data-framer-portal-id\":\"1hj1jj4\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13y2lzt\",\"data-framer-name\":\"Form Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vfqg5v\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f0eklv-container\",\"data-framer-name\":\"Close Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Close Icon\",nodeId:\"m54mDho4w\",rendersWithMotion:true,scopeId:\"Qh4cMR41t\",whileHover:animation3,children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"cross\",iconSelection:\"XMark\",id:\"m54mDho4w\",layoutId:\"m54mDho4w\",mirrored:false,name:\"Close Icon\",onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t5jwu7-container\",\"data-framer-name\":\"Form Title\",isAuthoredByUser:true,isModuleExternal:true,name:\"Form Title\",nodeId:\"W1bbBCO5N\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},styleOptions:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderRadius:5,color:\"rgb(255, 255, 255)\",gap:0,padding:20,paddingBottom:13,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:12}}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"W1bbBCO5N\",layoutId:\"W1bbBCO5N\",name:\"Form Title\",srcType:\"Upload\",srcURL:\"\",style:{width:\"100%\"},styleOptions:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderRadius:5,color:\"rgb(255, 255, 255)\",gap:0,padding:20,paddingBottom:20,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:20},text:getLocalizedValue(\"v5\",activeLocale)??\"Book My Consultation\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/1cda787a-4f03-465e-9736-da7055e629eb/submit\",className:\"framer-pu7m8t\",nodeId:\"Qi_yVPVVZ\",redirectUrl:{webPageId:\"jSHGUdR7I\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-110wvea\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-lzdk3p\",inputName:\"Name\",placeholder:getLocalizedValue(\"v6\",activeLocale)??\"Full Name *\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1xjy2hl\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1tmt7wj\",inputName:\"Email\",placeholder:\"Email *\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-4zh7gm\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1km5i9n\",inputName:\"Phone\",placeholder:getLocalizedValue(\"v7\",activeLocale)??\"Phone *\",required:true,type:\"tel\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-klknrw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Project Location\"})}),className:\"framer-cw6yfg\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-6ydw40\",defaultValue:\"select\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v9\",activeLocale)??\"Select\",type:\"option\",value:\"select\"},{title:\"Alabama\",type:\"option\",value:\"alabama\"},{title:\"Alaska\",type:\"option\",value:\"alaska\"},{title:\"Arkansas\",type:\"option\",value:\"arkansas\"},{title:\"California\",type:\"option\",value:\"california\"},{title:\"Colorado\",type:\"option\",value:\"colorado\"},{title:\"Connecticut\",type:\"option\",value:\"Connecticut\"},{title:\"Delaware\",type:\"option\",value:\"Delaware\"},{title:\"Florida\",type:\"option\",value:\"Florida\"},{title:\"Georgia\",type:\"option\",value:\"Georgia\"},{title:\"Hawaii\",type:\"option\",value:\"Hawaii\"},{title:\"Idaho\",type:\"option\",value:\"Idaho\"},{title:\"Illinois\",type:\"option\",value:\"Illinois\"},{title:\"Indiana\",type:\"option\",value:\"Indiana\"},{title:\"Iowa\",type:\"option\",value:\"Iowa\"},{title:\"Kansas\",type:\"option\",value:\"Kansas\"},{title:\"Kentucky\",type:\"option\",value:\"Kentucky\"},{title:\"Louisiana\",type:\"option\",value:\"Louisiana\"},{title:\"Maine\",type:\"option\",value:\"Maine\"},{title:\"Maryland\",type:\"option\",value:\"Maryland\"},{title:\"Massachusetts\",type:\"option\",value:\"Massachusetts\"},{title:\"Michigan\",type:\"option\",value:\"Michigan\"},{title:\"Minnesota\",type:\"option\",value:\"Minnesota\"},{title:\"Mississippi\",type:\"option\",value:\"Mississippi\"},{title:\"Missouri\",type:\"option\",value:\"Missouri\"},{title:\"Montana\",type:\"option\",value:\"Montana\"},{title:\"Nebraska\",type:\"option\",value:\"Nebraska\"},{title:\"Nevada\",type:\"option\",value:\"Nevada\"},{title:\"New Hampshire\",type:\"option\",value:\"New Hampshire\"},{title:\"New Jersey\",type:\"option\",value:\"New Jersey\"},{title:\"New Mexico\",type:\"option\",value:\"New Mexico\"},{title:\"New York\",type:\"option\",value:\"New York\"},{title:\"North Carolina\",type:\"option\",value:\"North Carolina\"},{title:\"North Dakota\",type:\"option\",value:\"North Dakota\"},{title:\"Ohio\",type:\"option\",value:\"Ohio\"},{title:\"Oklahoma\",type:\"option\",value:\"Oklahoma\"},{title:\"Oregon\",type:\"option\",value:\"Oregon\"},{title:\"Pennsylvania\",type:\"option\",value:\"Pennsylvania\"},{title:\"Puerto Rico\",type:\"option\",value:\"Puerto Rico\"},{title:\"Rhode Island\",type:\"option\",value:\"Rhode Island\"},{title:\"South Carolina\",type:\"option\",value:\"South Carolina\"},{title:\"South Dakota\",type:\"option\",value:\"South Dakota\"},{title:\"Tennessee\",type:\"option\",value:\"Tennessee\"},{title:\"Texas\",type:\"option\",value:\"Texas\"},{title:\"Utah\",type:\"option\",value:\"Utah\"},{title:\"Vermont\",type:\"option\",value:\"Vermont\"},{title:\"Virginia\",type:\"option\",value:\"Virginia\"},{title:\"Washington\",type:\"option\",value:\"Washington\"},{title:\"West Virginia\",type:\"option\",value:\"West Virginia\"},{title:\"Wisconsin\",type:\"option\",value:\"Wisconsin\"},{title:\"Wyoming\",type:\"option\",value:\"Wyoming\"}]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36e7ze\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1teldj4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best day to call\"})}),className:\"framer-9jcdc\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1oiuc1w\",inputName:\"Date\",placeholder:\"jane@framer.com\",required:true,type:\"date\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-etnzrq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best time to call\"})}),className:\"framer-syxnaq\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-p3inux\",inputName:\"Time\",placeholder:\"jane@framer.com\",required:true,type:\"time\"})]})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-blgw1i\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-u3yi5l\",inputName:\"Message\",placeholder:getLocalizedValue(\"v12\",activeLocale)??\"Message\",type:\"textarea\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1o1b38s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"How did you hear about us?\"})}),className:\"framer-w9ift3\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-zzlf3h\",inputName:\"Referral\",placeholder:getLocalizedValue(\"v14\",activeLocale)??\"Facebook, Google Search, Referrer's name, etc.\",required:false,type:\"text\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\"},children:\"We respect your privacy, your information won't be shared.\"})}),className:\"framer-12950z0\",fonts:[\"GF;Roboto-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{width:\"calc(min(60vw, 600px) - 40px)\"},UdZtn4DZA:{width:\"calc(min(90vw, 400px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mra8ni-container\",nodeId:\"Vz2op2m8b\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(ButtonEnglish2,{height:\"100%\",id:\"Vz2op2m8b\",layoutId:\"Vz2op2m8b\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"erVnRXGjn\",success:\"ZQh2tAKKo\"},\"IbVsIhofk\"),width:\"100%\"})})})})]})})]})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Link,{href:\"tel:(469) 284 - 8599\",motionChild:true,nodeId:\"PRD0vDgEb\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ee75e7 framer-twfjko\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u8pqqh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XdQ_6ysT_\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v16\",activeLocale)??\"Home\",iconSelection:\"Phone\",id:\"XdQ_6ysT_\",layoutId:\"XdQ_6ysT_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\"},children:\"Call Now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\"},children:\"Call Now\"})}),className:\"framer-1fkovq7\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8t60z\"})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r0rirs\",\"data-framer-name\":\"Info Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bfg1mq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvyzq5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Transforming Your Visual Experience, Effortlessly\"})})},UdZtn4DZA:{children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Transforming Your Visual Experience, Effortlessly\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Transforming Your Visual Experience, Effortlessly\"})}),className:\"framer-5sh4vs\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"LED screens\"}),\" are a powerful tool to create \",/*#__PURE__*/_jsx(\"strong\",{children:\"high-impact visuals\"}),\" for events, promotions, and digital signage. Whether you're planning a concert, trade show, worship service, or corporate presentation, our \",/*#__PURE__*/_jsx(\"strong\",{children:\"LED screen rental and sales\"}),\" options offer flexible, high quality solutions. With \",/*#__PURE__*/_jsx(\"strong\",{children:\"indoor and outdoor LED displays\"}),\", modular design, and vibrant brightness, you can tailor the size and setup to match your specific needs. If you're looking to \",/*#__PURE__*/_jsx(\"strong\",{children:\"buy an LED screen\"}),\" or need a short-term \",/*#__PURE__*/_jsx(\"strong\",{children:\"video wall rental\"}),\", we provide expert guidance and reliable support to ensure your content looks outstanding in any setting.\"]})}),className:\"framer-13rzcx9\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"A video wall LED screen will help your product or service stand out!\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"1. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Enhanced Visual Communication\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"2. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Increased Audience Engagement\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"3. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Versatile Content Display\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"4. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Cost-Effective Advertising\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"5. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Professional and Modern Image\"})]})]}),className:\"framer-1fxxzz3\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-900\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{background:{alt:\"LED screen installation\",fit:\"fill\",pixelHeight:2160,pixelWidth:3840,positionX:\"55.5%\",positionY:\"34.8%\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 80px) * 0.8)`,src:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg\",srcSet:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg 3840w\"}},UdZtn4DZA:{background:{alt:\"LED screen installation\",fit:\"fill\",pixelHeight:2160,pixelWidth:3840,positionX:\"55.5%\",positionY:\"34.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg\",srcSet:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen installation\",fit:\"fill\",pixelHeight:2160,pixelWidth:3840,positionX:\"55.5%\",positionY:\"34.8%\",sizes:\"555px\",src:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg\",srcSet:\"https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5bNePsO9MLq028JFWLZcmEOgrQ.jpg 3840w\"},className:\"framer-trn1gu\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-113lcnh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129r402\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Let us know more about your project\"})})},UdZtn4DZA:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Let us know more about your project\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Let us know more about your project\"})}),className:\"framer-189gcpe\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"After you fill out this form an expert consultant will contact you at a time and date of your convenience.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"After you fill out this form an expert consultant will contact you at a time and date of your convenience.\"})}),className:\"framer-v15kdb\",fonts:[\"GF;Roboto-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17b0185\",\"data-framer-name\":\"Form Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f0rs5p-container\",\"data-framer-name\":\"Form Title\",isAuthoredByUser:true,isModuleExternal:true,name:\"Form Title\",nodeId:\"DuOfC_GEp\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"DuOfC_GEp\",layoutId:\"DuOfC_GEp\",name:\"Form Title\",srcType:\"Upload\",srcURL:\"\",style:{width:\"100%\"},styleOptions:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderRadius:5,color:\"rgb(255, 255, 255)\",gap:0,padding:20,paddingBottom:20,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:20},text:getLocalizedValue(\"v29\",activeLocale)??\"Book Consultation\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/20360244-74d3-4f93-a450-75f55a9a3fe4/submit\",className:\"framer-1nhuigu\",nodeId:\"bDF5gT3ZH\",redirectUrl:{webPageId:\"jSHGUdR7I\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-1oc5w08\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1odi6eo\",inputName:\"Name\",placeholder:getLocalizedValue(\"v30\",activeLocale)??\"Full Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-du3jcc\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-3x5b6o\",inputName:\"Email\",placeholder:\"Email *\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1x87xv\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-wj24ca\",inputName:\"Phone\",placeholder:getLocalizedValue(\"v7\",activeLocale)??\"Phone *\",required:true,type:\"tel\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-2guwo9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Project location\"})}),className:\"framer-lv7heu\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{selectOptions:[{disabled:true,title:getLocalizedValue(\"v9\",activeLocale)??\"Select\",type:\"option\",value:\"select\"},{title:\"Alabama\",type:\"option\",value:\"alabama\"},{title:\"Alaska\",type:\"option\",value:\"alaska\"},{title:\"Arkansas\",type:\"option\",value:\"arkansas\"},{title:\"California\",type:\"option\",value:\"california\"},{title:\"Colorado\",type:\"option\",value:\"colorado\"},{title:\"Connecticut\",type:\"option\",value:\"Connecticut\"},{title:\"Delaware\",type:\"option\",value:\"Delaware\"},{title:\"Florida\",type:\"option\",value:\"Florida\"},{title:\"Georgia\",type:\"option\",value:\"Georgia\"},{title:\"Hawaii\",type:\"option\",value:\"Hawaii\"},{title:\"Idaho\",type:\"option\",value:\"Idaho\"},{title:\"Illinois\",type:\"option\",value:\"Illinois\"},{title:\"Indiana\",type:\"option\",value:\"Indiana\"},{title:\"Iowa\",type:\"option\",value:\"Iowa\"},{title:\"Kansas\",type:\"option\",value:\"Kansas\"},{title:\"Kentucky\",type:\"option\",value:\"Kentucky\"},{title:\"Louisiana\",type:\"option\",value:\"Louisiana\"},{title:\"Maine\",type:\"option\",value:\"Maine\"},{title:\"Maryland\",type:\"option\",value:\"Maryland\"},{title:\"Massachusetts\",type:\"option\",value:\"Massachusetts\"},{title:\"Michigan\",type:\"option\",value:\"Michigan\"},{title:\"Minnesota\",type:\"option\",value:\"Minnesota\"},{title:\"Mississippi\",type:\"option\",value:\"Mississippi\"},{title:\"Missouri\",type:\"option\",value:\"Missouri\"},{title:\"Montana\",type:\"option\",value:\"Montana\"},{title:\"Nebraska\",type:\"option\",value:\"Nebraska\"},{title:\"Nevada\",type:\"option\",value:\"Nevada\"},{title:\"New Hampshire\",type:\"option\",value:\"New Hampshire\"},{title:\"New Jersey\",type:\"option\",value:\"New Jersey\"},{title:\"New Mexico\",type:\"option\",value:\"New Mexico\"},{title:\"New York\",type:\"option\",value:\"New York\"},{title:\"North Carolina\",type:\"option\",value:\"North Carolina\"},{title:\"North Dakota\",type:\"option\",value:\"North Dakota\"},{title:\"Ohio\",type:\"option\",value:\"Ohio\"},{title:\"Oklahoma\",type:\"option\",value:\"Oklahoma\"},{title:\"Oregon\",type:\"option\",value:\"Oregon\"},{title:\"Pennsylvania\",type:\"option\",value:\"Pennsylvania\"},{title:\"Rhode Island\",type:\"option\",value:\"Rhode Island\"},{title:\"South Carolina\",type:\"option\",value:\"South Carolina\"},{title:\"South Dakota\",type:\"option\",value:\"South Dakota\"},{title:\"Tennessee\",type:\"option\",value:\"Tennessee\"},{title:\"Texas\",type:\"option\",value:\"Texas\"},{title:\"Utah\",type:\"option\",value:\"Utah\"},{title:\"Vermont\",type:\"option\",value:\"Vermont\"},{title:\"Virginia\",type:\"option\",value:\"Virginia\"},{title:\"Washington\",type:\"option\",value:\"Washington\"},{title:\"West Virginia\",type:\"option\",value:\"West Virginia\"},{title:\"Wisconsin\",type:\"option\",value:\"Wisconsin\"},{title:\"Wyoming\",type:\"option\",value:\"Wyoming\"}]},UdZtn4DZA:{selectOptions:[{disabled:true,title:getLocalizedValue(\"v9\",activeLocale)??\"Select\",type:\"option\",value:\"select\"},{title:\"Alabama\",type:\"option\",value:\"alabama\"},{title:\"Alaska\",type:\"option\",value:\"alaska\"},{title:\"Arkansas\",type:\"option\",value:\"arkansas\"},{title:\"California\",type:\"option\",value:\"california\"},{title:\"Colorado\",type:\"option\",value:\"colorado\"},{title:\"Connecticut\",type:\"option\",value:\"Connecticut\"},{title:\"Delaware\",type:\"option\",value:\"Delaware\"},{title:\"Florida\",type:\"option\",value:\"Florida\"},{title:\"Georgia\",type:\"option\",value:\"Georgia\"},{title:\"Hawaii\",type:\"option\",value:\"Hawaii\"},{title:\"Idaho\",type:\"option\",value:\"Idaho\"},{title:\"Illinois\",type:\"option\",value:\"Illinois\"},{title:\"Indiana\",type:\"option\",value:\"Indiana\"},{title:\"Iowa\",type:\"option\",value:\"Iowa\"},{title:\"Kansas\",type:\"option\",value:\"Kansas\"},{title:\"Kentucky\",type:\"option\",value:\"Kentucky\"},{title:\"Louisiana\",type:\"option\",value:\"Louisiana\"},{title:\"Maine\",type:\"option\",value:\"Maine\"},{title:\"Maryland\",type:\"option\",value:\"Maryland\"},{title:\"Massachusetts\",type:\"option\",value:\"Massachusetts\"},{title:\"Michigan\",type:\"option\",value:\"Michigan\"},{title:\"Minnesota\",type:\"option\",value:\"Minnesota\"},{title:\"Mississippi\",type:\"option\",value:\"Mississippi\"},{title:\"Missouri\",type:\"option\",value:\"Missouri\"},{title:\"Montana\",type:\"option\",value:\"Montana\"},{title:\"Nebraska\",type:\"option\",value:\"Nebraska\"},{title:\"Nevada\",type:\"option\",value:\"Nevada\"},{title:\"New Hampshire\",type:\"option\",value:\"New Hampshire\"},{title:\"New Jersey\",type:\"option\",value:\"New Jersey\"},{title:\"New Mexico\",type:\"option\",value:\"New Mexico\"},{title:\"New York\",type:\"option\",value:\"New York\"},{title:\"North Carolina\",type:\"option\",value:\"North Carolina\"},{title:\"North Dakota\",type:\"option\",value:\"North Dakota\"},{title:\"Ohio\",type:\"option\",value:\"Ohio\"},{title:\"Oklahoma\",type:\"option\",value:\"Oklahoma\"},{title:\"Oregon\",type:\"option\",value:\"Oregon\"},{title:\"Pennsylvania\",type:\"option\",value:\"Pennsylvania\"},{title:\"Rhode Island\",type:\"option\",value:\"Rhode Island\"},{title:\"South Carolina\",type:\"option\",value:\"South Carolina\"},{title:\"South Dakota\",type:\"option\",value:\"South Dakota\"},{title:\"Tennessee\",type:\"option\",value:\"Tennessee\"},{title:\"Texas\",type:\"option\",value:\"Texas\"},{title:\"Utah\",type:\"option\",value:\"Utah\"},{title:\"Vermont\",type:\"option\",value:\"Vermont\"},{title:\"Virginia\",type:\"option\",value:\"Virginia\"},{title:\"Washington\",type:\"option\",value:\"Washington\"},{title:\"West Virginia\",type:\"option\",value:\"West Virginia\"},{title:\"Wisconsin\",type:\"option\",value:\"Wisconsin\"},{title:\"Wyoming\",type:\"option\",value:\"Wyoming\"}]}},children:/*#__PURE__*/_jsx(FormSelect,{className:\"framer-qlb3lb\",defaultValue:\"select\",inputName:\"Location\",required:false,selectOptions:[{disabled:true,title:getLocalizedValue(\"v9\",activeLocale)??\"Select\",type:\"option\",value:\"select\"},{title:\"Alabama\",type:\"option\",value:\"alabama\"},{title:\"Alaska\",type:\"option\",value:\"alaska\"},{title:\"Arkansas\",type:\"option\",value:\"arkansas\"},{title:\"California\",type:\"option\",value:\"california\"},{title:\"Colorado\",type:\"option\",value:\"colorado\"},{title:\"Connecticut\",type:\"option\",value:\"Connecticut\"},{title:\"Delaware\",type:\"option\",value:\"Delaware\"},{title:\"Florida\",type:\"option\",value:\"Florida\"},{title:\"Georgia\",type:\"option\",value:\"Georgia\"},{title:\"Hawaii\",type:\"option\",value:\"Hawaii\"},{title:\"Idaho\",type:\"option\",value:\"Idaho\"},{title:\"Illinois\",type:\"option\",value:\"Illinois\"},{title:\"Indiana\",type:\"option\",value:\"Indiana\"},{title:\"Iowa\",type:\"option\",value:\"Iowa\"},{title:\"Kansas\",type:\"option\",value:\"Kansas\"},{title:\"Kentucky\",type:\"option\",value:\"Kentucky\"},{title:\"Louisiana\",type:\"option\",value:\"Louisiana\"},{title:\"Maine\",type:\"option\",value:\"Maine\"},{title:\"Maryland\",type:\"option\",value:\"Maryland\"},{title:\"Massachusetts\",type:\"option\",value:\"Massachusetts\"},{title:\"Michigan\",type:\"option\",value:\"Michigan\"},{title:\"Minnesota\",type:\"option\",value:\"Minnesota\"},{title:\"Mississippi\",type:\"option\",value:\"Mississippi\"},{title:\"Missouri\",type:\"option\",value:\"Missouri\"},{title:\"Montana\",type:\"option\",value:\"Montana\"},{title:\"Nebraska\",type:\"option\",value:\"Nebraska\"},{title:\"Nevada\",type:\"option\",value:\"Nevada\"},{title:\"New Hampshire\",type:\"option\",value:\"New Hampshire\"},{title:\"New Jersey\",type:\"option\",value:\"New Jersey\"},{title:\"New Mexico\",type:\"option\",value:\"New Mexico\"},{title:\"New York\",type:\"option\",value:\"New York\"},{title:\"North Carolina\",type:\"option\",value:\"North Carolina\"},{title:\"North Dakota\",type:\"option\",value:\"North Dakota\"},{title:\"Ohio\",type:\"option\",value:\"Ohio\"},{title:\"Oklahoma\",type:\"option\",value:\"Oklahoma\"},{title:\"Oregon\",type:\"option\",value:\"Oregon\"},{title:\"Pennsylvania\",type:\"option\",value:\"Pennsylvania\"},{title:\"Puerto Rico\",type:\"option\",value:\"Puerto Rico\"},{title:\"Rhode Island\",type:\"option\",value:\"Rhode Island\"},{title:\"South Carolina\",type:\"option\",value:\"South Carolina\"},{title:\"South Dakota\",type:\"option\",value:\"South Dakota\"},{title:\"Tennessee\",type:\"option\",value:\"Tennessee\"},{title:\"Texas\",type:\"option\",value:\"Texas\"},{title:\"Utah\",type:\"option\",value:\"Utah\"},{title:\"Vermont\",type:\"option\",value:\"Vermont\"},{title:\"Virginia\",type:\"option\",value:\"Virginia\"},{title:\"Washington\",type:\"option\",value:\"Washington\"},{title:\"West Virginia\",type:\"option\",value:\"West Virginia\"},{title:\"Wisconsin\",type:\"option\",value:\"Wisconsin\"},{title:\"Wyoming\",type:\"option\",value:\"Wyoming\"}]})})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-teodse\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best day to call\"})}),className:\"framer-1h2vrm0\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-17ldvug\",inputName:\"Date\",placeholder:\"jane@framer.com\",required:true,type:\"date\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1wu1xi4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best time to call\"})}),className:\"framer-redffn\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-obpwhn\",inputName:\"Time\",placeholder:\"jane@framer.com\",required:true,type:\"time\"})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-xayuum\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1t4i1en\",inputName:\"Message\",placeholder:getLocalizedValue(\"v12\",activeLocale)??\"Message\",type:\"textarea\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-12ughdy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"How did you hear about us?\"})}),className:\"framer-e0g593\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-13pep4e\",inputName:\"Referral\",placeholder:getLocalizedValue(\"v32\",activeLocale)??\"Facebook, Google Search, Referrer's name, etc.\",required:false,type:\"text\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\"},children:\"We respect your privacy, your information will not be shared.\"})}),className:\"framer-bllaf4\",fonts:[\"GF;Roboto-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 500px) - 40px)`},UdZtn4DZA:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 500px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc(min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 90px) / 2, 1px), 500px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nyqdrx-container\",nodeId:\"zVgFB2H4I\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(ButtonEnglish,{height:\"100%\",id:\"zVgFB2H4I\",layoutId:\"zVgFB2H4I\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"i1yX80X77\",success:\"knImXSYxh\"},\"s18fgWEmC\"),width:\"100%\"})})})})]})})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e3c9ft\",\"data-framer-name\":\"Calculator\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m23m9q\",\"data-framer-name\":\"All Packages Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Easily calculate the size and cost of your screen \"})})},UdZtn4DZA:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Easily calculate the size and cost of your screen \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Easily calculate the size and cost of your screen \"})}),className:\"framer-rw609o\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:[\"1. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Measure Your Installation Area\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Determine the wall dimensions or approximate area where the screen will be installed.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:[\"2. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Launch the Calculator\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:'Click the \"Try Calculator\" button below to open the screen size and cost calculator.'}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:[\"3. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Select Your Screen Options\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Use the top buttons to choose your desired pixel pitch and screen type.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:[\"4. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Input Measurements\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Enter the dimensions of the installation area and click \",/*#__PURE__*/_jsx(\"strong\",{children:\"CALCULATE\"}),\".\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"var(--token-93bd7950-041d-4785-92f6-bb3b8e6be9c2, rgb(2, 173, 191))\"},children:[\"5. \",/*#__PURE__*/_jsx(\"strong\",{children:\"Review Your Results\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"View the calculated screen size, the required number of panels, and the total estimated cost.\"})]}),className:\"framer-1feaqhz\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\",\"GF;Roboto-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Screen Graphic\",fit:\"fill\",pixelHeight:473,pixelWidth:1e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,src:\"https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg\",srcSet:\"https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg 1000w\"}},UdZtn4DZA:{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Screen Graphic\",fit:\"fit\",pixelHeight:857,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",...getLocalizedValue(\"v39\",activeLocale)??{pixelHeight:857,pixelWidth:1e3,src:\"https://framerusercontent.com/images/VlvLdjHCsP3TiTea8HGzLaNUE.jpg\",srcSet:\"https://framerusercontent.com/images/VlvLdjHCsP3TiTea8HGzLaNUE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VlvLdjHCsP3TiTea8HGzLaNUE.jpg 1000w\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v38\",activeLocale)??\"Screen Graphic\",fit:\"fit\",pixelHeight:473,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg\",srcSet:\"https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2lzbrTOEw0Ur7v4T5YjE6oaUI8.jpg 1000w\"},className:\"framer-5qnpyy\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bj9ghe\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.button,{className:\"framer-lxzqok\",\"data-reset\":\"button\",id:\"lxzqok\",onTap:onTap3bnx0g({overlay:overlay1}),whileHover:animation4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Try Calculator\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Try Calculator\"})}),className:\"framer-xau2et\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1ip8vrb\"),\"data-framer-portal-id\":\"lxzqok\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"vSWM0ZEZd\"),/*#__PURE__*/_jsxs(\"div\",{className:cx(scopingClassNames,\"framer-23p1rc\"),\"data-framer-portal-id\":\"lxzqok\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xxk6t7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Xc8yd8ODJ\",rendersWithMotion:true,scopeId:\"Qh4cMR41t\",whileHover:animation5,children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"XCircle\",id:\"Xc8yd8ODJ\",layoutId:\"Xc8yd8ODJ\",mirrored:false,onClick:onClick1wnntms({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ztl48-container\",nodeId:\"r2MSOTHoL\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{variant:\"O4n2Clrst\"},UdZtn4DZA:{variant:\"gjMhFWf_w\"}},children:/*#__PURE__*/_jsx(NestedCalculatorFinal,{height:\"100%\",id:\"r2MSOTHoL\",layoutId:\"r2MSOTHoL\",variant:\"Gv233UStG\",width:\"100%\"})})})})]})]}),getContainer())})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 173, 191)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-style\":\"italic\"},children:\"*Calculator results are a close cost estimate, \"}),/*#__PURE__*/_jsx(\"em\",{children:\"prices are subject to change based on fluctuations on panels pricing and availability. Contact us for updated cost.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 173, 191)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-style\":\"italic\"},children:\"*Calculator results are a close cost estimate, \"}),/*#__PURE__*/_jsx(\"em\",{children:\"prices are subject to change based on fluctuations on panels pricing and availability. Contact us for updated cost.\"})]})}),className:\"framer-cduv1j\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-126z9l9\",\"data-framer-name\":\"Templates Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1htsgx1\",\"data-framer-name\":\"All Packages Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Special Packages\"})})},UdZtn4DZA:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Special Packages\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Special Packages\"})}),className:\"framer-11p5sh3\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jtsmqp\",\"data-framer-name\":\"2 Packages Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gm9pz7\",\"data-framer-name\":\"Starting Package\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-311trs\",\"data-framer-name\":\"TITLE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ibGFjaw==\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"STARTING PACKAGE\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Video Wall LED panel\"})]}),className:\"framer-1riwmtv\",fonts:[\"FS;Poppins-black\",\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u0sdg6\",\"data-framer-name\":\"SCREEN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{background:{alt:\"LED screen starting package\",fit:\"fit\",pixelHeight:777,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg\",srcSet:\"https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen starting package\",fit:\"fit\",pixelHeight:777,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg\",srcSet:\"https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ixbzLALnGfh3Zlkpv3klG0dnyU.jpg 800w\"},className:\"framer-1vx9m92\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tr9uea\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s863lz\",\"data-styles-preset\":\"HauJfJ6ty\",children:\"P2.5MM 10.6' x 6.6' \u2022 Refresh 3840 Hz \u2022 Novastar Processor \u2022 basic Installation Included \u2022 Turn-Key Solutions\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"P2.5MM\"}),\" 10.4' x 6.5' \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Refresh 7680 Hz \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Novastar Processor \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" basic Installation Included \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Turn-Key Solutions\"]})}),className:\"framer-1x6jdly\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwz10t\",\"data-framer-name\":\"Large Screen Offer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14zo75x\",\"data-framer-name\":\"TITLE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ibGFjaw==\",\"--framer-font-family\":'\"Poppins\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LARGE SCREEN PACKAGE\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Video Wall LED panel\"})]}),className:\"framer-ds29br\",fonts:[\"FS;Poppins-black\",\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d25g4o\",\"data-framer-name\":\"SCREEN\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{background:{alt:\"LED screen large package\",fit:\"fit\",pixelHeight:777,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"350px\",src:\"https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg\",srcSet:\"https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen large package\",fit:\"fit\",pixelHeight:777,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"546px\",src:\"https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg\",srcSet:\"https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sd27KfY4nIcbFXa4ejXfYq3GYVY.jpg 800w\"},className:\"framer-18bwhfp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9ujx0q\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1s863lz\",\"data-styles-preset\":\"HauJfJ6ty\",children:\"P2.9MM 16.2' x 9.8' \u2022 Refresh 3840 Hz \u2022 Novastar Processor \u2022 basic Installation Included \u2022 Turn-Key Solutions\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-weight\":\"900\"},children:\"P2.9MM\"}),\" 16.2' x 9.8' \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Refresh 7680 Hz \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Novastar Processor \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" basic Installation Included \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"\u2022\"}),\" Turn-Key Solutions\"]})}),className:\"framer-um1mst\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c1kd8t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We offer the best prices with payment plans starting from $310 a month.\"})}),viewBox:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We offer the best prices with payment plans starting from $310 a month.\"})}),className:\"framer-9m369r\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",viewBox:getLocalizedValue(\"v54\",activeLocale)??\"0 0 1182 45\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 173, 191)\"},children:\"For more information click here:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 173, 191)\"},children:\"For more information click here:\"})}),className:\"framer-aoinrs\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://hamptonridgefinancial.com/creativo-plus/\",motionChild:true,nodeId:\"I8TJlhPDf\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1h0hjuy framer-twfjko\",\"data-reset\":\"button\",whileHover:animation4,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Payment Plans\"})}),className:\"framer-i5kpn1\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6jy47h\",\"data-framer-name\":\"Services Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ril3dq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Our Services\"})})},UdZtn4DZA:{children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Our Services\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Our Services\"})}),className:\"framer-1us9ilx\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ye8b8e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9190i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Churches\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Enhance your worship experience with high-quality LED wall panels that offer clear, vibrant visuals. We make it easy to communicate your message and engage your congregation from every corner of your worship space.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Seamless integration with existing AV systems\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customizable sizes and resolutions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Training for staff on optimal usage\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Businesses\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Boost your corporate presentations and internal communications with top-tier video wall LED screens. Whether for boardrooms, lobbies, or conference halls, our screens ensure your message is delivered with impact.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Professional-grade wall LED panels with high resolution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Flexible configurations to fit any space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Post-installation support and maintenance\"})})]})]})},UdZtn4DZA:{children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Churches\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Enhance your worship experience with high-quality LED wall panels that offer clear, vibrant visuals. We make it easy to communicate your message and engage your congregation from every corner of your worship space.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Seamless integration with existing AV systems\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customizable sizes and resolutions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Training for staff on optimal usage\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Businesses\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Boost your corporate presentations and internal communications with top-tier video wall LED screens. Whether for boardrooms, lobbies, or conference halls, our screens ensure your message is delivered with impact.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Professional-grade wall LED panels with high resolution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Flexible configurations to fit any space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Post-installation support and maintenance\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Churches\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Enhance your worship experience with high-quality LED wall panels that offer clear, vibrant visuals. We make it easy to communicate your message and engage your congregation from every corner of your worship space.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Seamless integration with existing AV systems\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customizable sizes and resolutions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Training for staff on optimal usage\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Businesses\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Boost your corporate presentations and internal communications with top-tier video wall LED screens. Whether for boardrooms, lobbies, or conference halls, our screens ensure your message is delivered with impact.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Professional-grade wall LED panels with high resolution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Flexible configurations to fit any space\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Post-installation support and maintenance\"})})]})]}),className:\"framer-1cq4yfj\",fonts:[\"GF;Poppins-700\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdxbkv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Events\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Create memorable events with LED panels that captivate your audience. From concerts and festivals to trade shows and conferences, our screens provide the perfect backdrop for your performances and presentations.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Portable and easy-to-set-up video wall LEDs\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"High brightness and contrast for outdoor and indoor use\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Real-time support during events\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Available for sale and rental to suit your event needs\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Educational Centers\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Engage students and enhance learning experiences with dynamic LED panels. Perfect for lecture halls, auditoriums, and classrooms, our screens bring educational content to life.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive displays for collaborative learning\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Energy-efficient and durable LED wall panels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Comprehensive training for educators\"})})]})]})},UdZtn4DZA:{children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Events\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Create memorable events with LED panels that captivate your audience. From concerts and festivals to trade shows and conferences, our screens provide the perfect backdrop for your performances and presentations.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Portable and easy-to-set-up video wall LEDs\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"High brightness and contrast for outdoor and indoor use\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Real-time support during events\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Available for sale and rental to suit your event needs\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Educational Centers\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Engage students and enhance learning experiences with dynamic LED panels. Perfect for lecture halls, auditoriums, and classrooms, our screens bring educational content to life.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive displays for collaborative learning\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Energy-efficient and durable LED wall panels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Comprehensive training for educators\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Events\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Create memorable events with LED panels that captivate your audience. From concerts and festivals to trade shows and conferences, our screens provide the perfect backdrop for your performances and presentations.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Portable and easy-to-set-up video wall LEDs\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"High brightness and contrast for outdoor and indoor use\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Real-time support during events\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Available for sale and rental to suit your event needs\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})})]}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, rgb(21, 28, 45))\"},children:\"For Educational Centers\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"Engage students and enhance learning experiences with dynamic LED panels. Perfect for lecture halls, auditoriums, and classrooms, our screens bring educational content to life.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive displays for collaborative learning\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Energy-efficient and durable LED wall panels\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Comprehensive training for educators\"})})]})]}),className:\"framer-7ft953\",fonts:[\"GF;Poppins-700\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"LED close up background\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg\",srcSet:\"https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/pZo1XLFBmZmAoaxZ6JyT2pWCERU.jpg 6000w\"},className:\"framer-cagmh1\",\"data-framer-name\":\"Services Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fl3m2e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjp3mj\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0i9xh\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-b4dtcf\",\"data-framer-name\":\"ExpertGuidance\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 83 100\"><g transform=\"translate(-0.004 0)\"><path d=\"M 6.095 40.571 C 7.77 42.276 7.77 45.009 6.095 46.714 L 2.341 50.584 C -0.23 53.234 -0.737 57.325 1.108 60.506 L 6.822 70.403 C 7.25 71.156 7.809 71.831 8.445 72.403 C 7.484 74.818 6.952 77.455 6.952 80.221 L 6.952 97.649 C 6.952 98.727 7.822 99.597 8.9 99.597 L 74.432 99.597 C 75.51 99.597 76.38 98.727 76.38 97.649 L 76.38 93.909 C 76.38 92.831 75.51 91.961 74.432 91.961 C 73.354 91.961 72.484 92.831 72.484 93.909 L 72.484 95.701 L 65.575 95.701 L 65.575 81.26 C 65.575 80.182 64.705 79.312 63.627 79.312 C 62.549 79.312 61.679 80.182 61.679 81.26 L 61.679 95.701 L 50.432 95.701 L 47.186 70.675 L 50.341 62.896 L 55.147 62.896 C 63.419 62.896 70.744 69 72.212 77.156 C 72.402 78.214 73.413 78.917 74.471 78.727 C 75.529 78.537 76.233 77.525 76.043 76.468 C 75.796 75.104 75.419 73.779 74.939 72.519 C 75.64 71.922 76.237 71.195 76.692 70.39 L 82.406 60.494 C 84.246 57.282 83.749 53.242 81.186 50.571 L 77.432 46.701 C 75.757 44.996 75.757 42.263 77.432 40.558 L 81.186 36.688 C 83.757 34.039 84.263 29.948 82.406 26.766 L 76.692 16.87 C 74.848 13.675 71.056 12.065 67.484 12.974 L 62.25 14.286 C 59.934 14.875 57.571 13.509 56.926 11.208 L 55.458 6.026 C 54.429 2.467 51.176 0.013 47.471 0 L 36.03 0 C 32.341 0 29.069 2.481 28.043 6.026 L 26.575 11.208 C 25.926 13.519 23.588 14.87 21.263 14.286 L 16.03 12.974 C 12.445 12.078 8.666 13.675 6.809 16.87 L 1.108 26.766 C -0.737 29.961 -0.243 34.039 2.328 36.688 L 6.082 40.558 Z M 32.575 95.701 L 21.38 95.701 L 21.38 81.26 C 21.38 80.182 20.51 79.312 19.432 79.312 C 18.354 79.312 17.484 80.182 17.484 81.26 L 17.484 95.701 L 10.835 95.701 L 10.835 80.221 C 10.835 70.792 18.731 62.896 28.16 62.896 L 32.913 62.896 L 35.718 70.623 L 32.549 95.701 Z M 36.497 95.701 L 39.445 72.364 L 43.497 72.364 L 46.523 95.701 Z M 37.069 62.896 L 46.147 62.896 L 43.887 68.468 L 39.095 68.468 Z M 41.666 59.013 C 34.536 59.013 28.718 53.208 28.718 46.065 L 28.718 41.338 L 36.991 41.338 C 39.848 41.338 42.38 40.455 44.744 38.623 C 45.302 38.182 46.121 38.143 46.679 38.61 C 48.536 40.169 50.757 41.338 53.082 42.026 C 53.263 42.078 53.445 42.104 53.64 42.104 L 54.614 42.104 L 54.614 46.065 C 54.614 53.195 48.809 59.013 41.679 59.013 Z M 27.056 37.442 C 27.874 30.104 34.108 24.377 41.666 24.377 C 45.588 24.377 49.276 25.909 52.056 28.675 C 54.627 31.247 56.134 34.61 56.341 38.208 L 53.926 38.208 C 52.212 37.662 50.562 36.779 49.186 35.623 C 47.224 33.987 44.354 33.987 42.354 35.545 C 40.666 36.857 39.004 37.442 36.991 37.442 Z M 4.484 28.714 L 10.199 18.818 C 11.173 17.117 13.186 16.273 15.095 16.753 L 20.328 18.065 C 24.705 19.156 29.095 16.623 30.328 12.286 L 31.796 7.104 C 32.341 5.209 34.071 3.902 36.043 3.896 L 47.484 3.896 C 49.445 3.896 51.186 5.208 51.731 7.104 L 53.199 12.286 C 54.432 16.623 58.822 19.169 63.212 18.065 L 68.445 16.753 C 70.341 16.273 72.354 17.13 73.341 18.818 L 79.056 28.727 C 80.043 30.429 79.77 32.584 78.406 34 L 74.653 37.87 C 71.51 41.082 71.51 46.217 74.653 49.429 L 78.406 53.299 C 79.774 54.715 80.039 56.866 79.056 58.571 L 73.341 68.481 C 73.263 68.61 73.186 68.74 73.095 68.857 C 69.237 62.779 62.367 59.013 55.173 59.013 L 52.432 59.013 C 56.147 55.922 58.51 51.273 58.51 46.065 L 58.51 42.091 C 59.507 41.997 60.268 41.157 60.263 40.156 L 60.263 39.065 C 60.263 34.104 58.328 29.429 54.822 25.922 C 51.315 22.416 46.64 20.481 41.679 20.481 C 31.432 20.481 23.095 28.818 23.095 39.065 L 23.095 39.377 C 23.095 40.39 23.861 41.221 24.848 41.312 L 24.848 46.052 C 24.848 51.247 27.212 55.909 30.926 59 L 28.186 59 C 21.056 59 14.237 62.714 10.354 68.701 C 10.302 68.623 10.25 68.532 10.199 68.455 L 4.484 58.545 C 3.497 56.844 3.77 54.688 5.134 53.273 L 8.887 49.403 C 12.03 46.191 12.03 41.056 8.887 37.844 L 5.134 33.974 C 3.766 32.558 3.501 30.407 4.484 28.701 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 43.186 47.662 L 42.809 47.662 L 43.51 45.532 C 43.848 44.506 43.289 43.416 42.263 43.078 C 41.237 42.74 40.147 43.299 39.809 44.325 L 38.497 48.338 C 38.25 49.078 38.38 49.909 38.848 50.545 C 39.302 51.182 40.056 51.558 40.835 51.558 L 43.186 51.558 C 44.263 51.558 45.134 50.688 45.134 49.61 C 45.134 48.532 44.263 47.662 43.186 47.662 Z M 73.341 83.753 C 72.458 84.338 72.224 85.571 72.809 86.455 C 73.393 87.338 74.627 87.584 75.51 86.987 C 76.393 86.403 76.64 85.169 76.043 84.286 C 75.445 83.403 74.224 83.156 73.341 83.753 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></g></svg>',svgContentId:11423002781,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Expert Guidance\"})}),className:\"framer-170v8qr\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Our experienced team will help you navigate through various options to find the perfect LED panel or video wall LED that best fits your requirements and budget.\"})}),className:\"framer-1r3jd2w\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-180kc3d\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1khow04\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vx33mw\",\"data-framer-name\":\"CustomizedSolutions\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 100\"><g transform=\"translate(0 -0.012)\"><path d=\"M 1.94 84.595 L 31.988 84.595 C 33.06 84.595 33.929 83.726 33.929 82.655 L 33.929 75.333 C 33.929 69.643 29.5 64.964 23.905 64.583 C 24.717 63.288 25.146 61.79 25.143 60.262 L 25.143 57.869 C 25.143 53.357 21.476 49.69 16.964 49.69 C 12.452 49.69 8.786 53.357 8.786 57.869 L 8.786 60.262 C 8.786 61.845 9.238 63.333 10.024 64.583 C 4.429 64.976 0 69.643 0 75.333 L 0 82.655 C 0 83.726 0.869 84.595 1.94 84.595 Z M 12.679 57.869 C 12.679 55.5 14.607 53.571 16.976 53.571 C 19.345 53.571 21.274 55.5 21.274 57.869 L 21.274 60.262 C 21.274 62.631 19.345 64.56 16.976 64.56 C 14.607 64.56 12.679 62.631 12.679 60.262 Z M 3.893 75.333 C 3.899 71.529 6.982 68.447 10.786 68.44 L 23.155 68.44 C 26.959 68.447 30.041 71.529 30.048 75.333 L 30.048 80.714 L 26.476 80.714 L 26.476 75.81 C 26.476 74.738 25.607 73.869 24.536 73.869 C 23.464 73.869 22.595 74.738 22.595 75.81 L 22.595 80.714 L 11.5 80.714 L 11.5 75.81 C 11.5 74.738 10.631 73.869 9.56 73.869 C 8.488 73.869 7.619 74.738 7.619 75.81 L 7.619 80.714 L 3.893 80.714 Z M 74.167 31.917 C 74.702 29.845 74.976 27.69 74.976 25.524 C 74.976 22.345 74.405 19.25 73.262 16.31 C 73.076 15.829 72.707 15.442 72.236 15.235 C 71.764 15.027 71.23 15.015 70.75 15.202 C 69.75 15.595 69.25 16.714 69.643 17.714 C 71.989 23.797 71.473 30.613 68.238 36.274 C 68 30.048 62.964 25.036 56.726 24.833 C 57.738 23.381 58.321 21.619 58.321 19.726 L 58.321 17.024 C 58.321 12.071 54.286 8.036 49.333 8.036 C 44.381 8.036 40.345 12.071 40.345 17.024 L 40.345 19.714 C 40.345 21.607 40.94 23.369 41.94 24.821 C 35.845 25.024 30.893 29.821 30.452 35.857 C 28.726 32.687 27.821 29.134 27.821 25.524 C 27.821 19.75 30.071 14.31 34.155 10.226 C 38.2 6.158 43.704 3.878 49.44 3.893 C 52.917 3.893 56.238 4.69 59.31 6.274 C 60.262 6.762 61.44 6.393 61.929 5.429 C 62.417 4.464 62.048 3.298 61.083 2.81 C 57.512 0.976 53.476 0 49.429 0 C 42.619 0 36.202 2.655 31.393 7.476 C 26.59 12.252 23.897 18.751 23.917 25.524 C 23.917 27.44 24.131 29.333 24.548 31.179 C 25.56 35.631 27.774 39.762 30.917 43.071 C 34.25 46.702 38.81 49.262 43.607 50.381 L 43.607 56.929 L 42.19 56.929 C 41.119 56.929 40.25 57.798 40.25 58.869 L 40.25 90.333 C 40.25 95.393 44.369 99.512 49.429 99.512 C 54.488 99.512 58.607 95.393 58.607 90.333 L 58.607 58.869 C 58.607 57.798 57.738 56.929 56.667 56.929 L 55.274 56.929 L 55.274 50.369 C 58.381 49.643 61.298 48.357 63.929 46.536 C 68.857 43.143 72.583 38.024 74.155 31.917 Z M 44.226 17.024 C 44.226 14.214 46.512 11.929 49.321 11.929 C 52.131 11.929 54.417 14.214 54.417 17.024 L 54.417 19.714 C 54.417 22.524 52.131 24.81 49.321 24.81 L 49.31 24.81 C 46.5 24.81 44.214 22.524 44.214 19.714 L 44.214 17.024 Z M 54.738 90.345 C 54.738 93.262 52.369 95.631 49.452 95.631 C 46.536 95.631 44.167 93.262 44.167 90.345 L 44.167 60.833 L 54.75 60.833 L 54.75 90.345 Z M 47.512 56.94 L 47.512 50.976 C 48.81 51.071 50.107 51.071 51.405 50.976 L 51.405 56.94 Z M 64.357 41.202 C 62.998 42.501 61.473 43.614 59.821 44.512 L 59.821 37.857 C 59.821 36.785 58.953 35.917 57.881 35.917 C 56.809 35.917 55.94 36.785 55.94 37.857 L 55.94 46.155 C 51.714 47.476 47.131 47.464 42.917 46.131 L 42.917 37.857 C 42.917 36.785 42.048 35.917 40.976 35.917 C 39.904 35.917 39.036 36.785 39.036 37.857 L 39.036 44.464 C 37.31 43.512 35.726 42.333 34.321 40.952 L 34.321 36.738 C 34.321 32.31 37.929 28.702 42.357 28.702 L 56.321 28.702 C 60.75 28.702 64.357 32.31 64.357 36.738 L 64.357 41.19 Z M 89.476 64.571 C 90.288 63.276 90.717 61.778 90.714 60.25 L 90.714 57.857 C 90.714 53.345 87.048 49.679 82.536 49.679 C 78.024 49.679 74.357 53.345 74.357 57.857 L 74.357 60.25 C 74.357 61.833 74.81 63.321 75.595 64.571 C 70 64.964 65.571 69.631 65.571 75.321 L 65.571 82.643 C 65.571 83.714 66.44 84.583 67.512 84.583 L 97.56 84.583 C 98.631 84.583 99.5 83.714 99.5 82.643 L 99.5 75.321 C 99.5 69.631 95.071 64.952 89.476 64.571 Z M 78.25 57.869 C 78.25 55.5 80.179 53.571 82.548 53.571 C 84.917 53.571 86.845 55.5 86.845 57.869 L 86.845 60.262 C 86.845 62.631 84.917 64.56 82.548 64.56 C 80.179 64.56 78.25 62.631 78.25 60.262 Z M 95.619 80.714 L 92.226 80.714 L 92.226 75.81 C 92.226 74.738 91.357 73.869 90.286 73.869 C 89.214 73.869 88.345 74.738 88.345 75.81 L 88.345 80.714 L 77.071 80.714 L 77.071 75.81 C 77.071 74.738 76.203 73.869 75.131 73.869 C 74.059 73.869 73.19 74.738 73.19 75.81 L 73.19 80.714 L 69.464 80.714 L 69.464 75.333 C 69.471 71.529 72.553 68.447 76.357 68.44 L 88.726 68.44 C 92.53 68.447 95.612 71.529 95.619 75.333 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 65.31 10.798 C 65.893 11.679 67.131 11.917 68 11.333 C 68.881 10.738 69.119 9.524 68.536 8.643 C 67.952 7.762 66.726 7.524 65.845 8.107 C 64.976 8.69 64.714 9.929 65.31 10.798 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></g></svg>',svgContentId:10057985887,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v70\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Customized Solutions\"})}),className:\"framer-pnrrkf\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"We offer bespoke recommendations and designs to ensure your LED wall panel perfectly suits your space and purpose.\"})}),className:\"framer-f1vjcv\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mq3bx4\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3ujsj\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lr8zp2\",\"data-framer-name\":\"Installation\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.31 100\"><g transform=\"translate(-0.002 -0.006)\"><path d=\"M 2.243 65.443 C -0.228 68.011 -0.71 71.901 1.059 74.995 L 6.473 84.374 C 8.261 87.459 11.876 88.988 15.335 88.121 L 20.289 86.88 C 22.427 86.34 24.588 87.581 25.186 89.707 L 26.577 94.615 C 27.56 98.043 30.689 100.409 34.255 100.42 L 45.094 100.42 C 48.634 100.42 51.795 98.041 52.772 94.615 L 54.163 89.707 C 54.772 87.581 56.921 86.34 59.059 86.88 L 64.013 88.121 C 67.45 88.983 71.105 87.443 72.875 84.374 L 78.289 74.995 C 80.07 71.903 79.587 68.006 77.105 65.443 L 73.554 61.776 C 72.013 60.206 72.013 57.692 73.554 56.121 L 77.105 52.454 C 78.737 50.771 79.545 48.454 79.312 46.121 C 79.174 45.074 78.231 44.325 77.181 44.428 C 76.13 44.53 75.349 45.447 75.416 46.5 C 75.531 47.696 75.117 48.868 74.289 49.719 L 70.738 53.386 C 67.715 56.474 67.715 61.412 70.738 64.5 L 74.289 68.167 C 75.547 69.475 75.79 71.456 74.887 73.029 L 69.473 82.409 C 68.56 83.973 66.726 84.749 64.967 84.317 L 60.013 83.075 C 55.828 82.007 51.555 84.478 50.393 88.638 L 49.002 93.546 C 48.499 95.289 46.908 96.492 45.094 96.5 L 34.255 96.5 C 32.45 96.5 30.841 95.282 30.347 93.546 L 28.956 88.638 C 27.791 84.474 23.513 82.003 19.324 83.075 L 14.37 84.317 C 12.611 84.751 10.776 83.974 9.864 82.409 L 4.45 73.018 C 3.542 71.454 3.795 69.454 5.048 68.156 L 8.6 64.489 C 11.623 61.401 11.623 56.462 8.6 53.374 L 5.048 49.707 C 3.791 48.399 3.547 46.419 4.45 44.845 L 9.864 35.466 C 10.772 33.903 12.623 33.121 14.37 33.558 L 19.324 34.799 C 23.427 35.822 27.542 33.535 28.853 29.569 C 29.496 30.213 29.818 31.041 29.864 31.937 L 29.864 41.305 C 23.554 44.822 19.508 51.615 19.508 58.926 C 19.508 69.983 28.841 79.098 39.68 79.098 C 50.519 79.098 59.853 69.995 59.853 58.926 C 59.853 56.868 59.542 54.834 58.933 52.903 C 57.382 47.975 54.006 43.826 49.496 41.305 L 49.496 31.937 C 49.531 31.041 49.864 30.213 50.508 29.569 C 51.81 33.551 55.978 35.838 60.036 34.799 L 64.99 33.558 C 65.807 33.351 66.657 33.409 67.45 33.719 C 68.462 34.11 69.6 33.604 69.99 32.604 C 70.381 31.592 69.875 30.454 68.875 30.064 C 67.336 29.467 65.649 29.362 64.048 29.765 L 59.094 31.006 C 56.944 31.546 54.795 30.305 54.197 28.179 L 53.726 26.535 C 56.243 23.528 57.622 19.732 57.623 15.811 C 57.623 9.11 53.531 2.972 47.186 0.167 C 46.579 -0.101 45.878 -0.044 45.322 0.318 C 44.765 0.679 44.429 1.297 44.427 1.96 L 44.427 11.707 L 39.772 14.42 L 34.967 11.696 L 34.967 1.972 C 34.967 1.305 34.634 0.696 34.071 0.328 C 33.519 -0.028 32.818 -0.086 32.209 0.179 C 25.864 2.983 21.772 9.121 21.772 15.822 C 21.772 19.776 23.163 23.523 25.669 26.546 L 25.197 28.202 C 24.605 30.318 22.43 31.574 20.301 31.029 L 15.347 29.788 C 11.898 28.926 8.255 30.466 6.485 33.535 L 1.071 42.903 C -0.71 45.994 -0.227 49.891 2.255 52.454 L 5.807 56.121 C 7.347 57.692 7.347 60.206 5.807 61.776 L 2.255 65.443 Z M 29.875 71.891 C 29.105 71.305 28.393 70.65 27.749 69.949 C 25.025 66.972 23.45 63.006 23.45 58.949 C 23.45 53.903 25.887 49.041 29.887 46.006 L 29.887 71.891 Z M 49.68 46.144 C 53.577 49.202 55.933 53.995 55.933 58.949 C 55.933 63.903 53.496 68.834 49.496 71.891 L 49.496 46.006 C 49.554 46.052 49.611 46.098 49.68 46.144 Z M 31.036 5.374 L 31.036 12.834 C 31.036 13.535 31.416 14.19 32.025 14.535 L 38.807 18.386 C 39.416 18.73 40.163 18.73 40.761 18.386 L 47.37 14.535 C 47.967 14.179 48.347 13.535 48.347 12.845 L 48.347 5.386 C 51.669 7.88 53.692 11.719 53.692 15.834 C 53.692 19.949 51.68 23.707 48.508 26.156 C 46.692 27.558 45.588 29.684 45.588 31.995 L 45.588 74.11 C 44.324 74.604 43.002 74.937 41.657 75.098 L 41.657 34.822 C 41.657 33.742 40.784 32.857 39.692 32.857 C 38.6 32.857 37.726 33.73 37.726 34.822 L 37.726 75.075 C 36.381 74.914 35.059 74.581 33.795 74.098 L 33.795 31.972 C 33.795 29.696 32.68 27.523 30.875 26.133 C 27.703 23.684 25.692 19.857 25.692 15.811 C 25.692 11.696 27.715 7.857 31.036 5.363 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 74.324 40.42 C 75.312 40.006 75.795 38.845 75.381 37.857 C 74.979 36.868 73.807 36.386 72.818 36.799 C 71.83 37.213 71.347 38.374 71.761 39.363 C 72.174 40.351 73.335 40.834 74.324 40.42 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></g></svg>',svgContentId:12186277027,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Seamless Installation\"})}),className:\"framer-199b16e\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Enjoy professional installation services that guarantee minimal disruption and maximum performance, with the quickest turnaround nationwide.\"})}),className:\"framer-1i7drjz\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aaz2lx\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xy4fty\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vjr3e3\",\"data-framer-name\":\"Support\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 92 100\"><path d=\"M 20.011 53.463 C 18.183 52.321 15.923 52.11 13.916 52.895 L 13.832 43.758 C 13.816 40.016 10.815 36.973 7.074 36.905 C 5.2 36.863 3.421 37.558 2.084 38.874 C 0.747 40.189 0 41.937 0 43.811 L 0 58.253 C -0.042 61.221 0.916 64.168 2.684 66.547 L 17.168 86.747 C 17.537 87.253 17.684 87.874 17.6 88.495 L 17.6 88.526 L 16.526 97.358 C 16.402 98.423 17.158 99.389 18.221 99.526 C 18.305 99.526 18.379 99.537 18.463 99.537 C 19.432 99.537 20.274 98.811 20.389 97.832 L 21.463 89.011 C 21.684 87.4 21.284 85.789 20.337 84.474 L 5.842 64.253 C 5.842 64.253 5.832 64.232 5.821 64.221 C 4.544 62.499 3.864 60.407 3.884 58.263 L 3.884 43.789 C 3.884 42.968 4.211 42.2 4.8 41.621 C 5.389 41.042 6.158 40.747 6.989 40.758 C 8.632 40.8 9.937 42.116 9.947 43.758 L 10.063 56.747 C 9.168 59.072 9.612 61.699 11.221 63.6 L 18.737 72.432 C 19.421 73.242 20.674 73.337 21.474 72.653 C 22.295 71.958 22.389 70.726 21.695 69.916 L 14.179 61.084 C 13.411 60.179 13.295 58.937 13.779 57.926 C 14.568 56.295 16.737 55.779 18.168 56.895 L 28.337 68.853 C 29.495 70.212 30.282 71.847 30.621 73.6 L 31.989 97.695 C 32.053 98.768 32.968 99.589 34.042 99.526 C 35.116 99.463 35.937 98.547 35.874 97.474 L 34.505 73.253 C 34.505 73.168 34.495 73.095 34.474 73.011 C 34.021 70.547 32.926 68.242 31.305 66.326 L 21.021 54.232 C 20.747 53.905 20.368 53.653 20.011 53.432 Z M 89.621 38.874 C 88.294 37.567 86.493 36.857 84.632 36.905 C 80.891 36.973 77.889 40.016 77.874 43.758 L 77.789 52.895 C 75.568 52.021 72.316 52.337 70.684 54.274 L 60.4 66.368 C 58.777 68.281 57.685 70.586 57.232 73.053 L 57.2 73.295 L 55.832 97.516 C 55.768 98.589 56.589 99.505 57.663 99.568 C 58.737 99.632 59.653 98.811 59.716 97.737 L 61.084 73.642 C 61.423 71.889 62.21 70.254 63.368 68.895 L 73.537 56.937 C 74.979 55.821 77.137 56.337 77.926 57.968 C 78.411 58.979 78.295 60.221 77.526 61.126 L 70.011 69.958 C 69.316 70.779 69.411 72 70.232 72.695 C 71.042 73.379 72.284 73.284 72.968 72.474 L 80.484 63.642 C 82.094 61.741 82.538 59.114 81.642 56.789 L 81.758 43.8 C 81.767 42.163 83.079 40.833 84.716 40.8 C 85.537 40.789 86.316 41.084 86.905 41.663 C 87.495 42.242 87.821 43.011 87.821 43.832 L 87.821 58.305 C 87.853 60.432 87.158 62.547 85.884 64.263 C 85.884 64.263 85.874 64.284 85.863 64.295 L 71.368 84.516 C 70.422 85.826 70.019 87.452 70.242 89.053 L 71.316 97.874 C 71.432 98.863 72.274 99.579 73.242 99.579 C 73.316 99.579 73.4 99.579 73.484 99.568 C 73.997 99.506 74.463 99.242 74.781 98.835 C 75.099 98.429 75.242 97.912 75.179 97.4 L 74.105 88.568 L 74.105 88.537 C 74.021 87.916 74.168 87.295 74.537 86.789 L 89.021 66.589 C 90.789 64.211 91.747 61.263 91.716 58.295 L 91.716 43.853 C 91.716 41.979 90.968 40.221 89.632 38.905 Z M 39.042 46.347 C 39.048 49.595 41.679 52.226 44.926 52.232 L 57.568 52.232 C 62.232 52.232 66.042 48.526 66.221 43.895 C 68.962 43.872 71.173 41.646 71.179 38.905 L 71.179 28.537 C 71.179 25.8 68.958 23.568 66.232 23.547 L 66.232 20.453 C 66.232 12.653 61.895 5.632 54.905 2.147 C 53.947 1.663 52.779 2.063 52.295 3.021 C 51.811 3.979 52.2 5.147 53.168 5.632 C 58.832 8.453 62.347 14.137 62.347 20.453 L 62.347 23.547 C 59.611 23.568 57.4 25.8 57.4 28.537 L 57.4 38.905 C 57.4 41.642 59.611 43.863 62.337 43.895 C 62.166 46.396 60.086 48.338 57.579 48.337 L 52.768 48.337 C 52.989 47.716 53.116 47.042 53.116 46.347 C 53.11 43.1 50.479 40.469 47.232 40.463 L 44.926 40.463 C 41.679 40.469 39.048 43.1 39.042 46.347 Z M 61.274 38.905 L 61.274 28.537 C 61.274 27.926 61.768 27.432 62.379 27.432 L 66.189 27.432 C 66.8 27.432 67.295 27.926 67.295 28.537 L 67.295 38.905 C 67.295 39.516 66.8 40.011 66.189 40.011 L 62.379 40.011 C 61.768 40.011 61.274 39.516 61.274 38.905 Z M 44.926 44.347 L 47.232 44.347 C 48.326 44.347 49.221 45.242 49.221 46.337 C 49.221 47.432 48.326 48.326 47.232 48.326 L 44.926 48.326 C 43.832 48.326 42.937 47.432 42.937 46.337 C 42.937 45.242 43.832 44.347 44.926 44.347 Z M 36.558 2.189 C 29.632 5.695 25.326 12.684 25.326 20.442 L 25.326 23.537 C 22.589 23.558 20.379 25.789 20.379 28.526 L 20.379 38.895 C 20.385 41.648 22.615 43.878 25.368 43.884 L 29.179 43.884 C 31.932 43.878 34.163 41.648 34.168 38.895 L 34.168 28.526 C 34.168 25.789 31.947 23.558 29.221 23.537 L 29.221 20.442 C 29.221 14.158 32.705 8.495 38.316 5.653 C 39.274 5.168 39.663 4 39.168 3.042 C 38.937 2.581 38.531 2.231 38.041 2.071 C 37.551 1.911 37.017 1.954 36.558 2.189 Z M 30.274 28.537 L 30.274 38.905 C 30.274 39.516 29.779 40.011 29.168 40.011 L 25.358 40.011 C 24.747 40.011 24.253 39.516 24.253 38.905 L 24.253 28.537 C 24.253 27.926 24.747 27.432 25.358 27.432 L 29.168 27.432 C 29.779 27.432 30.274 27.926 30.274 28.537 Z M 44.884 3.737 C 46.453 4.389 48.074 2.768 47.421 1.2 C 47.086 0.414 46.283 -0.067 45.432 0.011 C 44.568 0.095 43.853 0.768 43.705 1.611 C 43.547 2.495 44.042 3.389 44.874 3.737 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></svg>',svgContentId:11317776833,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Comprehensive Support\"})}),className:\"framer-157ndfb\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v75\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"From the initial consultation to post-installation maintenance, we provide continuous support to keep your video wall LED running flawlessly.\"})}),className:\"framer-1ocnssb\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11hxkpr\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wolugl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nti8pn\",\"data-framer-name\":\"Warranty\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107 100\"><g><path d=\"M 38.459 72.915 C 38.787 72.744 39.152 72.61 39.517 72.537 L 59.421 72.537 C 61.78 72.537 64.139 73.171 66.182 74.354 L 72.736 78.146 L 72.784 78.171 C 75.715 79.854 79.083 80.744 82.512 80.744 L 92.069 80.744 C 93.224 80.744 94.16 79.805 94.16 78.646 C 94.16 77.488 93.224 76.549 92.069 76.549 L 82.512 76.549 C 79.824 76.549 77.186 75.854 74.9 74.549 C 80.943 68.345 84.326 60.015 84.323 51.341 C 84.323 44.073 82.025 37.183 77.684 31.39 C 73.49 25.793 67.519 21.585 60.868 19.549 C 59.762 19.207 58.595 19.829 58.254 20.939 C 57.914 22.049 58.534 23.22 59.64 23.561 C 65.44 25.341 70.656 29.012 74.329 33.902 C 78.122 38.963 80.116 44.988 80.116 51.329 C 80.116 59.305 76.858 66.89 71.131 72.366 C 69.562 71.463 68.018 70.463 66.352 69.756 C 71.775 65.268 74.997 58.561 74.997 51.341 C 74.997 38.171 64.309 27.451 51.178 27.451 C 38.046 27.451 27.358 38.171 27.358 51.341 C 27.358 58.451 30.507 65.098 35.796 69.585 C 34.323 70.54 33.197 71.948 32.586 73.598 C 26.011 68.089 22.215 59.935 22.227 51.341 C 22.227 45 24.233 38.976 28.015 33.927 C 31.674 29.037 36.891 25.366 42.678 23.585 C 43.785 23.244 44.405 22.073 44.065 20.963 C 43.902 20.431 43.535 19.985 43.045 19.724 C 42.555 19.464 41.981 19.409 41.45 19.573 C 34.811 21.61 28.854 25.817 24.659 31.415 C 20.318 37.207 18.032 44.098 18.032 51.354 C 18.032 60.5 21.74 69.085 28.173 75.293 L 16.147 72.317 C 11.661 71.207 7.004 74 5.861 78.488 C 4.718 82.976 7.417 87.622 11.867 88.841 L 32.38 94.451 C 34.739 95.098 37.17 95.524 39.59 95.732 L 91.862 100.28 L 92.044 100.28 C 93.114 100.28 94.038 99.451 94.136 98.354 C 94.233 97.195 93.382 96.183 92.227 96.073 L 39.943 91.524 C 37.766 91.341 35.59 90.951 33.474 90.378 L 12.962 84.768 C 10.7 84.146 9.326 81.793 9.91 79.512 C 10.493 77.232 12.852 75.817 15.126 76.378 L 33.279 80.878 C 34.784 83.299 37.427 84.77 40.271 84.768 L 54.947 84.768 C 56.102 84.768 57.038 83.829 57.038 82.671 C 57.038 81.512 56.102 80.573 54.947 80.573 L 40.271 80.573 C 38.617 80.573 37.195 79.573 36.575 78.146 C 35.711 76.22 36.55 73.878 38.423 72.902 Z M 31.553 51.341 C 31.553 40.488 40.356 31.659 51.19 31.659 C 62.024 31.659 70.815 40.488 70.815 51.341 C 70.815 58.402 67.07 64.89 60.99 68.402 C 60.467 68.354 59.944 68.329 59.421 68.329 L 41.256 68.329 C 35.261 64.793 31.553 58.341 31.553 51.341 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 5.18 70.646 C 5.867 70.647 6.512 70.309 6.903 69.741 C 7.293 69.174 7.381 68.45 7.137 67.805 C 5.177 62.535 4.177 56.954 4.183 51.329 C 4.183 38.744 9.071 26.902 17.947 18 C 26.835 9.11 38.629 4.207 51.19 4.207 C 63.75 4.207 75.544 9.11 84.421 18.012 C 93.297 26.915 98.185 38.756 98.185 51.341 C 98.185 55.378 97.674 59.354 96.677 63.22 L 94.634 59.463 C 94.075 58.439 92.81 58.073 91.789 58.622 C 90.768 59.183 90.403 60.451 90.95 61.476 L 95.352 69.561 C 95.923 70.598 97.273 70.963 98.282 70.354 L 106.307 65.451 C 107.292 64.841 107.608 63.549 107.012 62.561 C 106.416 61.573 105.115 61.256 104.13 61.854 L 100.847 63.866 C 101.869 59.793 102.38 55.598 102.38 51.354 C 102.38 37.646 97.054 24.744 87.387 15.049 C 77.721 5.341 64.857 0 51.19 0 C 37.523 0 24.659 5.341 14.992 15.037 C 5.326 24.732 0 37.622 0 51.341 C 0 57.512 1.082 63.549 3.222 69.28 C 3.538 70.122 4.341 70.646 5.192 70.646 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 49.451 21.366 C 50.083 22.317 51.409 22.573 52.357 21.951 C 53.305 21.329 53.573 19.988 52.941 19.037 C 52.308 18.085 50.983 17.817 50.035 18.451 C 49.074 19.085 48.831 20.415 49.451 21.366 Z M 45.256 47.439 C 46.715 47.732 48.138 46.768 48.43 45.305 C 48.649 44.207 49.609 43.415 50.728 43.415 C 51.968 43.415 52.989 44.39 53.062 45.622 C 52.892 46.951 52.114 48.183 51.36 49.256 C 48.247 53.72 46.387 56.159 45.39 57.463 C 44.137 59.11 43.444 60.012 43.894 61.488 C 44.162 62.366 44.818 63.037 45.706 63.329 C 46.059 63.451 53.816 63.537 56.625 63.5 C 57.341 63.492 58.025 63.198 58.525 62.683 C 59.025 62.168 59.299 61.475 59.288 60.756 C 59.266 59.261 58.042 58.066 56.552 58.085 C 54.91 58.11 53.184 58.122 51.652 58.122 C 52.685 56.72 54.047 54.841 55.774 52.354 C 57.087 50.476 58.449 48.122 58.449 45.756 C 58.449 41.476 54.983 38 50.716 38 C 47.031 38 43.834 40.634 43.128 44.256 C 42.836 45.72 43.797 47.146 45.256 47.439 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></g></svg>',svgContentId:9342434746,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v76\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"2 Year Warranty\"})}),className:\"framer-1kz2ygx\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v77\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Every LED panel comes with a two-year warranty for peace of mind.\"})}),className:\"framer-7boc5i\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18kbd9l\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7h0vjg\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19s5y3z\",\"data-framer-name\":\"Financing\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 98 100\"><g transform=\"translate(0 -0.012)\"><path d=\"M 50.377 13.642 C 50.377 14.716 51.258 15.593 52.337 15.593 C 71.131 15.593 86.687 29.667 88.907 47.79 L 86.724 45.938 C 85.893 45.235 84.665 45.333 83.957 46.16 C 83.25 46.988 83.35 48.21 84.181 48.914 L 89.875 53.753 C 90.693 54.444 91.959 54.346 92.653 53.531 L 97.33 48.012 C 97.974 47.183 97.846 45.997 97.042 45.322 C 96.237 44.646 95.04 44.722 94.328 45.494 L 92.815 47.284 C 90.334 27.259 73.128 11.691 52.349 11.691 C 51.27 11.691 50.389 12.568 50.389 13.642 Z M 0 24.099 L 0 31.148 C 0 32.222 0.881 33.099 1.96 33.099 L 28.581 33.099 C 29.661 33.099 30.541 32.222 30.541 31.148 L 30.541 24.099 C 30.541 19.185 26.857 15.111 22.106 14.444 C 22.85 13.235 23.284 11.815 23.284 10.284 L 23.284 7.975 C 23.284 3.58 19.687 0 15.271 0 C 10.854 0 7.257 3.58 7.257 7.975 L 7.257 10.284 C 7.257 11.802 7.691 13.235 8.435 14.444 C 3.672 15.099 0 19.173 0 24.099 Z M 11.189 7.988 C 11.189 5.753 13.025 3.926 15.271 3.926 C 17.516 3.926 19.352 5.753 19.352 7.988 L 19.352 10.296 C 19.352 12.531 17.516 14.358 15.271 14.358 C 13.025 14.358 11.189 12.531 11.189 10.296 Z M 3.932 24.099 C 3.932 20.877 6.562 18.259 9.8 18.259 L 20.754 18.259 C 23.991 18.259 26.621 20.877 26.621 24.099 L 26.621 29.185 L 23.086 29.185 L 23.086 25.173 C 23.086 24.099 22.205 23.222 21.126 23.222 C 20.047 23.222 19.166 24.099 19.166 25.173 L 19.166 29.185 L 11.4 29.185 L 11.4 25.173 C 11.4 24.099 10.519 23.222 9.44 23.222 C 8.361 23.222 7.48 24.099 7.48 25.173 L 7.48 29.185 L 3.945 29.185 L 3.945 24.099 Z M 98.198 98.148 L 98.198 91.099 C 98.198 86.185 94.514 82.111 89.763 81.444 C 90.507 80.235 90.942 78.815 90.942 77.284 L 90.942 74.975 C 90.942 72.84 90.11 70.84 88.597 69.333 C 87.084 67.827 85.074 67 82.928 67 C 78.505 67.007 74.921 70.573 74.914 74.975 L 74.914 77.284 C 74.914 78.802 75.348 80.235 76.093 81.444 C 71.329 82.099 67.657 86.173 67.657 91.099 L 67.657 98.148 C 67.657 99.222 68.538 100.099 69.617 100.099 L 96.238 100.099 C 97.318 100.099 98.198 99.222 98.198 98.148 Z M 78.847 75 C 78.847 72.765 80.683 70.938 82.928 70.938 C 84.012 70.933 85.053 71.36 85.819 72.122 C 86.586 72.885 87.014 73.921 87.009 75 L 87.009 77.309 C 87.009 79.543 85.173 81.37 82.928 81.37 C 80.683 81.37 78.847 79.543 78.847 77.309 Z M 94.266 96.198 L 90.731 96.198 L 90.731 92.185 C 90.731 91.111 89.85 90.235 88.771 90.235 C 87.691 90.235 86.811 91.111 86.811 92.185 L 86.811 96.198 L 79.045 96.198 L 79.045 92.185 C 79.045 91.111 78.164 90.235 77.085 90.235 C 76.006 90.235 75.125 91.111 75.125 92.185 L 75.125 96.198 L 71.59 96.198 L 71.59 91.111 C 71.59 87.889 74.219 85.272 77.457 85.272 L 88.411 85.272 C 91.649 85.272 94.278 87.889 94.278 91.111 L 94.278 96.198 Z M 20.58 58.407 C 21.299 57.593 21.213 56.358 20.394 55.654 L 14.824 50.802 C 14.03 50.111 12.777 50.185 12.07 50.975 L 7.083 56.531 C 6.364 57.333 6.426 58.568 7.232 59.296 C 8.026 60.012 9.291 59.938 10.011 59.148 L 11.859 57.086 C 14.253 77.21 31.496 92.864 52.349 92.864 C 53.429 92.864 54.309 91.988 54.309 90.914 C 54.309 89.84 53.429 88.963 52.349 88.963 C 33.581 88.963 18.049 74.926 15.792 56.852 L 17.814 58.617 C 18.632 59.333 19.873 59.247 20.58 58.432 Z M 47.611 62.716 C 49.161 63.716 50.315 64.136 51.704 64.296 L 51.704 65.16 C 51.704 66.296 52.56 67.284 53.702 67.358 C 54.942 67.432 55.984 66.457 55.984 65.235 L 55.984 64.086 C 58.936 63.222 60.822 60.667 61.244 58.136 C 61.814 54.778 59.978 51.728 56.679 50.58 C 54.88 49.951 52.908 49.185 51.804 48.321 C 51.493 48.074 51.357 47.506 51.481 46.901 C 51.543 46.593 51.816 45.556 52.87 45.235 C 54.942 44.617 56.257 45.667 56.406 45.79 L 56.877 46.123 C 57.733 46.741 58.912 46.63 59.631 45.852 C 60.375 45.062 60.388 43.827 59.631 43.025 L 59.271 42.63 C 58.639 42.049 57.485 41.346 55.984 41 L 55.984 40.012 C 55.984 38.877 55.128 37.889 53.987 37.815 C 52.746 37.741 51.704 38.716 51.704 39.938 L 51.704 41.136 C 51.704 41.136 51.655 41.148 51.63 41.16 C 49.397 41.827 47.722 43.728 47.276 46.111 C 46.854 48.309 47.586 50.444 49.161 51.679 C 50.439 52.679 52.213 53.519 55.252 54.593 C 57.163 55.272 57.125 56.802 57.026 57.432 C 56.803 58.728 55.711 60.123 53.826 60.136 C 51.903 60.148 51.357 60.062 49.893 59.111 C 49.4 58.792 48.798 58.687 48.225 58.823 C 47.653 58.958 47.162 59.321 46.866 59.827 C 46.296 60.815 46.655 62.086 47.611 62.704 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path><path d=\"M 46.643 30.358 C 37.24 33.42 30.442 42.21 30.442 52.593 C 30.442 65.519 40.974 76 53.962 76 C 66.95 76 77.482 65.519 77.482 52.593 C 77.482 42.21 70.684 33.42 61.281 30.358\" fill=\"transparent\" stroke-width=\"3\" stroke=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 55.748 28.543 C 54.657 26.914 52.039 27.568 51.841 29.519 C 51.642 31.444 54.049 32.605 55.451 31.272 C 56.195 30.568 56.319 29.395 55.748 28.543 Z\" fill=\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54)) /* {&quot;name&quot;:&quot;Main Orange&quot;} */\"></path></g></svg>',svgContentId:10237530261,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"Financing Available\"})}),className:\"framer-1m0bg88\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Flexible financing options to make your investment more manageable.\"})}),className:\"framer-19avu7b\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kpjy8r\"})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zbup86\",\"data-framer-name\":\"Testimonials Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"This is what our clients are saying\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"This is what our clients are saying\"})}),className:\"framer-n0x16a\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{width:`min(${componentViewport?.width||\"100vw\"}, 810px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-779i2p-container\",nodeId:\"Es0KkrApQ\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WpKC72UyC\"},UdZtn4DZA:{variant:\"srskZK2oT\"}},children:/*#__PURE__*/_jsx(VideoTestimonials,{height:\"100%\",id:\"Es0KkrApQ\",layoutId:\"Es0KkrApQ\",style:{width:\"100%\"},variant:\"pgimbtWS7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-63e0qq\",\"data-framer-name\":\"Logos Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Serving others\"})}),className:\"framer-6z4sn8\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b5fyub\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Converge Church Logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:78,pixelWidth:200,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/481O0kOhdv2Te7bATIOIJD73Ig.png\"},className:\"framer-e9vcza\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Vida dallas logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:240,pixelWidth:304,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jLd92765QYXTR7q1Zc12le9Gdk.svg\"},className:\"framer-f9r7yr\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"New Life Logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:504,pixelWidth:511,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zJa8pmYutqIQ806O2GVFN5EoL08.svg\"},className:\"framer-p6tj9x\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Jesus Reigns Logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:960,pixelWidth:1310,positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/RiQmxzPk0p7WyMwoAxHLErexRE.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RiQmxzPk0p7WyMwoAxHLErexRE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RiQmxzPk0p7WyMwoAxHLErexRE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RiQmxzPk0p7WyMwoAxHLErexRE.svg 1310w\"},className:\"framer-1qyzg2g\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Iglesia Cristiana Logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:151,pixelWidth:397,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oWL44RTpOlcKRKgeFYVaGgcZjY.png\"},className:\"framer-3glhe8\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Iglesia El Calvario\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:662,pixelWidth:1658,positionX:\"center\",positionY:\"center\",sizes:\"178px\",src:\"https://framerusercontent.com/images/5AoGn0tHe2ILx9Kb6UifWPg6RWo.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5AoGn0tHe2ILx9Kb6UifWPg6RWo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5AoGn0tHe2ILx9Kb6UifWPg6RWo.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5AoGn0tHe2ILx9Kb6UifWPg6RWo.svg 1658w\"},className:\"framer-149eeu8\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Centro Cristiano Internacional Logo\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:311,pixelWidth:1159,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/J1FG2QCBCBpAyAInjnh2hxaXIU.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/J1FG2QCBCBpAyAInjnh2hxaXIU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/J1FG2QCBCBpAyAInjnh2hxaXIU.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J1FG2QCBCBpAyAInjnh2hxaXIU.svg 1159w\"},className:\"framer-1r007rf\",\"data-framer-name\":\"Logo\"})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-x6lxvm\",\"data-framer-name\":\"Screen Pictures section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tia444\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fagh1k\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 1\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:912,pixelWidth:1242,src:\"https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg\",srcSet:\"https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg 1242w\"},className:\"framer-9ai5hm\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8hocge\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 2\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1277,pixelWidth:1282,src:\"https://framerusercontent.com/images/C9T0QFvcuq6cpHt6UH9UbmJDO4.jpeg\",srcSet:\"https://framerusercontent.com/images/C9T0QFvcuq6cpHt6UH9UbmJDO4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/C9T0QFvcuq6cpHt6UH9UbmJDO4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C9T0QFvcuq6cpHt6UH9UbmJDO4.jpeg 1282w\"},className:\"framer-tmedz7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e6x886\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 3\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1206,pixelWidth:1284,src:\"https://framerusercontent.com/images/cd9Xnpr3F0Kd2Iemv1kFVamkrU0.jpeg\",srcSet:\"https://framerusercontent.com/images/cd9Xnpr3F0Kd2Iemv1kFVamkrU0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cd9Xnpr3F0Kd2Iemv1kFVamkrU0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cd9Xnpr3F0Kd2Iemv1kFVamkrU0.jpeg 1284w\"},className:\"framer-my1tp2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qnakqc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 4\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1005,pixelWidth:2e3,src:\"https://framerusercontent.com/images/0xYLAcMKrmKazYJbDsV22ahbXMo.jpg\",srcSet:\"https://framerusercontent.com/images/0xYLAcMKrmKazYJbDsV22ahbXMo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0xYLAcMKrmKazYJbDsV22ahbXMo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0xYLAcMKrmKazYJbDsV22ahbXMo.jpg 2000w\"},className:\"framer-f0zqxt\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ja4dn8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 5\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1222,pixelWidth:1284,src:\"https://framerusercontent.com/images/vHE0jTMJdseS0Y3yvRYzDEDTOsI.jpeg\",srcSet:\"https://framerusercontent.com/images/vHE0jTMJdseS0Y3yvRYzDEDTOsI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vHE0jTMJdseS0Y3yvRYzDEDTOsI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vHE0jTMJdseS0Y3yvRYzDEDTOsI.jpeg 1284w\"},className:\"framer-1j5empk\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ayw0e1\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 6\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1481,pixelWidth:1284,src:\"https://framerusercontent.com/images/XrcHaTxPUnmUx1gP9QdHExSXGf0.jpeg\",srcSet:\"https://framerusercontent.com/images/XrcHaTxPUnmUx1gP9QdHExSXGf0.jpeg?scale-down-to=1024 887w,https://framerusercontent.com/images/XrcHaTxPUnmUx1gP9QdHExSXGf0.jpeg 1284w\"},className:\"framer-iwkwai\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4ldj4\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 7\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1240,pixelWidth:1284,src:\"https://framerusercontent.com/images/SRhbvPqJ8UuGIFikbzlATCU67M.jpeg\",srcSet:\"https://framerusercontent.com/images/SRhbvPqJ8UuGIFikbzlATCU67M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/SRhbvPqJ8UuGIFikbzlATCU67M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SRhbvPqJ8UuGIFikbzlATCU67M.jpeg 1284w\"},className:\"framer-1fuz0dw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h88d4v\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 8\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1247,pixelWidth:1284,src:\"https://framerusercontent.com/images/cTsg1hdLBbdqCjpFiMZoMJz4Dw.jpeg\",srcSet:\"https://framerusercontent.com/images/cTsg1hdLBbdqCjpFiMZoMJz4Dw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cTsg1hdLBbdqCjpFiMZoMJz4Dw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cTsg1hdLBbdqCjpFiMZoMJz4Dw.jpeg 1284w\"},className:\"framer-10hn5g5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2cqxqi\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 9\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:3024,pixelWidth:4032,src:\"https://framerusercontent.com/images/Um0Vi4rYKbDHo0s8llApXUys.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Um0Vi4rYKbDHo0s8llApXUys.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Um0Vi4rYKbDHo0s8llApXUys.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Um0Vi4rYKbDHo0s8llApXUys.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Um0Vi4rYKbDHo0s8llApXUys.jpeg 4032w\"},className:\"framer-gvunt2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n41t6k\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"LED screen wall sample 10\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:912,pixelWidth:1242,src:\"https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg\",srcSet:\"https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/voivyMiVpqtRGbKTj1tsdfSTopI.jpeg 1242w\"},className:\"framer-qd4py1\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-1octsps\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19gxwx4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ijqgz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4cgslj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:104,pixelWidth:523,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 20px) / 2, 200px) - 60px, 1px)`,...getLocalizedValue(\"v83\",activeLocale)??{pixelHeight:104,pixelWidth:523,src:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg 523w\"}}},UdZtn4DZA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:104,pixelWidth:523,positionX:\"center\",positionY:\"center\",sizes:`max(max(${componentViewport?.width||\"100vw\"} - 40px, 200px) - 60px, 1px)`,...getLocalizedValue(\"v83\",activeLocale)??{pixelHeight:104,pixelWidth:523,src:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg 523w\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:104,pixelWidth:523,positionX:\"center\",positionY:\"center\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 60px) / 4, 200px) - 60px, 1px)`,...getLocalizedValue(\"v83\",activeLocale)??{pixelHeight:104,pixelWidth:523,src:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/mgdIBARSlf05MoKgh0wq2K38oSw.svg 523w\"}},className:\"framer-nu4h4i\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t52vcr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-86gti5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l4mbftC66\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",height:\"100%\",iconSearch:\"phone\",iconSelection:\"Home\",id:\"l4mbftC66\",layoutId:\"l4mbftC66\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"USA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel: 469-284-8599\",motionChild:true,nodeId:\"htdolWDnj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"(469) 284 - 8599\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel: 954-445-6744\",motionChild:true,nodeId:\"htdolWDnj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"(954) 445 - 6744\"})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:\"USA\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel: 469-284-8599\",motionChild:true,nodeId:\"htdolWDnj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"(469) 284 - 8599\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel: 954-445-6744\",motionChild:true,nodeId:\"htdolWDnj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"(954) 445 - 6744\"})})})]}),className:\"framer-1255827\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhdr39\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1370l8o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JVyhvrij_\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",height:\"100%\",iconSearch:\"address\",iconSelection:\"MapPin\",id:\"JVyhvrij_\",layoutId:\"JVyhvrij_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4b394fbc-1a78-49ec-93cd-bdc4bf408f94, rgb(74, 74, 74))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/11Kb57EDAhhzuowXA\",motionChild:true,nodeId:\"ThmkLx6Qh\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"4322 N. Belt Line Rd., Suite B101 Irving, Texas, 75038\"})})})}),className:\"framer-m42xia\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v5tife\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18s2bln\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"More about us\"})}),className:\"framer-nespyq\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/x5A5MKzsGg4bPREq6\",motionChild:true,nodeId:\"de3DSjHjj\",openInNewTab:true,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1q6nesu\",\"data-styles-preset\":\"KKzmrtW4M\",children:\"Google Business Profile\"})})})}),className:\"framer-vk2k5u\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i93h80\",\"data-border\":true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UOy3DMN1z\"},motionChild:true,nodeId:\"kc9undUAG\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Privacy Policy\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UOy3DMN1z\"},motionChild:true,nodeId:\"kc9undUAG\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Privacy Policy\"})})})}),className:\"framer-1am7201\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ermxs7\",\"data-border\":true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AazKyqRTe\"},motionChild:true,nodeId:\"LANTD17V5\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Terms of Use\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AazKyqRTe\"},motionChild:true,nodeId:\"LANTD17V5\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Terms of Use\"})})})}),className:\"framer-15rc939\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ahszrk\",\"data-border\":true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HZZ5dSzXF\"},motionChild:true,nodeId:\"OP82MEzOE\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Cookie Policy\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HZZ5dSzXF\"},motionChild:true,nodeId:\"OP82MEzOE\",openInNewTab:false,scopeId:\"Qh4cMR41t\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-nxor47\",\"data-styles-preset\":\"xNM6HsTUr\",children:\"Cookie Policy\"})})})}),className:\"framer-glcq55\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15n5its\",\"data-border\":true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ay7mti\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yl8kxp\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"GvP1stLvS\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-5eryon framer-twfjko\",\"data-framer-name\":\"Hero Book Consultation\",\"data-reset\":\"button\",id:\"5eryon\",onTap:onTap3bnx0g({overlay:overlay2}),whileHover:animation2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n3jniq\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book My Consultation\"})}),className:\"framer-11d8lg\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-kvxhm1\"),\"data-framer-portal-id\":\"5eryon\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"JjqSHeX1x\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-xgahwj\"),\"data-framer-name\":\"Form Frame\",\"data-framer-portal-id\":\"5eryon\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u016qm\",\"data-framer-name\":\"Form Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qs243\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5rgukh-container\",\"data-framer-name\":\"Close Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Close Icon\",nodeId:\"ae9sNu16j\",rendersWithMotion:true,scopeId:\"Qh4cMR41t\",whileHover:animation3,children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"cross\",iconSelection:\"XMark\",id:\"ae9sNu16j\",layoutId:\"ae9sNu16j\",mirrored:false,name:\"Close Icon\",onClick:onClick1wnntms({overlay:overlay2}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ewcdwj-container\",\"data-framer-name\":\"Form Title\",isAuthoredByUser:true,isModuleExternal:true,name:\"Form Title\",nodeId:\"oNehCsuzF\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"24px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},styleOptions:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderRadius:5,color:\"rgb(255, 255, 255)\",gap:0,padding:20,paddingBottom:13,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:12}}},children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontSize:\"32px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\",textAlign:\"center\"},height:\"100%\",id:\"oNehCsuzF\",layoutId:\"oNehCsuzF\",name:\"Form Title\",srcType:\"Upload\",srcURL:\"\",style:{width:\"100%\"},styleOptions:{backgroundColor:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",borderRadius:5,color:\"rgb(255, 255, 255)\",gap:0,padding:20,paddingBottom:20,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:20},text:getLocalizedValue(\"v5\",activeLocale)??\"Book My Consultation\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/8d10de9d-7c45-4451-8f82-b84aa546cd51/submit\",className:\"framer-18ur3za\",nodeId:\"Sg5lKlJXk\",redirectUrl:{webPageId:\"jSHGUdR7I\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-qlwisq\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-11cwhl9\",inputName:\"Name\",placeholder:getLocalizedValue(\"v6\",activeLocale)??\"Full Name *\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-qbi4rg\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-9pnw5u\",inputName:\"Email\",placeholder:\"Email *\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-lhbrbr\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1eocp5y\",inputName:\"Phone\",placeholder:getLocalizedValue(\"v7\",activeLocale)??\"Phone *\",required:true,type:\"tel\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1q9t3zj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Project Location\"})}),className:\"framer-1f908gl\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-1gjiar0\",defaultValue:\"select\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:getLocalizedValue(\"v9\",activeLocale)??\"Select\",type:\"option\",value:\"select\"},{title:\"Alabama\",type:\"option\",value:\"alabama\"},{title:\"Alaska\",type:\"option\",value:\"alaska\"},{title:\"Arkansas\",type:\"option\",value:\"arkansas\"},{title:\"California\",type:\"option\",value:\"california\"},{title:\"Colorado\",type:\"option\",value:\"colorado\"},{title:\"Connecticut\",type:\"option\",value:\"Connecticut\"},{title:\"Delaware\",type:\"option\",value:\"Delaware\"},{title:\"Florida\",type:\"option\",value:\"Florida\"},{title:\"Georgia\",type:\"option\",value:\"Georgia\"},{title:\"Hawaii\",type:\"option\",value:\"Hawaii\"},{title:\"Idaho\",type:\"option\",value:\"Idaho\"},{title:\"Illinois\",type:\"option\",value:\"Illinois\"},{title:\"Indiana\",type:\"option\",value:\"Indiana\"},{title:\"Iowa\",type:\"option\",value:\"Iowa\"},{title:\"Kansas\",type:\"option\",value:\"Kansas\"},{title:\"Kentucky\",type:\"option\",value:\"Kentucky\"},{title:\"Louisiana\",type:\"option\",value:\"Louisiana\"},{title:\"Maine\",type:\"option\",value:\"Maine\"},{title:\"Maryland\",type:\"option\",value:\"Maryland\"},{title:\"Massachusetts\",type:\"option\",value:\"Massachusetts\"},{title:\"Michigan\",type:\"option\",value:\"Michigan\"},{title:\"Minnesota\",type:\"option\",value:\"Minnesota\"},{title:\"Mississippi\",type:\"option\",value:\"Mississippi\"},{title:\"Missouri\",type:\"option\",value:\"Missouri\"},{title:\"Montana\",type:\"option\",value:\"Montana\"},{title:\"Nebraska\",type:\"option\",value:\"Nebraska\"},{title:\"Nevada\",type:\"option\",value:\"Nevada\"},{title:\"New Hampshire\",type:\"option\",value:\"New Hampshire\"},{title:\"New Jersey\",type:\"option\",value:\"New Jersey\"},{title:\"New Mexico\",type:\"option\",value:\"New Mexico\"},{title:\"New York\",type:\"option\",value:\"New York\"},{title:\"North Carolina\",type:\"option\",value:\"North Carolina\"},{title:\"North Dakota\",type:\"option\",value:\"North Dakota\"},{title:\"Ohio\",type:\"option\",value:\"Ohio\"},{title:\"Oklahoma\",type:\"option\",value:\"Oklahoma\"},{title:\"Oregon\",type:\"option\",value:\"Oregon\"},{title:\"Pennsylvania\",type:\"option\",value:\"Pennsylvania\"},{title:\"Puerto Rico\",type:\"option\",value:\"Puerto Rico\"},{title:\"Rhode Island\",type:\"option\",value:\"Rhode Island\"},{title:\"South Carolina\",type:\"option\",value:\"South Carolina\"},{title:\"South Dakota\",type:\"option\",value:\"South Dakota\"},{title:\"Tennessee\",type:\"option\",value:\"Tennessee\"},{title:\"Texas\",type:\"option\",value:\"Texas\"},{title:\"Utah\",type:\"option\",value:\"Utah\"},{title:\"Vermont\",type:\"option\",value:\"Vermont\"},{title:\"Virginia\",type:\"option\",value:\"Virginia\"},{title:\"Washington\",type:\"option\",value:\"Washington\"},{title:\"West Virginia\",type:\"option\",value:\"West Virginia\"},{title:\"Wisconsin\",type:\"option\",value:\"Wisconsin\"},{title:\"Wyoming\",type:\"option\",value:\"Wyoming\"}]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqq32o\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-enqis\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best day to call\"})}),className:\"framer-ehurti\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1mkyin\",inputName:\"Date\",placeholder:\"jane@framer.com\",required:true,type:\"date\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-vdyz4f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"Best time to call\"})}),className:\"framer-102xgdi\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-ghw9ts\",inputName:\"Time\",placeholder:\"jane@framer.com\",required:true,type:\"time\"})]})]}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-q6z149\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-rb9isj\",inputName:\"Message\",placeholder:getLocalizedValue(\"v12\",activeLocale)??\"Message\",type:\"textarea\"})}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-6nzyt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, rgb(105, 105, 105))\"},children:\"How did you hear about us?\"})}),className:\"framer-ojc7xj\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{placeholder:getLocalizedValue(\"v86\",activeLocale)??\"Facebook, Google Search, Referrer's name, etc.\"},UdZtn4DZA:{placeholder:getLocalizedValue(\"v86\",activeLocale)??\"Facebook, Google Search, Referrer's name, etc.\"}},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1hvnvt8\",inputName:\"Referral\",placeholder:getLocalizedValue(\"v14\",activeLocale)??\"Facebook, Google Search, Referrer's name, etc.\",required:false,type:\"text\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\"},children:\"We respect your privacy, your information won't be shared.\"})}),className:\"framer-1e5w9yh\",fonts:[\"GF;Roboto-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g4RjBPeSW:{width:\"calc(min(60vw, 600px) - 40px)\"},UdZtn4DZA:{width:\"calc(min(90vw, 400px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"460px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ea5ztb-container\",nodeId:\"WwbXQRkkC\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(ButtonEnglish2,{height:\"100%\",id:\"WwbXQRkkC\",layoutId:\"WwbXQRkkC\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"erVnRXGjn\",success:\"ZQh2tAKKo\"},\"IbVsIhofk\"),width:\"100%\"})})})})]})})]})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(Link,{href:\"tel:469-284-8599\",motionChild:true,nodeId:\"IMJn9rFIG\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16i1qv6 framer-twfjko\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-reset\":\"button\",whileHover:animation6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrail6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a4jzdn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uRLYE2mH_\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Phone\",id:\"uRLYE2mH_\",layoutId:\"uRLYE2mH_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v88\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\"},children:\"Call Now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, rgb(46, 88, 255))\"},children:\"Call Now\"})}),className:\"framer-14smgt8\",fonts:[\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v89\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:[\"WE SELL, RENT, INSTALL, SERVICE AND SUPPORT OUR VIDEO WALL LED PRODUCTS \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTkwMA==\",\"--framer-font-family\":'\"Roboto\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\"},children:\"NATIONWIDE!\"})]})}),className:\"framer-tv0ydo\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/owSXHiAWqcrWFbTNQ9xkqtudog.png\"},className:\"framer-rwnuop\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcy88e\",\"data-framer-name\":\"Map Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y97zok\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xgt26-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ani86aLWx\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe title=\"Google maps location\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d26804.85217927659!2d-97.01436890000005!3d32.88212869999999!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x864e83d36d0c2547%3A0x131a642124247920!2sCreativo%20Plus!5e0!3m2!1sen!2sus!4v1722487424865!5m2!1sen!2sus\" width=\"100%\" height=\"100%\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>',id:\"Ani86aLWx\",layoutId:\"Ani86aLWx\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfl1xh\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/x5A5MKzsGg4bPREq6\",motionChild:true,nodeId:\"WRoXED2FJ\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-drjshm framer-twfjko\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p07dl6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fyssc4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Twxlm5zP2\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-75eaa1db-808f-4873-a962-d67cb8290277, rgb(245, 85, 54))\",height:\"100%\",iconSearch:getLocalizedValue(\"v90\",activeLocale)??\"home\",iconSelection:\"BuildingStorefront\",id:\"Twxlm5zP2\",layoutId:\"Twxlm5zP2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v92\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Business Profile\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v91\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Business Profile\"})}),className:\"framer-yh3l83\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vzl7c hidden-1j5w2i6\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f88zs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rpb5no\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/CreativoPlusConsulting\",motionChild:true,nodeId:\"Tme60y2_G\",scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Facebook Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/jWSCQONJANjQcWwpSD9M5tDwz8k.svg\"},className:\"framer-19apcmt framer-twfjko\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rhql3x\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/creativo.plus/\",motionChild:true,nodeId:\"WMQBUcUjH\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Instagram Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/RVnAt9ySOAS392JexR9NeklfPtg.svg\"},className:\"framer-1thy4fn framer-twfjko\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6gxi02\",children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@creativo.plus?subject:Churches LED Screen Landing page email\",motionChild:true,nodeId:\"Xeejmh07V\",openInNewTab:true,scopeId:\"Qh4cMR41t\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Email Logo\",fit:\"fill\",pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/x40hivkyIwJlNmZ0xg0CH3pa8.svg\"},className:\"framer-1qa0rrf framer-twfjko\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zlmyk\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UdZtn4DZA:{children:getLocalizedValue(\"v94\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d05b8a55-66dd-4dfe-bf30-bd3fbcd4bb25, rgb(186, 186, 186))\"},children:\"\\xa9 2025\\xa0All Rights Reserved | Creativo Plus\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v93\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d05b8a55-66dd-4dfe-bf30-bd3fbcd4bb25, rgb(186, 186, 186))\"},children:\"\\xa9 2025\\xa0All Rights Reserved | Creativo Plus\"})}),className:\"framer-19bvpvu\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M5lEg.framer-twfjko, .framer-M5lEg .framer-twfjko { display: block; }\",\".framer-M5lEg.framer-1uxseb6 { align-content: center; align-items: center; background-color: #ededed; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-M5lEg .framer-10xirn4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-fu9wyh-container { flex: none; height: 80px; max-width: 1200px; position: relative; width: 100%; z-index: 1; }\",\".framer-M5lEg .framer-x2mj3j { background-color: #ededed; flex: none; height: 90px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-M5lEg .framer-1hzuhm3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-phkq20 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-M5lEg .framer-lufark { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.8); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-1tu5h6o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-1hj1jj4, .framer-M5lEg .framer-5eryon { align-content: center; align-items: center; background-color: var(--token-75eaa1db-808f-4873-a962-d67cb8290277, #f55536); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 3px 10px 2px rgba(41, 41, 41, 0.7); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 30px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-M5lEg .framer-lwdbjo, .framer-M5lEg .framer-1n3jniq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 17px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M5lEg .framer-1yqrffg, .framer-M5lEg .framer-1fkovq7, .framer-M5lEg .framer-xau2et, .framer-M5lEg .framer-i5kpn1, .framer-M5lEg .framer-11d8lg, .framer-M5lEg .framer-14smgt8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M5lEg.framer-1hwgp9l, .framer-M5lEg.framer-kvxhm1 { inset: 0px; position: fixed; user-select: none; }\",\".framer-M5lEg.framer-airz9i, .framer-M5lEg.framer-xgahwj { background-color: rgba(255, 255, 255, 0.8); flex: none; height: 100vh; left: 0px; overflow: auto; position: fixed; right: 0px; top: calc(50.00000000000002% - 100vh / 2); z-index: 3; }\",\".framer-M5lEg .framer-13y2lzt, .framer-M5lEg .framer-1u016qm { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 40px 10px rgba(74, 74, 74, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5lEg .framer-1vfqg5v, .framer-M5lEg .framer-16qs243 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 12px; transform: translateX(-50%); width: 98%; z-index: 1; }\",\".framer-M5lEg .framer-f0eklv-container, .framer-M5lEg .framer-5rgukh-container { cursor: pointer; flex: none; height: 45px; opacity: 0.7; position: relative; width: 45px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-M5lEg .framer-1t5jwu7-container, .framer-M5lEg .framer-f0rs5p-container, .framer-M5lEg .framer-779i2p-container, .framer-M5lEg .framer-ewcdwj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-M5lEg .framer-pu7m8t, .framer-M5lEg .framer-1nhuigu, .framer-M5lEg .framer-18ur3za { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5lEg .framer-110wvea, .framer-M5lEg .framer-1xjy2hl, .framer-M5lEg .framer-4zh7gm, .framer-M5lEg .framer-klknrw, .framer-M5lEg .framer-blgw1i, .framer-M5lEg .framer-1o1b38s, .framer-M5lEg .framer-1oc5w08, .framer-M5lEg .framer-du3jcc, .framer-M5lEg .framer-1x87xv, .framer-M5lEg .framer-2guwo9, .framer-M5lEg .framer-teodse, .framer-M5lEg .framer-1wu1xi4, .framer-M5lEg .framer-xayuum, .framer-M5lEg .framer-12ughdy, .framer-M5lEg .framer-qlwisq, .framer-M5lEg .framer-qbi4rg, .framer-M5lEg .framer-lhbrbr, .framer-M5lEg .framer-1q9t3zj, .framer-M5lEg .framer-q6z149, .framer-M5lEg .framer-6nzyt { 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-M5lEg .framer-lzdk3p, .framer-M5lEg .framer-1km5i9n, .framer-M5lEg .framer-1oiuc1w, .framer-M5lEg .framer-p3inux, .framer-M5lEg .framer-zzlf3h, .framer-M5lEg .framer-1odi6eo, .framer-M5lEg .framer-wj24ca, .framer-M5lEg .framer-17ldvug, .framer-M5lEg .framer-obpwhn, .framer-M5lEg .framer-13pep4e, .framer-M5lEg .framer-11cwhl9, .framer-M5lEg .framer-1eocp5y, .framer-M5lEg .framer-1mkyin, .framer-M5lEg .framer-ghw9ts, .framer-M5lEg .framer-1hvnvt8 { --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-box-shadow: 0px 1px 5px 1px rgba(105, 105, 105, 0.65); --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: \"Roboto\"; --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-M5lEg .framer-1tmt7wj, .framer-M5lEg .framer-3x5b6o, .framer-M5lEg .framer-9pnw5u { --framer-input-background: rgba(187, 187, 187, 0.15); --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-box-shadow: 0px 1px 5px 1px rgba(105, 105, 105, 0.65); --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: \"Roboto\"; --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-M5lEg .framer-cw6yfg, .framer-M5lEg .framer-9jcdc, .framer-M5lEg .framer-syxnaq, .framer-M5lEg .framer-w9ift3, .framer-M5lEg .framer-lv7heu, .framer-M5lEg .framer-1h2vrm0, .framer-M5lEg .framer-redffn, .framer-M5lEg .framer-e0g593, .framer-M5lEg .framer-1f908gl, .framer-M5lEg .framer-ehurti, .framer-M5lEg .framer-102xgdi, .framer-M5lEg .framer-ojc7xj, .framer-M5lEg .framer-yh3l83 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-M5lEg .framer-6ydw40, .framer-M5lEg .framer-qlb3lb, .framer-M5lEg .framer-1gjiar0 { --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-box-shadow: 0px 1px 5px 1px rgba(105, 105, 105, 0.65); --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: \"Roboto\"; --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-M5lEg .framer-36e7ze, .framer-M5lEg .framer-zqq32o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1teldj4, .framer-M5lEg .framer-etnzrq, .framer-M5lEg .framer-enqis, .framer-M5lEg .framer-vdyz4f { 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-M5lEg .framer-u3yi5l, .framer-M5lEg .framer-1t4i1en, .framer-M5lEg .framer-rb9isj { --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-box-shadow: 0px 1px 5px 1px rgba(105, 105, 105, 0.65); --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: \"Roboto\"; --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; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-M5lEg .framer-12950z0, .framer-M5lEg .framer-bllaf4, .framer-M5lEg .framer-1e5w9yh { --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-M5lEg .framer-1mra8ni-container, .framer-M5lEg .framer-nyqdrx-container, .framer-M5lEg .framer-ea5ztb-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-ee75e7 { --border-bottom-width: 2px; --border-color: var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, #2e58ff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 60px; justify-content: center; overflow: visible; padding: 30px 21px 30px 21px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-M5lEg .framer-1u8pqqh-container { flex: none; height: 37px; position: relative; width: 35px; }\",\".framer-M5lEg .framer-x8t60z { background-color: rgba(0, 0, 0, 0.4); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-M5lEg .framer-r0rirs { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1bfg1mq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1wvyzq5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-M5lEg .framer-5sh4vs, .framer-M5lEg .framer-189gcpe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-13rzcx9, .framer-M5lEg .framer-1fxxzz3, .framer-M5lEg .framer-1r3jd2w, .framer-M5lEg .framer-f1vjcv, .framer-M5lEg .framer-1i7drjz, .framer-M5lEg .framer-1ocnssb, .framer-M5lEg .framer-7boc5i, .framer-M5lEg .framer-19avu7b, .framer-M5lEg .framer-vk2k5u, .framer-M5lEg .framer-1am7201, .framer-M5lEg .framer-15rc939, .framer-M5lEg .framer-glcq55 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-trn1gu { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 359px; overflow: hidden; position: relative; width: 555px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5lEg .framer-113lcnh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-M5lEg .framer-129r402 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-v15kdb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-17b0185 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 40px 10px rgba(74, 74, 74, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-e3c9ft { align-content: center; align-items: center; background-color: var(--token-433959b1-5cd2-4188-b3d0-e203f0298fcc, #142652); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-m23m9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-rw609o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-1feaqhz, .framer-M5lEg .framer-aoinrs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 750px; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-5qnpyy { aspect-ratio: 2.094240837696335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 573px); overflow: hidden; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1bj9ghe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-lxzqok { align-content: center; align-items: center; background-color: var(--token-75eaa1db-808f-4873-a962-d67cb8290277, #f55536); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 3px 10px 2px rgba(41, 41, 41, 0.7); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 30px 20px 30px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-M5lEg.framer-1ip8vrb { background-color: #000000; inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-M5lEg.framer-23p1rc { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; left: calc(50.48611111111113% - 100% / 2); overflow: auto; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 5; }\",\".framer-M5lEg .framer-xxk6t7-container { cursor: pointer; flex: none; height: 60px; opacity: 0.8; position: absolute; right: 20px; top: 15px; width: 55px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-M5lEg .framer-1ztl48-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-M5lEg .framer-cduv1j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-126z9l9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1htsgx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-11p5sh3, .framer-M5lEg .framer-1us9ilx, .framer-M5lEg .framer-170v8qr, .framer-M5lEg .framer-pnrrkf, .framer-M5lEg .framer-199b16e, .framer-M5lEg .framer-157ndfb, .framer-M5lEg .framer-1kz2ygx, .framer-M5lEg .framer-1m0bg88, .framer-M5lEg .framer-6z4sn8, .framer-M5lEg .framer-nespyq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-M5lEg .framer-1jtsmqp { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-M5lEg .framer-1gm9pz7, .framer-M5lEg .framer-1gwz10t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-311trs { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, #142652); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: auto; }\",\".framer-M5lEg .framer-1riwmtv, .framer-M5lEg .framer-ds29br { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-u0sdg6 { align-content: center; align-items: center; background-color: var(--token-433959b1-5cd2-4188-b3d0-e203f0298fcc, #142652); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-1vx9m92 { flex: none; height: 600px; overflow: visible; position: relative; width: 546px; }\",\".framer-M5lEg .framer-tr9uea, .framer-M5lEg .framer-9ujx0q { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 20px; overflow: hidden; padding: 10px; position: absolute; width: min-content; }\",\".framer-M5lEg .framer-1x6jdly, .framer-M5lEg .framer-um1mst { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 486px; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-14zo75x { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-d03c4686-fed3-4349-89f4-eba20068fd7b, #142652); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: auto; }\",\".framer-M5lEg .framer-1d25g4o { align-content: center; align-items: center; background-color: var(--token-433959b1-5cd2-4188-b3d0-e203f0298fcc, #142652); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-18bwhfp { flex: none; height: 600px; overflow: hidden; position: relative; width: 546px; }\",\".framer-M5lEg .framer-c1kd8t { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-76092478-5354-4af1-80c8-54abf765ed55, #02a9be); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 30px 60px 30px 60px; position: relative; width: auto; }\",\".framer-M5lEg .framer-9m369r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: 100%; }\",\".framer-M5lEg .framer-1h0hjuy { align-content: center; align-items: center; background-color: var(--token-75eaa1db-808f-4873-a962-d67cb8290277, #f55536); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 3px 10px 2px rgba(41, 41, 41, 0.7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 30px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-M5lEg .framer-6jy47h { align-content: center; align-items: center; background: radial-gradient(50% 97% at 50% 50%, #ffffff 0%, rgba(171, 171, 171, 0.4) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1ril3dq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1200px; }\",\".framer-M5lEg .framer-ye8b8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-a9190i, .framer-M5lEg .framer-kdxbkv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-M5lEg .framer-1cq4yfj, .framer-M5lEg .framer-7ft953 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 20px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-cagmh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1fl3m2e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; z-index: 1; }\",\".framer-M5lEg .framer-1fjp3mj, .framer-M5lEg .framer-180kc3d, .framer-M5lEg .framer-1mq3bx4, .framer-M5lEg .framer-1aaz2lx, .framer-M5lEg .framer-11hxkpr, .framer-M5lEg .framer-18kbd9l { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 400px; justify-content: flex-start; padding: 50px 30px 30px 30px; position: relative; width: 320px; }\",\".framer-M5lEg .framer-1x0i9xh, .framer-M5lEg .framer-1khow04, .framer-M5lEg .framer-1p3ujsj, .framer-M5lEg .framer-1xy4fty, .framer-M5lEg .framer-wolugl, .framer-M5lEg .framer-7h0vjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-b4dtcf { flex: none; height: 100px; position: relative; width: 83px; }\",\".framer-M5lEg .framer-1vx33mw { flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-M5lEg .framer-1lr8zp2 { flex: none; height: 100px; position: relative; width: 79px; }\",\".framer-M5lEg .framer-1vjr3e3 { flex: none; height: 100px; position: relative; width: 92px; }\",\".framer-M5lEg .framer-nti8pn { flex: none; height: 100px; position: relative; width: 107px; }\",\".framer-M5lEg .framer-19s5y3z { flex: none; height: 100px; position: relative; width: 98px; }\",\".framer-M5lEg .framer-1kpjy8r { background-color: var(--token-bed7b933-d226-44fd-9e26-1c4bc974854d, #696969); flex: none; height: 1059px; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: hard-light; overflow: hidden; position: absolute; top: calc(49.95278564683666% - 1059px / 2); width: 100%; z-index: 0; }\",\".framer-M5lEg .framer-zbup86 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-n0x16a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M5lEg .framer-63e0qq { align-content: center; align-items: center; background-color: #dedede; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 73px 20px 73px 20px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-b5fyub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 80%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-e9vcza { aspect-ratio: 2.557377049180328 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); overflow: hidden; position: relative; width: 151px; }\",\".framer-M5lEg .framer-f9r7yr { aspect-ratio: 1.2702702702702702 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); overflow: hidden; position: relative; width: 95px; }\",\".framer-M5lEg .framer-p6tj9x { aspect-ratio: 1.0224719101123596 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 79px); overflow: hidden; position: relative; width: 81px; }\",\".framer-M5lEg .framer-1qyzg2g { aspect-ratio: 1.3406593406593406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 108px; }\",\".framer-M5lEg .framer-3glhe8 { aspect-ratio: 2.6097560975609757 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 76px); overflow: hidden; position: relative; width: 199px; }\",\".framer-M5lEg .framer-149eeu8 { aspect-ratio: 2.5063291139240507 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); overflow: hidden; position: relative; width: 178px; }\",\".framer-M5lEg .framer-1r007rf { aspect-ratio: 3.712121212121212 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: hidden; position: relative; width: 232px; }\",\".framer-M5lEg .framer-x6lxvm { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-6dffbe79-a447-4be1-9e6e-82c178a55732, #637ec2) 0%, rgb(12, 32, 84) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-tia444 { display: grid; flex: none; gap: 5px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-M5lEg .framer-1fagh1k { align-content: center; align-items: center; align-self: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; justify-self: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-9ai5hm { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 236px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5lEg .framer-8hocge, .framer-M5lEg .framer-1e6x886, .framer-M5lEg .framer-1qnakqc, .framer-M5lEg .framer-ja4dn8, .framer-M5lEg .framer-1ayw0e1, .framer-M5lEg .framer-1u4ldj4, .framer-M5lEg .framer-h88d4v, .framer-M5lEg .framer-2cqxqi, .framer-M5lEg .framer-1n41t6k { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-tmedz7, .framer-M5lEg .framer-my1tp2, .framer-M5lEg .framer-f0zqxt, .framer-M5lEg .framer-1j5empk, .framer-M5lEg .framer-iwkwai, .framer-M5lEg .framer-1fuz0dw, .framer-M5lEg .framer-10hn5g5, .framer-M5lEg .framer-gvunt2, .framer-M5lEg .framer-qd4py1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 236px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5lEg .framer-1octsps { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-19gxwx4 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-6ijqgz { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.15), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.15), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.15), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; justify-self: center; padding: 30px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-4cgslj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-nu4h4i { flex: 1 0 0px; height: 51px; overflow: hidden; position: relative; width: 1px; }\",\".framer-M5lEg .framer-t52vcr, .framer-M5lEg .framer-vhdr39 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-86gti5-container, .framer-M5lEg .framer-fyssc4-container { flex: none; height: 35px; position: relative; width: 28px; }\",\".framer-M5lEg .framer-1255827, .framer-M5lEg .framer-m42xia { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-1370l8o-container { flex: none; height: 38px; position: relative; width: 33px; }\",\".framer-M5lEg .framer-v5tife { align-content: flex-start; align-items: flex-start; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.15), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.15), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.15), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: flex-start; justify-self: center; padding: 30px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-18s2bln { align-content: flex-start; align-items: flex-start; 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-M5lEg .framer-1i93h80, .framer-M5lEg .framer-ermxs7, .framer-M5lEg .framer-ahszrk, .framer-M5lEg .framer-15n5its { --border-bottom-width: 0px; --border-color: var(--token-75eaa1db-808f-4873-a962-d67cb8290277, #f55536); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-M5lEg .framer-ay7mti { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.15), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.15), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.15), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; grid-column: span 2; height: 100%; justify-content: center; justify-self: center; padding: 20px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1yl8kxp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 6px 0px 6px 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-16i1qv6 { --border-bottom-width: 2px; --border-color: var(--token-5f23ab5a-48b9-403f-9013-f93158d5e4ef, #2e58ff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-M5lEg .framer-1mrail6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-a4jzdn-container { flex: none; height: 42px; position: relative; width: 35px; }\",\".framer-M5lEg .framer-tv0ydo { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 80%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5lEg .framer-rwnuop { flex: none; height: 115px; overflow: visible; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1vcy88e { align-content: center; align-items: center; background-color: var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, #151c2d); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1y97zok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 600px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-M5lEg .framer-5xgt26-container { flex: 1 0 0px; height: 1px; opacity: 0.9; position: relative; width: 100%; }\",\".framer-M5lEg .framer-1pfl1xh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5lEg .framer-drjshm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-M5lEg .framer-p07dl6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-7vzl7c { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-M5lEg .framer-f88zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-1rpb5no { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-19apcmt, .framer-M5lEg .framer-1thy4fn, .framer-M5lEg .framer-1qa0rrf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; text-decoration: none; width: 40px; }\",\".framer-M5lEg .framer-1rhql3x, .framer-M5lEg .framer-6gxi02 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-M5lEg .framer-16zlmyk { --border-bottom-width: 0px; --border-color: rgba(186, 186, 186, 0.6); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 50%; }\",\".framer-M5lEg .framer-19bvpvu { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-M5lEg[data-border=\"true\"]::after, .framer-M5lEg [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-M5lEg.framer-1uxseb6 { width: 810px; } .framer-M5lEg .framer-fu9wyh-container { max-width: unset; width: 90%; } .framer-M5lEg .framer-1hzuhm3 { padding: 50px; } .framer-M5lEg .framer-phkq20 { max-width: unset; width: min-content; } .framer-M5lEg .framer-lufark { width: 593px; } .framer-M5lEg.framer-airz9i, .framer-M5lEg.framer-xgahwj { right: unset; width: 100%; } .framer-M5lEg .framer-13y2lzt, .framer-M5lEg .framer-1u016qm { max-width: 600px; width: 60%; } .framer-M5lEg .framer-1vfqg5v, .framer-M5lEg .framer-16qs243 { left: unset; right: 5px; top: 13px; transform: unset; width: 98%; } .framer-M5lEg .framer-r0rirs { gap: 47px; padding: 60px 40px 60px 40px; } .framer-M5lEg .framer-1bfg1mq { flex-direction: column; max-width: unset; } .framer-M5lEg .framer-1wvyzq5 { flex: none; gap: 35px; width: 100%; } .framer-M5lEg .framer-13rzcx9, .framer-M5lEg .framer-1fxxzz3, .framer-M5lEg .framer-trn1gu { width: 80%; } .framer-M5lEg .framer-113lcnh { flex: none; width: 100%; } .framer-M5lEg .framer-e3c9ft { padding: 50px 40px 50px 40px; } .framer-M5lEg .framer-m23m9q { max-width: 1000px; } .framer-M5lEg .framer-rw609o { max-width: 485px; width: 80%; } .framer-M5lEg .framer-1feaqhz { width: 100%; } .framer-M5lEg .framer-5qnpyy { aspect-ratio: 2.1533923303834808 / 1; height: var(--framer-aspect-ratio-supported, 339px); } .framer-M5lEg .framer-xxk6t7-container { top: 6px; width: 40px; } .framer-M5lEg .framer-cduv1j { width: 85%; } .framer-M5lEg .framer-1htsgx1 { max-width: unset; } .framer-M5lEg .framer-1jtsmqp { align-content: center; align-items: center; flex-direction: column; gap: 100px; } .framer-M5lEg .framer-c1kd8t { padding: 30px 20px 30px 20px; } .framer-M5lEg .framer-1ril3dq { flex: 1 0 0px; gap: 81px; max-width: unset; padding: 100px 30px 100px 30px; width: 1px; } .framer-M5lEg .framer-ye8b8e { align-content: flex-start; align-items: flex-start; } .framer-M5lEg .framer-779i2p-container { max-width: 810px; } .framer-M5lEg .framer-f9r7yr { height: var(--framer-aspect-ratio-supported, 74px); } .framer-M5lEg .framer-p6tj9x { height: var(--framer-aspect-ratio-supported, 80px); } .framer-M5lEg .framer-tia444 { padding: 30px; width: 100%; } .framer-M5lEg .framer-9ai5hm, .framer-M5lEg .framer-tmedz7, .framer-M5lEg .framer-my1tp2, .framer-M5lEg .framer-1fuz0dw, .framer-M5lEg .framer-10hn5g5, .framer-M5lEg .framer-gvunt2, .framer-M5lEg .framer-qd4py1 { height: var(--framer-aspect-ratio-supported, 247px); } .framer-M5lEg .framer-f0zqxt, .framer-M5lEg .framer-1j5empk, .framer-M5lEg .framer-iwkwai { height: var(--framer-aspect-ratio-supported, 246px); } .framer-M5lEg .framer-1octsps { padding: 60px 50px 60px 50px; } .framer-M5lEg .framer-19gxwx4 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-M5lEg .framer-nu4h4i { height: 83px; } .framer-M5lEg .framer-ay7mti { gap: unset; justify-content: space-around; padding: 15px; } .framer-M5lEg .framer-1yl8kxp { gap: 25px; } .framer-M5lEg .framer-1vcy88e { padding: 80px 0px 80px 0px; } .framer-M5lEg .framer-1y97zok { gap: 42px; height: 650px; }}\",\"@media (max-width: 809px) { .framer-M5lEg.framer-1uxseb6 { width: 390px; } .framer-M5lEg .framer-fu9wyh-container { height: auto; max-width: unset; z-index: 2; } .framer-M5lEg .framer-1hzuhm3 { padding: 30px; } .framer-M5lEg .framer-phkq20 { align-content: center; align-items: center; gap: 17px; } .framer-M5lEg .framer-1tu5h6o { flex-direction: column; } .framer-M5lEg .framer-1hj1jj4 { padding: 25px; z-index: 0; } .framer-M5lEg.framer-airz9i, .framer-M5lEg.framer-xgahwj { top: 0px; } .framer-M5lEg .framer-13y2lzt, .framer-M5lEg .framer-1u016qm { gap: 0px; max-width: 400px; top: 8px; width: 90%; } .framer-M5lEg .framer-1vfqg5v, .framer-M5lEg .framer-16qs243 { gap: 0px; left: unset; max-width: 400px; right: 4px; top: 7px; transform: unset; width: 98%; } .framer-M5lEg .framer-f0eklv-container, .framer-M5lEg .framer-5rgukh-container { height: 35px; width: 35px; } .framer-M5lEg .framer-pu7m8t, .framer-M5lEg .framer-18ur3za { gap: 15px; } .framer-M5lEg .framer-ee75e7 { z-index: 0; } .framer-M5lEg .framer-r0rirs { padding: 80px 30px 80px 30px; } .framer-M5lEg .framer-1bfg1mq { flex-direction: column; gap: 60px; max-width: unset; } .framer-M5lEg .framer-1wvyzq5, .framer-M5lEg .framer-113lcnh, .framer-M5lEg .framer-a9190i, .framer-M5lEg .framer-kdxbkv { flex: none; width: 100%; } .framer-M5lEg .framer-trn1gu, .framer-M5lEg .framer-tia444 { width: 100%; } .framer-M5lEg .framer-e3c9ft, .framer-M5lEg .framer-126z9l9 { padding: 50px 0px 50px 0px; } .framer-M5lEg .framer-m23m9q { gap: 40px; max-width: unset; } .framer-M5lEg .framer-rw609o { max-width: 290px; } .framer-M5lEg .framer-1feaqhz, .framer-M5lEg .framer-cduv1j, .framer-M5lEg .framer-aoinrs { width: 80%; } .framer-M5lEg .framer-5qnpyy { aspect-ratio: 1.278688524590164 / 1; height: var(--framer-aspect-ratio-supported, 305px); } .framer-M5lEg .framer-lxzqok { padding: 10px 15px 10px 15px; } .framer-M5lEg.framer-23p1rc { background-color: #c2c2c2; left: 0px; padding: 30px 0px 0px 0px; right: 0px; width: unset; } .framer-M5lEg .framer-xxk6t7-container { height: 40px; width: 35px; } .framer-M5lEg .framer-1htsgx1 { gap: 23px; max-width: unset; width: 100%; } .framer-M5lEg .framer-1jtsmqp { align-content: center; align-items: center; align-self: unset; flex-direction: column; gap: 70px; padding: 0px 0px 40px 0px; width: 100%; } .framer-M5lEg .framer-1gm9pz7, .framer-M5lEg .framer-1gwz10t { gap: 0px; } .framer-M5lEg .framer-1vx9m92 { aspect-ratio: 1.030188679245283 / 1; height: var(--framer-aspect-ratio-supported, 340px); width: 350px; } .framer-M5lEg .framer-tr9uea, .framer-M5lEg .framer-9ujx0q { background-color: var(--token-b4a374aa-e631-4d61-99fb-437d8e933de4, #142652); bottom: -35px; box-shadow: 0px 0.7961918735236395px 3.9809593676181976px -1.25px rgba(255, 255, 255, 0.24), 0px 2.414506143104518px 12.07253071552259px -2.5px rgba(255, 255, 255, 0.22), 0px 6.382653521484461px 31.91326760742231px -3.75px rgba(255, 255, 255, 0.17), 0px 20px 100px -5px rgba(255, 255, 255, 0); left: 50%; transform: translateX(-50%); } .framer-M5lEg .framer-1x6jdly, .framer-M5lEg .framer-um1mst { --framer-text-wrap-override: none; width: 315px; } .framer-M5lEg .framer-1d25g4o { overflow: visible; } .framer-M5lEg .framer-18bwhfp { aspect-ratio: 1.030188679245283 / 1; height: var(--framer-aspect-ratio-supported, 340px); overflow: visible; width: 350px; } .framer-M5lEg .framer-c1kd8t { align-self: unset; max-width: unset; padding: 15px 25px 15px 25px; width: 100%; } .framer-M5lEg .framer-9m369r { white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-M5lEg .framer-1ril3dq { flex: 1 0 0px; gap: 50px; max-width: unset; padding: 100px 25px 100px 25px; width: 1px; } .framer-M5lEg .framer-ye8b8e { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-M5lEg .framer-n0x16a, .framer-M5lEg .framer-6z4sn8 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-M5lEg .framer-1qyzg2g { height: var(--framer-aspect-ratio-supported, 81px); } .framer-M5lEg .framer-1r007rf { height: var(--framer-aspect-ratio-supported, 62px); } .framer-M5lEg .framer-x6lxvm { padding: 80px 20px 80px 20px; } .framer-M5lEg .framer-9ai5hm, .framer-M5lEg .framer-tmedz7, .framer-M5lEg .framer-my1tp2, .framer-M5lEg .framer-f0zqxt, .framer-M5lEg .framer-1j5empk, .framer-M5lEg .framer-iwkwai, .framer-M5lEg .framer-1fuz0dw, .framer-M5lEg .framer-10hn5g5, .framer-M5lEg .framer-gvunt2, .framer-M5lEg .framer-qd4py1 { height: var(--framer-aspect-ratio-supported, 350px); } .framer-M5lEg .framer-1octsps { padding: 20px 20px 40px 20px; } .framer-M5lEg .framer-19gxwx4 { gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); max-width: unset; } .framer-M5lEg .framer-6ijqgz { gap: 40px; height: min-content; padding: 39px 30px 39px 30px; } .framer-M5lEg .framer-nu4h4i { height: 67px; } .framer-M5lEg .framer-v5tife { height: min-content; padding: 43px 30px 43px 30px; } .framer-M5lEg .framer-ay7mti { grid-column: span 1; height: min-content; } .framer-M5lEg .framer-1yl8kxp { flex-direction: column; gap: 20px; padding: 20px 0px 20px 0px; } .framer-M5lEg .framer-16i1qv6 { align-self: stretch; width: auto; } .framer-M5lEg .framer-tv0ydo { max-width: 88%; } .framer-M5lEg .framer-rwnuop { height: 90px; } .framer-M5lEg .framer-1vcy88e { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-M5lEg .framer-1y97zok { gap: 40px; } .framer-M5lEg .framer-1pfl1xh { flex-direction: column; gap: 23px; height: min-content; max-width: unset; } .framer-M5lEg .framer-drjshm { flex-direction: row; height: min-content; } .framer-M5lEg .framer-16zlmyk { --border-top-width: 0.5px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9833\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"g4RjBPeSW\":{\"layout\":[\"fixed\",\"auto\"]},\"UdZtn4DZA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerQh4cMR41t=withCSS(Component,css,\"framer-M5lEg\");export default FramerQh4cMR41t;FramerQh4cMR41t.displayName=\"Page\";FramerQh4cMR41t.defaultProps={height:9833,width:1440};addFonts(FramerQh4cMR41t,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammWggvWl0Qn.woff2\",weight:\"900\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmWggvWl0Qn.woff2\",weight:\"500\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmWggvWl0Qn.woff2\",weight:\"300\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiAr0klQnx24.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/22GWRXQXMICIWABQXFWKIWZIILKO5JDJ/2BBKMSVLV5CSDOZ7HEEECOTKPOVVJOC3/RNFY4UJD36462ZMGEIC5I7KNE73BPOAU.woff2\",weight:\"900\"},{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v23/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...LandingPageNavCopyFonts,...HeroFonts,...DownloadFonts,...ButtonEnglish2Fonts,...ButtonEnglishFonts,...NestedCalculatorFinalFonts,...VideoTestimonialsFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQh4cMR41t\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"9833\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g4RjBPeSW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UdZtn4DZA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "arfM_WdQf_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "valuesByLocaleId", "arfM_WdQf_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "LayoutGroup", "u", "cx", "RichText", "getLocalizedValue", "css", "FramerarfM_WdQf", "withCSS", "arfM_WdQf_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "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", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "u", "ComponentViewportProvider", "Video", "css", "FramerKifQTESfI", "withCSS", "KifQTESfI_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "LandingPageNavCopyFonts", "getFonts", "kBkbWWeFN_default", "HeroFonts", "Icon", "DownloadFonts", "Download", "ButtonEnglish2Fonts", "arfM_WdQf_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ButtonEnglishFonts", "koEHAIIyZ_default", "NestedCalculatorFinalFonts", "C60pZtkzb_default", "VideoTestimonialsFonts", "KifQTESfI_default", "EmbedFonts", "Embed", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "formVariants", "form", "variants", "currentVariant", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation4", "transition3", "animation5", "animation6", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Image2", "getLocalizedValue", "x", "RichText", "l", "Link", "AnimatePresence", "Ga", "FormContainer", "formState", "FormPlainTextInput2", "FormSelect", "overlay1", "SVG", "overlay2", "css", "FramerQh4cMR41t", "withCSS", "Qh4cMR41t_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
