{"version":3,"file":"xal5XqNB3Lr_B-0u6W6Y6QN9Mu6qpvtQ9IL7gvdzBZo.BCwr-oZp.mjs","names":["useMemo","useState","useRef","Header","Footer","useRef","metadata","metadataProvider","className","PropertyOverrides"],"sources":["https:/framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js","https:/framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js","https:/framerusercontent.com/modules/3ab5a9fvnauEXpR8sxZt/BALk0mBxOhxfpaZETsN7/YbGI0ac9S.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map","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’t 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’t 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’t 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…\"})});}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 (a10584e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import Header from\"#framer/local/canvasComponent/honY1WTip/honY1WTip.js\";import Footer from\"#framer/local/canvasComponent/OFhK9WLRA/OFhK9WLRA.js\";import*as sharedStyle1 from\"#framer/local/css/p9iEaj31I/p9iEaj31I.js\";import*as sharedStyle from\"#framer/local/css/wEHAx1etU/wEHAx1etU.js\";import metadataProvider from\"#framer/local/webPageMetadata/YbGI0ac9S/YbGI0ac9S.js\";const HeaderFonts=getFonts(Header);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const GoogleMapsFonts=getFonts(GoogleMaps);const FooterFonts=getFonts(Footer);const breakpoints={a9rMhHOHD:\"(min-width: 768px) and (max-width: 1023px)\",H5I2unEpo:\"(min-width: 1440px) and (max-width: 1919px)\",qRYVSzFGD:\"(min-width: 1024px) and (max-width: 1439px)\",rHzV7gAAw:\"(max-width: 767px)\",wg_iflAad:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-cwFpT\";const variantClassNames={a9rMhHOHD:\"framer-v-1t0n0xe\",H5I2unEpo:\"framer-v-clsuni\",qRYVSzFGD:\"framer-v-1blsmnc\",rHzV7gAAw:\"framer-v-762u29\",wg_iflAad:\"framer-v-13xply0\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:40,delay:0,mass:2,stiffness:150,type:\"spring\"};const transition2={damping:40,delay:.2,mass:2,stiffness:150,type:\"spring\"};const transition3={damping:40,delay:.4,mass:2,stiffness:150,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Tablet Vert\":\"a9rMhHOHD\",Desktop:\"wg_iflAad\",Mac:\"H5I2unEpo\",Phone:\"rHzV7gAAw\",Tablet:\"qRYVSzFGD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wg_iflAad\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wg_iflAad\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bf700cf5-a717-4a5b-a6ca-eceb0a6a127a, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-13xply0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRYVSzFGD:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dxxe5x-container\",nodeId:\"nN1BcfAfB\",scopeId:\"YbGI0ac9S\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a9rMhHOHD:{style:{width:\"100%\"},twHDzNIKH:\"0px 0px 0px 0px\",variant:\"DGvV9w4dy\"},qRYVSzFGD:{twHDzNIKH:\"0px 50px 0px 50px\"},rHzV7gAAw:{style:{width:\"100%\"},twHDzNIKH:\"0px 0px 0px 0px\",variant:\"DGvV9w4dy\"}},children:/*#__PURE__*/_jsx(Header,{CMA3YsAzO:\"IUbbzSMRM\",FHUTytScu:\"IUbbzSMRM\",height:\"100%\",hiw_bPbsK:\"FHZa_Gv5V\",id:\"nN1BcfAfB\",KaIS0WVMd:\"IUbbzSMRM\",layoutId:\"nN1BcfAfB\",qytgj0BQe:\"IUbbzSMRM\",style:{height:\"100%\",width:\"100%\"},twHDzNIKH:\"0px 100px 0px 100px\",variant:\"pmjfMPwak\",VDwo64ubJ:\"IUbbzSMRM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fz2mwa\",\"data-framer-name\":\"Blog Section\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13z1m06\",\"data-framer-name\":\"Heading Main\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRYVSzFGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-d0znx5\",\"data-styles-preset\":\"wEHAx1etU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(879deg, rgb(196, 194, 250) 0.01%, rgb(240, 240, 240) 100%)\"},children:\"Feel free to get in touch with us    \"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-d0znx5\",\"data-styles-preset\":\"wEHAx1etU\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(879deg, rgb(196, 194, 250) 0.01%, rgb(240, 240, 240) 100%)\"},children:\"Feel free to get in touch with us\"})})}),className:\"framer-1fcinto\",\"data-framer-name\":\"Meet the team behind the agency success\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iqwva2\",\"data-framer-name\":\"CTA Form\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1442mvf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vcGSCfPmb\",scopeId:\"YbGI0ac9S\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<iframe aria-label='Branch new website form' frameborder=\\\"0\\\" style=\\\"height:800px;width:99%;border:none;\\\" src='https://forms.zohopublic.com/eventagrate/form/Branchnewwebsiteform/formperma/tvcayyl9ToI9vvQP3uJtwx8UhAmnnNUul1f-juBCLPA'></iframe>\",id:\"vcGSCfPmb\",layoutId:\"vcGSCfPmb\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgtkim\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11b0qzo\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mxg0sf\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1cr2i4b\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lff8u4\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"98\" viewBox=\"0 0 97 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 49C0 22.2142 21.7142 0.5 48.5 0.5V0.5C75.2858 0.5 97 22.2142 97 49V49C97 75.7858 75.2858 97.5 48.5 97.5V97.5C21.7142 97.5 0 75.7858 0 49V49Z\" fill=\"black\"/>\\n<g clip-path=\"url(#clip0_2018_5661)\">\\n<path d=\"M59.793 39.4297C57.9746 39.4297 56.2679 39.7806 54.6729 40.4824C53.0459 41.1523 51.6343 42.0854 50.438 43.2817C49.2417 44.478 48.3086 45.8896 47.6387 47.5166C46.9368 49.1117 46.5859 50.8184 46.5859 52.6367C46.5859 53.5299 46.6737 54.4152 46.8491 55.2925C47.0246 56.1698 47.2878 57.0072 47.6387 57.8047H37.7812V52.8281C37.7812 52.5729 37.6935 52.3496 37.5181 52.1582C37.3426 51.9668 37.1113 51.8711 36.8242 51.8711C36.569 51.8711 36.3457 51.9668 36.1543 52.1582C35.9629 52.3496 35.8672 52.5729 35.8672 52.8281V58.7617C35.8672 59.0169 35.9629 59.2402 36.1543 59.4316C36.3457 59.623 36.569 59.7188 36.8242 59.7188H48.6436C48.7712 59.9421 48.9147 60.1574 49.0742 60.3647C49.2337 60.5721 49.3932 60.7715 49.5527 60.9629C49.5527 60.9629 49.5527 60.9709 49.5527 60.9868C49.5527 61.0028 49.5687 61.0107 49.6006 61.0107L57.8311 71.5859H53.333C53.0778 71.5859 52.8545 71.6816 52.6631 71.873C52.4717 72.0645 52.376 72.2878 52.376 72.543C52.376 72.7982 52.4717 73.0215 52.6631 73.2129C52.8545 73.4043 53.0778 73.5 53.333 73.5H66.2529C66.54 73.5 66.7713 73.4043 66.9468 73.2129C67.1222 73.0215 67.21 72.7982 67.21 72.543C67.21 72.2878 67.1222 72.0645 66.9468 71.873C66.7713 71.6816 66.54 71.5859 66.2529 71.5859H61.7549L70.0332 60.9629C70.0332 60.9629 70.0492 60.9629 70.0811 60.9629C71.0062 59.7826 71.724 58.4746 72.2344 57.0391C72.7448 55.6035 73 54.1361 73 52.6367C73 50.8184 72.6491 49.1117 71.9473 47.5166C71.2773 45.8896 70.3442 44.478 69.1479 43.2817C67.9517 42.0854 66.54 41.1523 64.9131 40.4824C63.318 39.7806 61.6113 39.4297 59.793 39.4297ZM68.5498 59.7666C68.5498 59.7666 68.5418 59.7746 68.5259 59.7905C68.5099 59.8065 68.502 59.8145 68.502 59.8145L59.793 70.9639L51.1797 59.9102C51.1478 59.9102 51.1239 59.9022 51.1079 59.8862C51.092 59.8703 51.084 59.8464 51.084 59.8145C50.2546 58.8255 49.6165 57.709 49.1699 56.4648C48.7233 55.2207 48.5 53.9447 48.5 52.6367C48.5 51.0736 48.8031 49.6061 49.4092 48.2344C49.9834 46.8626 50.7809 45.6663 51.8018 44.6455C52.8226 43.6247 54.0189 42.8112 55.3906 42.2051C56.7624 41.6309 58.2298 41.3438 59.793 41.3438C61.3561 41.3438 62.8236 41.6309 64.1953 42.2051C65.5671 42.8112 66.7633 43.6247 67.7842 44.6455C68.805 45.6663 69.6025 46.8626 70.1768 48.2344C70.7829 49.6061 71.0859 51.0736 71.0859 52.6367C71.0859 53.9447 70.8706 55.2048 70.4399 56.417C70.0093 57.6292 69.3792 58.7458 68.5498 59.7666ZM67.2578 50.4355C67.194 50.1803 67.0425 49.9889 66.8032 49.8613C66.564 49.7337 66.3167 49.7178 66.0615 49.8135C65.8063 49.8773 65.6149 50.0288 65.4873 50.2681C65.3597 50.5073 65.3438 50.7546 65.4395 51.0098C65.7904 52.0625 65.8302 53.1312 65.5591 54.2158C65.2879 55.3005 64.7695 56.2415 64.0039 57.0391C62.8236 58.1875 61.4199 58.7617 59.793 58.7617C58.166 58.7617 56.7624 58.1875 55.582 57.0391C55.0397 56.4648 54.617 55.8188 54.314 55.1011C54.0109 54.3833 53.8594 53.6257 53.8594 52.8281C53.8594 52.0306 54.0109 51.2729 54.314 50.5552C54.617 49.8374 55.0397 49.1914 55.582 48.6172C56.3477 47.8835 57.2489 47.381 58.2856 47.1099C59.3224 46.8387 60.3512 46.8467 61.3721 47.1338C61.6273 47.1976 61.8745 47.1657 62.1138 47.0381C62.353 46.9105 62.5046 46.7191 62.5684 46.4639C62.6322 46.2087 62.6003 45.9614 62.4727 45.7222C62.3451 45.4829 62.1536 45.3314 61.8984 45.2676C60.5267 44.8848 59.1549 44.8768 57.7832 45.2437C56.4115 45.6105 55.2311 46.2884 54.2422 47.2773C53.5085 48.0111 52.9422 48.8564 52.5435 49.8135C52.1447 50.7705 51.9453 51.7754 51.9453 52.8281C51.9453 53.8809 52.1447 54.8857 52.5435 55.8428C52.9422 56.7998 53.5085 57.6452 54.2422 58.3789C55.0078 59.1445 55.8691 59.7188 56.8262 60.1016C57.7832 60.4844 58.7721 60.6758 59.793 60.6758C60.7819 60.6758 61.7629 60.4844 62.7358 60.1016C63.7088 59.7188 64.5781 59.1445 65.3438 58.3789C66.3965 57.3262 67.0903 56.09 67.4253 54.6704C67.7603 53.2508 67.7044 51.8392 67.2578 50.4355ZM65.3438 47.2773C65.1523 47.0859 64.929 46.9902 64.6738 46.9902C64.4186 46.9902 64.1953 47.0859 64.0039 47.2773C63.8125 47.4688 63.7168 47.6921 63.7168 47.9473C63.7168 48.2025 63.8125 48.4258 64.0039 48.6172C64.0996 48.7129 64.2033 48.7847 64.3149 48.8325C64.4266 48.8804 64.5462 48.9043 64.6738 48.9043C64.8014 48.9043 64.9211 48.8804 65.0327 48.8325C65.1444 48.7847 65.248 48.7129 65.3438 48.6172C65.5352 48.4577 65.6309 48.2424 65.6309 47.9712C65.6309 47.7 65.5352 47.4688 65.3438 47.2773ZM46.4424 64.6953H24.957C24.7018 64.6953 24.4785 64.791 24.2871 64.9824C24.0957 65.1738 24 65.3971 24 65.6523C24 65.9076 24.0957 66.1309 24.2871 66.3223C24.4785 66.5137 24.7018 66.6094 24.957 66.6094H45.4854V72.543C45.4854 72.7982 45.5731 73.0215 45.7485 73.2129C45.924 73.4043 46.1553 73.5 46.4424 73.5C46.6976 73.5 46.9209 73.4043 47.1123 73.2129C47.3037 73.0215 47.3994 72.7982 47.3994 72.543V65.6523C47.3994 65.3971 47.3037 65.1738 47.1123 64.9824C46.9209 64.791 46.6976 64.6953 46.4424 64.6953ZM41.4658 24.5C41.2106 24.5 40.9873 24.5957 40.7959 24.7871C40.6045 24.9785 40.5088 25.2018 40.5088 25.457V32.3477H24.957C24.7018 32.3477 24.4785 32.4434 24.2871 32.6348C24.0957 32.8262 24 33.0495 24 33.3047C24 33.5599 24.0957 33.7832 24.2871 33.9746C24.4785 34.166 24.7018 34.2617 24.957 34.2617H41.4658C41.721 34.2617 41.9443 34.166 42.1357 33.9746C42.3271 33.7832 42.4229 33.5599 42.4229 33.3047V25.457C42.4229 25.2018 42.3271 24.9785 42.1357 24.7871C41.9443 24.5957 41.721 24.5 41.4658 24.5ZM32.2305 39.2383H24.957C24.7018 39.2383 24.4785 39.334 24.2871 39.5254C24.0957 39.7168 24 39.9401 24 40.1953C24 40.4505 24.0957 40.6738 24.2871 40.8652C24.4785 41.0566 24.7018 41.1523 24.957 41.1523H31.2734V57.8047H24.957C24.7018 57.8047 24.4785 57.9004 24.2871 58.0918C24.0957 58.2832 24 58.5065 24 58.7617C24 59.0169 24.0957 59.2402 24.2871 59.4316C24.4785 59.623 24.7018 59.7188 24.957 59.7188H32.2305C32.4857 59.7188 32.709 59.623 32.9004 59.4316C33.0918 59.2402 33.1875 59.0169 33.1875 58.7617V40.1953C33.1875 39.9401 33.0918 39.7168 32.9004 39.5254C32.709 39.334 32.4857 39.2383 32.2305 39.2383ZM37.4941 48.8086C37.4303 48.7129 37.3346 48.6411 37.207 48.5933C37.0794 48.5454 36.9518 48.5215 36.8242 48.5215C36.6966 48.5215 36.577 48.5454 36.4653 48.5933C36.3537 48.6411 36.25 48.7129 36.1543 48.8086C36.0586 48.9043 35.9868 49.008 35.939 49.1196C35.8911 49.2313 35.8672 49.3509 35.8672 49.4785C35.8672 49.6061 35.8911 49.7257 35.939 49.8374C35.9868 49.9491 36.0586 50.0527 36.1543 50.1484C36.25 50.2441 36.3537 50.3159 36.4653 50.3638C36.577 50.4116 36.6966 50.4355 36.8242 50.4355C36.9518 50.4355 37.0794 50.4116 37.207 50.3638C37.3346 50.3159 37.4303 50.2441 37.4941 50.1484C37.5898 50.0527 37.6616 49.9491 37.7095 49.8374C37.7573 49.7257 37.7812 49.6061 37.7812 49.4785C37.7812 49.3509 37.7573 49.2313 37.7095 49.1196C37.6616 49.008 37.5898 48.9043 37.4941 48.8086ZM48.5 39.2383H36.8242C36.569 39.2383 36.3457 39.334 36.1543 39.5254C35.9629 39.7168 35.8672 39.9401 35.8672 40.1953V45.5068C35.8672 45.762 35.9629 45.9854 36.1543 46.1768C36.3457 46.3682 36.569 46.4639 36.8242 46.4639C37.1113 46.4639 37.3426 46.3682 37.5181 46.1768C37.6935 45.9854 37.7812 45.762 37.7812 45.5068V41.1523H48.5C48.7552 41.1523 48.9785 41.0566 49.1699 40.8652C49.3613 40.6738 49.457 40.4505 49.457 40.1953C49.457 39.9401 49.3613 39.7168 49.1699 39.5254C48.9785 39.334 48.7552 39.2383 48.5 39.2383ZM62.2812 24.5C62.026 24.5 61.8027 24.5957 61.6113 24.7871C61.4199 24.9785 61.3242 25.2018 61.3242 25.457V32.3477H47.0645V25.457C47.0645 25.2018 46.9688 24.9785 46.7773 24.7871C46.5859 24.5957 46.3626 24.5 46.1074 24.5C45.8203 24.5 45.589 24.5957 45.4136 24.7871C45.2381 24.9785 45.1504 25.2018 45.1504 25.457V33.3047C45.1504 33.4323 45.1743 33.5519 45.2222 33.6636C45.27 33.7752 45.3258 33.8789 45.3896 33.9746C45.4854 34.0703 45.597 34.1421 45.7246 34.1899C45.8522 34.2378 45.9798 34.2617 46.1074 34.2617H62.2812C62.5365 34.2617 62.7598 34.166 62.9512 33.9746C63.1426 33.7832 63.2383 33.5599 63.2383 33.3047V25.457C63.2383 25.2018 63.1426 24.9785 62.9512 24.7871C62.7598 24.5957 62.5365 24.5 62.2812 24.5ZM72.043 32.3477H67.832V25.457C67.832 25.2018 67.7363 24.9785 67.5449 24.7871C67.3535 24.5957 67.1302 24.5 66.875 24.5C66.6198 24.5 66.3965 24.5957 66.2051 24.7871C66.0137 24.9785 65.918 25.2018 65.918 25.457V33.3047C65.918 33.5599 66.0137 33.7832 66.2051 33.9746C66.3965 34.166 66.6198 34.2617 66.875 34.2617H72.043C72.2982 34.2617 72.5215 34.166 72.7129 33.9746C72.9043 33.7832 73 33.5599 73 33.3047C73 33.0495 72.9043 32.8262 72.7129 32.6348C72.5215 32.4434 72.2982 32.3477 72.043 32.3477ZM72.043 39.2383H69.0283C68.7731 39.2383 68.5498 39.334 68.3584 39.5254C68.167 39.7168 68.0713 39.9401 68.0713 40.1953C68.0713 40.4505 68.167 40.6738 68.3584 40.8652C68.5498 41.0566 68.7731 41.1523 69.0283 41.1523H72.043C72.2982 41.1523 72.5215 41.0566 72.7129 40.8652C72.9043 40.6738 73 40.4505 73 40.1953C73 39.9401 72.9043 39.7168 72.7129 39.5254C72.5215 39.334 72.2982 39.2383 72.043 39.2383Z\" fill=\"url(#paint0_linear_2018_5661)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2018_5661\" x1=\"25.9095\" y1=\"27.5774\" x2=\"65.592\" y2=\"76.8987\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#009EFF\"/>\\n<stop offset=\"1\" stop-color=\"#11D15D\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2018_5661\">\\n<rect width=\"49\" height=\"49\" fill=\"white\" transform=\"matrix(1 0 0 -1 24 73.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkxae9\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Address\"})})}),className:\"framer-e396db\",\"data-framer-name\":\"Address\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a9rMhHOHD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Warehouse 8 - 82 6B Street - Al Quoz - Al Quoz Industrial Area 3 \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"- Dubai - United Arab Emirates\"})]})},qRYVSzFGD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Warehouse 8 - 82 6B Street - Al Quoz \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"- Al Quoz Industrial Area 3 - Dubai - United Arab Emirates\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Warehouse 8 - 82 6B Street - Al Quoz - Al Quoz Industrial Area 3 - Dubai - United Arab Emirates\"})}),className:\"framer-1090pqf\",\"data-framer-name\":\"30 St Kilda Road, Jackson Store, Australia\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1706wxj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8c37vu\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"98\" viewBox=\"0 0 97 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 49C0 22.2142 21.7142 0.5 48.5 0.5V0.5C75.2858 0.5 97 22.2142 97 49V49C97 75.7858 75.2858 97.5 48.5 97.5V97.5C21.7142 97.5 0 75.7858 0 49V49Z\" fill=\"black\"/>\\n<g clip-path=\"url(#clip0_2018_5658)\">\\n<path d=\"M44.5771 68.0449H40.5576C40.2705 68.0449 40.0392 68.1406 39.8638 68.332C39.6883 68.5234 39.6006 68.7467 39.6006 69.002C39.6006 69.2891 39.6883 69.5203 39.8638 69.6958C40.0392 69.8713 40.2705 69.959 40.5576 69.959H44.5771C44.8643 69.959 45.0955 69.8713 45.271 69.6958C45.4465 69.5203 45.5342 69.2891 45.5342 69.002C45.5342 68.7467 45.4465 68.5234 45.271 68.332C45.0955 68.1406 44.8643 68.0449 44.5771 68.0449ZM51.1328 29.0459C51.1328 28.7907 51.0371 28.5674 50.8457 28.376C50.6543 28.1846 50.431 28.0889 50.1758 28.0889H34.959C34.7038 28.0889 34.4805 28.1846 34.2891 28.376C34.0977 28.5674 34.002 28.7907 34.002 29.0459C34.002 29.3011 34.0977 29.5244 34.2891 29.7158C34.4805 29.9072 34.7038 30.0029 34.959 30.0029H50.1758C50.431 30.0029 50.6543 29.9072 50.8457 29.7158C51.0371 29.5244 51.1328 29.3011 51.1328 29.0459ZM69.7949 39.5732C69.763 38.8076 69.4679 38.1616 68.9097 37.6353C68.3514 37.1089 67.6895 36.8457 66.9238 36.8457H57.9277V29.7637C57.9277 28.3281 57.4093 27.092 56.3726 26.0552C55.3358 25.0184 54.0996 24.5 52.6641 24.5H32.4707C31.0352 24.5 29.799 25.0184 28.7622 26.0552C27.7254 27.092 27.207 28.3281 27.207 29.7637V68.2363C27.207 69.6719 27.7254 70.908 28.7622 71.9448C29.799 72.9816 31.0352 73.5 32.4707 73.5H52.6641C54.0996 73.5 55.3358 72.9816 56.3726 71.9448C57.4093 70.908 57.9277 69.6719 57.9277 68.2363V57.2305H66.9238C67.6895 57.2305 68.3514 56.9673 68.9097 56.4409C69.4679 55.9146 69.763 55.2845 69.7949 54.5508C69.7949 54.5189 69.7949 53.7214 69.7949 52.1582C69.7949 50.5951 69.7949 48.8883 69.7949 47.0381C69.7949 45.1878 69.7949 43.4811 69.7949 41.918C69.7949 40.3548 69.7949 39.5732 69.7949 39.5732ZM52.6641 71.5859H32.4707C31.5456 71.5859 30.756 71.259 30.1021 70.605C29.4481 69.951 29.1211 69.1615 29.1211 68.2363V66.418H56.0137V68.2363C56.0137 69.1615 55.6867 69.951 55.0327 70.605C54.3787 71.259 53.5892 71.5859 52.6641 71.5859ZM56.0137 64.5039H29.1211V29.7637C29.1211 28.8385 29.4481 28.049 30.1021 27.395C30.756 26.741 31.5456 26.4141 32.4707 26.4141H52.6641C53.5892 26.4141 54.3787 26.741 55.0327 27.395C55.6867 28.049 56.0137 28.8385 56.0137 29.7637V36.8457H46.9697C46.2041 36.8457 45.5501 37.1089 45.0078 37.6353C44.4655 38.1616 44.1784 38.7917 44.1465 39.5254C44.1465 39.5573 44.1385 39.5892 44.1226 39.6211C44.1066 39.653 44.0986 39.6689 44.0986 39.6689C44.0986 47.07 44.1066 51.3926 44.1226 52.6367C44.1385 53.8809 44.1465 54.5189 44.1465 54.5508C44.1784 55.2845 44.4655 55.9146 45.0078 56.4409C45.5501 56.9673 46.2041 57.2305 46.9697 57.2305H56.0137V64.5039ZM67.8809 54.4551C67.849 54.6784 67.7453 54.8778 67.5698 55.0532C67.3944 55.2287 67.179 55.3164 66.9238 55.3164H46.9697C46.7145 55.3164 46.4992 55.2287 46.3237 55.0532C46.1483 54.8778 46.0605 54.6784 46.0605 54.4551C46.0286 54.2956 46.0127 53.4502 46.0127 51.9189C46.0127 50.3558 46.0127 48.681 46.0127 46.8945C46.0127 45.1081 46.0127 43.4652 46.0127 41.9658C46.0127 40.4665 46.0127 39.7008 46.0127 39.6689C46.0127 39.6689 46.0127 39.653 46.0127 39.6211C46.0446 39.3978 46.1483 39.1984 46.3237 39.0229C46.4992 38.8475 46.7145 38.7598 46.9697 38.7598H66.9238C67.179 38.7598 67.3944 38.8475 67.5698 39.0229C67.7453 39.1984 67.849 39.3978 67.8809 39.6211C67.8809 39.7806 67.8809 40.61 67.8809 42.1094C67.8809 43.6087 67.8809 45.2516 67.8809 47.0381C67.8809 48.8245 67.8809 50.4674 67.8809 51.9668C67.8809 53.4661 67.8809 54.2956 67.8809 54.4551ZM65.1533 40.5781C64.9619 40.3867 64.7306 40.291 64.4595 40.291C64.1883 40.291 63.957 40.3867 63.7656 40.5781L58.0234 46.0811C57.6725 45.9535 57.3136 45.8896 56.9468 45.8896C56.5799 45.8896 56.237 45.9535 55.918 46.0811L50.1279 40.5781C49.9365 40.3867 49.7052 40.299 49.4341 40.3149C49.1629 40.3309 48.9476 40.4346 48.7881 40.626C48.5967 40.8174 48.501 41.0407 48.501 41.2959C48.501 41.5511 48.5967 41.7744 48.7881 41.9658L54.291 47.1816L48.8838 52.0625C48.6924 52.222 48.5887 52.4373 48.5728 52.7085C48.5568 52.9797 48.6445 53.2109 48.8359 53.4023C48.9954 53.5938 49.2108 53.6974 49.4819 53.7134C49.7531 53.7293 49.9844 53.6416 50.1758 53.4502L56.1572 48.0908C56.3805 47.8994 56.6437 47.8037 56.9468 47.8037C57.2498 47.8037 57.529 47.8994 57.7842 48.0908L63.7656 53.4502C63.8613 53.5459 63.965 53.6177 64.0767 53.6655C64.1883 53.7134 64.292 53.7373 64.3877 53.7373C64.5472 53.7373 64.6828 53.7054 64.7944 53.6416C64.9061 53.5778 65.0098 53.498 65.1055 53.4023C65.2969 53.2109 65.3846 52.9797 65.3687 52.7085C65.3527 52.4373 65.249 52.222 65.0576 52.0625L59.6025 47.1816L65.1055 41.9658C65.2969 41.7744 65.3926 41.5431 65.3926 41.272C65.3926 41.0008 65.3128 40.7695 65.1533 40.5781Z\" fill=\"url(#paint0_linear_2018_5658)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_2018_5658\" x1=\"28.8667\" y1=\"27.5774\" x2=\"69.3702\" y2=\"71.3315\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#009EFF\"/>\\n<stop offset=\"1\" stop-color=\"#11D15D\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_2018_5658\">\\n<rect width=\"49\" height=\"49\" fill=\"white\" transform=\"matrix(1 0 0 -1 24 73.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdwis2\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Contact\"})})}),className:\"framer-1yu3x2p\",\"data-framer-name\":\"Contact\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRYVSzFGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@branchdev.io\",motionChild:true,nodeId:\"b8Qsq3QjK\",openInNewTab:false,scopeId:\"YbGI0ac9S\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mc8byp\",\"data-styles-preset\":\"p9iEaj31I\",children:\"hello@branchdev.io\"})})})})},rHzV7gAAw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@branchdev.io\",motionChild:true,nodeId:\"b8Qsq3QjK\",openInNewTab:false,scopeId:\"YbGI0ac9S\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mc8byp\",\"data-styles-preset\":\"p9iEaj31I\",children:\"hello@branchdev.io\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\",\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@branchdev.io\",motionChild:true,nodeId:\"b8Qsq3QjK\",openInNewTab:false,scopeId:\"YbGI0ac9S\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-mc8byp\",\"data-styles-preset\":\"p9iEaj31I\",children:\"hello@branchdev.io\"})})})}),className:\"framer-10jfcd1\",\"data-framer-name\":\"needhelp@company.com\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRYVSzFGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"+971 43475642\"})})},rHzV7gAAw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"+971 43475642\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-text-color\":\"rgba(153, 153, 153, 1)\"},children:\"+971 43475642\"})})}),className:\"framer-1ih0bzr\",\"data-framer-name\":\"+92 (8800) 48720\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r6l7lq\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6nrjx2\",\"data-framer-name\":\"icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:98,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"98\" viewBox=\"0 0 97 98\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 49C0 22.2142 21.7142 0.5 48.5 0.5V0.5C75.2858 0.5 97 22.2142 97 49V49C97 75.7858 75.2858 97.5 48.5 97.5V97.5C21.7142 97.5 0 75.7858 0 49V49Z\" fill=\"black\"/>\\n<path d=\"M44.4297 69.4326H31.1748C30.6644 69.4326 30.154 69.3289 29.6436 69.1216C29.1331 68.9142 28.6865 68.6032 28.3037 68.1885C27.9528 67.7738 27.6497 67.3271 27.3945 66.8486C27.1393 66.3701 27.0117 65.8597 27.0117 65.3174V33.6396C27.0117 33.1292 27.1154 32.6188 27.3228 32.1084C27.5301 31.598 27.8411 31.1514 28.2559 30.7686C28.6068 30.4176 29.0374 30.1305 29.5479 29.9072C30.0583 29.6839 30.5687 29.5723 31.0791 29.5723H63.7617C64.304 29.5723 64.8224 29.6759 65.3169 29.8833C65.8114 30.0907 66.25 30.3857 66.6328 30.7686C66.9837 31.1833 67.2708 31.6379 67.4941 32.1323C67.7174 32.6268 67.8291 33.1292 67.8291 33.6396V43.832H65.8193V33.6396C65.8193 33.3525 65.7635 33.0894 65.6519 32.8501C65.5402 32.6108 65.4046 32.3796 65.2451 32.1562C65.0218 31.9648 64.7905 31.8213 64.5513 31.7256C64.312 31.6299 64.0488 31.582 63.7617 31.582H31.0791C30.8558 31.6458 30.6245 31.7256 30.3853 31.8213C30.146 31.917 29.9147 32.0605 29.6914 32.252C29.5 32.4753 29.3644 32.7065 29.2847 32.9458C29.2049 33.1851 29.165 33.4482 29.165 33.7354V65.3174C29.165 65.6045 29.2129 65.8757 29.3086 66.1309C29.4043 66.3861 29.5319 66.6094 29.6914 66.8008C29.9147 66.9922 30.146 67.1357 30.3853 67.2314C30.6245 67.3271 30.8877 67.375 31.1748 67.375H44.4297V69.4326ZM57.6367 26.5576H59.6943V34.6924H57.6367V26.5576ZM35.1943 26.5576H37.2041V34.6924H35.1943V26.5576ZM28.0645 39.7646H66.8721V41.8223H28.0645V39.7646ZM58.6895 72.543C56.8711 72.543 55.1484 72.1921 53.5215 71.4902C51.8945 70.7884 50.4829 69.8314 49.2866 68.6191C48.0903 67.4069 47.1413 66.0033 46.4395 64.4082C45.7376 62.7812 45.3867 61.0426 45.3867 59.1924C45.3867 57.374 45.7376 55.6514 46.4395 54.0244C47.1413 52.3975 48.0903 50.9858 49.2866 49.7896C50.4829 48.5933 51.8945 47.6442 53.5215 46.9424C55.1484 46.2406 56.8711 45.8896 58.6895 45.8896C60.5397 45.8896 62.2783 46.2406 63.9053 46.9424C65.5003 47.6442 66.904 48.5933 68.1162 49.7896C69.3285 50.9858 70.2855 52.3975 70.9873 54.0244C71.6891 55.6514 72.04 57.374 72.04 59.1924C72.04 61.0426 71.6891 62.7812 70.9873 64.4082C70.2855 66.0033 69.3285 67.4069 68.1162 68.6191C66.904 69.8314 65.5003 70.7884 63.9053 71.4902C62.2783 72.1921 60.5397 72.543 58.6895 72.543ZM58.6895 48.043C57.1582 48.043 55.7067 48.3301 54.335 48.9043C52.9632 49.5104 51.7749 50.3159 50.77 51.3208C49.7651 52.3257 48.9756 53.514 48.4014 54.8857C47.8271 56.2256 47.54 57.6611 47.54 59.1924C47.54 60.7236 47.8271 62.1751 48.4014 63.5469C49.0075 64.8867 49.813 66.0671 50.8179 67.0879C51.8228 68.1087 53.0111 68.9222 54.3828 69.5283C55.7227 70.1025 57.1582 70.3896 58.6895 70.3896C60.2207 70.3896 61.6722 70.1025 63.0439 69.5283C64.3838 68.9222 65.5641 68.1087 66.585 67.0879C67.6058 66.0671 68.4193 64.8867 69.0254 63.5469C69.5996 62.1751 69.8867 60.7236 69.8867 59.1924C69.8867 57.6611 69.5996 56.2256 69.0254 54.8857C68.4512 53.514 67.6536 52.3257 66.6328 51.3208C65.612 50.3159 64.4316 49.5104 63.0918 48.9043C61.7201 48.3301 60.2526 48.043 58.6895 48.043ZM63.666 65.6523L57.6367 59.623V49.957H59.79V58.8096L65.1494 64.1689L63.666 65.6523ZM42.3721 55.125H32.1797V44.9326H42.3721V55.125ZM34.1895 53.0674H40.3145V46.9424H34.1895V53.0674Z\" fill=\"url(#paint0_linear_2019_5667)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2019_5667\" x1=\"28.7665\" y1=\"29.4457\" x2=\"66.1677\" y2=\"74.9641\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#009EFF\"/>\\n<stop offset=\"1\" stop-color=\"#11D15D\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8f8ta9\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy04MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Timing\"})})}),className:\"framer-1vm4fyr\",\"data-framer-name\":\"Timing\",fonts:[\"GF;Poppins-800\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qRYVSzFGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mon - Fri: 8:00 am to 6:00 pm\"})})},rHzV7gAAw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mon - Fri: 8:00 am to 6:00 pm\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.72px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mon - Fri: 8:00 am to 6:00 pm\"})}),className:\"framer-193mv37\",\"data-framer-name\":\"Mon - Sat: 8:00 am to 6:00 pm Sunday: CLOSED\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dakojb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VnIv2Sh_4\",scopeId:\"YbGI0ac9S\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,coordinates:\"25.12142413398048, 55.208438188056924\",height:\"100%\",id:\"VnIv2Sh_4\",isMixedBorderRadius:false,layoutId:\"VnIv2Sh_4\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,width:\"100%\",zoom:15})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a9rMhHOHD:{y:(componentViewport?.y||0)+0+1638},qRYVSzFGD:{y:undefined},rHzV7gAAw:{y:(componentViewport?.y||0)+0+2326}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:584,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1876,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kjnn2q-container\",nodeId:\"n2o0i1iIB\",scopeId:\"YbGI0ac9S\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a9rMhHOHD:{variant:\"LrGH0k02v\"},H5I2unEpo:{variant:\"ikGy52Ipb\"},qRYVSzFGD:{variant:\"EOyXNuGDq\"},rHzV7gAAw:{variant:\"uvifARvYG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"n2o0i1iIB\",layoutId:\"n2o0i1iIB\",style:{width:\"100%\"},variant:\"uIFDLDSGM\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cwFpT.framer-12lqfui, .framer-cwFpT .framer-12lqfui { display: block; }\",\".framer-cwFpT.framer-13xply0 { align-content: center; align-items: center; background-color: var(--token-bf700cf5-a717-4a5b-a6ca-eceb0a6a127a, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-cwFpT .framer-1dxxe5x-container { flex: none; height: 88px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1fz2mwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-13z1m06 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1fcinto { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 590px; word-break: break-word; word-wrap: break-word; }\",\".framer-cwFpT .framer-1iqwva2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1442mvf-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-cwFpT .framer-rgtkim { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-11b0qzo { align-content: flex-start; align-items: flex-start; background-color: #101010; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1mxg0sf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1cr2i4b, .framer-cwFpT .framer-1706wxj, .framer-cwFpT .framer-r6l7lq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-cwFpT .framer-lff8u4, .framer-cwFpT .framer-8c37vu, .framer-cwFpT .framer-6nrjx2 { flex: none; height: 98px; position: relative; width: 97px; }\",\".framer-cwFpT .framer-wkxae9, .framer-cwFpT .framer-1sdwis2, .framer-cwFpT .framer-8f8ta9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-cwFpT .framer-e396db, .framer-cwFpT .framer-1090pqf, .framer-cwFpT .framer-1yu3x2p, .framer-cwFpT .framer-10jfcd1, .framer-cwFpT .framer-1ih0bzr, .framer-cwFpT .framer-1vm4fyr, .framer-cwFpT .framer-193mv37 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 263px; word-break: break-word; word-wrap: break-word; }\",\".framer-cwFpT .framer-dakojb-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-cwFpT .framer-1kjnn2q-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwFpT.framer-13xply0, .framer-cwFpT .framer-1fz2mwa, .framer-cwFpT .framer-13z1m06, .framer-cwFpT .framer-1iqwva2, .framer-cwFpT .framer-rgtkim, .framer-cwFpT .framer-11b0qzo, .framer-cwFpT .framer-1mxg0sf, .framer-cwFpT .framer-1cr2i4b, .framer-cwFpT .framer-wkxae9, .framer-cwFpT .framer-1706wxj, .framer-cwFpT .framer-1sdwis2, .framer-cwFpT .framer-r6l7lq, .framer-cwFpT .framer-8f8ta9 { gap: 0px; } .framer-cwFpT.framer-13xply0 > *, .framer-cwFpT .framer-rgtkim > *, .framer-cwFpT .framer-11b0qzo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-cwFpT.framer-13xply0 > :first-child, .framer-cwFpT .framer-1fz2mwa > :first-child, .framer-cwFpT .framer-13z1m06 > :first-child, .framer-cwFpT .framer-1iqwva2 > :first-child, .framer-cwFpT .framer-rgtkim > :first-child, .framer-cwFpT .framer-11b0qzo > :first-child, .framer-cwFpT .framer-wkxae9 > :first-child, .framer-cwFpT .framer-1sdwis2 > :first-child, .framer-cwFpT .framer-8f8ta9 > :first-child { margin-top: 0px; } .framer-cwFpT.framer-13xply0 > :last-child, .framer-cwFpT .framer-1fz2mwa > :last-child, .framer-cwFpT .framer-13z1m06 > :last-child, .framer-cwFpT .framer-1iqwva2 > :last-child, .framer-cwFpT .framer-rgtkim > :last-child, .framer-cwFpT .framer-11b0qzo > :last-child, .framer-cwFpT .framer-wkxae9 > :last-child, .framer-cwFpT .framer-1sdwis2 > :last-child, .framer-cwFpT .framer-8f8ta9 > :last-child { margin-bottom: 0px; } .framer-cwFpT .framer-1fz2mwa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cwFpT .framer-13z1m06 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cwFpT .framer-1iqwva2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cwFpT .framer-1mxg0sf > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cwFpT .framer-1mxg0sf > :first-child, .framer-cwFpT .framer-1cr2i4b > :first-child, .framer-cwFpT .framer-1706wxj > :first-child, .framer-cwFpT .framer-r6l7lq > :first-child { margin-left: 0px; } .framer-cwFpT .framer-1mxg0sf > :last-child, .framer-cwFpT .framer-1cr2i4b > :last-child, .framer-cwFpT .framer-1706wxj > :last-child, .framer-cwFpT .framer-r6l7lq > :last-child { margin-right: 0px; } .framer-cwFpT .framer-1cr2i4b > *, .framer-cwFpT .framer-1706wxj > *, .framer-cwFpT .framer-r6l7lq > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-cwFpT .framer-wkxae9 > *, .framer-cwFpT .framer-1sdwis2 > *, .framer-cwFpT .framer-8f8ta9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-cwFpT.framer-13xply0 { width: 1440px; }}\",\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-cwFpT.framer-13xply0 { width: 1024px; } .framer-cwFpT .framer-1iqwva2 { padding: 100px 50px 100px 50px; } .framer-cwFpT .framer-1442mvf-container { width: 100%; } .framer-cwFpT .framer-rgtkim { padding: 0px 50px 100px 50px; } .framer-cwFpT .framer-11b0qzo { padding: 24px; } .framer-cwFpT .framer-1mxg0sf { flex-wrap: wrap; gap: 60px; justify-content: center; } .framer-cwFpT .framer-1cr2i4b { flex: none; order: 0; width: min-content; } .framer-cwFpT .framer-lff8u4 { order: 0; } .framer-cwFpT .framer-wkxae9, .framer-cwFpT .framer-1706wxj { flex: none; order: 1; width: min-content; } .framer-cwFpT .framer-e396db, .framer-cwFpT .framer-1090pqf, .framer-cwFpT .framer-1yu3x2p, .framer-cwFpT .framer-10jfcd1, .framer-cwFpT .framer-1ih0bzr, .framer-cwFpT .framer-1vm4fyr, .framer-cwFpT .framer-193mv37 { white-space: pre; width: auto; } .framer-cwFpT .framer-1sdwis2, .framer-cwFpT .framer-8f8ta9 { flex: none; width: min-content; } .framer-cwFpT .framer-r6l7lq { flex: none; order: 2; width: min-content; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwFpT .framer-1mxg0sf { gap: 0px; } .framer-cwFpT .framer-1mxg0sf > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-cwFpT .framer-1mxg0sf > :first-child { margin-left: 0px; } .framer-cwFpT .framer-1mxg0sf > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 768px) and (max-width: 1023px) { .framer-cwFpT.framer-13xply0 { width: 768px; } .framer-cwFpT .framer-1dxxe5x-container { height: auto; z-index: 1; } .framer-cwFpT .framer-13z1m06 { padding: 50px 100px 10px 100px; } .framer-cwFpT .framer-1iqwva2 { padding: 50px 24px 50px 24px; } .framer-cwFpT .framer-1442mvf-container { width: 100%; } .framer-cwFpT .framer-rgtkim { padding: 0px 24px 100px 24px; } .framer-cwFpT .framer-11b0qzo { padding: 24px; } .framer-cwFpT .framer-1mxg0sf { flex-direction: column; flex-wrap: wrap; gap: 40px; justify-content: center; } .framer-cwFpT .framer-1cr2i4b, .framer-cwFpT .framer-1706wxj, .framer-cwFpT .framer-r6l7lq { flex: none; justify-content: center; width: min-content; } .framer-cwFpT .framer-wkxae9, .framer-cwFpT .framer-1sdwis2, .framer-cwFpT .framer-8f8ta9 { flex: none; width: min-content; } .framer-cwFpT .framer-e396db, .framer-cwFpT .framer-1090pqf, .framer-cwFpT .framer-1yu3x2p, .framer-cwFpT .framer-10jfcd1, .framer-cwFpT .framer-1ih0bzr, .framer-cwFpT .framer-1vm4fyr, .framer-cwFpT .framer-193mv37 { white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwFpT .framer-1mxg0sf { gap: 0px; } .framer-cwFpT .framer-1mxg0sf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-cwFpT .framer-1mxg0sf > :first-child { margin-top: 0px; } .framer-cwFpT .framer-1mxg0sf > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 767px) { .framer-cwFpT.framer-13xply0 { width: 390px; } .framer-cwFpT .framer-1dxxe5x-container { height: auto; z-index: 1; } .framer-cwFpT .framer-13z1m06 { padding: 50px 16px 0px 16px; } .framer-cwFpT .framer-1fcinto, .framer-cwFpT .framer-1442mvf-container, .framer-cwFpT .framer-e396db, .framer-cwFpT .framer-1090pqf, .framer-cwFpT .framer-1yu3x2p, .framer-cwFpT .framer-10jfcd1, .framer-cwFpT .framer-1ih0bzr, .framer-cwFpT .framer-1vm4fyr, .framer-cwFpT .framer-193mv37 { width: 100%; } .framer-cwFpT .framer-1iqwva2 { padding: 50px 16px 50px 16px; } .framer-cwFpT .framer-rgtkim { padding: 0px 16px 50px 16px; } .framer-cwFpT .framer-11b0qzo { padding: 24px 16px 24px 16px; } .framer-cwFpT .framer-1mxg0sf { flex-direction: column; gap: 24px; } .framer-cwFpT .framer-1cr2i4b, .framer-cwFpT .framer-1706wxj, .framer-cwFpT .framer-r6l7lq { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-cwFpT .framer-1mxg0sf { gap: 0px; } .framer-cwFpT .framer-1mxg0sf > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-cwFpT .framer-1mxg0sf > :first-child { margin-top: 0px; } .framer-cwFpT .framer-1mxg0sf > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2572.5\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H5I2unEpo\":{\"layout\":[\"fixed\",\"auto\"]},\"qRYVSzFGD\":{\"layout\":[\"fixed\",\"auto\"]},\"a9rMhHOHD\":{\"layout\":[\"fixed\",\"auto\"]},\"rHzV7gAAw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerYbGI0ac9S=withCSS(Component,css,\"framer-cwFpT\");export default FramerYbGI0ac9S;FramerYbGI0ac9S.displayName=\"404\";FramerYbGI0ac9S.defaultProps={height:2572.5,width:1920};addFonts(FramerYbGI0ac9S,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDD4V15vFP-KUEg.woff2\",weight:\"800\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...HeaderFonts,...EmbedFonts,...GoogleMapsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYbGI0ac9S\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H5I2unEpo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qRYVSzFGD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a9rMhHOHD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rHzV7gAAw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2572.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1920\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}