{"version":3,"file":"qSYWLKKgotusH-qsACnwsElX3OCqrrFU4nlRkyehVQo.CALkm5v6.mjs","names":["useState","useRef","Navigation","Button6","YouTube","Embed1","useRef","React.useId","metadata","React.useMemo","metadataProvider","sharedStyle.className","React.useRef","className","PropertyOverrides","React.Fragment","Image","_Fragment","sharedStyle.css","sharedStyle.fonts"],"sources":["https:/framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js","https:/framerusercontent.com/modules/4rNlraL9R2NDnMveJ5xJ/nu7CT94Rm1wkYdxnWbfm/augiA20Il.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,zoom=1,radius=0,border={width:0,color:\"rgba(200,200,200,0.5)\"},style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,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\";}},border:{title:\"Border\",type:ControlType.Object,optional:true,hidden(props){return props.type!==\"url\";},controls:{width:{title:\"Width\",type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}},defaultValue:{width:1,color:\"rgba(200,200,200,0.5)\"}},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:100,step:1,displayStepper:true,hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});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,zoom,radius,border,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,zoom:zoom,borderRadius:radius,border:`${border.width}px solid ${border.color}`,transformOrigin:\"top center\"},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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=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?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </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>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// 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\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map","// Generated by Framer (ed41f9e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,InjectSelectionStyle,Link,PropertyOverrides,ResetOuterLinkContext,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Navigation from\"#framer/local/canvasComponent/azSoYdtli/azSoYdtli.js\";import Button6 from\"#framer/local/canvasComponent/u1orRXYzt/u1orRXYzt.js\";import*as sharedStyle from\"#framer/local/css/CYXSPpq2Z/CYXSPpq2Z.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Button6Fonts=getFonts(Button6);const EmbedFonts=getFonts(Embed);const YouTubeFonts=getFonts(YouTube);const Embed1Fonts=getFonts(Embed1);const breakpoints={ihwhcam2O:\"(max-width: 799.98px)\",MnUmquRE1:\"(min-width: 800px) and (max-width: 1399.98px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-r0fBo\";const variantClassNames={ihwhcam2O:\"framer-v-jcvr61\",MnUmquRE1:\"framer-v-j3qzze\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.3,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={delay:.1,duration:.7,ease:[.4,0,0,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ihwhcam2O\",Tablet:\"MnUmquRE1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({},activeLocale),[activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const CXIxcjDUL3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ihwhcam2O\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ihwhcam2O\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"MnUmquRE1\",\"ihwhcam2O\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"vaQoJiy4q\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"OoyzTYZUm\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"M5kM0idQY\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{height:68,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ww6cd-container hidden-72rtr7 hidden-j3qzze\",layoutScroll:true,nodeId:\"d3apVOrK7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"d3apVOrK7\",layoutId:\"d3apVOrK7\",style:{width:\"100%\"},variant:\"UMVUUZMy4\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-191llqz hidden-jcvr61\",\"data-border\":true,\"data-framer-name\":\"Menu Background\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MnUmquRE1:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"1188px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vpx2tm-container\",nodeId:\"xgjtg4Ktr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MnUmquRE1:{variant:\"UMVUUZMy4\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"xgjtg4Ktr\",layoutId:\"xgjtg4Ktr\",style:{width:\"100%\"},variant:\"yVDpHNtVz\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6cbnjc\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pb7dmu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 85, 107)\"},children:\"Alfurqan Islamic Centre\"})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 85, 107)\"},children:\"Alfurqan Islamic Centre\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"0.3px\",\"--framer-line-height\":\"1.45em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 85, 107)\"},children:\"Alfurqan Islamic Centre\"})}),className:\"framer-eb02fj\",\"data-framer-appear-id\":\"eb02fj\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.19em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"A Place of Worship,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"Community, and Spiritual Growth\"})]})})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.19em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"37px\"},children:\"A Place of Worship,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"37px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"37px\"},children:\"Community, and Spiritual Growth\"})]})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"49px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.19em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"A Place of Worship,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"Community, and Spiritual Growth\"})]})})}),className:\"framer-flz5fx\",\"data-framer-appear-id\":\"flz5fx\",fonts:[\"Inter-Bold\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-srggpo\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":M5kM0idQY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":M5kM0idQY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":M5kM0idQY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{width:`max(((${componentViewport?.width||\"100vw\"} - 20px) * 0.9243 - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+105+89.14+15},MnUmquRE1:{y:(componentViewport?.y||0)+0+0+140+105.93+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+180+138.69+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-um0snr-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"CFjtKY8x6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{oWE6eT4Pb:resolvedLinks[2],style:{height:\"100%\",width:\"100%\"},vXY6OI5Bc:\"Donate\"},MnUmquRE1:{oWE6eT4Pb:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"CFjtKY8x6\",layoutId:\"CFjtKY8x6\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:resolvedLinks[0],variant:\"Y9IR0S1bO\",vXY6OI5Bc:\"Give Sadaqah Jariyah\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GoNkdLd3c\"},implicitPathVariables:undefined},{href:{webPageId:\"GoNkdLd3c\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MnUmquRE1:{y:(componentViewport?.y||0)+0+0+140+105.93+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+180+138.69+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dbpq4t-container hidden-jcvr61\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"MCGmkKYer\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MnUmquRE1:{oWE6eT4Pb:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"MCGmkKYer\",layoutId:\"MCGmkKYer\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:resolvedLinks1[0],variant:\"S1otFmYHO\",vXY6OI5Bc:\"Monthly Salah Timetable\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dN9lDdkS3\"},implicitPathVariables:undefined},{href:{webPageId:\"dN9lDdkS3\"},implicitPathVariables:undefined},{href:{webPageId:\"dN9lDdkS3\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{width:`max(((${componentViewport?.width||\"100vw\"} - 20px) * 0.9243 - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+105+89.14+15},MnUmquRE1:{y:(componentViewport?.y||0)+0+0+140+105.93+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+180+138.69+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u14tox-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"X2r5sdYqS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{oWE6eT4Pb:resolvedLinks2[2],style:{height:\"100%\",width:\"100%\"}},MnUmquRE1:{oWE6eT4Pb:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"X2r5sdYqS\",layoutId:\"X2r5sdYqS\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:resolvedLinks2[0],variant:\"S1otFmYHO\",vXY6OI5Bc:\"Talks & Events\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fffjcv\",\"data-framer-name\":\"Container\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"https://divinejourneys.co.uk/\",motionChild:true,nodeId:\"U7AH24HzX\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+237.69+0),pixelHeight:1536,pixelWidth:1229,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hUh8CyBDXnYvrzVtcwbTy7uIAkI.jpeg?width=1229&height=1536\",srcSet:\"https://framerusercontent.com/images/hUh8CyBDXnYvrzVtcwbTy7uIAkI.jpeg?scale-down-to=1024&width=1229&height=1536 819w,https://framerusercontent.com/images/hUh8CyBDXnYvrzVtcwbTy7uIAkI.jpeg?width=1229&height=1536 1229w\"},className:\"framer-59ajh6 hidden-j3qzze hidden-jcvr61 framer-lux5qc\",\"data-framer-name\":\"Posters\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p8ldn7\",\"data-framer-name\":\"Announcement\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Apply For Zakat\"})}),className:\"framer-1jd5b9z\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We are partnered with the NZF to provide small grants to Muslims in the UK facing financial hardship. To be eligible, applicants must be Muslim, living in the UK at the time of application and payment, eligible to receive Zakat, and have little or no income. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We are partnered with the NZF to provide small grants to Muslims in the UK facing financial hardship. To be eligible, applicants must be Muslim, living in the UK at the time of application and payment, eligible to receive Zakat, and have little or no income. \"})}),className:\"framer-mwudji\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{width:\"321.07px\",y:(componentViewport?.y||0)+0+0+105+188.14+0+0+15+144.8},MnUmquRE1:{y:(componentViewport?.y||0)+0+0+140+204.93+1+20+150}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"340px\",y:(componentViewport?.y||0)+0+0+180+237.69+1+20+150,children:/*#__PURE__*/_jsx(Container,{className:\"framer-59ducv-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"HI0YtA73r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"HI0YtA73r\",layoutId:\"HI0YtA73r\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:\"https://cal.com/alfurqanmcr/zakat\",style:{height:\"100%\",width:\"100%\"},variant:\"S4d1vIKVA\",vXY6OI5Bc:\"Book Now\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fwvj0p\",\"data-framer-name\":\"Prayer\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1llvz9-container\",isModuleExternal:true,nodeId:\"yBOnGok8o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{border:{color:\"rgba(200, 200, 200, 0.5)\",width:1},height:\"100%\",html:\"<script type=\\\"text/javascript\\\">(function(w){function async_load(){var s=w.document.createElement('script');s.type='text/javascript';s.async=true;s.defer=true;s.src='https://masjidbox.com/widgets/loader.js';var x=w.document.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);} if(w.attachEvent)w.attachEvent('onload',async_load);else w.addEventListener('load',async_load,false);})(window);</script><a data-masjidbox-widget=\\\"T0AAvDU3CsV0jY4Vv1PPc\\\" data-masjidbox-ifr href=\\\"https://masjidbox.com/prayer-times/alfurqan-islamic-centre-1741893173365\\\">Prayer times Alfurqan Islamic Centre</a>\",id:\"yBOnGok8o\",layoutId:\"yBOnGok8o\",radius:0,style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-12c2tcj\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3g8tp\",\"data-framer-name\":\"Videos Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kv8kfy\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m1vz7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ONWamGW_h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,height:\"100%\",id:\"ONWamGW_h\",isMixedBorderRadius:false,isRed:true,layoutId:\"ONWamGW_h\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:7,topRightRadius:7,url:\"https://www.youtube.com/watch?v=cnfBAPIBfVA&list=PLSFZjjKC3qPYyqZCgAxS9d_gmVmC9WCX5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"Introduction To The Life Of Ibn Rajab | Summer Dawrah\"})}),className:\"framer-1mh3xs1\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pebxmg\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iqpv7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"isZ0049vN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,height:\"100%\",id:\"isZ0049vN\",isMixedBorderRadius:false,isRed:true,layoutId:\"isZ0049vN\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:7,topRightRadius:7,url:\"https://www.youtube.com/watch?v=dOMdBDWlawg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"The Four Types Of Believers | Quran Reflection | Ustadh Yahya Raaby\"})}),className:\"framer-29phx2\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14xsega\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19lkx0w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Pj4PEK1g9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,height:\"100%\",id:\"Pj4PEK1g9\",isMixedBorderRadius:false,isRed:true,layoutId:\"Pj4PEK1g9\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:7,topRightRadius:7,url:\"https://www.youtube.com/watch?v=-he6NSeaMr0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 29)\",direction:\"rtl\"},children:\"المحافظة على كيان الأسرة المسلمة | أ.د. عبد الكريم بن عبد العزيز المحرج\"})}),className:\"framer-7ng1ye\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwx25l\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s7ehx4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QmFU8s_E_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,height:\"100%\",id:\"QmFU8s_E_\",isMixedBorderRadius:false,isRed:true,layoutId:\"QmFU8s_E_\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:7,topRightRadius:7,url:\"https://www.youtube.com/watch?v=-8wtc2bdcI8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"Salatul Khusuf | Sheikh Mostafa Shaybani | Al Baqarah\"})}),className:\"framer-d0lp22\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ebnhf8\",\"data-framer-name\":\"Education\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xehxo7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1il7q9s\",\"data-framer-name\":\"Academy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1898.14+30+0+0+0+0+0),pixelHeight:600,pixelWidth:550,sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600 550w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+973.93+15+0+0+0+0+0),pixelHeight:600,pixelWidth:550,sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600 550w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1041.19+50+0+0+0+0),pixelHeight:600,pixelWidth:550,sizes:\"583px\",src:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/MfZldbeRNcYzSfY8hCQUKQjX9RY.png?width=550&height=600 550w\"},className:\"framer-bv9c2e\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Alfurqan Academy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Alfurqan Academy\"})}),className:\"framer-1rjs5fm\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The supplementary school offers a wide array of subjects, including Noorania, Quran, Arabic, and Islamic Studies, as well as extra curricular activities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The supplementary school offers a wide array of subjects, including Noorania, Quran, Arabic, and Islamic Studies, as well as extra curricular activities.\"})}),className:\"framer-cyp0eb\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://alfurqanacademy.co.uk\",motionChild:true,nodeId:\"TLbIMw0s9\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7oku8k framer-lux5qc\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 36, 36)\"},children:\"Learn More\"})}),className:\"framer-tr89wh\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lzrkg\",\"data-framer-name\":\"Colege\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1898.14+30+0+0+395+0+0),pixelHeight:600,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600 550w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+973.93+15+0+0+517.4+0+0),pixelHeight:600,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600 550w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1041.19+50+0+0+0+0),pixelHeight:600,pixelWidth:550,positionX:\"center\",positionY:\"center\",sizes:\"583px\",src:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600\",srcSet:\"https://framerusercontent.com/images/ItfjNp1cg9N6zIBVPB5B7ezpn9Y.png?width=550&height=600 550w\"},className:\"framer-33d8z5\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Alfurqan College\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Alfurqan College\"})}),className:\"framer-y57lro\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Providing a comprehensive curriculum for learning the Arabic language for 16yrs+. Our courses cater to students of all as extra curricular activities.levels.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Providing a comprehensive curriculum for learning the Arabic language for 16yrs+. Our courses cater to students of all as extra curricular activities.levels.\"})}),className:\"framer-5k2ts3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://alfurqancollege.com\",motionChild:true,nodeId:\"wBAAJpWRp\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lx6zil framer-lux5qc\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(36, 36, 36)\"},children:\"Learn More\"})}),className:\"framer-6t0j3j\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1c1nzo4\",\"data-framer-name\":\"Community\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(88, 93, 117) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:\"We offer a variety of programmes \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"17px\"},children:\"that support, empower, and strengthen our local community, all grounded in the values of Islam.\"})]})})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[\"We offer a variety of programmes that support, empower,\",/*#__PURE__*/_jsx(\"br\",{}),\"and strengthen our local community, all grounded in the values of Islam.\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[\"We offer a variety of programmes that support, empower,\",/*#__PURE__*/_jsx(\"br\",{}),\"and strengthen our local community, all grounded in the values of Islam.\"]})})}),className:\"framer-hjazjx\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xuzzw7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1szqfh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2758.34+50+53.8+0+20+33.875),pixelHeight:197,pixelWidth:226,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z2FO5RO1Pt1NLpNmXJjYo2hkj8.png?width=226&height=197\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2008.73+70+56+0+20+34.7),pixelHeight:197,pixelWidth:226,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z2FO5RO1Pt1NLpNmXJjYo2hkj8.png?width=226&height=197\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1643.59+70+61.2+30+20+34.7),pixelHeight:197,pixelWidth:226,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z2FO5RO1Pt1NLpNmXJjYo2hkj8.png?width=226&height=197\"},className:\"framer-1ugw4kq\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"SISTERS' CORNER\"})}),className:\"framer-1w78kmi\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A space for sisters of all backgrounds to come together, learn, and grow through education and social events.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A space for sisters of all backgrounds to come together, learn, and grow through education and social events.\"})}),className:\"framer-eq04vw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bBMrNhetk\"},motionChild:true,nodeId:\"VDN3xeOSn\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lz1tb2 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Contact us\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Learn More\"})}),className:\"framer-6q9o24\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hvdez\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2758.34+50+53.8+0+20+32.875),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/LORNZ149eAyFALBerBmWNJNZ1TU.png?width=512&height=512\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2008.73+70+56+0+20+33.7),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/LORNZ149eAyFALBerBmWNJNZ1TU.png?width=512&height=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1643.59+70+61.2+30+20+33.7),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/LORNZ149eAyFALBerBmWNJNZ1TU.png?width=512&height=512\"},className:\"framer-e9n1kn\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"EID IN THE PARK\"})}),className:\"framer-ydnolv\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Our annual event brings together over 20,000 attendees from all around Greater Manchester and Northwest UK\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Our annual event brings together over 20,000 attendees from all around Greater Manchester and Northwest UK\"})}),className:\"framer-g0m2k4\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://eidinthepark.org.uk\",motionChild:true,nodeId:\"ALAF5i2W1\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tflstw framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Contact us\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Learn More\"})}),className:\"framer-8isiu5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjbyiq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2758.34+50+53.8+0+30+28.875),pixelHeight:548,pixelWidth:680,positionX:\"center\",positionY:\"top\",sizes:\"87.2519px\",src:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548\",srcSet:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?scale-down-to=512&width=680&height=548 512w,https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548 680w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2008.73+70+56+0+30+33.2),pixelHeight:548,pixelWidth:680,positionX:\"center\",positionY:\"top\",sizes:\"87.2519px\",src:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548\",srcSet:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?scale-down-to=512&width=680&height=548 512w,https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548 680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1643.59+70+61.2+30+30+33.2),pixelHeight:548,pixelWidth:680,positionX:\"center\",positionY:\"top\",sizes:\"87.2519px\",src:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548\",srcSet:\"https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?scale-down-to=512&width=680&height=548 512w,https://framerusercontent.com/images/zRcPbqppQ0HdOY2MGZkTyh708.png?width=680&height=548 680w\"},className:\"framer-ujd7cz\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"YOUTH NIGHT\"})}),className:\"framer-1rfhhhx\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Youth between 10-17 years old: Helping them grow in faith, character, and skills while staying active and engaged\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Youth between 10-17 years old: Helping them grow in faith, character, and skills while staying active and engaged\"})}),className:\"framer-1nx2ynb\",\"data-framer-name\":\"Text\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.alfurqanacademy.co.uk/youth\",motionChild:true,nodeId:\"L9dZwD8wh\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zdiquh framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Contact us\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Learn More\"})}),className:\"framer-cix57\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lz7b1h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2758.34+50+53.8+0+20+32.875),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/lyvMpvgaYtxm9bXXH1LQe5IAlrk.png?width=500&height=500\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2008.73+70+56+0+20+33.7),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/lyvMpvgaYtxm9bXXH1LQe5IAlrk.png?width=500&height=500\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1643.59+70+61.2+30+20+33.7),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/lyvMpvgaYtxm9bXXH1LQe5IAlrk.png?width=500&height=500\"},className:\"framer-dx6wms\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"DIVINE JOURNEY\"})}),className:\"framer-7b30zj\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Experience a spiritually enriching journey with our 5* Star Umrah Package, featuring guided tours, and expert religious guidance .\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Experience a spiritually enriching journey with our 5* Star Umrah Package, featuring guided tours, and expert religious guidance .\"})}),className:\"framer-619v7o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"divinejourneys.co.uk\",motionChild:true,nodeId:\"ds4P2XeId\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-m24fay framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Contact us\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(20, 20, 20)\"},children:\"Learn More\"})}),className:\"framer-wkest1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-zf746g\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(88, 93, 117) 98%)\"},children:[\"At Alfurqan Islamic Centre, we offer a \",/*#__PURE__*/_jsx(\"br\",{}),\"range of services that support, uplift, and nurture the needs of our Muslim community.\"]})})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"At Alfurqan Islamic Centre, we offer a range of services \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"that support, uplift, and nurture the needs of our Muslim community.\"})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"At Alfurqan Islamic Centre, we offer a range of services \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"that support, uplift, and nurture the needs of our Muslim community.\"})]})})}),className:\"framer-18k179i\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mw2rl2\",\"data-framer-name\":\"3 Services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d49lyy\",\"data-framer-name\":\"Marriage\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1367.14+40+39+5+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"330px\",src:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648 5472w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2544.73+40+53.6+25+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"345px\",src:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648 5472w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2224.79+50+56.6+25+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"380px\",src:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/F77pojkUSRc1upQnu1eRY3XHwrI.jpg?width=5472&height=3648 5472w\"},className:\"framer-1fjxk43\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c1kgyo\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"MARRIAGE SERVICES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"MARRIAGE SERVICES\"})}),className:\"framer-18hvnxo\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Creating unforgettable memories for your special day. At Alfurqan, we offer a tailored Nikah service to help you plan a joyful, stress-free wedding ceremony.\"})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Creating unforgettable memories for your special day. At Alfurqan, we offer a tailored Nikah service to help you plan a joyful, stress-free wedding ceremony.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Creating unforgettable memories for your special day. At Alfurqan, we offer a tailored Nikah service to help you plan a joyful, stress-free wedding ceremony.\"})}),className:\"framer-1od07sp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uV9Z8LRvg\"},motionChild:true,nodeId:\"sMXAHghb5\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d32ima framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Learn More\"})}),className:\"framer-1uou02u\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3zvy\",\"data-framer-name\":\"Counselling\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1367.14+40+39+5+0+0),pixelHeight:6e3,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000\",srcSet:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=1024&width=4000&height=6000 682w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=2048&width=4000&height=6000 1365w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=4096&width=4000&height=6000 2730w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000 4000w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2544.73+40+53.6+25.25+0+0),pixelHeight:6e3,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"345px\",src:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000\",srcSet:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=1024&width=4000&height=6000 682w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=2048&width=4000&height=6000 1365w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=4096&width=4000&height=6000 2730w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2224.79+50+56.6+25.25+0+0),pixelHeight:6e3,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000\",srcSet:\"https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=1024&width=4000&height=6000 682w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=2048&width=4000&height=6000 1365w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?scale-down-to=4096&width=4000&height=6000 2730w,https://framerusercontent.com/images/OUIrJQhCu1ZzkctMgr7MFNpcI.jpg?width=4000&height=6000 4000w\"},className:\"framer-umrn2f\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ajeetw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"COUNSELLING SERVICES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"COUNSELLING SERVICES\"})}),className:\"framer-10wh350\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Facing challenges in family, or finances? Our experienced counselors provide confidential and professional support to guide you through difficult times.\"})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Facing challenges in marriage, family, or finances? Our experienced counselors provide confidential and professional support to guide you through difficult times.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Facing challenges in marriage, family, or finances? Our experienced counselors provide confidential and professional support to guide you through difficult times.\"})}),className:\"framer-10b7dwq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"i6g06pbKJ\"},motionChild:true,nodeId:\"pI1_7Un1N\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mk7f0i framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Learn More\"})}),className:\"framer-tkafyu\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8hqfk\",\"data-framer-name\":\"Funeral\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1367.14+40+39+5+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"330px\",src:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648 5472w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2544.73+40+53.6+25+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"345px\",src:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648 5472w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2224.79+50+56.6+25+0+0),pixelHeight:3648,pixelWidth:5472,positionX:\"center\",positionY:\"top\",sizes:\"380px\",src:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648\",srcSet:\"https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=512&width=5472&height=3648 512w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=1024&width=5472&height=3648 1024w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=2048&width=5472&height=3648 2048w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?scale-down-to=4096&width=5472&height=3648 4096w,https://framerusercontent.com/images/0a7JLeGBBRv42SDMy3TsUQQjlQs.jpg?width=5472&height=3648 5472w\"},className:\"framer-1iyyxs8\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1evhio7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"FUNERAL SERVICES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"FUNERAL SERVICES\"})}),className:\"framer-1wgo0r6\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We offer compassionate and professional funeral services. We provide full support during the burial process, including preparation, transportation, and Ghusl.\"})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We offer compassionate and professional funeral services. We provide full support during the burial process, including preparation, transportation, and Ghusl.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"We offer compassionate and professional funeral services. We provide full support during the burial process, including preparation, transportation, and Ghusl.\"})}),className:\"framer-1jawacn\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FeBnZxFZO\"},motionChild:true,nodeId:\"bdPUD9Czk\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qzrppd framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Learn More\"})}),className:\"framer-1njgcx8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-nircag\",\"data-framer-name\":\"Project\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fctlr4\",\"data-framer-name\":\"Services\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3243.14+20+0+0+0),pixelHeight:560,pixelWidth:800,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560\",srcSet:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?scale-down-to=512&width=800&height=560 512w,https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560 800w\"}},MnUmquRE1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3152.13+25+0+35+0),pixelHeight:560,pixelWidth:800,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,src:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560\",srcSet:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?scale-down-to=512&width=800&height=560 512w,https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2846.59+40+0+35+0),pixelHeight:560,pixelWidth:800,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560\",srcSet:\"https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?scale-down-to=512&width=800&height=560 512w,https://framerusercontent.com/images/hAvJjLXywStgT1X6dfihu4CZQJc.jpeg?width=800&height=560 800w\"},className:\"framer-o0g8db\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193epb5\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sx3wjf\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(88, 93, 117) 98%)\"},children:[\"JOIN OUR EFFORTS TO EXPAND\",/*#__PURE__*/_jsx(\"br\",{}),\"ALFURQAN MOSQUE AND ISLAMIC CENTRE\"]})})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"JOIN OUR EFFORTS TO EXPAND\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"ALFURQAN MOSQUE AND ISLAMIC CENTRE\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(80deg, rgb(7, 8, 10) 0%, rgb(113, 120, 150) 98%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"JOIN OUR EFFORTS TO \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"EXPAND ALFURQAN MOSQUE\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"26px\"},children:\"AND ISLAMIC CENTRE\"})]})})}),className:\"framer-13vaw4a\",\"data-framer-name\":\"Sub-title\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.35em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"You can play a vital role in expanding our mosque and strengthening our community by donating to our mosque extension campaign. Every donation, no matter how small, will make a difference and help us reach our fundraising goal. For every person who prays and studies in there, you will also get the reward.\"})})},MnUmquRE1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"You can play a vital role in expanding our mosque and strengthening our community by donating to our mosque extension campaign. Every donation, no matter how small, will make a difference and help us reach our fundraising goal. For every person who prays and studies in there, you will also get the reward.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(61, 61, 61)\"},children:\"You can play a vital role in expanding our mosque and strengthening our community by donating to our mosque extension campaign. Every donation, no matter how small, will make a difference and help us reach our fundraising goal. For every person who prays and studies in there, you will also get the reward.\"})}),className:\"framer-45x6w7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uzzv8b\",\"data-framer-name\":\"CTA\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MnUmquRE1:{y:(componentViewport?.y||0)+0+3152.13+25+0+35+406+30+109.8+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+2846.59+40+0+35+0+30+109.8+0+20,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1tazra9-container hidden-jcvr61\",\"data-framer-name\":\"CTA\",id:\"1tazra9\",name:\"CTA\",nodeId:\"Cr9Eaxfef\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button6,{CXIxcjDUL:CXIxcjDUL3bnx0g({overlay}),height:\"100%\",id:\"Cr9Eaxfef\",layoutId:\"Cr9Eaxfef\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",variant:\"Y9IR0S1bO\",vXY6OI5Bc:\"Donate Now\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(InjectSelectionStyle,{triggerId:\"1tazra9\",children:/*#__PURE__*/_jsxs(ResetOuterLinkContext,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-cmycpn\"),\"data-framer-portal-id\":\"1tazra9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"OvvaeF8_a\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1o17zbq-container\"),\"data-framer-portal-id\":\"1tazra9\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ER5hnYHVr\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:'<script src=\"https://donorbox.org/widget.js\" paypalExpress=\"true\"></script> <iframe src=\"https://donorbox.org/embed/alfurqan-islamic-centre-2?\" name=\"donorbox\" allowpaymentrequest=\"allowpaymentrequest\" seamless=\"seamless\" frameborder=\"0\" scrolling=\"no\" height=\"900px\" width=\"100%\" style=\"max-width: 500px; min-width: 250px; max-height:none!important\" allow=\"payment\"></iframe>',id:\"ER5hnYHVr\",layoutId:\"ER5hnYHVr\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnBa4ZHIn\"},implicitPathVariables:undefined},{href:{webPageId:\"rnBa4ZHIn\"},implicitPathVariables:undefined},{href:{webPageId:\"rnBa4ZHIn\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{y:(componentViewport?.y||0)+0+3243.14+20+0+0+239+25+95.65+10},MnUmquRE1:{y:(componentViewport?.y||0)+0+3152.13+25+0+35+406+30+109.8+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+2846.59+40+0+35+0+30+109.8+0+20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t1i3vp-container\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"UkbcVTYzX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{oWE6eT4Pb:resolvedLinks3[2],style:{height:\"100%\"}},MnUmquRE1:{oWE6eT4Pb:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"UkbcVTYzX\",layoutId:\"UkbcVTYzX\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:resolvedLinks3[0],variant:\"S1otFmYHO\",vXY6OI5Bc:\"Find out More\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{height:44,y:(componentViewport?.y||0)+0+3243.14+20+0+0+239+25+95.65+10}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q18cwy-container hidden-72rtr7 hidden-j3qzze\",\"data-framer-name\":\"CTA\",name:\"CTA\",nodeId:\"oZgyfbSpp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button6,{height:\"100%\",id:\"oZgyfbSpp\",layoutId:\"oZgyfbSpp\",MvNJev6Df:\"rgb(17, 17, 17)\",name:\"CTA\",oWE6eT4Pb:\"https://donorbox.org/alfurqan-islamic-centre-2\",style:{height:\"100%\",width:\"100%\"},variant:\"Y9IR0S1bO\",vXY6OI5Bc:\"Donate Now\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"footer\",{className:\"framer-7fqgdt\",\"data-framer-name\":\"Footer\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-599fga hidden-jcvr61\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7y0c69\",\"data-border\":true,\"data-framer-name\":\"Sign In\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:\"Charity No: 1064859\"})}),className:\"framer-pdvzg7\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcx23u\",\"data-border\":true,\"data-framer-name\":\"Sign In\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yszgWh6YB\"},motionChild:true,nodeId:\"z50IR_W9f\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yyn0na\",\"data-styles-preset\":\"CYXSPpq2Z\",children:\"Privacy Policy\"})})})}),className:\"framer-1i2mij1\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7mmuc9\",\"data-border\":true,\"data-framer-name\":\"Sign In\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gUdzDZxIg\"},motionChild:true,nodeId:\"cFow1Fs3X\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yyn0na\",\"data-styles-preset\":\"CYXSPpq2Z\",children:\"Terms of Use\"})})})}),className:\"framer-tktra2\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dyh2pb\",\"data-border\":true,\"data-framer-name\":\"Sign In\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eRnpSxUpl\"},motionChild:true,nodeId:\"nuGioe6Cv\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yyn0na\",\"data-styles-preset\":\"CYXSPpq2Z\",children:\" Cookies Policy\"})})})}),className:\"framer-1c43uof\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oayncv\",\"data-framer-name\":\"Sign In\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HwCK1E_Ya\"},motionChild:true,nodeId:\"kj6H1wphy\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yyn0na\",\"data-styles-preset\":\"CYXSPpq2Z\",children:\"Contact Us\"})})})}),className:\"framer-htneei\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7tjb5\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ihwhcam2O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:[\"Copyright \\xa9 2025 \",/*#__PURE__*/_jsx(\"br\",{}),\"Alfurqan Islamic Centre Manchester. \",/*#__PURE__*/_jsx(\"br\",{}),\"All rights reserved\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(196, 196, 196)\"},children:\"Copyright \\xa9 2025 Alfurqan Islamic Centre Manchester.  All rights reserved\"})}),className:\"framer-ecnx9\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-r0fBo.framer-lux5qc, .framer-r0fBo .framer-lux5qc { display: block; }\",\".framer-r0fBo.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1400px; }\",\".framer-r0fBo .framer-2ww6cd-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-r0fBo .framer-191llqz { --border-bottom-width: 1px; --border-color: #e4e6ed; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 2; }\",\".framer-r0fBo .framer-1vpx2tm-container { flex: none; height: auto; position: relative; width: 1188px; z-index: 1; }\",\".framer-r0fBo .framer-6cbnjc { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 34.68468468468468%, rgba(190, 190, 204, 0.55) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 180px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-1pb7dmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-eb02fj, .framer-r0fBo .framer-flz5fx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-srggpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 20px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-um0snr-container, .framer-r0fBo .framer-1dbpq4t-container, .framer-r0fBo .framer-1u14tox-container, .framer-r0fBo .framer-1tazra9-container, .framer-r0fBo .framer-t1i3vp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-r0fBo .framer-1fffjcv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-59ajh6 { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; min-width: 380px; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-r0fBo .framer-p8ldn7 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 297px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-1jd5b9z, .framer-r0fBo .framer-mwudji, .framer-r0fBo .framer-1mh3xs1, .framer-r0fBo .framer-29phx2, .framer-r0fBo .framer-7ng1ye, .framer-r0fBo .framer-d0lp22, .framer-r0fBo .framer-hjazjx, .framer-r0fBo .framer-1w78kmi, .framer-r0fBo .framer-eq04vw, .framer-r0fBo .framer-g0m2k4, .framer-r0fBo .framer-1rfhhhx, .framer-r0fBo .framer-1nx2ynb, .framer-r0fBo .framer-7b30zj, .framer-r0fBo .framer-18k179i, .framer-r0fBo .framer-18hvnxo, .framer-r0fBo .framer-1od07sp, .framer-r0fBo .framer-10wh350, .framer-r0fBo .framer-10b7dwq, .framer-r0fBo .framer-1wgo0r6, .framer-r0fBo .framer-1jawacn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-59ducv-container { flex: none; height: 44px; position: relative; width: 100%; z-index: 1; }\",\".framer-r0fBo .framer-1fwvj0p { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 299px; justify-content: flex-end; padding: 0px; position: relative; width: 380px; }\",\".framer-r0fBo .framer-1llvz9-container { flex: none; height: auto; position: relative; width: 380px; }\",\".framer-r0fBo .framer-12c2tcj { align-content: center; align-items: center; background-color: #f5f5f5; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: auto; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-b3g8tp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-kv8kfy, .framer-r0fBo .framer-1pebxmg, .framer-r0fBo .framer-14xsega, .framer-r0fBo .framer-vwx25l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 286px; }\",\".framer-r0fBo .framer-m1vz7u-container, .framer-r0fBo .framer-1iqpv7u-container, .framer-r0fBo .framer-19lkx0w-container { flex: none; height: 160px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-1s7ehx4-container { flex: none; height: 163px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-1ebnhf8 { align-content: center; align-items: center; background: linear-gradient(180deg, #f5f5f7 3.3359309016047307%, rgb(235, 238, 242) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-r0fBo .framer-xehxo7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-1il7q9s { align-content: center; align-items: center; background-color: #f8f9fa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 583px; }\",\".framer-r0fBo .framer-bv9c2e, .framer-r0fBo .framer-33d8z5 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 320px 20px 30px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-1rjs5fm, .framer-r0fBo .framer-y57lro, .framer-r0fBo .framer-pdvzg7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-cyp0eb, .framer-r0fBo .framer-5k2ts3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 480px; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-7oku8k, .framer-r0fBo .framer-1lx6zil { align-content: center; align-items: center; background-color: #f8f9fa; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-tr89wh, .framer-r0fBo .framer-6t0j3j, .framer-r0fBo .framer-6q9o24, .framer-r0fBo .framer-8isiu5, .framer-r0fBo .framer-cix57, .framer-r0fBo .framer-wkest1, .framer-r0fBo .framer-1uou02u, .framer-r0fBo .framer-tkafyu, .framer-r0fBo .framer-1njgcx8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-r0fBo .framer-1lzrkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 583px; }\",\".framer-r0fBo .framer-1c1nzo4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 70px 20px 40px 20px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-r0fBo .framer-1xuzzw7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: auto; padding: 30px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-1szqfh { align-content: center; align-items: center; background: linear-gradient(180deg, #f5f5f7 3.3359309016047307%, rgb(235, 238, 242) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 360px; justify-content: center; overflow: hidden; padding: 20px 10px 10px 10px; position: relative; width: 282px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-1ugw4kq { aspect-ratio: 1.1120689655172413 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 111px; }\",\".framer-r0fBo .framer-lz1tb2, .framer-r0fBo .framer-tflstw, .framer-r0fBo .framer-zdiquh, .framer-r0fBo .framer-m24fay { --border-bottom-width: 0px; --border-color: #d1d1d1; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 27px 20px 15px 20px; position: relative; text-decoration: none; width: 260px; }\",\".framer-r0fBo .framer-18hvdez, .framer-r0fBo .framer-lz7b1h { align-content: center; align-items: center; background: linear-gradient(180deg, #f5f5f7 3.3359309016047307%, rgb(235, 238, 242) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: 360px; justify-content: center; overflow: hidden; padding: 20px 10px 12px 10px; position: relative; width: 282px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-e9n1kn { aspect-ratio: 0.987012987012987 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 99px; }\",\".framer-r0fBo .framer-ydnolv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 275px; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-yjbyiq { align-content: center; align-items: center; background: linear-gradient(180deg, #f5f5f7 3.3359309016047307%, rgb(235, 238, 242) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: 360px; justify-content: center; overflow: hidden; padding: 30px 10px 10px 10px; position: relative; width: 282px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-ujd7cz { aspect-ratio: 0.9694656488549618 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 87px; }\",\".framer-r0fBo .framer-dx6wms { aspect-ratio: 1.1755725190839694 / 1; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 118px; }\",\".framer-r0fBo .framer-619v7o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 261px; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-zf746g { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: visible; padding: 50px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-1mw2rl2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: auto; padding: 25px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-1d49lyy, .framer-r0fBo .framer-o3zvy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-1fjxk43 { align-content: center; align-items: center; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 254px; justify-content: flex-start; padding: 20px; position: relative; width: 380px; }\",\".framer-r0fBo .framer-c1kgyo, .framer-r0fBo .framer-ajeetw { align-content: center; align-items: center; align-self: stretch; background: linear-gradient(180deg, #f5f5f7 3.3359309016047307%, rgb(235, 238, 242) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 10px 20px 10px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-1d32ima, .framer-r0fBo .framer-mk7f0i, .framer-r0fBo .framer-qzrppd { --border-bottom-width: 0px; --border-color: #d1d1d1; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: hidden; padding: 27px 20px 15px 20px; position: relative; text-decoration: none; width: 100%; }\",\".framer-r0fBo .framer-umrn2f { align-content: center; align-items: center; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 254px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-r0fBo .framer-1m8hqfk { align-content: center; align-items: center; background-color: #f8f9fa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-1iyyxs8 { align-content: center; align-items: center; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 254px; justify-content: flex-start; padding: 0px; position: relative; width: 380px; }\",\".framer-r0fBo .framer-1evhio7 { align-content: center; align-items: center; align-self: stretch; background: linear-gradient(180deg, #ffffff 3.3359309016047307%, rgb(235, 238, 242) 100%); border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 10px 20px 10px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-r0fBo .framer-nircag { align-content: center; align-items: center; background-color: #f5f5f7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 40px 20px 60px 20px; position: relative; scroll-margin-top: 50px; width: 100%; }\",\".framer-r0fBo .framer-fctlr4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 35px 0px 10px 0px; position: relative; width: 1188px; }\",\".framer-r0fBo .framer-o0g8db { align-self: stretch; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-r0fBo .framer-193epb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-sx3wjf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-r0fBo .framer-13vaw4a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 530px; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-45x6w7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 502px; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-1uzzv8b { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-r0fBo.framer-cmycpn { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 4; }\",\".framer-r0fBo.framer-1o17zbq-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 431px; z-index: 4; }\",\".framer-r0fBo .framer-1q18cwy-container { flex: 1 0 0px; height: 44px; position: relative; width: 1px; }\",\".framer-r0fBo .framer-7fqgdt { align-content: center; align-items: center; background-color: #1c1d25; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 20px 40px 20px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-599fga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 46px; justify-content: center; overflow: hidden; padding: 30px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-7y0c69 { --border-bottom-width: 0px; --border-color: #c4c4c4; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 198px; }\",\".framer-r0fBo .framer-1jcx23u { --border-bottom-width: 0px; --border-color: #c4c4c4; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 147px; }\",\".framer-r0fBo .framer-1i2mij1, .framer-r0fBo .framer-tktra2, .framer-r0fBo .framer-1c43uof, .framer-r0fBo .framer-htneei { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-r0fBo .framer-7mmuc9 { --border-bottom-width: 0px; --border-color: #c4c4c4; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 160px; }\",\".framer-r0fBo .framer-1dyh2pb { --border-bottom-width: 0px; --border-color: #c4c4c4; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 151px; }\",\".framer-r0fBo .framer-oayncv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 125px; }\",\".framer-r0fBo .framer-1x7tjb5 { --border-bottom-width: 0px; --border-color: #575757; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-r0fBo .framer-ecnx9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,'.framer-r0fBo[data-border=\"true\"]::after, .framer-r0fBo [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 800px) and (max-width: 1399.98px) { .framer-r0fBo.framer-72rtr7 { width: 800px; } .framer-r0fBo .framer-1vpx2tm-container, .framer-r0fBo .framer-1il7q9s, .framer-r0fBo .framer-cyp0eb, .framer-r0fBo .framer-1lzrkg, .framer-r0fBo .framer-5k2ts3, .framer-r0fBo .framer-193epb5, .framer-r0fBo .framer-sx3wjf, .framer-r0fBo .framer-13vaw4a, .framer-r0fBo .framer-45x6w7 { width: 100%; } .framer-r0fBo .framer-6cbnjc { padding: 140px 0px 40px 0px; } .framer-r0fBo .framer-1fffjcv { gap: 20px; } .framer-r0fBo .framer-12c2tcj, .framer-r0fBo .framer-7fqgdt { padding: 30px 15px 40px 15px; } .framer-r0fBo .framer-b3g8tp { gap: 14px; width: 100%; } .framer-r0fBo .framer-kv8kfy, .framer-r0fBo .framer-1pebxmg, .framer-r0fBo .framer-14xsega, .framer-r0fBo .framer-vwx25l { aspect-ratio: 1.355140186915888 / 1; height: var(--framer-aspect-ratio-supported, 210px); width: 285px; } .framer-r0fBo .framer-1ebnhf8 { gap: 30px; padding: 15px 15px 0px 15px; } .framer-r0fBo .framer-xehxo7 { flex-direction: column; gap: 15px; width: 100%; } .framer-r0fBo .framer-1c1nzo4 { padding: 70px 15px 30px 14px; } .framer-r0fBo .framer-1xuzzw7 { justify-content: flex-start; padding: 0px 0px 20px 0px; width: 100%; } .framer-r0fBo .framer-1szqfh, .framer-r0fBo .framer-18hvdez, .framer-r0fBo .framer-yjbyiq { width: 270px; } .framer-r0fBo .framer-lz7b1h { width: 290px; } .framer-r0fBo .framer-zf746g { gap: 20px; padding: 40px 15px 40px 15px; } .framer-r0fBo .framer-1mw2rl2 { gap: 21px; justify-content: flex-start; width: 100%; } .framer-r0fBo .framer-1fjxk43, .framer-r0fBo .framer-umrn2f, .framer-r0fBo .framer-1iyyxs8 { width: 345px; } .framer-r0fBo .framer-nircag { padding: 25px 15px 40px 15px; } .framer-r0fBo .framer-fctlr4 { flex-direction: column; gap: 10px; width: 100%; } .framer-r0fBo .framer-o0g8db { align-self: unset; flex: none; height: 396px; width: 100%; } .framer-r0fBo .framer-1uzzv8b { align-content: center; align-items: center; align-self: unset; justify-content: center; width: 100%; }}\",\"@media (max-width: 799.98px) { .framer-r0fBo.framer-72rtr7 { width: 390px; } .framer-r0fBo .framer-2ww6cd-container, .framer-r0fBo .framer-1pb7dmu, .framer-r0fBo .framer-1q18cwy-container { order: 0; } .framer-r0fBo .framer-6cbnjc { background-color: #ffffff; gap: 15px; order: 3; padding: 105px 10px 0px 10px; } .framer-r0fBo .framer-srggpo { order: 1; padding: 15px 0px 25px 0px; width: 92%; } .framer-r0fBo .framer-um0snr-container, .framer-r0fBo .framer-1u14tox-container { flex: 1 0 0px; height: 44px; width: 1px; } .framer-r0fBo .framer-1fffjcv { background-color: #ffffff; flex-direction: column; gap: 20px; order: 3; width: 380px; } .framer-r0fBo .framer-p8ldn7 { background-color: #f6f6f6; height: 278px; padding: 15px; width: 95%; } .framer-r0fBo .framer-59ducv-container { width: 97%; } .framer-r0fBo .framer-1fwvj0p { height: 496px; } .framer-r0fBo .framer-1llvz9-container { width: 95%; } .framer-r0fBo .framer-12c2tcj { --border-bottom-width: 1px; --border-color: #ededed; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; background-color: #ffffff; order: 5; padding: 30px 15px 30px 15px; } .framer-r0fBo .framer-b3g8tp { gap: 14px; max-width: 100%; width: 100%; } .framer-r0fBo .framer-kv8kfy, .framer-r0fBo .framer-1pebxmg, .framer-r0fBo .framer-14xsega, .framer-r0fBo .framer-vwx25l { aspect-ratio: 1.355140186915888 / 1; height: var(--framer-aspect-ratio-supported, 210px); width: 285px; } .framer-r0fBo .framer-1ebnhf8 { --border-bottom-width: 1px; --border-color: #ededed; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; background: linear-gradient(180deg, #ffffff 3.3359309016047307%, rgb(235, 238, 242) 100%); order: 7; padding: 30px 15px 30px 15px; } .framer-r0fBo .framer-xehxo7 { flex-direction: column; gap: 15px; width: 100%; } .framer-r0fBo .framer-1il7q9s, .framer-r0fBo .framer-1lzrkg, .framer-r0fBo .framer-619v7o, .framer-r0fBo .framer-sx3wjf, .framer-r0fBo .framer-13vaw4a, .framer-r0fBo .framer-45x6w7 { width: 100%; } .framer-r0fBo .framer-bv9c2e { align-content: center; align-items: center; gap: 19px; justify-content: center; padding: 230px 15px 20px 15px; } .framer-r0fBo .framer-7oku8k, .framer-r0fBo .framer-1lx6zil { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; padding: 12px 17px 12px 17px; } .framer-r0fBo .framer-33d8z5 { align-content: center; align-items: center; padding: 250px 15px 20px 15px; } .framer-r0fBo .framer-1c1nzo4 { order: 8; padding: 50px 15px 40px 15px; } .framer-r0fBo .framer-hjazjx { width: 90%; } .framer-r0fBo .framer-1xuzzw7 { justify-content: flex-start; padding: 0px; width: 100%; } .framer-r0fBo .framer-1szqfh, .framer-r0fBo .framer-18hvdez, .framer-r0fBo .framer-yjbyiq, .framer-r0fBo .framer-lz7b1h { gap: 23px; height: 341px; width: 270px; } .framer-r0fBo .framer-1ugw4kq { height: var(--framer-aspect-ratio-supported, 90px); width: 100px; } .framer-r0fBo .framer-e9n1kn { height: var(--framer-aspect-ratio-supported, 90px); width: 89px; } .framer-r0fBo .framer-dx6wms { height: var(--framer-aspect-ratio-supported, 90px); width: 106px; } .framer-r0fBo .framer-zf746g { gap: 18px; order: 6; padding: 40px 15px 20px 15px; } .framer-r0fBo .framer-18k179i { width: 321px; } .framer-r0fBo .framer-1mw2rl2 { gap: 17px; justify-content: flex-start; padding: 5px 0px 10px 0px; width: 100%; } .framer-r0fBo .framer-1fjxk43, .framer-r0fBo .framer-umrn2f, .framer-r0fBo .framer-1iyyxs8 { height: 200px; width: 330px; } .framer-r0fBo .framer-c1kgyo { gap: 15px; height: 217px; padding: 25px 10px 15px 10px; } .framer-r0fBo .framer-1d32ima, .framer-r0fBo .framer-mk7f0i, .framer-r0fBo .framer-qzrppd { width: 310px; } .framer-r0fBo .framer-ajeetw { gap: 15px; height: 217px; padding: 30px 10px 15px 10px; } .framer-r0fBo .framer-1evhio7 { gap: 15px; height: 217px; padding: 35px 10px 15px 10px; } .framer-r0fBo .framer-nircag { background: linear-gradient(0deg, #ffffff 24%, rgb(235, 238, 242) 59%); background-color: unset; order: 9; padding: 20px 15px 20px 15px; } .framer-r0fBo .framer-fctlr4 { flex-direction: column; gap: 10px; padding: 0px 0px 10px 0px; width: 100%; } .framer-r0fBo .framer-o0g8db { align-self: unset; flex: none; height: 229px; width: 100%; } .framer-r0fBo .framer-193epb5 { padding: 25px 0px 0px 0px; width: 100%; } .framer-r0fBo .framer-1uzzv8b { align-content: center; align-items: center; align-self: unset; gap: 20px; justify-content: center; width: 342px; } .framer-r0fBo .framer-t1i3vp-container { height: 44px; order: 2; } .framer-r0fBo .framer-7fqgdt { order: 10; padding: 30px 15px 20px 15px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3819\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MnUmquRE1\":{\"layout\":[\"fixed\",\"auto\"]},\"ihwhcam2O\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vaQoJiy4q\":{\"pattern\":\":vaQoJiy4q\",\"name\":\"education\"},\"OoyzTYZUm\":{\"pattern\":\":OoyzTYZUm\",\"name\":\"community\"},\"M5kM0idQY\":{\"pattern\":\":M5kM0idQY\",\"name\":\"donate\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-r0fBo\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3819,width:1400};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"google\",style:\"normal\",uiFamilyName:\"Inter\",url:\"https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"google\",style:\"normal\",uiFamilyName:\"Inter\",url:\"https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/aqiiD4LUKkKzXdjGL5UzHq8bo5w.woff2\",weight:\"300\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...NavigationFonts,...Button6Fonts,...EmbedFonts,...YouTubeFonts,...Embed1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1400\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"vaQoJiy4q\\\":{\\\"pattern\\\":\\\":vaQoJiy4q\\\",\\\"name\\\":\\\"education\\\"},\\\"OoyzTYZUm\\\":{\\\"pattern\\\":\\\":OoyzTYZUm\\\",\\\"name\\\":\\\"community\\\"},\\\"M5kM0idQY\\\":{\\\"pattern\\\":\\\":M5kM0idQY\\\",\\\"name\\\":\\\"donate\\\"}}\",\"framerIntrinsicHeight\":\"3819\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MnUmquRE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ihwhcam2O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}