{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framerusercontent.com/modules/5fp9PQ8NhfQ43XNBIZui/APPXRdBj0Yoq1mBJbJ4n/r0JcuzRvJ.js", "ssg:https://framerusercontent.com/modules/4OcubmATCfLuhrCnPPCj/2E9RvJHYgSBRpkLYs1xr/lPPdNeT3o-0.js", "ssg:https://framerusercontent.com/modules/4OcubmATCfLuhrCnPPCj/2E9RvJHYgSBRpkLYs1xr/lPPdNeT3o-1.js", "ssg:https://framerusercontent.com/modules/4OcubmATCfLuhrCnPPCj/2E9RvJHYgSBRpkLYs1xr/lPPdNeT3o.js", "ssg:https://framerusercontent.com/modules/xBrACHCoXZPy5uiRgecH/SatkyuJGL6FjYkmoZlaT/lPPdNeT3o.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", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-MhAU6 .framer-styles-preset-xse4k0:not(.rich-text-wrapper), .framer-MhAU6 .framer-styles-preset-xse4k0.rich-text-wrapper a { --framer-link-current-text-color: #391d44; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #391d44; --framer-link-hover-text-decoration: none; --framer-link-text-color: #391d44; --framer-link-text-decoration: none; }\"];export const className=\"framer-MhAU6\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";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\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I20:7627;4649:66019\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Soporte\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I20:7627;4649:66020\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Mantente Conectado\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I20:7627;4649:66021\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"T\\xe9rminos y Condiciones\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. Todos los derechos reservados \\xa9\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. Todos los derechos reservados \\xa9\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"aF1KnE3tl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"Soporte\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"rNNhLfELb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Pol\\xedtica de privacidad\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"QjbWLTeZk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"T\\xe9rminos y Condiciones\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. Todos los derechos reservados \\xa9\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I223:12522;344:101086\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"Soporte\"})})})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://virginconnectroam.framer.website/contact-us-app\",nodeId:\"YZz2h0d_p\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Soporte\"})})})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I223:12522;4649:86978\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Mantente Conectado\"})})})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Mantente Conectado\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I223:12522;344:101087\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"T\\xe9rminos y Condiciones\"})})})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"T\\xe9rminos y Condiciones\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. Todos los derechos reservados \\xa9\"})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"k1UEA7SeE\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Soporte\"})})})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/privacyPolicyWebScreen\",nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Pol\\xedtica de privacidad\"})})})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Pol\\xedtica de privacidad\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/termsConditionWebScreen\",nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"T\\xe9rminos y Condiciones\"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"T\\xe9rminos y Condiciones\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC03MDA=\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Mantente Conectado\"})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Mantente Conectado\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{Link}from\"framer\";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\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I20:7627;4649:66019\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u062F\u0639\u0645\"})})})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I20:7627;4649:66020\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})})})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I20:7627;4649:66021\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})})})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0641\u064A\u0631\u062C\u0646 \u0643\u0648\u0646\u064A\u0643\u062A. \u0643\u0644 \u0627\u0644\u062D\u0642\u0648\u0642 \u0645\u062D\u0641\u0648\u0638\u0629 \\xa9\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0641\u064A\u0631\u062C\u0646 \u0643\u0648\u0646\u064A\u0643\u062A. \u062C\u0645\u064A\u0639 \u0627\u0644\u062D\u0642\u0648\u0642 \u0645\u062D\u0641\u0648\u0638\u0629 \\xa9\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"aF1KnE3tl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"\u0627\u0644\u062F\u0639\u0645\"})})})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"rNNhLfELb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})})})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"QjbWLTeZk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})})})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0641\u064A\u0631\u062C\u0646 \u0643\u0648\u0646\u064A\u0643\u062A. \u0643\u0644 \u0627\u0644\u062D\u0642\u0648\u0642 \u0645\u062D\u0641\u0648\u0638\u0629 \\xa9\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I223:12522;344:101086\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"\u0627\u0644\u062F\u0639\u0645\"})})})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://virginconnectroam.framer.website/contact-us-app\",nodeId:\"YZz2h0d_p\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u062F\u0639\u0645\"})})})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I223:12522;4649:86978\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})})})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I223:12522;344:101087\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})})})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0641\u064A\u0631\u062C\u0646 \u0643\u0648\u0646\u064A\u0643\u062A. \u062C\u0645\u064A\u0639 \u0627\u0644\u062D\u0642\u0648\u0642 \u0645\u062D\u0641\u0648\u0638\u0629 \\xa9\"})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"k1UEA7SeE\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u062F\u0639\u0645\"})})})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/privacyPolicyWebScreen\",nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})})})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0633\u064A\u0627\u0633\u0629 \u0627\u0644\u062E\u0635\u0648\u0635\u064A\u0629\"})})})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/termsConditionWebScreen\",nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})})})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062D\u0643\u0627\u0645\"})})})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC03MDA=\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0627\u0628\u0642 \u0639\u0644\u0649 \u0627\u062A\u0635\u0627\u0644\"})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"\u0627\u0628\u0642 \u0639\u0644\u0649 \u0627\u062A\u0635\u0627\u0644\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4991a04)\nimport*as localizedValues from\"./lPPdNeT3o-0.js\";import*as localizedValues1 from\"./lPPdNeT3o-1.js\";const valuesByLocaleId={o_DIcIBsD:localizedValues1,XbqVNP394: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 (4991a04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/5fp9PQ8NhfQ43XNBIZui/APPXRdBj0Yoq1mBJbJ4n/r0JcuzRvJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GxsR0n5kZ32P5VDpa00C/AVSk4vRGZiI2DfSyA9eP/VZ4sS5Uwz.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/4OcubmATCfLuhrCnPPCj/2E9RvJHYgSBRpkLYs1xr/lPPdNeT3o.js\";const cycleOrder=[\"OFPLES1L3\",\"v0DLRCPxt\",\"RnS1KXdvW\",\"akbyLQUoz\",\"x5ADnsMzj\",\"MoXaz3oZT\"];const serializationHash=\"framer-ArtRS\";const variantClassNames={akbyLQUoz:\"framer-v-q3aydf\",MoXaz3oZT:\"framer-v-35d8zr\",OFPLES1L3:\"framer-v-6f4qar\",RnS1KXdvW:\"framer-v-8wgfay\",v0DLRCPxt:\"framer-v-132b4b8\",x5ADnsMzj:\"framer-v-fc43y8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};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={\"1000\":\"akbyLQUoz\",\"1200\":\"RnS1KXdvW\",\"1440\":\"v0DLRCPxt\",\"1920\":\"OFPLES1L3\",Mobile:\"MoXaz3oZT\",Tablet:\"x5ADnsMzj\"};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:\"OFPLES1L3\"};};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:\"OFPLES1L3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"o_DIcIBsD\");const isDisplayed=value=>{if(baseVariant===\"MoXaz3oZT\")return false;return value;};const visible1=negate(equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"o_DIcIBsD\"));const isDisplayed1=value=>{if(baseVariant===\"MoXaz3oZT\")return value;return false;};const visible2=equals(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,\"default\");const isDisplayed2=()=>{if(baseVariant===\"MoXaz3oZT\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"MoXaz3oZT\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22;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-6f4qar\",className,classNames),\"data-framer-name\":\"1920\",layoutDependency:layoutDependency,layoutId:\"OFPLES1L3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(248, 244, 251)\",...style},...addPropertyOverrides({akbyLQUoz:{\"data-framer-name\":\"1000\"},MoXaz3oZT:{\"data-framer-name\":\"Mobile\"},RnS1KXdvW:{\"data-framer-name\":\"1200\"},v0DLRCPxt:{\"data-framer-name\":\"1440\"},x5ADnsMzj:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bn69ix\",layoutDependency:layoutDependency,layoutId:\"WA1MRjatJ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gbyjvq\",layoutDependency:layoutDependency,layoutId:\"qvIQ01y04\",children:[isDisplayed(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qj3co5\",\"data-framer-name\":\"Bottom Footer Section\",layoutDependency:layoutDependency,layoutId:\"I20:7627;39:19324\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ubffd\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"I20:7627;4649:66018\",children:[/*#__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\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I20:7627;4649:66019\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Support\"})})})}),className:\"framer-whon5w\",\"data-framer-name\":\"Support\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"I20:7627;4649:66019\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I20:7627;4649:66020\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Privacy Policy\"})})})}),className:\"framer-1twru1k\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"I20:7627;4649:66020\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I20:7627;4649:66021\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Terms & Contiditions\"})})})}),className:\"framer-1ee4uuy\",\"data-framer-name\":\"Terms & Contiditions\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"I20:7627;4649:66021\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6u4ky5\",\"data-framer-name\":\"Frame 47431\",layoutDependency:layoutDependency,layoutId:\"I20:7627;39:19325\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. All rights reserved \\xa9\"})}),className:\"framer-1ptul93\",\"data-framer-name\":\"Virgin Mobile UAE. A\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"I20:7627;39:19331\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed(visible1)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nx7t5s\",\"data-framer-name\":\"Bottom Footer Section\",layoutDependency:layoutDependency,layoutId:\"MDcDonFmD\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i78xa5\",\"data-framer-name\":\"Frame 47431\",layoutDependency:layoutDependency,layoutId:\"KSJNhcGTM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. All rights reserved \\xa9\"})}),className:\"framer-88mqj5\",\"data-framer-name\":\"Virgin Mobile UAE. A\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"VqYuAvhmP\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egw7iu\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"w_2wRE08N\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"aF1KnE3tl\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"Support\"})})})}),className:\"framer-9ljri7\",\"data-framer-name\":\"Support\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"aF1KnE3tl\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue6=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"rNNhLfELb\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Privacy Policy\"})})})}),className:\"framer-1du6h1a\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"rNNhLfELb\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"QjbWLTeZk\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Terms & Conditions\"})})})}),className:\"framer-1hfqz48\",\"data-framer-name\":\"Terms & Contiditions\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"QjbWLTeZk\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1(visible1)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g04s3z\",\"data-framer-name\":\"Bottom Footer Section\",layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101081\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fws1fp\",\"data-framer-name\":\"Frame 47431\",layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101082\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. All rights reserved \\xa9\"})}),className:\"framer-19j13md\",\"data-framer-name\":\"Virgin Mobile UAE. A\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101084\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gue02x\",\"data-border\":true,\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101085\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(235, 232, 236)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"I223:12522;344:101086\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xse4k0\",\"data-styles-preset\":\"r0JcuzRvJ\",children:\"Support\"})})})}),className:\"framer-1v7vuq\",\"data-framer-name\":\"Support\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101086\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed(visible2)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://virginconnectroam.framer.website/contact-us-app\",nodeId:\"YZz2h0d_p\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Support\"})})})}),className:\"framer-c7b2oi\",\"data-framer-name\":\"Support\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"YZz2h0d_p\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"I223:12522;4649:86978\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Privacy Policy\"})})})}),className:\"framer-1lxnud5\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"I223:12522;4649:86978\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Privacy Policy\"})}),className:\"framer-1mwcfhv\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"fJQDcietP\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"I223:12522;344:101087\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Terms & Conditions\"})})})}),className:\"framer-h5eqd0\",\"data-framer-name\":\"Terms & Contiditions\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101087\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Terms & Contiditions\"})}),className:\"framer-ivsqzz\",\"data-framer-name\":\"Terms & Contiditions\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"QHPuuBvXT\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11b61dh\",\"data-framer-name\":\"Bottom Footer Section\",layoutDependency:layoutDependency,layoutId:\"I4jizm7kC\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-187jxsp\",\"data-framer-name\":\"Frame 47431\",layoutDependency:layoutDependency,layoutId:\"KABy1DwdX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue15=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Virgin Connect. All rights reserved \\xa9\"})}),className:\"framer-1vw5e4t\",\"data-framer-name\":\"Virgin Mobile UAE. A\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"cOS2wrLjm\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kw0i51\",\"data-border\":true,\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"VZytBopxJ\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(235, 232, 236)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Fh5XP8FSr\"},nodeId:\"k1UEA7SeE\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Support\"})})})}),className:\"framer-qcwo0s\",\"data-framer-name\":\"Support\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"k1UEA7SeE\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/privacyPolicyWebScreen\",nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Privacy Policy\"})})})}),className:\"framer-go78xg\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"ayXOLvKZg\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MoXaz3oZT:{children:(_getLocalizedValue18=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kzv2ndUgA\"},nodeId:\"ayXOLvKZg\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://roam.virginconnect.com/homePageWeb/termsConditionWebScreen\",nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Terms & Contiditions\"})})})}),className:\"framer-11ncbo0\",\"data-framer-name\":\"Terms & Contiditions\",fonts:[\"GF;Tajawal-regular\"],layoutDependency:layoutDependency,layoutId:\"qWJpybzqX\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MoXaz3oZT:{children:(_getLocalizedValue20=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC1yZWd1bGFy\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nn1AZLJpc\"},nodeId:\"qWJpybzqX\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sdkp7g\",\"data-styles-preset\":\"VZ4sS5Uwz\",children:\"Terms & Contiditions\"})})})})}},baseVariant,gestureVariant)})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m7idml\",\"data-framer-name\":\"Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:355,layoutDependency:layoutDependency,layoutId:\"I223:12522;344:101080\",svg:'<svg width=\"355\" height=\"3\" viewBox=\"-1 -1 355 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.5H353\" stroke=\"#EBE8EC\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wtja6q\",\"data-framer-name\":\"Separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:1142,layoutDependency:layoutDependency,layoutId:\"I20:7627;39:19323\",svg:'<svg width=\"1142\" height=\"4\" viewBox=\"-1 -1 1142 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1.10352H1140\" stroke=\"#EBE8EC\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18v9bfy\",\"data-framer-name\":\"Top Footer Section\",layoutDependency:layoutDependency,layoutId:\"I20:7627;4592:33902\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n744ft\",\"data-framer-name\":\"Group 3\",layoutDependency:layoutDependency,layoutId:\"I20:7627;4592:33903\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15u0hcu\",\"data-framer-name\":\"Frame 1478\",layoutDependency:layoutDependency,layoutId:\"I20:7627;4592:33904\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bxgc1m\",layoutDependency:layoutDependency,layoutId:\"KbEBYkrXp\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/_VirginConnect\",nodeId:\"oe0qSx5Xk\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-19g9qxf framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oe0qSx5Xk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 25\"><path d=\"M 1.917 12.5 C 1.917 6.977 6.208 2.5 11.5 2.5 C 16.793 2.5 21.084 6.977 21.084 12.5 C 21.084 18.023 16.793 22.5 11.5 22.5 C 6.208 22.5 1.917 18.023 1.917 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 15.059 16.282 C 15.031 16.334 14.99 16.378 14.939 16.408 C 14.889 16.438 14.832 16.454 14.773 16.455 L 12.809 16.455 C 12.754 16.455 12.7 16.44 12.652 16.413 C 12.604 16.386 12.563 16.347 12.533 16.3 L 10.877 13.649 L 8.47 16.345 C 8.411 16.41 8.33 16.448 8.244 16.451 C 8.158 16.455 8.074 16.424 8.01 16.365 C 7.946 16.306 7.908 16.224 7.903 16.136 C 7.899 16.049 7.928 15.963 7.985 15.897 L 10.512 13.064 L 7.951 8.967 C 7.92 8.917 7.902 8.859 7.9 8.799 C 7.898 8.739 7.912 8.68 7.94 8.628 C 7.968 8.575 8.01 8.531 8.061 8.501 C 8.111 8.471 8.169 8.455 8.227 8.455 L 10.191 8.455 C 10.246 8.455 10.3 8.469 10.349 8.496 C 10.397 8.523 10.438 8.562 10.467 8.609 L 12.124 11.26 L 14.531 8.564 C 14.589 8.5 14.671 8.461 14.757 8.458 C 14.843 8.454 14.927 8.485 14.99 8.544 C 15.054 8.603 15.092 8.685 15.097 8.773 C 15.102 8.861 15.072 8.946 15.015 9.012 L 12.488 11.843 L 15.049 15.943 C 15.081 15.993 15.098 16.051 15.1 16.111 C 15.101 16.17 15.088 16.229 15.059 16.282 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9919263597,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://snapchat.com/t/kTWYrPpx\",nodeId:\"yoLfr8piv\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-fuw8gt framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yoLfr8piv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 16.895 14.693 C 16.599 14.971 16.159 15.014 15.733 15.056 C 15.47 15.082 15.198 15.109 15.05 15.191 C 14.91 15.268 14.765 15.467 14.625 15.658 C 14.4 15.967 14.144 16.317 13.74 16.42 C 13.649 16.443 13.557 16.454 13.463 16.454 C 13.177 16.454 12.892 16.357 12.634 16.269 C 12.403 16.19 12.184 16.116 12 16.116 C 11.816 16.116 11.598 16.19 11.366 16.269 C 11.025 16.385 10.638 16.519 10.261 16.42 C 9.856 16.317 9.6 15.967 9.375 15.658 C 9.235 15.467 9.09 15.268 8.95 15.191 C 8.802 15.108 8.53 15.082 8.267 15.056 C 7.841 15.015 7.401 14.971 7.105 14.693 C 7.064 14.654 7.033 14.605 7.016 14.551 C 6.998 14.496 6.995 14.438 7.007 14.382 C 7.019 14.327 7.044 14.275 7.082 14.232 C 7.119 14.188 7.167 14.156 7.221 14.136 C 7.224 14.136 7.756 13.934 8.277 13.345 C 8.6 12.976 8.851 12.549 9.017 12.087 L 8.208 11.764 C 8.167 11.747 8.13 11.723 8.099 11.692 C 8.068 11.662 8.043 11.625 8.025 11.585 C 8.008 11.544 7.999 11.501 7.999 11.457 C 7.998 11.413 8.007 11.37 8.023 11.329 C 8.04 11.289 8.064 11.252 8.095 11.22 C 8.125 11.189 8.162 11.164 8.202 11.147 C 8.243 11.13 8.286 11.121 8.33 11.12 C 8.374 11.12 8.417 11.128 8.458 11.145 L 9.202 11.443 C 9.292 11.008 9.336 10.565 9.333 10.121 C 9.333 9.414 9.614 8.736 10.114 8.236 C 10.614 7.736 11.293 7.455 12 7.455 C 12.707 7.455 13.385 7.736 13.886 8.236 C 14.386 8.736 14.667 9.414 14.667 10.121 C 14.664 10.565 14.709 11.008 14.8 11.443 L 15.542 11.145 C 15.582 11.128 15.626 11.12 15.67 11.12 C 15.714 11.121 15.757 11.13 15.797 11.147 C 15.838 11.164 15.874 11.189 15.905 11.22 C 15.936 11.252 15.96 11.289 15.976 11.329 C 15.993 11.37 16.001 11.413 16.001 11.457 C 16 11.501 15.991 11.544 15.974 11.585 C 15.957 11.625 15.932 11.662 15.901 11.692 C 15.87 11.723 15.832 11.747 15.792 11.764 L 14.988 12.085 C 15.574 13.683 16.764 14.131 16.779 14.136 C 16.833 14.156 16.881 14.188 16.918 14.232 C 16.956 14.275 16.982 14.327 16.993 14.382 C 17.005 14.438 17.002 14.496 16.985 14.551 C 16.967 14.605 16.936 14.654 16.895 14.693 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9805526116,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@virgin_connect\",nodeId:\"H8v7ezf54\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-bosy6j framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"H8v7ezf54\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 17 10.418 L 17 12.269 C 17 12.368 16.963 12.462 16.899 12.531 C 16.834 12.601 16.746 12.64 16.654 12.64 C 15.931 12.642 15.218 12.456 14.577 12.098 L 14.577 13.936 C 14.577 14.869 14.23 15.764 13.614 16.424 C 12.997 17.084 12.161 17.455 11.289 17.455 C 10.416 17.455 9.58 17.084 8.963 16.424 C 8.346 15.764 8 14.869 8 13.936 C 8 12.228 9.164 10.718 10.709 10.423 C 10.758 10.414 10.81 10.416 10.858 10.43 C 10.907 10.444 10.953 10.469 10.992 10.504 C 11.03 10.539 11.062 10.582 11.083 10.631 C 11.104 10.68 11.115 10.734 11.115 10.788 L 11.115 12.764 C 11.115 12.834 11.097 12.903 11.062 12.962 C 11.027 13.022 10.977 13.069 10.918 13.099 C 10.778 13.17 10.658 13.28 10.572 13.417 C 10.485 13.554 10.434 13.714 10.425 13.88 C 10.415 14.045 10.447 14.21 10.518 14.357 C 10.589 14.505 10.695 14.63 10.826 14.718 C 10.957 14.807 11.107 14.856 11.262 14.861 C 11.417 14.866 11.57 14.827 11.706 14.747 C 11.841 14.667 11.954 14.55 12.033 14.407 C 12.112 14.264 12.154 14.102 12.154 13.936 L 12.154 7.825 C 12.154 7.727 12.19 7.633 12.255 7.563 C 12.32 7.494 12.408 7.455 12.5 7.455 L 14.231 7.455 C 14.323 7.455 14.411 7.494 14.476 7.563 C 14.54 7.633 14.577 7.727 14.577 7.825 C 14.578 8.414 14.796 8.979 15.186 9.396 C 15.575 9.812 16.103 10.047 16.654 10.047 C 16.746 10.047 16.834 10.086 16.899 10.156 C 16.963 10.225 17 10.319 17 10.418 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10382745440,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@Virgin_Connect\",nodeId:\"tAjHbwY8S\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1kozezg framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tAjHbwY8S\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z M 17.111 10.031 C 16.988 9.559 16.627 9.188 16.168 9.062 C 15.336 8.833 12 8.833 12 8.833 C 12 8.833 8.665 8.833 7.833 9.062 C 7.374 9.188 7.013 9.559 6.89 10.031 C 6.667 10.885 6.667 12.667 6.667 12.667 C 6.667 12.667 6.667 14.449 6.89 15.303 C 7.013 15.774 7.374 16.145 7.833 16.271 C 8.665 16.5 12 16.5 12 16.5 C 12 16.5 15.336 16.5 16.168 16.271 C 16.627 16.145 16.988 15.774 17.111 15.303 C 17.334 14.449 17.334 12.667 17.334 12.667 C 17.334 12.667 17.334 10.885 17.111 10.031 Z M 11 11.167 L 11 14.5 L 13.667 12.833 Z\" fill=\"rgb(57, 29, 68)\"></path></svg>',svgContentId:12193657264,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/virginconnect/\",nodeId:\"OQavH1XKz\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-d7v9sc framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OQavH1XKz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 14.308 7.455 L 9.692 7.455 C 8.979 7.455 8.294 7.739 7.789 8.244 C 7.285 8.749 7.001 9.433 7 10.147 L 7 14.762 C 7.001 15.476 7.285 16.16 7.789 16.665 C 8.294 17.17 8.979 17.454 9.692 17.455 L 14.308 17.455 C 15.021 17.454 15.706 17.17 16.211 16.665 C 16.715 16.16 16.999 15.476 17 14.762 L 17 10.147 C 16.999 9.433 16.715 8.749 16.211 8.244 C 15.706 7.739 15.021 7.455 14.308 7.455 Z M 12 14.762 C 11.544 14.762 11.097 14.627 10.718 14.373 C 10.338 14.12 10.043 13.759 9.868 13.338 C 9.693 12.916 9.648 12.452 9.737 12.004 C 9.826 11.557 10.045 11.145 10.368 10.823 C 10.691 10.5 11.102 10.28 11.55 10.191 C 11.997 10.102 12.461 10.148 12.883 10.323 C 13.305 10.497 13.665 10.793 13.919 11.172 C 14.172 11.552 14.308 11.998 14.308 12.455 C 14.307 13.066 14.064 13.653 13.631 14.086 C 13.198 14.518 12.612 14.762 12 14.762 Z M 14.885 10.147 C 14.771 10.147 14.659 10.113 14.564 10.05 C 14.469 9.986 14.395 9.896 14.352 9.791 C 14.308 9.685 14.297 9.569 14.319 9.457 C 14.341 9.346 14.396 9.243 14.477 9.162 C 14.557 9.081 14.66 9.026 14.772 9.004 C 14.884 8.982 15 8.993 15.105 9.037 C 15.211 9.081 15.301 9.155 15.364 9.249 C 15.428 9.344 15.462 9.456 15.462 9.57 C 15.462 9.723 15.401 9.87 15.293 9.978 C 15.184 10.086 15.038 10.147 14.885 10.147 Z M 13.539 12.455 C 13.539 12.759 13.448 13.056 13.279 13.309 C 13.11 13.562 12.87 13.759 12.589 13.876 C 12.308 13.992 11.998 14.023 11.7 13.963 C 11.401 13.904 11.127 13.758 10.912 13.542 C 10.697 13.327 10.551 13.053 10.491 12.755 C 10.432 12.456 10.462 12.147 10.579 11.866 C 10.695 11.585 10.892 11.344 11.145 11.175 C 11.398 11.006 11.696 10.916 12 10.916 C 12.408 10.916 12.799 11.078 13.088 11.367 C 13.376 11.655 13.539 12.047 13.539 12.455 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:8932969767,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/VirginConnect/\",nodeId:\"zUB3XmhmF\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-lm8nyt framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zUB3XmhmF\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 12 2.5 C 6.477 2.5 2 6.977 2 12.5 C 2 18.023 6.477 22.5 12 22.5 C 17.523 22.5 22 18.023 22 12.5 C 22 6.977 17.523 2.5 12 2.5 Z M 13.043 12.939 L 13.043 18.38 L 10.792 18.38 L 10.792 12.94 L 9.667 12.94 L 9.667 11.065 L 10.792 11.065 L 10.792 9.939 C 10.792 8.41 11.427 7.5 13.231 7.5 L 14.733 7.5 L 14.733 9.375 L 13.794 9.375 C 13.092 9.375 13.045 9.637 13.045 10.126 L 13.043 11.064 L 14.743 11.064 L 14.544 12.939 Z\" fill=\"rgb(57, 29, 68)\"></path></svg>',svgContentId:12578745884,withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VGFqYXdhbC03MDA=\",\"--framer-font-family\":'\"Tajawal\", \"Tajawal Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Stay Connected\"})}),className:\"framer-nyco51\",\"data-framer-name\":\"Our products\",fonts:[\"GF;Tajawal-700\"],layoutDependency:layoutDependency,layoutId:\"I20:7627;4592:33905\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-liln1s\",\"data-framer-name\":\"Top Footer Section\",layoutDependency:layoutDependency,layoutId:\"FoyJ4ObO9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1em9a1h\",\"data-framer-name\":\"Group 3\",layoutDependency:layoutDependency,layoutId:\"Qqy1vRq_o\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a8e4dt\",\"data-framer-name\":\"Frame 1478\",layoutDependency:layoutDependency,layoutId:\"obLFeqz5q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(57, 29, 68))\"},children:\"Stay Connected\"})}),className:\"framer-1dvl0dt\",\"data-framer-name\":\"Our products\",fonts:[\"GF;Poppins-700\"],layoutDependency:layoutDependency,layoutId:\"rRYMt32EI\",style:{\"--extracted-r6o4lv\":\"rgb(57, 29, 68)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15sgnil\",layoutDependency:layoutDependency,layoutId:\"P0qi4lAWI\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/_VirginConnect\",nodeId:\"PcnwQcX8A\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1uxh44g framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PcnwQcX8A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 25\"><path d=\"M 1.917 12.5 C 1.917 6.977 6.208 2.5 11.5 2.5 C 16.793 2.5 21.084 6.977 21.084 12.5 C 21.084 18.023 16.793 22.5 11.5 22.5 C 6.208 22.5 1.917 18.023 1.917 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 15.059 16.282 C 15.031 16.334 14.99 16.378 14.939 16.408 C 14.889 16.438 14.832 16.454 14.773 16.455 L 12.809 16.455 C 12.754 16.455 12.7 16.44 12.652 16.413 C 12.604 16.386 12.563 16.347 12.533 16.3 L 10.877 13.649 L 8.47 16.345 C 8.411 16.41 8.33 16.448 8.244 16.451 C 8.158 16.455 8.074 16.424 8.01 16.365 C 7.946 16.306 7.908 16.224 7.903 16.136 C 7.899 16.049 7.928 15.963 7.985 15.897 L 10.512 13.064 L 7.951 8.967 C 7.92 8.917 7.902 8.859 7.9 8.799 C 7.898 8.739 7.912 8.68 7.94 8.628 C 7.968 8.575 8.01 8.531 8.061 8.501 C 8.111 8.471 8.169 8.455 8.227 8.455 L 10.191 8.455 C 10.246 8.455 10.3 8.469 10.349 8.496 C 10.397 8.523 10.438 8.562 10.467 8.609 L 12.124 11.26 L 14.531 8.564 C 14.589 8.5 14.671 8.461 14.757 8.458 C 14.843 8.454 14.927 8.485 14.99 8.544 C 15.054 8.603 15.092 8.685 15.097 8.773 C 15.102 8.861 15.072 8.946 15.015 9.012 L 12.488 11.843 L 15.049 15.943 C 15.081 15.993 15.098 16.051 15.1 16.111 C 15.101 16.17 15.088 16.229 15.059 16.282 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9919263597,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://snapchat.com/t/kTWYrPpx\",nodeId:\"l_NbDNAsX\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-pobugm framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"l_NbDNAsX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 16.895 14.693 C 16.599 14.971 16.159 15.014 15.733 15.056 C 15.47 15.082 15.198 15.109 15.05 15.191 C 14.91 15.268 14.765 15.467 14.625 15.658 C 14.4 15.967 14.144 16.317 13.74 16.42 C 13.649 16.443 13.557 16.454 13.463 16.454 C 13.177 16.454 12.892 16.357 12.634 16.269 C 12.403 16.19 12.184 16.116 12 16.116 C 11.816 16.116 11.598 16.19 11.366 16.269 C 11.025 16.385 10.638 16.519 10.261 16.42 C 9.856 16.317 9.6 15.967 9.375 15.658 C 9.235 15.467 9.09 15.268 8.95 15.191 C 8.802 15.108 8.53 15.082 8.267 15.056 C 7.841 15.015 7.401 14.971 7.105 14.693 C 7.064 14.654 7.033 14.605 7.016 14.551 C 6.998 14.496 6.995 14.438 7.007 14.382 C 7.019 14.327 7.044 14.275 7.082 14.232 C 7.119 14.188 7.167 14.156 7.221 14.136 C 7.224 14.136 7.756 13.934 8.277 13.345 C 8.6 12.976 8.851 12.549 9.017 12.087 L 8.208 11.764 C 8.167 11.747 8.13 11.723 8.099 11.692 C 8.068 11.662 8.043 11.625 8.025 11.585 C 8.008 11.544 7.999 11.501 7.999 11.457 C 7.998 11.413 8.007 11.37 8.023 11.329 C 8.04 11.289 8.064 11.252 8.095 11.22 C 8.125 11.189 8.162 11.164 8.202 11.147 C 8.243 11.13 8.286 11.121 8.33 11.12 C 8.374 11.12 8.417 11.128 8.458 11.145 L 9.202 11.443 C 9.292 11.008 9.336 10.565 9.333 10.121 C 9.333 9.414 9.614 8.736 10.114 8.236 C 10.614 7.736 11.293 7.455 12 7.455 C 12.707 7.455 13.385 7.736 13.886 8.236 C 14.386 8.736 14.667 9.414 14.667 10.121 C 14.664 10.565 14.709 11.008 14.8 11.443 L 15.542 11.145 C 15.582 11.128 15.626 11.12 15.67 11.12 C 15.714 11.121 15.757 11.13 15.797 11.147 C 15.838 11.164 15.874 11.189 15.905 11.22 C 15.936 11.252 15.96 11.289 15.976 11.329 C 15.993 11.37 16.001 11.413 16.001 11.457 C 16 11.501 15.991 11.544 15.974 11.585 C 15.957 11.625 15.932 11.662 15.901 11.692 C 15.87 11.723 15.832 11.747 15.792 11.764 L 14.988 12.085 C 15.574 13.683 16.764 14.131 16.779 14.136 C 16.833 14.156 16.881 14.188 16.918 14.232 C 16.956 14.275 16.982 14.327 16.993 14.382 C 17.005 14.438 17.002 14.496 16.985 14.551 C 16.967 14.605 16.936 14.654 16.895 14.693 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9805526116,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@virgin_connect\",nodeId:\"K8QOAnUPS\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1x6pn8p framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"K8QOAnUPS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 17 10.418 L 17 12.269 C 17 12.368 16.963 12.462 16.899 12.531 C 16.834 12.601 16.746 12.64 16.654 12.64 C 15.931 12.642 15.218 12.456 14.577 12.098 L 14.577 13.936 C 14.577 14.869 14.23 15.764 13.614 16.424 C 12.997 17.084 12.161 17.455 11.289 17.455 C 10.416 17.455 9.58 17.084 8.963 16.424 C 8.346 15.764 8 14.869 8 13.936 C 8 12.228 9.164 10.718 10.709 10.423 C 10.758 10.414 10.81 10.416 10.858 10.43 C 10.907 10.444 10.953 10.469 10.992 10.504 C 11.03 10.539 11.062 10.582 11.083 10.631 C 11.104 10.68 11.115 10.734 11.115 10.788 L 11.115 12.764 C 11.115 12.834 11.097 12.903 11.062 12.962 C 11.027 13.022 10.977 13.069 10.918 13.099 C 10.778 13.17 10.658 13.28 10.572 13.417 C 10.485 13.554 10.434 13.714 10.425 13.88 C 10.415 14.045 10.447 14.21 10.518 14.357 C 10.589 14.505 10.695 14.63 10.826 14.718 C 10.957 14.807 11.107 14.856 11.262 14.861 C 11.417 14.866 11.57 14.827 11.706 14.747 C 11.841 14.667 11.954 14.55 12.033 14.407 C 12.112 14.264 12.154 14.102 12.154 13.936 L 12.154 7.825 C 12.154 7.727 12.19 7.633 12.255 7.563 C 12.32 7.494 12.408 7.455 12.5 7.455 L 14.231 7.455 C 14.323 7.455 14.411 7.494 14.476 7.563 C 14.54 7.633 14.577 7.727 14.577 7.825 C 14.578 8.414 14.796 8.979 15.186 9.396 C 15.575 9.812 16.103 10.047 16.654 10.047 C 16.746 10.047 16.834 10.086 16.899 10.156 C 16.963 10.225 17 10.319 17 10.418 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10382745440,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@Virgin_Connect\",nodeId:\"WE4K_gpaD\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-nnopu6 framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WE4K_gpaD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z M 17.111 10.031 C 16.988 9.559 16.627 9.188 16.168 9.062 C 15.336 8.833 12 8.833 12 8.833 C 12 8.833 8.665 8.833 7.833 9.062 C 7.374 9.188 7.013 9.559 6.89 10.031 C 6.667 10.885 6.667 12.667 6.667 12.667 C 6.667 12.667 6.667 14.449 6.89 15.303 C 7.013 15.774 7.374 16.145 7.833 16.271 C 8.665 16.5 12 16.5 12 16.5 C 12 16.5 15.336 16.5 16.168 16.271 C 16.627 16.145 16.988 15.774 17.111 15.303 C 17.334 14.449 17.334 12.667 17.334 12.667 C 17.334 12.667 17.334 10.885 17.111 10.031 Z M 11 11.167 L 11 14.5 L 13.667 12.833 Z\" fill=\"rgb(57, 29, 68)\"></path></svg>',svgContentId:12193657264,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/virginconnect/\",nodeId:\"u_2DEeSzK\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-8kvtjj framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u_2DEeSzK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 2 12.5 C 2 6.977 6.477 2.5 12 2.5 C 17.523 2.5 22 6.977 22 12.5 C 22 18.023 17.523 22.5 12 22.5 C 6.477 22.5 2 18.023 2 12.5 Z\" fill=\"rgb(57, 29, 68)\"></path><path d=\"M 14.308 7.455 L 9.692 7.455 C 8.979 7.455 8.294 7.739 7.789 8.244 C 7.285 8.749 7.001 9.433 7 10.147 L 7 14.762 C 7.001 15.476 7.285 16.16 7.789 16.665 C 8.294 17.17 8.979 17.454 9.692 17.455 L 14.308 17.455 C 15.021 17.454 15.706 17.17 16.211 16.665 C 16.715 16.16 16.999 15.476 17 14.762 L 17 10.147 C 16.999 9.433 16.715 8.749 16.211 8.244 C 15.706 7.739 15.021 7.455 14.308 7.455 Z M 12 14.762 C 11.544 14.762 11.097 14.627 10.718 14.373 C 10.338 14.12 10.043 13.759 9.868 13.338 C 9.693 12.916 9.648 12.452 9.737 12.004 C 9.826 11.557 10.045 11.145 10.368 10.823 C 10.691 10.5 11.102 10.28 11.55 10.191 C 11.997 10.102 12.461 10.148 12.883 10.323 C 13.305 10.497 13.665 10.793 13.919 11.172 C 14.172 11.552 14.308 11.998 14.308 12.455 C 14.307 13.066 14.064 13.653 13.631 14.086 C 13.198 14.518 12.612 14.762 12 14.762 Z M 14.885 10.147 C 14.771 10.147 14.659 10.113 14.564 10.05 C 14.469 9.986 14.395 9.896 14.352 9.791 C 14.308 9.685 14.297 9.569 14.319 9.457 C 14.341 9.346 14.396 9.243 14.477 9.162 C 14.557 9.081 14.66 9.026 14.772 9.004 C 14.884 8.982 15 8.993 15.105 9.037 C 15.211 9.081 15.301 9.155 15.364 9.249 C 15.428 9.344 15.462 9.456 15.462 9.57 C 15.462 9.723 15.401 9.87 15.293 9.978 C 15.184 10.086 15.038 10.147 14.885 10.147 Z M 13.539 12.455 C 13.539 12.759 13.448 13.056 13.279 13.309 C 13.11 13.562 12.87 13.759 12.589 13.876 C 12.308 13.992 11.998 14.023 11.7 13.963 C 11.401 13.904 11.127 13.758 10.912 13.542 C 10.697 13.327 10.551 13.053 10.491 12.755 C 10.432 12.456 10.462 12.147 10.579 11.866 C 10.695 11.585 10.892 11.344 11.145 11.175 C 11.398 11.006 11.696 10.916 12 10.916 C 12.408 10.916 12.799 11.078 13.088 11.367 C 13.376 11.655 13.539 12.047 13.539 12.455 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:8932969767,withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/VirginConnect/\",nodeId:\"AOYAKprBd\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ldyikr framer-15zfyzb\",\"data-framer-name\":\"Icons / 24x24 / Instagram Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AOYAKprBd\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 25\"><path d=\"M 12 2.5 C 6.477 2.5 2 6.977 2 12.5 C 2 18.023 6.477 22.5 12 22.5 C 17.523 22.5 22 18.023 22 12.5 C 22 6.977 17.523 2.5 12 2.5 Z M 13.043 12.939 L 13.043 18.38 L 10.792 18.38 L 10.792 12.94 L 9.667 12.94 L 9.667 11.065 L 10.792 11.065 L 10.792 9.939 C 10.792 8.41 11.427 7.5 13.231 7.5 L 14.733 7.5 L 14.733 9.375 L 13.794 9.375 C 13.092 9.375 13.045 9.637 13.045 10.126 L 13.043 11.064 L 14.743 11.064 L 14.544 12.939 Z\" fill=\"rgb(57, 29, 68)\"></path></svg>',svgContentId:12578745884,withExternalLayout:true})})]})]})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ArtRS.framer-15zfyzb, .framer-ArtRS .framer-15zfyzb { display: block; }\",\".framer-ArtRS.framer-6f4qar { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 190px; justify-content: flex-start; overflow: visible; padding: 34px 150px 34px 150px; position: relative; width: 1920px; }\",\".framer-ArtRS .framer-bn69ix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 34px; width: 1440px; z-index: 1; }\",\".framer-ArtRS .framer-gbyjvq { flex: none; height: 100px; overflow: visible; position: relative; width: 1440px; }\",\".framer-ArtRS .framer-1qj3co5, .framer-ArtRS .framer-nx7t5s { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 28px; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-ArtRS .framer-1ubffd, .framer-ArtRS .framer-1egw7iu { 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: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ArtRS .framer-whon5w, .framer-ArtRS .framer-1twru1k, .framer-ArtRS .framer-1ee4uuy, .framer-ArtRS .framer-1ptul93, .framer-ArtRS .framer-88mqj5, .framer-ArtRS .framer-9ljri7, .framer-ArtRS .framer-1du6h1a, .framer-ArtRS .framer-1hfqz48, .framer-ArtRS .framer-19j13md, .framer-ArtRS .framer-1v7vuq, .framer-ArtRS .framer-c7b2oi, .framer-ArtRS .framer-1lxnud5, .framer-ArtRS .framer-1mwcfhv, .framer-ArtRS .framer-h5eqd0, .framer-ArtRS .framer-ivsqzz, .framer-ArtRS .framer-1vw5e4t, .framer-ArtRS .framer-qcwo0s, .framer-ArtRS .framer-go78xg, .framer-ArtRS .framer-11ncbo0, .framer-ArtRS .framer-nyco51, .framer-ArtRS .framer-1dvl0dt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ArtRS .framer-6u4ky5 { 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; overflow: visible; padding: 0px; position: relative; width: 385px; }\",\".framer-ArtRS .framer-i78xa5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 385px; }\",\".framer-ArtRS .framer-g04s3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 60px; width: 100%; }\",\".framer-ArtRS .framer-1fws1fp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ArtRS .framer-gue02x { 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: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ArtRS .framer-11b61dh { align-content: flex-end; align-items: flex-end; bottom: 23px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; left: 50%; overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-ArtRS .framer-187jxsp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ArtRS .framer-kw0i51 { 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: flex-end; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ArtRS .framer-1m7idml { flex: none; height: 3px; left: 0px; position: absolute; top: 39px; width: 355px; }\",\".framer-ArtRS .framer-1wtja6q { flex: none; height: 4px; left: 0px; position: absolute; top: calc(49.494949494949516% - 4px / 2); width: 1142px; }\",\".framer-ArtRS .framer-18v9bfy { flex: none; height: 27px; overflow: visible; position: absolute; right: 0px; top: 0px; width: 383px; }\",\".framer-ArtRS .framer-1n744ft { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-ArtRS .framer-15u0hcu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; width: 343px; }\",\".framer-ArtRS .framer-bxgc1m { flex: none; height: 25px; overflow: visible; position: relative; width: 43%; }\",\".framer-ArtRS .framer-19g9qxf, .framer-ArtRS .framer-1uxh44g { flex: none; height: 25px; left: 125px; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 25px / 2); width: 23px; }\",\".framer-ArtRS .framer-fuw8gt, .framer-ArtRS .framer-pobugm { flex: none; height: 25px; left: 100px; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 25px / 2); width: 24px; }\",\".framer-ArtRS .framer-bosy6j, .framer-ArtRS .framer-1x6pn8p { flex: none; height: 25px; left: 75px; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 25px / 2); width: 24px; }\",\".framer-ArtRS .framer-1kozezg, .framer-ArtRS .framer-nnopu6 { flex: none; height: 25px; left: 50px; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 25px / 2); width: 24px; }\",\".framer-ArtRS .framer-d7v9sc, .framer-ArtRS .framer-8kvtjj { flex: none; height: 25px; left: 25px; position: absolute; text-decoration: none; top: 0px; width: 24px; }\",\".framer-ArtRS .framer-lm8nyt, .framer-ArtRS .framer-1ldyikr { flex: none; height: 25px; left: 0px; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 25px / 2); width: 24px; }\",\".framer-ArtRS .framer-liln1s, .framer-ArtRS .framer-1em9a1h { flex: none; height: 27px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 383px; }\",\".framer-ArtRS .framer-1a8e4dt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 691px; }\",\".framer-ArtRS .framer-15sgnil { flex: none; height: 25px; overflow: visible; position: relative; width: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ArtRS.framer-6f4qar, .framer-ArtRS .framer-bn69ix, .framer-ArtRS .framer-1ubffd, .framer-ArtRS .framer-6u4ky5, .framer-ArtRS .framer-i78xa5, .framer-ArtRS .framer-1egw7iu, .framer-ArtRS .framer-g04s3z, .framer-ArtRS .framer-1fws1fp, .framer-ArtRS .framer-gue02x, .framer-ArtRS .framer-11b61dh, .framer-ArtRS .framer-187jxsp, .framer-ArtRS .framer-kw0i51, .framer-ArtRS .framer-15u0hcu, .framer-ArtRS .framer-1a8e4dt { gap: 0px; } .framer-ArtRS.framer-6f4qar > *, .framer-ArtRS .framer-g04s3z > *, .framer-ArtRS .framer-11b61dh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ArtRS.framer-6f4qar > :first-child, .framer-ArtRS .framer-g04s3z > :first-child, .framer-ArtRS .framer-11b61dh > :first-child { margin-top: 0px; } .framer-ArtRS.framer-6f4qar > :last-child, .framer-ArtRS .framer-g04s3z > :last-child, .framer-ArtRS .framer-11b61dh > :last-child { margin-bottom: 0px; } .framer-ArtRS .framer-bn69ix > *, .framer-ArtRS .framer-6u4ky5 > *, .framer-ArtRS .framer-i78xa5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ArtRS .framer-bn69ix > :first-child, .framer-ArtRS .framer-1ubffd > :first-child, .framer-ArtRS .framer-6u4ky5 > :first-child, .framer-ArtRS .framer-i78xa5 > :first-child, .framer-ArtRS .framer-1egw7iu > :first-child, .framer-ArtRS .framer-1fws1fp > :first-child, .framer-ArtRS .framer-gue02x > :first-child, .framer-ArtRS .framer-187jxsp > :first-child, .framer-ArtRS .framer-kw0i51 > :first-child, .framer-ArtRS .framer-15u0hcu > :first-child, .framer-ArtRS .framer-1a8e4dt > :first-child { margin-left: 0px; } .framer-ArtRS .framer-bn69ix > :last-child, .framer-ArtRS .framer-1ubffd > :last-child, .framer-ArtRS .framer-6u4ky5 > :last-child, .framer-ArtRS .framer-i78xa5 > :last-child, .framer-ArtRS .framer-1egw7iu > :last-child, .framer-ArtRS .framer-1fws1fp > :last-child, .framer-ArtRS .framer-gue02x > :last-child, .framer-ArtRS .framer-187jxsp > :last-child, .framer-ArtRS .framer-kw0i51 > :last-child, .framer-ArtRS .framer-15u0hcu > :last-child, .framer-ArtRS .framer-1a8e4dt > :last-child { margin-right: 0px; } .framer-ArtRS .framer-1ubffd > *, .framer-ArtRS .framer-1egw7iu > *, .framer-ArtRS .framer-gue02x > *, .framer-ArtRS .framer-kw0i51 > *, .framer-ArtRS .framer-15u0hcu > *, .framer-ArtRS .framer-1a8e4dt > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ArtRS .framer-1fws1fp > *, .framer-ArtRS .framer-187jxsp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-ArtRS.framer-v-132b4b8 .framer-bn69ix, .framer-ArtRS.framer-v-132b4b8 .framer-gbyjvq { width: 1200px; }\",\".framer-ArtRS.framer-v-8wgfay .framer-bn69ix, .framer-ArtRS.framer-v-8wgfay .framer-gbyjvq { width: 1000px; }\",\".framer-ArtRS.framer-v-q3aydf .framer-bn69ix, .framer-ArtRS.framer-v-q3aydf .framer-gbyjvq { width: 900px; }\",\".framer-ArtRS.framer-v-fc43y8 .framer-bn69ix, .framer-ArtRS.framer-v-fc43y8 .framer-gbyjvq { width: 700px; }\",\".framer-ArtRS.framer-v-35d8zr.framer-6f4qar { width: 767px; }\",\".framer-ArtRS.framer-v-35d8zr .framer-bn69ix { order: 0; padding: 0px 10px 0px 10px; top: 25px; width: 100%; }\",\".framer-ArtRS.framer-v-35d8zr .framer-gbyjvq { height: 152px; width: 100%; }\",\".framer-ArtRS.framer-v-35d8zr .framer-18v9bfy { left: 0px; width: unset; }\",\".framer-ArtRS.framer-v-35d8zr .framer-liln1s { width: 321px; }\",\".framer-ArtRS.framer-v-35d8zr .framer-1em9a1h { bottom: 0px; height: unset; width: 341px; }\",\".framer-ArtRS.framer-v-35d8zr .framer-1a8e4dt { width: 337px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ArtRS[data-border=\"true\"]::after, .framer-ArtRS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 190\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"v0DLRCPxt\":{\"layout\":[\"fixed\",\"fixed\"]},\"RnS1KXdvW\":{\"layout\":[\"fixed\",\"fixed\"]},\"akbyLQUoz\":{\"layout\":[\"fixed\",\"fixed\"]},\"x5ADnsMzj\":{\"layout\":[\"fixed\",\"fixed\"]},\"MoXaz3oZT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlPPdNeT3o=withCSS(Component,css,\"framer-ArtRS\");export default FramerlPPdNeT3o;FramerlPPdNeT3o.displayName=\"Footer\";FramerlPPdNeT3o.defaultProps={height:190,width:1920};addPropertyControls(FramerlPPdNeT3o,{variant:{options:[\"OFPLES1L3\",\"v0DLRCPxt\",\"RnS1KXdvW\",\"akbyLQUoz\",\"x5ADnsMzj\",\"MoXaz3oZT\"],optionTitles:[\"1920\",\"1440\",\"1200\",\"1000\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlPPdNeT3o,[{explicitInter:true,fonts:[{family:\"Tajawal\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/tajawal/v10/Iura6YBj_oCad4k1rzOLCr5IlLA.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Tajawal\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/tajawal/v10/Iurf6YBj_oCad4k1l4qkLrNjiLlJ-G0.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlPPdNeT3o\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"190\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1920\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v0DLRCPxt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RnS1KXdvW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"akbyLQUoz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x5ADnsMzj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MoXaz3oZT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__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", "fontStore", "fonts", "css", "className", "lPPdNeT3o_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "v22", "__FramerMetadata__", "lPPdNeT3o_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "Link", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "v22", "__FramerMetadata__", "valuesByLocaleId", "lPPdNeT3o_1_exports", "lPPdNeT3o_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "equals", "a", "b", "negate", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "isDisplayed", "visible1", "isDisplayed1", "visible2", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "LayoutGroup", "cx", "u", "RichText2", "getLocalizedValue", "Link", "SVG", "css", "FramerlPPdNeT3o", "withCSS", "lPPdNeT3o_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
