{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/a2czO1GYxsp2ZJdQK9Bn/3iCXbWLsDSZaETRzp9gi/Counter1.js", "ssg:https://framerusercontent.com/modules/vJ5KycA0qwZBpC2MUJd4/pk5Y7F06GOfDpCnphpFc/Pma0wirnj.js", "ssg:https://framerusercontent.com/modules/tPwIRSEvqdlReXlLIa1x/YePVbfb8wl2M1ecA07M9/H07toMrPI.js", "ssg:https://framerusercontent.com/modules/ygXioU3Yd2vrH5gfmBnu/6PhZF8N3H6RrHdB6u6fw/Hwq2pePY3.js", "ssg:https://framerusercontent.com/modules/dmUqbqMwKPIvjYJhDhZz/Jx2sndPgedIPRyJzrbNu/vHgfkdNa0.js", "ssg:https://framerusercontent.com/modules/5wAnpKsx01SRnL4U4WHr/PPPqPCa4XuW0QVfkscAO/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;if(count<end){setCount(prevCount=>parseFloat((prevCount+increment).toFixed(1)));}else if(loop){setCount(start);}};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Outfit-600\",\"GF;Outfit-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4S-EiAou6Y.woff2\",weight:\"900\"}]}];export const css=['.framer-CFpf4 .framer-styles-preset-cnuc6v:not(.rich-text-wrapper), .framer-CFpf4 .framer-styles-preset-cnuc6v.rich-text-wrapper h6 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 1.32em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, #0c0c3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-CFpf4 .framer-styles-preset-cnuc6v:not(.rich-text-wrapper), .framer-CFpf4 .framer-styles-preset-cnuc6v.rich-text-wrapper h6 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 1.32em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, #0c0c3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-CFpf4 .framer-styles-preset-cnuc6v:not(.rich-text-wrapper), .framer-CFpf4 .framer-styles-preset-cnuc6v.rich-text-wrapper h6 { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 1.32em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, #0c0c3c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-CFpf4\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Counter}from\"https://framerusercontent.com/modules/a2czO1GYxsp2ZJdQK9Bn/3iCXbWLsDSZaETRzp9gi/Counter1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vJ5KycA0qwZBpC2MUJd4/pk5Y7F06GOfDpCnphpFc/Pma0wirnj.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sfNAqH03HjkYGouQCs6H/hlVPC8dOjryImbzBbOGz/u7Z0uY721.js\";const CounterFonts=getFonts(Counter);const cycleOrder=[\"AokBdqaAy\",\"T6Kf0gNzG\",\"hbMWxBO7Y\",\"Ewo2JT8hD\",\"e6uYk43n8\",\"TFYiDCrse\"];const serializationHash=\"framer-McwbQ\";const variantClassNames={AokBdqaAy:\"framer-v-177qlx2\",e6uYk43n8:\"framer-v-62yb35\",Ewo2JT8hD:\"framer-v-m0i4tr\",hbMWxBO7Y:\"framer-v-8iwfvs\",T6Kf0gNzG:\"framer-v-1a8rk39\",TFYiDCrse:\"framer-v-153qat\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Client Stats\":\"hbMWxBO7Y\",\"Only Number - Desktop\":\"Ewo2JT8hD\",\"Only Number - Phone\":\"TFYiDCrse\",\"Only Number - Tablet\":\"e6uYk43n8\",Center:\"T6Kf0gNzG\",Default:\"AokBdqaAy\"};const getProps=({endNumber,height,id,text,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,ICqotSctS:(_ref=text!==null&&text!==void 0?text:props.ICqotSctS)!==null&&_ref!==void 0?_ref:\"Happy Clients\",Ke261DEj7:(_ref1=endNumber!==null&&endNumber!==void 0?endNumber:props.Ke261DEj7)!==null&&_ref1!==void 0?_ref1:10,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"AokBdqaAy\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ICqotSctS,Ke261DEj7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AokBdqaAy\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ewo2JT8hD\",\"e6uYk43n8\",\"TFYiDCrse\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-177qlx2\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"AokBdqaAy\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({e6uYk43n8:{\"data-framer-name\":\"Only Number - Tablet\"},Ewo2JT8hD:{\"data-framer-name\":\"Only Number - Desktop\"},hbMWxBO7Y:{\"data-framer-name\":\"Client Stats\"},T6Kf0gNzG:{\"data-framer-name\":\"Center\"},TFYiDCrse:{\"data-framer-name\":\"Only Number - Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-arwi40-container\",layoutDependency:layoutDependency,layoutId:\"yZg3GLJpg-container\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:Ke261DEj7,gapSize:4,height:\"100%\",id:\"yZg3GLJpg\",incrementType:\"integer\",layoutId:\"yZg3GLJpg\",loop:false,prefixColor:\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\",prefixFont:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},speed:15,start:0,startOnViewport:true,suffixColor:\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\",suffixFont:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"+\",textColor:\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\",textSize:40,width:\"100%\",...addPropertyOverrides({e6uYk43n8:{speed:100,style:{width:\"100%\"},textSize:70},Ewo2JT8hD:{speed:100,style:{width:\"100%\"},textSize:110},hbMWxBO7Y:{gapSize:0,prefixColor:\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\",selectedFont:{fontFamily:'\"Outfit\", \"Outfit Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},suffixColor:\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\",suffixText:\"K+\",textColor:\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\",textSize:24},T6Kf0gNzG:{textSize:34},TFYiDCrse:{speed:100,textSize:56}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1trsdky\",\"data-styles-preset\":\"u7Z0uY721\",children:\"Client Projects Completed.\"})}),className:\"framer-j0vq2u\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O7luHGOjy\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ICqotSctS,variants:{hbMWxBO7Y:{\"--extracted-1w1cjl5\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hbMWxBO7Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-cnuc6v\",\"data-styles-preset\":\"Pma0wirnj\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60)))\"},children:\"Happy Clients\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-McwbQ.framer-1a0kxl7, .framer-McwbQ .framer-1a0kxl7 { display: block; }\",\".framer-McwbQ.framer-177qlx2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-McwbQ .framer-arwi40-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-McwbQ .framer-j0vq2u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McwbQ.framer-177qlx2 { gap: 0px; } .framer-McwbQ.framer-177qlx2 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-McwbQ.framer-177qlx2 > :first-child { margin-top: 0px; } .framer-McwbQ.framer-177qlx2 > :last-child { margin-bottom: 0px; } }\",\".framer-McwbQ.framer-v-1a8rk39.framer-177qlx2 { gap: 3px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McwbQ.framer-v-1a8rk39.framer-177qlx2 { gap: 0px; } .framer-McwbQ.framer-v-1a8rk39.framer-177qlx2 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-McwbQ.framer-v-1a8rk39.framer-177qlx2 > :first-child { margin-top: 0px; } .framer-McwbQ.framer-v-1a8rk39.framer-177qlx2 > :last-child { margin-bottom: 0px; } }\",\".framer-McwbQ.framer-v-m0i4tr .framer-arwi40-container, .framer-McwbQ.framer-v-62yb35 .framer-arwi40-container { align-self: stretch; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 111\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"T6Kf0gNzG\":{\"layout\":[\"auto\",\"auto\"]},\"hbMWxBO7Y\":{\"layout\":[\"auto\",\"auto\"]},\"Ewo2JT8hD\":{\"layout\":[\"auto\",\"auto\"]},\"e6uYk43n8\":{\"layout\":[\"auto\",\"auto\"]},\"TFYiDCrse\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ICqotSctS\":\"text\",\"Ke261DEj7\":\"endNumber\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerH07toMrPI=withCSS(Component,css,\"framer-McwbQ\");export default FramerH07toMrPI;FramerH07toMrPI.displayName=\"Widget / Stats\";FramerH07toMrPI.defaultProps={height:86,width:111};addPropertyControls(FramerH07toMrPI,{variant:{options:[\"AokBdqaAy\",\"T6Kf0gNzG\",\"hbMWxBO7Y\",\"Ewo2JT8hD\",\"e6uYk43n8\",\"TFYiDCrse\"],optionTitles:[\"Default\",\"Center\",\"Client Stats\",\"Only Number - Desktop\",\"Only Number - Tablet\",\"Only Number - Phone\"],title:\"Variant\",type:ControlType.Enum},ICqotSctS:{defaultValue:\"Happy Clients\",displayTextArea:false,title:\"Text\",type:ControlType.String},Ke261DEj7:{defaultValue:10,displayStepper:true,title:\"End Number\",type:ControlType.Number}});addFonts(FramerH07toMrPI,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EUV6IZMPXOYBUY6KFIXKZWM47ESY5XYA/BLW2AGODUKQKRMYEVOEMMPY2ITRKBJIP/OKGWSU2PUNNFKQVFV2XFOSAHRXYREMR2.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LLL2G3NRT7NQD2GKJUPGXM7TQ2DC6HXX/PW5PSBLUQB3EYD5A5UFT4XOSWCSQOKTH/P65L7VCWZE3ZYHD2XJZ2WDLQCATH7Y3R.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH07toMrPI\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ICqotSctS\\\":\\\"text\\\",\\\"Ke261DEj7\\\":\\\"endNumber\\\"}\",\"framerIntrinsicWidth\":\"111\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"86\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T6Kf0gNzG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hbMWxBO7Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ewo2JT8hD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"e6uYk43n8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TFYiDCrse\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H07toMrPI.map", "// Generated by Framer (e4277c8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Outfit-regular\",\"GF;Outfit-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"}]}];export const css=['.framer-WgB1t .framer-styles-preset-10cgyc3:not(.rich-text-wrapper), .framer-WgB1t .framer-styles-preset-10cgyc3.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0px; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bce18c36-8dd1-4668-bd74-0f6bc9de37af, #525257); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 0px) { .framer-WgB1t .framer-styles-preset-10cgyc3:not(.rich-text-wrapper), .framer-WgB1t .framer-styles-preset-10cgyc3.rich-text-wrapper p { --framer-font-family: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-family-bold: \"Outfit\", \"Outfit Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0px; --framer-line-height: 1.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-bce18c36-8dd1-4668-bd74-0f6bc9de37af, #525257); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-WgB1t\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ygXioU3Yd2vrH5gfmBnu/6PhZF8N3H6RrHdB6u6fw/Hwq2pePY3.js\";const serializationHash=\"framer-bPOuv\";const variantClassNames={roGR477m1:\"framer-v-14z1bqd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{var _ref;return{...props,Xchc4X_TE:(_ref=text!==null&&text!==void 0?text:props.Xchc4X_TE)!==null&&_ref!==void 0?_ref:\"Research beyond the business plan.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Xchc4X_TE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"roGR477m1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14z1bqd\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"roGR477m1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-171knqb\",\"data-framer-name\":\"Bullet\",layoutDependency:layoutDependency,layoutId:\"Q1LSXG2xW\",style:{backgroundColor:\"rgb(123, 120, 247)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10cgyc3\",\"data-styles-preset\":\"Hwq2pePY3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60)))\"},children:\"Research beyond the business plan.\"})}),className:\"framer-52cm0d\",\"data-framer-name\":\"Research beyond the business plan.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rgh9F9hAM\",style:{\"--extracted-r6o4lv\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\",\"--framer-paragraph-spacing\":\"0px\"},text:Xchc4X_TE,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bPOuv.framer-l1ofpo, .framer-bPOuv .framer-l1ofpo { display: block; }\",\".framer-bPOuv.framer-14z1bqd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 422px; }\",\".framer-bPOuv .framer-171knqb { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-bPOuv .framer-52cm0d { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bPOuv.framer-14z1bqd { gap: 0px; } .framer-bPOuv.framer-14z1bqd > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bPOuv.framer-14z1bqd > :first-child { margin-left: 0px; } .framer-bPOuv.framer-14z1bqd > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 422\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Xchc4X_TE\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervHgfkdNa0=withCSS(Component,css,\"framer-bPOuv\");export default FramervHgfkdNa0;FramervHgfkdNa0.displayName=\"List Item\";FramervHgfkdNa0.defaultProps={height:36,width:422};addPropertyControls(FramervHgfkdNa0,{Xchc4X_TE:{defaultValue:\"Research beyond the business plan.\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramervHgfkdNa0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervHgfkdNa0\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Xchc4X_TE\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"422\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vHgfkdNa0.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js\";import CTASection from\"#framer/local/canvasComponent/Ar1VO74kq/Ar1VO74kq.js\";import CommonFooterSection from\"#framer/local/canvasComponent/E1S6KQiEj/E1S6KQiEj.js\";import GetTemplateButton from\"#framer/local/canvasComponent/foSouec_1/foSouec_1.js\";import WidgetStats from\"#framer/local/canvasComponent/H07toMrPI/H07toMrPI.js\";import BrandTicker from\"#framer/local/canvasComponent/lrzvojUkf/lrzvojUkf.js\";import CardProject from\"#framer/local/canvasComponent/NstUYkiNt/NstUYkiNt.js\";import Fill from\"#framer/local/canvasComponent/Qk6rtyRR6/Qk6rtyRR6.js\";import PrimaryHeader from\"#framer/local/canvasComponent/UBNgIKIYD/UBNgIKIYD.js\";import CardService from\"#framer/local/canvasComponent/usR2f7hbD/usR2f7hbD.js\";import ListItem from\"#framer/local/canvasComponent/vHgfkdNa0/vHgfkdNa0.js\";import Projects from\"#framer/local/collection/yMAJ3Cmj4/yMAJ3Cmj4.js\";import*as sharedStyle3 from\"#framer/local/css/gVYlgTLg_/gVYlgTLg_.js\";import*as sharedStyle4 from\"#framer/local/css/hIhnsZsfC/hIhnsZsfC.js\";import*as sharedStyle1 from\"#framer/local/css/Hwq2pePY3/Hwq2pePY3.js\";import*as sharedStyle2 from\"#framer/local/css/kZFFTtZU1/kZFFTtZU1.js\";import*as sharedStyle from\"#framer/local/css/uzhET3lN6/uzhET3lN6.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const PrimaryHeaderFonts=getFonts(PrimaryHeader);const FillFonts=getFonts(Fill);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithFX=withFX(RichText);const BrandTickerFonts=getFonts(BrandTicker);const CardServiceFonts=getFonts(CardService);const WidgetStatsFonts=getFonts(WidgetStats);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const ListItemFonts=getFonts(ListItem);const ArcFonts=getFonts(Arc);const ContainerWithFX=withFX(Container);const CardProjectFonts=getFonts(CardProject);const CTASectionFonts=getFonts(CTASection);const CommonFooterSectionFonts=getFonts(CommonFooterSection);const GetTemplateButtonFonts=getFonts(GetTemplateButton);const breakpoints={cg3iA2OCV:\"(max-width: 809px)\",TL84SKW_6:\"(min-width: 810px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-L2XpI\";const variantClassNames={cg3iA2OCV:\"framer-v-nw1o55\",TL84SKW_6:\"framer-v-yf0k5l\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={delay:.05,duration:.2,ease:[0,0,1,1],type:\"tween\"};const textEffect={effect:animation,repeat:false,startDelay:.3,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transition2={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:60};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition4={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const transition5={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"WQLkyLRf1\",Phone:\"cg3iA2OCV\",Tablet:\"TL84SKW_6\"};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,xz1YVVtjyWVtc7uMPm,Mb8rcYLXuWVtc7uMPm,yS8ptYNN4WVtc7uMPm,SxWTM7xYYWVtc7uMPm,idWVtc7uMPm,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"cg3iA2OCV\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"cg3iA2OCV\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"zYHZh6pOw\");const ref1=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: var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k1t86k-container\",layoutScroll:true,nodeId:\"cYLgIOToD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"HvJd4aiph\"},TL84SKW_6:{variant:\"eK4TpRAZ0\"}},children:/*#__PURE__*/_jsx(PrimaryHeader,{height:\"100%\",id:\"cYLgIOToD\",layoutId:\"cYLgIOToD\",style:{width:\"100%\"},variant:\"LHvT2kHW6\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-an4zlz\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{background:{alt:\"Modern House\",fit:\"fill\",intrinsicHeight:2975,intrinsicWidth:4460,pixelHeight:2304,pixelWidth:3072,sizes:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg\",srcSet:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg 3072w\"}},TL84SKW_6:{background:{alt:\"Modern House\",fit:\"fill\",intrinsicHeight:2975,intrinsicWidth:4460,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+115+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,src:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg\",srcSet:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg 3072w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Modern House\",fit:\"fill\",intrinsicHeight:2975,intrinsicWidth:4460,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+170+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg\",srcSet:\"https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GytQE8n6Zqbxn5DMSYXljc4pKA.jpeg 3072w\"},className:\"framer-dev9bx\",\"data-framer-name\":\"Hero Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1td8z8s\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-coetqg\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.0135135em\",\"--framer-line-height\":\"1.08em\",\"--framer-text-color\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"},children:\"Bringing smiles through sports\"})}),fonts:[\"GF;Outfit-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1dlrk0r\",\"data-styles-preset\":\"uzhET3lN6\",children:\"Bringing smiles through sports\"})}),className:\"framer-1170zh9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cgyc3\",\"data-styles-preset\":\"Hwq2pePY3\",children:\"Every child deserves the joy of play. At Kicking for a Dream, we believe that something as simple as a soccer ball can change lives. \"})}),className:\"framer-1tluf8q hidden-nw1o55\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cgyc3\",\"data-styles-preset\":\"Hwq2pePY3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Every child deserves the joy of play. At Kicking for a Dream, we believe that something as simple as a soccer ball can change lives. \"})}),className:\"framer-1ntzyfa hidden-72rtr7 hidden-yf0k5l\",\"data-framer-name\":\"Paragarph\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-misi74\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Yl6oeoo1a\"},implicitPathVariables:undefined},{href:{webPageId:\"Yl6oeoo1a\"},implicitPathVariables:undefined},{href:{webPageId:\"Yl6oeoo1a\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{y:undefined},TL84SKW_6:{y:(componentViewport?.y||0)+0+0+1200-436+32+268+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+0+1200-444+32+268+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-h6ssrs-container\",\"data-framer-appear-id\":\"h6ssrs\",initial:animation2,nodeId:\"JCTQQMNmz\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"UCGAftVdo\",VX1SpKmrW:resolvedLinks[2]},TL84SKW_6:{variant:\"UCGAftVdo\",VX1SpKmrW:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Fill,{height:\"100%\",id:\"JCTQQMNmz\",layoutId:\"JCTQQMNmz\",rQ4QN2KdD:\"Discover More\",variant:\"tzUlCHV30\",VX1SpKmrW:resolvedLinks[0],width:\"100%\"})})})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ex6olm\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gsam0n\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fp9jhh\",\"data-framer-name\":\"Brand Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ik5nv4\",\"data-framer-name\":\"Title Wrap\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lt8d66 hidden-nw1o55\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"},children:\"Our impact in different countries\"})}),className:\"framer-198wq5n\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qasgzk hidden-nw1o55\",\"data-framer-name\":\"Divider\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px), 400px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+1200+80+0+0+75.84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px)`,y:(componentViewport?.y||0)+0+1200+120+0+0+95.84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdd8u-container\",nodeId:\"izIwTHeQU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"u9Rt3jeVC\"},TL84SKW_6:{variant:\"u9Rt3jeVC\"}},children:/*#__PURE__*/_jsx(BrandTicker,{height:\"100%\",id:\"izIwTHeQU\",layoutId:\"izIwTHeQU\",style:{width:\"100%\"},variant:\"cjuuKzGkk\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1khsg92\",\"data-framer-name\":\"Service Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wu0wwz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xswavz\",\"data-framer-name\":\"Service Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",style:{\"--framer-text-alignment\":\"left\"},children:\"How can you help\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",style:{\"--framer-text-alignment\":\"center\"},children:\"How can you help\"})}),className:\"framer-41zaj2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ygu453\",\"data-framer-name\":\"Service Card Deck\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zB9cwNAs3:\"football-and-soccer-ball-bank\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"EFCygQcOL\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"football-and-soccer-ball-bank\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"EFCygQcOL\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"football-and-soccer-ball-bank\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"EFCygQcOL\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1481.84+80+0+0+108.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1581.84+120+0+0+128.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16i11h1-container\",nodeId:\"ZX2SMDIdy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{An70tPw34:resolvedLinks1[2],variant:\"pCdMUrVxR\"},TL84SKW_6:{An70tPw34:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardService,{An70tPw34:resolvedLinks1[0],height:\"100%\",iC_8EPay6:\"We take donations from local businesses and individuals who believe in our mission\",id:\"ZX2SMDIdy\",layoutId:\"ZX2SMDIdy\",LblfkdwBJ:addImageAlt({src:\"https://framerusercontent.com/images/m3RtSwgQNMCxhWroeG9oMgsTn2w.png\"},\"\"),P_KKp5KWr:\"Football & Soccer Ball Bank\",style:{width:\"100%\"},variant:\"VFSaJ8L5L\",width:\"100%\",ZxE7LdTza:24,zyK9sCkoZ:92})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zB9cwNAs3:\"volunteer-services\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"eD8ePEXu3\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"volunteer-services\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"eD8ePEXu3\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"volunteer-services\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"eD8ePEXu3\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1481.84+80+0+0+108.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1581.84+120+0+0+128.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dnzngm-container\",nodeId:\"gFb2eXQmR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{An70tPw34:resolvedLinks2[2]},TL84SKW_6:{An70tPw34:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(CardService,{An70tPw34:resolvedLinks2[0],height:\"100%\",iC_8EPay6:\"We mobilize our teams of volunteers to make a real difference. Join us.\",id:\"gFb2eXQmR\",layoutId:\"gFb2eXQmR\",LblfkdwBJ:addImageAlt({src:\"https://framerusercontent.com/images/2G8HRf6q2JhXl0Bmqkth7ph9XHg.png\"},\"\"),P_KKp5KWr:\"Volunteer Services\",style:{width:\"100%\"},variant:\"VFSaJ8L5L\",width:\"100%\",ZxE7LdTza:24,zyK9sCkoZ:92})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{zB9cwNAs3:\"community-connections\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"Jnv4iwqSu\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"community-connections\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"Jnv4iwqSu\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined},{href:{pathVariables:{zB9cwNAs3:\"community-connections\"},unresolvedPathSlugs:{zB9cwNAs3:{collectionId:\"L6VarVMUN\",collectionItemId:\"Jnv4iwqSu\"}},webPageId:\"nHG4XofYi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1481.84+80+0+0+108.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:403,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+1581.84+120+0+0+128.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ok0p3-container\",nodeId:\"FFGS8oH8x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{An70tPw34:resolvedLinks3[2],variant:\"pCdMUrVxR\"},TL84SKW_6:{An70tPw34:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(CardService,{An70tPw34:resolvedLinks3[0],height:\"100%\",iC_8EPay6:\"We have several partnerships with business, churches and individuals who help us.\",id:\"FFGS8oH8x\",layoutId:\"FFGS8oH8x\",LblfkdwBJ:addImageAlt({src:\"https://framerusercontent.com/images/mGW5xY34vvAlcjPWnZzAVTlEFo0.png\"},\"\"),P_KKp5KWr:\"Community Connections\",style:{width:\"100%\"},variant:\"VFSaJ8L5L\",width:\"100%\",ZxE7LdTza:24,zyK9sCkoZ:92})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BPn6B1xHk\"},implicitPathVariables:undefined},{href:{webPageId:\"BPn6B1xHk\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{height:52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-i0bod7-container hidden-72rtr7 hidden-yf0k5l\",\"data-framer-appear-id\":\"i0bod7\",initial:animation2,nodeId:\"SW48G1Eat\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{VX1SpKmrW:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Fill,{height:\"100%\",id:\"SW48G1Eat\",layoutId:\"SW48G1Eat\",rQ4QN2KdD:\"All Services\",variant:\"epvcg6mam\",VX1SpKmrW:resolvedLinks4[0],width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-22jr4\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1pnd4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10v5nll\",\"data-framer-name\":\"About Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nki462\",\"data-framer-name\":\"About Text Block Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Changing Lives, One Ball at a Time\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",children:\"Changing Lives, One Ball at a Time\"})}),className:\"framer-kk0hp3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pa5e24\",\"data-framer-name\":\"About Text Block\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vkkcak\",\"data-framer-name\":\"Stats Block\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{y:undefined},TL84SKW_6:{y:(componentViewport?.y||0)+0+2233.24+80+0+0+566+0+98.4+38+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,y:(componentViewport?.y||0)+0+2453.24+120+0+140.8+0+116.4+20.08+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-byt5nj-container\",nodeId:\"HxLW4plVl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"TFYiDCrse\"},TL84SKW_6:{variant:\"e6uYk43n8\"}},children:/*#__PURE__*/_jsx(WidgetStats,{height:\"100%\",ICqotSctS:\"Happy Clients\",id:\"HxLW4plVl\",Ke261DEj7:16,layoutId:\"HxLW4plVl\",variant:\"Ewo2JT8hD\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\"},children:[\"Years\",/*#__PURE__*/_jsx(\"br\",{}),\"experience.\"]})})},TL84SKW_6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\"},children:[\"Years\",/*#__PURE__*/_jsx(\"br\",{}),\"experience.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, rgb(123, 120, 247))\"},children:\"Years chaning lives.\"})}),className:\"framer-w9qmln\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bce18c36-8dd1-4668-bd74-0f6bc9de37af, rgb(82, 82, 87))\"},children:\"Our mission is to provide soccer and footballs to children in underprivileged communities around the world, giving them the opportunity to play, learn teamwork, and dream big.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",style:{\"--framer-text-color\":\"var(--token-bce18c36-8dd1-4668-bd74-0f6bc9de37af, rgb(82, 82, 87))\"},children:\"Our mission is to provide soccer and footballs to children in underprivileged communities around the world, giving them the opportunity to play, learn teamwork, and dream big.\"})}),className:\"framer-11cd20y\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d50ghf\",\"data-framer-name\":\"Image Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{background:{alt:\"About Image\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1398,pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px) * 0.8219)`,src:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg 3072w\"}},TL84SKW_6:{background:{alt:\"About Image\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1398,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2233.24+80+0+0+0+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) * 0.5749)`,src:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg 3072w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"About Image\",fit:\"fill\",intrinsicHeight:1908,intrinsicWidth:1398,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2453.24+120+0+0+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.3596)`,src:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5BYVtRjHa03Mz9sTO8edsSaXP4.jpeg 3072w\"},className:\"framer-1javqpv\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8g5en\",\"data-framer-name\":\"About Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6nmrij\",\"data-framer-name\":\"Icon Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10cgyc3\",\"data-styles-preset\":\"Hwq2pePY3\",style:{\"--framer-text-color\":\"var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, rgb(255, 255, 255))\"},children:\"Panama City, Panama\"})}),className:\"framer-os8ei5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t7sbto\",\"data-framer-name\":\"Text Block\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",children:\"Aldeas Infantiles SOS\"})}),className:\"framer-8amg9i\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-13d7mb7\",\"data-framer-name\":\"Content Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p7c7aw\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1mnvy\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"},children:\"With every ball donated, we create moments of happiness, foster leadership skills, and inspire a new generation of athletes.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-e3slz2\",\"data-styles-preset\":\"kZFFTtZU1\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"},children:\"With every ball donated, we create moments of happiness, foster leadership skills, and inspire a new generation of athletes.\"})}),className:\"framer-18phjhm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f7v16n\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y9xxmy\",\"data-framer-name\":\"Accordion Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",style:{\"--framer-text-color\":\"var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, rgb(12, 12, 60))\"},children:\"Be Part of the Change\"})}),className:\"framer-1wm0nrx\",\"data-framer-name\":\"Ttile\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19dat3z\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wghf1j\",\"data-framer-name\":\"Text Block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",children:[\"We\u2019ve delivered sports balls to schools, orphanages, and youth programs. At \",/*#__PURE__*/_jsx(\"strong\",{children:\"Kicking for a Dream\"}),\", we believe that small actions can create big impact. You can make a difference in the lives of children through sports.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Ways to Get Involved:\"})})]}),className:\"framer-ue7wix\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ambgf\",\"data-framer-name\":\"List Item Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+600+0+96.4+0+0+0+360+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.4429)`,y:(componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+34.2+0+0+0+360+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16jjlkv-container\",nodeId:\"Ycr7HzAbX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{height:\"100%\",id:\"Ycr7HzAbX\",layoutId:\"Ycr7HzAbX\",style:{width:\"100%\"},width:\"100%\",Xchc4X_TE:\"Donate a Ball \u2013 Give the gift of play to a child in need.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+600+0+96.4+0+0+0+360+0+48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.4429)`,y:(componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+34.2+0+0+0+360+0+48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q1d2c9-container\",nodeId:\"bP6FTZJDf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{height:\"100%\",id:\"bP6FTZJDf\",layoutId:\"bP6FTZJDf\",style:{width:\"100%\"},width:\"100%\",Xchc4X_TE:\"Spread the Word \u2013 Share our mission and help us reach more communities.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+600+0+96.4+0+0+0+360+0+96}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.4429)`,y:(componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+34.2+0+0+0+360+0+96,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jwcr9x-container\",nodeId:\"Dfi2NkGl6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{height:\"100%\",id:\"Dfi2NkGl6\",layoutId:\"Dfi2NkGl6\",style:{width:\"100%\"},width:\"100%\",Xchc4X_TE:\"Volunteer \u2013 Whether online or in-person, your time makes a difference.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+600+0+96.4+0+0+0+360+0+144}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.4429)`,y:(componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+34.2+0+0+0+360+0+144,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jp36w-container\",nodeId:\"qznq77JvR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{height:\"100%\",id:\"qznq77JvR\",layoutId:\"qznq77JvR\",style:{width:\"100%\"},width:\"100%\",Xchc4X_TE:\"Corporate & Community Partnerships \u2013 Let\u2019s team up to expand our impact.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+600+0+96.4+0+0+0+360+0+192}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.4429)`,y:(componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+34.2+0+0+0+360+0+192,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cvd8k-container\",nodeId:\"AW5AWMqOE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ListItem,{height:\"100%\",id:\"AW5AWMqOE\",layoutId:\"AW5AWMqOE\",style:{width:\"100%\"},width:\"100%\",Xchc4X_TE:\"Every kick counts. Every ball matters. Every dream deserves a chance.\"})})})})]})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bhlprs\",\"data-framer-name\":\"Image Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fmnmvv\",\"data-border\":true,\"data-framer-name\":\"Arc Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{background:{alt:\"\",fit:\"fill\",pixelHeight:75,pixelWidth:75,src:\"https://framerusercontent.com/images/X00GO9u96S6i8ibpxkhHhA7o.svg\"}},TL84SKW_6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+0+308+52.497),pixelHeight:75,pixelWidth:75,src:\"https://framerusercontent.com/images/X00GO9u96S6i8ibpxkhHhA7o.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+308+52.497),pixelHeight:75,pixelWidth:75,src:\"https://framerusercontent.com/images/X00GO9u96S6i8ibpxkhHhA7o.svg\"},className:\"framer-1l94ly9\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-167ogay-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h22klFfMC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:5,animateEnd:150,animateStart:-50,color:\"var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, rgb(255, 255, 255))\",cylinderHeight:0,flip:false,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",letterSpacing:\"0.13em\",lineHeight:\"1em\"},height:\"100%\",id:\"h22klFfMC\",layoutId:\"h22klFfMC\",rotate:true,rotateSpeed:5,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"kicking for a drem . get involved now .\",type:\"circle\",width:\"100%\",wordSpacing:0})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ba75jl\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{background:{alt:\"Content Image\",fit:\"fill\",pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px) * 0.4677)`,src:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg\",srcSet:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg 3072w\"}},TL84SKW_6:{background:{alt:\"Content Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+0+0+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) * 0.2806)`,src:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg\",srcSet:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg 3072w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Content Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+0),pixelHeight:2304,pixelWidth:3072,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.2346)`,src:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg\",srcSet:\"https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bADI1eljDYLvgHTAI3SzKK1jw.jpeg 3072w\"},className:\"framer-18mha24\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5ruh3\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{background:{alt:\"Content Image\",fit:\"fill\",pixelHeight:3072,pixelWidth:2304,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px) * 0.4677)`,src:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg\",srcSet:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg 3072w\"}},TL84SKW_6:{background:{alt:\"Content Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3219.64+80+0+0+75.84+0+0+0+0+30),pixelHeight:3072,pixelWidth:2304,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px) * 0.2806)`,src:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg\",srcSet:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg 3072w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Content Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3253.24+120+0+0+115.84+0+0+0+30),pixelHeight:3072,pixelWidth:2304,sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) * 0.2346)`,src:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg\",srcSet:\"https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MSrvqeJMmHyGkZV0EMemKO76KA0.jpeg 3072w\"},className:\"framer-zrau1t\",\"data-framer-name\":\"Image\"})})})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ibwj78\",\"data-framer-name\":\"Project Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgg23j\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17wfpeh\",\"data-framer-name\":\"Project Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckmda\",\"data-framer-name\":\"Section Heading Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL84SKW_6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",style:{\"--framer-text-alignment\":\"left\"},children:\"Who we have helped\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-10gaqt6\",\"data-styles-preset\":\"gVYlgTLg_\",children:\"Who we have helped\"})}),className:\"framer-1r926t1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jl0glb\",\"data-framer-name\":\"Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",style:{\"--framer-text-alignment\":\"left\"},children:\"We visit orphanages, sport centers and schools to give kids the opportunity to play, have fun and learn leadership kills. \"})})},TL84SKW_6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",style:{\"--framer-text-alignment\":\"left\"},children:\"We visit orphanages, sport centers and schools to give kids the opportunity to play, have fun and learn leadership kills. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d5z3ar\",\"data-styles-preset\":\"hIhnsZsfC\",style:{\"--framer-text-alignment\":\"right\"},children:\"We visit orphanages, sport centers and schools to give kids the opportunity to play, have fun and learn leadership kills. \"})}),className:\"framer-16p5abp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tl1NEBY9C\"},implicitPathVariables:undefined},{href:{webPageId:\"tl1NEBY9C\"},implicitPathVariables:undefined},{href:{webPageId:\"tl1NEBY9C\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{y:undefined},TL84SKW_6:{y:(componentViewport?.y||0)+0+4739.88+80+0+0+0+0+84.4+55}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+4169.08+120+0+0+0+0+0+186,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y01xps-container\",nodeId:\"T6AQWbQTJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"UCGAftVdo\",VX1SpKmrW:resolvedLinks5[2]},TL84SKW_6:{variant:\"UCGAftVdo\",VX1SpKmrW:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Fill,{height:\"100%\",id:\"T6AQWbQTJ\",layoutId:\"T6AQWbQTJ\",rQ4QN2KdD:\"All Projects\",variant:\"tzUlCHV30\",VX1SpKmrW:resolvedLinks5[0],width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-81hsax\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WVtc7uMPm\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"WVtc7uMPm\",name:\"xz1YVVtjy\",type:\"Identifier\"},{collection:\"WVtc7uMPm\",name:\"Mb8rcYLXu\",type:\"Identifier\"},{collection:\"WVtc7uMPm\",name:\"yS8ptYNN4\",type:\"Identifier\"},{collection:\"WVtc7uMPm\",name:\"SxWTM7xYY\",type:\"Identifier\"},{collection:\"WVtc7uMPm\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idWVtc7uMPm,Mb8rcYLXu:Mb8rcYLXuWVtc7uMPm,SxWTM7xYY:SxWTM7xYYWVtc7uMPm,xz1YVVtjy:xz1YVVtjyWVtc7uMPm,yS8ptYNN4:yS8ptYNN4WVtc7uMPm},index)=>{xz1YVVtjyWVtc7uMPm??=\"\";Mb8rcYLXuWVtc7uMPm??=\"\";yS8ptYNN4WVtc7uMPm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WVtc7uMPm-${idWVtc7uMPm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Mb8rcYLXu:Mb8rcYLXuWVtc7uMPm},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Mb8rcYLXu:Mb8rcYLXuWVtc7uMPm},webPageId:\"wvuO6DuYd\"},implicitPathVariables:undefined},{href:{pathVariables:{Mb8rcYLXu:Mb8rcYLXuWVtc7uMPm},webPageId:\"wvuO6DuYd\"},implicitPathVariables:undefined},{href:{pathVariables:{Mb8rcYLXu:Mb8rcYLXuWVtc7uMPm},webPageId:\"wvuO6DuYd\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{width:`max(min(${componentViewport?.width||\"100vw\"}, 520px) - 48px, 1px)`,y:undefined},TL84SKW_6:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 810px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+4739.88+80+0+0+286.4+0+1176}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:`max((max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1356px) - 60px, 1px) - 32px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4169.08+120+0+0+298+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-176e0bz-container\",nodeId:\"W7RmF_apU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{nTm8Bfdbd:resolvedLinks6[2],variant:\"E3TcV5gXe\"},TL84SKW_6:{nTm8Bfdbd:resolvedLinks6[1],variant:\"E3TcV5gXe\"}},children:/*#__PURE__*/_jsx(CardProject,{height:\"100%\",id:\"W7RmF_apU\",layoutId:\"W7RmF_apU\",nTm8Bfdbd:resolvedLinks6[0],style:{width:\"100%\"},toUaPGrt3:toResponsiveImage(SxWTM7xYYWVtc7uMPm),variant:\"IrfPDtjk4\",width:\"100%\",XImrUat1h:xz1YVVtjyWVtc7uMPm,yH0jZdDp5:yS8ptYNN4WVtc7uMPm})})})})})})})},idWVtc7uMPm);})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{y:undefined},TL84SKW_6:{y:(componentViewport?.y||0)+0+6722.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5459.08,children:/*#__PURE__*/_jsx(Container,{className:\"framer-129cmns-container\",id:elementId,nodeId:\"zYHZh6pOw\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"uYWJeke53\"},TL84SKW_6:{variant:\"bJqD9NzRE\"}},children:/*#__PURE__*/_jsx(CTASection,{height:\"100%\",id:\"zYHZh6pOw\",layoutId:\"zYHZh6pOw\",style:{width:\"100%\"},uUKm2HHyt:ref1,variant:\"KHwjp5yCV\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{y:undefined},TL84SKW_6:{y:(componentViewport?.y||0)+0+7371.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6108.08,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cl8uet-container\",nodeId:\"MEd9uZsSC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cg3iA2OCV:{variant:\"jnYj5EgYw\"},TL84SKW_6:{variant:\"T_vzpdomv\"}},children:/*#__PURE__*/_jsx(CommonFooterSection,{height:\"100%\",id:\"MEd9uZsSC\",layoutId:\"MEd9uZsSC\",style:{width:\"100%\"},variant:\"HPTC0U4ma\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:888,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ym8of-container\",layoutScroll:true,nodeId:\"l52sTPng4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GetTemplateButton,{height:\"100%\",id:\"l52sTPng4\",layoutId:\"l52sTPng4\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L2XpI.framer-lux5qc, .framer-L2XpI .framer-lux5qc { display: block; }\",\".framer-L2XpI.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-L2XpI .framer-k1t86k-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-L2XpI .framer-an4zlz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 120vh; justify-content: center; overflow: hidden; padding: 170px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-dev9bx { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1td8z8s { align-content: flex-start; align-items: flex-start; background-color: var(--token-700d81d8-5c01-4f8c-a1a8-7ef20da8fff0, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 60px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 60px; max-width: 50%; overflow: visible; padding: 32px; position: absolute; width: 500px; z-index: 1; }\",\".framer-L2XpI .framer-coetqg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1170zh9 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1tluf8q { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1ntzyfa, .framer-L2XpI .framer-kk0hp3, .framer-L2XpI .framer-ue7wix { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-misi74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L2XpI .framer-h6ssrs-container, .framer-L2XpI .framer-i0bod7-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-L2XpI .framer-1ex6olm, .framer-L2XpI .framer-1ibwj78 { align-content: center; align-items: center; background-color: var(--token-cfdb9488-6935-486c-9eaf-5c40b3f6f42f, #f7f8fa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-gsam0n, .framer-L2XpI .framer-wu0wwz, .framer-L2XpI .framer-t1pnd4, .framer-L2XpI .framer-1p7c7aw, .framer-L2XpI .framer-1jgg23j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1356px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1px; z-index: 2; }\",\".framer-L2XpI .framer-1fp9jhh, .framer-L2XpI .framer-17wfpeh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L2XpI .framer-1ik5nv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1lt8d66, .framer-L2XpI .framer-qasgzk { background-color: var(--token-84af5a6d-2da9-4a9d-9a23-f0319ca88874, #c1c1c1); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-L2XpI .framer-198wq5n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 42%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-1vdd8u-container, .framer-L2XpI .framer-16jjlkv-container, .framer-L2XpI .framer-q1d2c9-container, .framer-L2XpI .framer-1jwcr9x-container, .framer-L2XpI .framer-10jp36w-container, .framer-L2XpI .framer-cvd8k-container, .framer-L2XpI .framer-129cmns-container, .framer-L2XpI .framer-1cl8uet-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1khsg92 { align-content: center; align-items: center; background-color: var(--token-cfdb9488-6935-486c-9eaf-5c40b3f6f42f, #f7f8fa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 220px 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-xswavz { align-content: center; align-items: center; background-color: var(--token-cfdb9488-6935-486c-9eaf-5c40b3f6f42f, #f7f8fa); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L2XpI .framer-41zaj2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 48%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-1ygu453 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-16i11h1-container, .framer-L2XpI .framer-1dnzngm-container, .framer-L2XpI .framer-17ok0p3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-L2XpI .framer-22jr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-10v5nll { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L2XpI .framer-1nki462 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 49%; }\",\".framer-L2XpI .framer-pa5e24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1vkkcak { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 33%; }\",\".framer-L2XpI .framer-byt5nj-container, .framer-L2XpI .framer-1y01xps-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-L2XpI .framer-w9qmln { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-11cd20y { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 55%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-1d50ghf { flex: none; height: 560px; overflow: visible; position: relative; width: 44%; }\",\".framer-L2XpI .framer-1javqpv { aspect-ratio: 0.8321428571428572 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 560px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 82%; }\",\".framer-L2XpI .framer-1x8g5en { align-content: center; align-items: center; background-color: var(--token-796eafc9-dc37-40e2-b589-83f1d63182c1, #7b78f7); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: visible; padding: 28px; position: absolute; right: 0px; width: 38%; }\",\".framer-L2XpI .framer-6nmrij { 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: 100%; }\",\".framer-L2XpI .framer-os8ei5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-t7sbto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-8amg9i, .framer-L2XpI .framer-1wm0nrx, .framer-L2XpI .framer-16p5abp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-13d7mb7 { align-content: center; align-items: center; background-color: var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1m1mnvy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L2XpI .framer-18phjhm { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 974px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-f7v16n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1y9xxmy { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 44%; }\",\".framer-L2XpI .framer-19dat3z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-wghf1j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-16ambgf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1bhlprs { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.1607142857142858 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 560px); justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-L2XpI .framer-fmnmvv { --border-bottom-width: 6.28px; --border-color: var(--token-d00a6c61-ddfd-4b45-b28b-32fb2d607fc6, #ffffff); --border-left-width: 6.28px; --border-right-width: 6.28px; --border-style: solid; --border-top-width: 6.28px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-f4e86d98-ae20-4d63-aac7-37de897078e4, #0c0c3c); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 150px); justify-content: center; left: 50%; overflow: hidden; padding: 10px; position: absolute; top: 68%; transform: translate(-50%, -50%); width: 23%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-L2XpI .framer-1l94ly9 { flex: none; height: 35%; overflow: visible; position: relative; width: 35%; }\",\".framer-L2XpI .framer-167ogay-container { flex: none; height: 85%; left: calc(50.00000000000002% - 85% / 2); position: absolute; top: calc(50.00000000000002% - 85% / 2); width: 85%; z-index: 1; }\",\".framer-L2XpI .framer-1ba75jl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 47%; }\",\".framer-L2XpI .framer-18mha24 { aspect-ratio: 0.8 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1i5ruh3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 47%; }\",\".framer-L2XpI .framer-zrau1t { aspect-ratio: 0.5735849056603773 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 530px); overflow: visible; position: relative; width: 100%; }\",\".framer-L2XpI .framer-ckmda { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-1r926t1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 47%; word-break: break-word; word-wrap: break-word; }\",\".framer-L2XpI .framer-1jl0glb { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 454px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L2XpI .framer-81hsax { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-L2XpI .framer-176e0bz-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-L2XpI .framer-18ym8of-container { bottom: 64px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L2XpI.framer-72rtr7, .framer-L2XpI .framer-an4zlz, .framer-L2XpI .framer-1td8z8s, .framer-L2XpI .framer-coetqg, .framer-L2XpI .framer-misi74, .framer-L2XpI .framer-1ex6olm, .framer-L2XpI .framer-gsam0n, .framer-L2XpI .framer-1fp9jhh, .framer-L2XpI .framer-1ik5nv4, .framer-L2XpI .framer-1khsg92, .framer-L2XpI .framer-wu0wwz, .framer-L2XpI .framer-xswavz, .framer-L2XpI .framer-1ygu453, .framer-L2XpI .framer-22jr4, .framer-L2XpI .framer-t1pnd4, .framer-L2XpI .framer-1nki462, .framer-L2XpI .framer-1vkkcak, .framer-L2XpI .framer-1x8g5en, .framer-L2XpI .framer-6nmrij, .framer-L2XpI .framer-t7sbto, .framer-L2XpI .framer-13d7mb7, .framer-L2XpI .framer-1p7c7aw, .framer-L2XpI .framer-1m1mnvy, .framer-L2XpI .framer-1y9xxmy, .framer-L2XpI .framer-19dat3z, .framer-L2XpI .framer-wghf1j, .framer-L2XpI .framer-16ambgf, .framer-L2XpI .framer-fmnmvv, .framer-L2XpI .framer-1ba75jl, .framer-L2XpI .framer-1i5ruh3, .framer-L2XpI .framer-1ibwj78, .framer-L2XpI .framer-1jgg23j, .framer-L2XpI .framer-17wfpeh, .framer-L2XpI .framer-1jl0glb { gap: 0px; } .framer-L2XpI.framer-72rtr7 > *, .framer-L2XpI .framer-1vkkcak > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L2XpI.framer-72rtr7 > :first-child, .framer-L2XpI .framer-an4zlz > :first-child, .framer-L2XpI .framer-1td8z8s > :first-child, .framer-L2XpI .framer-coetqg > :first-child, .framer-L2XpI .framer-1fp9jhh > :first-child, .framer-L2XpI .framer-xswavz > :first-child, .framer-L2XpI .framer-1nki462 > :first-child, .framer-L2XpI .framer-1vkkcak > :first-child, .framer-L2XpI .framer-1x8g5en > :first-child, .framer-L2XpI .framer-t7sbto > :first-child, .framer-L2XpI .framer-1m1mnvy > :first-child, .framer-L2XpI .framer-1y9xxmy > :first-child, .framer-L2XpI .framer-19dat3z > :first-child, .framer-L2XpI .framer-wghf1j > :first-child, .framer-L2XpI .framer-16ambgf > :first-child, .framer-L2XpI .framer-17wfpeh > :first-child, .framer-L2XpI .framer-1jl0glb > :first-child { margin-top: 0px; } .framer-L2XpI.framer-72rtr7 > :last-child, .framer-L2XpI .framer-an4zlz > :last-child, .framer-L2XpI .framer-1td8z8s > :last-child, .framer-L2XpI .framer-coetqg > :last-child, .framer-L2XpI .framer-1fp9jhh > :last-child, .framer-L2XpI .framer-xswavz > :last-child, .framer-L2XpI .framer-1nki462 > :last-child, .framer-L2XpI .framer-1vkkcak > :last-child, .framer-L2XpI .framer-1x8g5en > :last-child, .framer-L2XpI .framer-t7sbto > :last-child, .framer-L2XpI .framer-1m1mnvy > :last-child, .framer-L2XpI .framer-1y9xxmy > :last-child, .framer-L2XpI .framer-19dat3z > :last-child, .framer-L2XpI .framer-wghf1j > :last-child, .framer-L2XpI .framer-16ambgf > :last-child, .framer-L2XpI .framer-17wfpeh > :last-child, .framer-L2XpI .framer-1jl0glb > :last-child { margin-bottom: 0px; } .framer-L2XpI .framer-an4zlz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L2XpI .framer-1td8z8s > *, .framer-L2XpI .framer-1jl0glb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L2XpI .framer-coetqg > *, .framer-L2XpI .framer-t7sbto > *, .framer-L2XpI .framer-wghf1j > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-L2XpI .framer-misi74 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-L2XpI .framer-misi74 > :first-child, .framer-L2XpI .framer-1ex6olm > :first-child, .framer-L2XpI .framer-gsam0n > :first-child, .framer-L2XpI .framer-1ik5nv4 > :first-child, .framer-L2XpI .framer-1khsg92 > :first-child, .framer-L2XpI .framer-wu0wwz > :first-child, .framer-L2XpI .framer-1ygu453 > :first-child, .framer-L2XpI .framer-22jr4 > :first-child, .framer-L2XpI .framer-t1pnd4 > :first-child, .framer-L2XpI .framer-6nmrij > :first-child, .framer-L2XpI .framer-13d7mb7 > :first-child, .framer-L2XpI .framer-1p7c7aw > :first-child, .framer-L2XpI .framer-fmnmvv > :first-child, .framer-L2XpI .framer-1ba75jl > :first-child, .framer-L2XpI .framer-1i5ruh3 > :first-child, .framer-L2XpI .framer-1ibwj78 > :first-child, .framer-L2XpI .framer-1jgg23j > :first-child { margin-left: 0px; } .framer-L2XpI .framer-misi74 > :last-child, .framer-L2XpI .framer-1ex6olm > :last-child, .framer-L2XpI .framer-gsam0n > :last-child, .framer-L2XpI .framer-1ik5nv4 > :last-child, .framer-L2XpI .framer-1khsg92 > :last-child, .framer-L2XpI .framer-wu0wwz > :last-child, .framer-L2XpI .framer-1ygu453 > :last-child, .framer-L2XpI .framer-22jr4 > :last-child, .framer-L2XpI .framer-t1pnd4 > :last-child, .framer-L2XpI .framer-6nmrij > :last-child, .framer-L2XpI .framer-13d7mb7 > :last-child, .framer-L2XpI .framer-1p7c7aw > :last-child, .framer-L2XpI .framer-fmnmvv > :last-child, .framer-L2XpI .framer-1ba75jl > :last-child, .framer-L2XpI .framer-1i5ruh3 > :last-child, .framer-L2XpI .framer-1ibwj78 > :last-child, .framer-L2XpI .framer-1jgg23j > :last-child { margin-right: 0px; } .framer-L2XpI .framer-1ex6olm > *, .framer-L2XpI .framer-1khsg92 > *, .framer-L2XpI .framer-22jr4 > *, .framer-L2XpI .framer-13d7mb7 > *, .framer-L2XpI .framer-1ba75jl > *, .framer-L2XpI .framer-1i5ruh3 > *, .framer-L2XpI .framer-1ibwj78 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-L2XpI .framer-gsam0n > *, .framer-L2XpI .framer-wu0wwz > *, .framer-L2XpI .framer-t1pnd4 > *, .framer-L2XpI .framer-6nmrij > *, .framer-L2XpI .framer-1p7c7aw > *, .framer-L2XpI .framer-fmnmvv > *, .framer-L2XpI .framer-1jgg23j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-L2XpI .framer-1fp9jhh > *, .framer-L2XpI .framer-xswavz > *, .framer-L2XpI .framer-17wfpeh > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-L2XpI .framer-1ik5nv4 > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-L2XpI .framer-1ygu453 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L2XpI .framer-1nki462 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-L2XpI .framer-1x8g5en > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-L2XpI .framer-1m1mnvy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-L2XpI .framer-1y9xxmy > *, .framer-L2XpI .framer-19dat3z > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-L2XpI .framer-16ambgf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-L2XpI[data-border=\"true\"]::after, .framer-L2XpI [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-L2XpI.framer-72rtr7 { width: 810px; } .framer-L2XpI .framer-k1t86k-container { left: 50%; transform: translateX(-50%); } .framer-L2XpI .framer-an4zlz { padding: 115px 32px 32px 32px; } .framer-L2XpI .framer-1td8z8s { bottom: 52px; left: 52px; width: min-content; } .framer-L2XpI .framer-coetqg { width: min-content; } .framer-L2XpI .framer-1170zh9 { align-self: stretch; width: auto; } .framer-L2XpI .framer-1tluf8q { width: 303px; } .framer-L2XpI .framer-1ex6olm, .framer-L2XpI .framer-22jr4, .framer-L2XpI .framer-13d7mb7, .framer-L2XpI .framer-1ibwj78 { padding: 80px 0px 80px 0px; } .framer-L2XpI .framer-gsam0n, .framer-L2XpI .framer-wu0wwz, .framer-L2XpI .framer-t1pnd4, .framer-L2XpI .framer-1p7c7aw, .framer-L2XpI .framer-1jgg23j { max-width: 810px; padding: 0px 24px 0px 24px; } .framer-L2XpI .framer-1fp9jhh, .framer-L2XpI .framer-xswavz, .framer-L2XpI .framer-1m1mnvy, .framer-L2XpI .framer-17wfpeh { gap: 40px; } .framer-L2XpI .framer-1ik5nv4 { gap: 14px; } .framer-L2XpI .framer-198wq5n { width: 70%; } .framer-L2XpI .framer-1khsg92 { padding: 80px 0px 160px 0px; } .framer-L2XpI .framer-41zaj2 { width: 77%; } .framer-L2XpI .framer-10v5nll, .framer-L2XpI .framer-f7v16n { flex-direction: column; gap: 40px; justify-content: center; } .framer-L2XpI .framer-1nki462 { align-content: center; align-items: center; gap: 30px; justify-content: center; order: 1; width: 100%; } .framer-L2XpI .framer-pa5e24 { gap: 30px; justify-content: center; } .framer-L2XpI .framer-1vkkcak { align-content: center; align-items: center; flex-direction: row; gap: 24px; width: 36%; } .framer-L2XpI .framer-w9qmln { white-space: pre; width: auto; } .framer-L2XpI .framer-11cd20y { flex: 1 0 0px; width: 1px; } .framer-L2XpI .framer-1d50ghf { height: 526px; order: 0; width: 70%; } .framer-L2XpI .framer-1javqpv { height: var(--framer-aspect-ratio-supported, 526px); } .framer-L2XpI .framer-1x8g5en { bottom: 32px; gap: 48px; width: 38%; } .framer-L2XpI .framer-1y9xxmy { align-self: unset; height: min-content; order: 1; width: 100%; } .framer-L2XpI .framer-19dat3z { gap: 20px; } .framer-L2XpI .framer-1bhlprs { height: var(--framer-aspect-ratio-supported, 394px); order: 0; width: 60%; } .framer-L2XpI .framer-fmnmvv { --border-bottom-width: 5.28px; --border-left-width: 5.28px; --border-right-width: 5.28px; --border-top-width: 5.28px; height: var(--framer-aspect-ratio-supported, 106px); } .framer-L2XpI .framer-18mha24 { height: var(--framer-aspect-ratio-supported, 267px); } .framer-L2XpI .framer-zrau1t { height: var(--framer-aspect-ratio-supported, 373px); } .framer-L2XpI .framer-ckmda { flex-direction: column; gap: 16px; justify-content: center; } .framer-L2XpI .framer-1r926t1 { width: 100%; } .framer-L2XpI .framer-1jl0glb { align-content: center; align-items: center; flex: none; flex-direction: row; gap: unset; justify-content: space-between; max-width: unset; width: 100%; } .framer-L2XpI .framer-16p5abp { width: 67%; } .framer-L2XpI .framer-81hsax { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-L2XpI .framer-176e0bz-container { align-self: unset; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L2XpI .framer-1fp9jhh, .framer-L2XpI .framer-1ik5nv4, .framer-L2XpI .framer-xswavz, .framer-L2XpI .framer-10v5nll, .framer-L2XpI .framer-1nki462, .framer-L2XpI .framer-pa5e24, .framer-L2XpI .framer-1vkkcak, .framer-L2XpI .framer-1x8g5en, .framer-L2XpI .framer-1m1mnvy, .framer-L2XpI .framer-f7v16n, .framer-L2XpI .framer-19dat3z, .framer-L2XpI .framer-17wfpeh, .framer-L2XpI .framer-ckmda, .framer-L2XpI .framer-1jl0glb, .framer-L2XpI .framer-81hsax { gap: 0px; } .framer-L2XpI .framer-1fp9jhh > *, .framer-L2XpI .framer-xswavz > *, .framer-L2XpI .framer-10v5nll > *, .framer-L2XpI .framer-1m1mnvy > *, .framer-L2XpI .framer-f7v16n > *, .framer-L2XpI .framer-17wfpeh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-L2XpI .framer-1fp9jhh > :first-child, .framer-L2XpI .framer-xswavz > :first-child, .framer-L2XpI .framer-10v5nll > :first-child, .framer-L2XpI .framer-1nki462 > :first-child, .framer-L2XpI .framer-1x8g5en > :first-child, .framer-L2XpI .framer-1m1mnvy > :first-child, .framer-L2XpI .framer-f7v16n > :first-child, .framer-L2XpI .framer-19dat3z > :first-child, .framer-L2XpI .framer-17wfpeh > :first-child, .framer-L2XpI .framer-ckmda > :first-child, .framer-L2XpI .framer-81hsax > :first-child { margin-top: 0px; } .framer-L2XpI .framer-1fp9jhh > :last-child, .framer-L2XpI .framer-xswavz > :last-child, .framer-L2XpI .framer-10v5nll > :last-child, .framer-L2XpI .framer-1nki462 > :last-child, .framer-L2XpI .framer-1x8g5en > :last-child, .framer-L2XpI .framer-1m1mnvy > :last-child, .framer-L2XpI .framer-f7v16n > :last-child, .framer-L2XpI .framer-19dat3z > :last-child, .framer-L2XpI .framer-17wfpeh > :last-child, .framer-L2XpI .framer-ckmda > :last-child, .framer-L2XpI .framer-81hsax > :last-child { margin-bottom: 0px; } .framer-L2XpI .framer-1ik5nv4 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-L2XpI .framer-1ik5nv4 > :first-child, .framer-L2XpI .framer-pa5e24 > :first-child, .framer-L2XpI .framer-1vkkcak > :first-child { margin-left: 0px; } .framer-L2XpI .framer-1ik5nv4 > :last-child, .framer-L2XpI .framer-pa5e24 > :last-child, .framer-L2XpI .framer-1vkkcak > :last-child { margin-right: 0px; } .framer-L2XpI .framer-1nki462 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-L2XpI .framer-pa5e24 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-L2XpI .framer-1vkkcak > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L2XpI .framer-1x8g5en > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-L2XpI .framer-19dat3z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L2XpI .framer-ckmda > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-L2XpI .framer-1jl0glb > *, .framer-L2XpI .framer-1jl0glb > :first-child, .framer-L2XpI .framer-1jl0glb > :last-child { margin: 0px; } .framer-L2XpI .framer-81hsax > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 809px) { .framer-L2XpI.framer-72rtr7 { width: 390px; } .framer-L2XpI .framer-k1t86k-container { left: 50%; transform: translateX(-50%); } .framer-L2XpI .framer-an4zlz { gap: 32px; height: min-content; padding: 100px 16px 0px 16px; } .framer-L2XpI .framer-dev9bx { flex: none; height: 50vh; } .framer-L2XpI .framer-1td8z8s { bottom: unset; left: unset; max-width: unset; padding: 0px; position: relative; width: 100%; } .framer-L2XpI .framer-1170zh9 { --framer-text-wrap: balance; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-L2XpI .framer-misi74 { flex-wrap: wrap; width: 100%; } .framer-L2XpI .framer-1ex6olm, .framer-L2XpI .framer-1khsg92, .framer-L2XpI .framer-22jr4, .framer-L2XpI .framer-13d7mb7, .framer-L2XpI .framer-1ibwj78 { flex-direction: column; padding: 60px 0px 60px 0px; } .framer-L2XpI .framer-gsam0n, .framer-L2XpI .framer-wu0wwz, .framer-L2XpI .framer-t1pnd4, .framer-L2XpI .framer-1p7c7aw, .framer-L2XpI .framer-1jgg23j { flex: none; max-width: 520px; padding: 0px 24px 0px 24px; width: 100%; } .framer-L2XpI .framer-1fp9jhh { gap: 30px; max-width: 400px; } .framer-L2XpI .framer-198wq5n, .framer-L2XpI .framer-w9qmln { flex: 1 0 0px; width: 1px; } .framer-L2XpI .framer-xswavz { align-content: flex-start; align-items: flex-start; gap: 30px; } .framer-L2XpI .framer-41zaj2, .framer-L2XpI .framer-1r926t1 { max-width: 342px; width: 100%; } .framer-L2XpI .framer-1ygu453 { flex-direction: column; } .framer-L2XpI .framer-16i11h1-container, .framer-L2XpI .framer-1dnzngm-container, .framer-L2XpI .framer-17ok0p3-container { flex: none; width: 100%; } .framer-L2XpI .framer-10v5nll, .framer-L2XpI .framer-f7v16n { flex-direction: column; gap: 30px; justify-content: center; } .framer-L2XpI .framer-1nki462 { gap: 24px; justify-content: center; order: 1; width: 100%; } .framer-L2XpI .framer-kk0hp3, .framer-L2XpI .framer-1wm0nrx { max-width: 342px; } .framer-L2XpI .framer-pa5e24 { flex-direction: column; gap: 20px; justify-content: center; } .framer-L2XpI .framer-1vkkcak { align-content: center; align-items: center; flex-direction: row; gap: 24px; order: 0; width: 100%; } .framer-L2XpI .framer-11cd20y { order: 1; width: 100%; } .framer-L2XpI .framer-1d50ghf { aspect-ratio: 1.0118343195266273 / 1; height: var(--framer-aspect-ratio-supported, 338px); order: 0; width: 100%; } .framer-L2XpI .framer-1javqpv { height: var(--framer-aspect-ratio-supported, 338px); } .framer-L2XpI .framer-1x8g5en { bottom: 24px; gap: 24px; padding: 24px 0px 24px 20px; width: min-content; } .framer-L2XpI .framer-6nmrij, .framer-L2XpI .framer-t7sbto { width: 161px; } .framer-L2XpI .framer-1m1mnvy, .framer-L2XpI .framer-17wfpeh { gap: 30px; } .framer-L2XpI .framer-1y9xxmy { align-self: unset; gap: 24px; height: min-content; order: 1; width: 100%; } .framer-L2XpI .framer-19dat3z { gap: 20px; } .framer-L2XpI .framer-1bhlprs { height: var(--framer-aspect-ratio-supported, 295px); order: 0; width: 100%; } .framer-L2XpI .framer-fmnmvv { --border-bottom-width: 2.28px; --border-left-width: 2.28px; --border-right-width: 2.28px; --border-top-width: 2.28px; height: var(--framer-aspect-ratio-supported, 103px); width: 30%; } .framer-L2XpI .framer-1l94ly9 { left: calc(50.00000000000002% - 34.61538461538461% / 2); position: absolute; top: calc(50.00000000000002% - 34.61538461538461% / 2); z-index: 1; } .framer-L2XpI .framer-18mha24 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-L2XpI .framer-zrau1t { height: var(--framer-aspect-ratio-supported, 279px); } .framer-L2XpI .framer-ckmda { align-content: center; align-items: center; flex-direction: column; gap: 14px; justify-content: center; } .framer-L2XpI .framer-1jl0glb { align-content: flex-start; align-items: flex-start; flex: none; max-width: unset; width: 100%; } .framer-L2XpI .framer-81hsax { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-L2XpI .framer-176e0bz-container { align-self: unset; height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-L2XpI .framer-an4zlz, .framer-L2XpI .framer-1ex6olm, .framer-L2XpI .framer-1fp9jhh, .framer-L2XpI .framer-1khsg92, .framer-L2XpI .framer-xswavz, .framer-L2XpI .framer-1ygu453, .framer-L2XpI .framer-22jr4, .framer-L2XpI .framer-10v5nll, .framer-L2XpI .framer-1nki462, .framer-L2XpI .framer-pa5e24, .framer-L2XpI .framer-1vkkcak, .framer-L2XpI .framer-1x8g5en, .framer-L2XpI .framer-13d7mb7, .framer-L2XpI .framer-1m1mnvy, .framer-L2XpI .framer-f7v16n, .framer-L2XpI .framer-1y9xxmy, .framer-L2XpI .framer-19dat3z, .framer-L2XpI .framer-1ibwj78, .framer-L2XpI .framer-17wfpeh, .framer-L2XpI .framer-ckmda, .framer-L2XpI .framer-81hsax { gap: 0px; } .framer-L2XpI .framer-an4zlz > *, .framer-L2XpI .framer-81hsax > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-L2XpI .framer-an4zlz > :first-child, .framer-L2XpI .framer-1ex6olm > :first-child, .framer-L2XpI .framer-1fp9jhh > :first-child, .framer-L2XpI .framer-1khsg92 > :first-child, .framer-L2XpI .framer-xswavz > :first-child, .framer-L2XpI .framer-1ygu453 > :first-child, .framer-L2XpI .framer-22jr4 > :first-child, .framer-L2XpI .framer-10v5nll > :first-child, .framer-L2XpI .framer-1nki462 > :first-child, .framer-L2XpI .framer-pa5e24 > :first-child, .framer-L2XpI .framer-1x8g5en > :first-child, .framer-L2XpI .framer-13d7mb7 > :first-child, .framer-L2XpI .framer-1m1mnvy > :first-child, .framer-L2XpI .framer-f7v16n > :first-child, .framer-L2XpI .framer-1y9xxmy > :first-child, .framer-L2XpI .framer-19dat3z > :first-child, .framer-L2XpI .framer-1ibwj78 > :first-child, .framer-L2XpI .framer-17wfpeh > :first-child, .framer-L2XpI .framer-ckmda > :first-child, .framer-L2XpI .framer-81hsax > :first-child { margin-top: 0px; } .framer-L2XpI .framer-an4zlz > :last-child, .framer-L2XpI .framer-1ex6olm > :last-child, .framer-L2XpI .framer-1fp9jhh > :last-child, .framer-L2XpI .framer-1khsg92 > :last-child, .framer-L2XpI .framer-xswavz > :last-child, .framer-L2XpI .framer-1ygu453 > :last-child, .framer-L2XpI .framer-22jr4 > :last-child, .framer-L2XpI .framer-10v5nll > :last-child, .framer-L2XpI .framer-1nki462 > :last-child, .framer-L2XpI .framer-pa5e24 > :last-child, .framer-L2XpI .framer-1x8g5en > :last-child, .framer-L2XpI .framer-13d7mb7 > :last-child, .framer-L2XpI .framer-1m1mnvy > :last-child, .framer-L2XpI .framer-f7v16n > :last-child, .framer-L2XpI .framer-1y9xxmy > :last-child, .framer-L2XpI .framer-19dat3z > :last-child, .framer-L2XpI .framer-1ibwj78 > :last-child, .framer-L2XpI .framer-17wfpeh > :last-child, .framer-L2XpI .framer-ckmda > :last-child, .framer-L2XpI .framer-81hsax > :last-child { margin-bottom: 0px; } .framer-L2XpI .framer-1ex6olm > *, .framer-L2XpI .framer-1khsg92 > *, .framer-L2XpI .framer-22jr4 > *, .framer-L2XpI .framer-13d7mb7 > *, .framer-L2XpI .framer-1ibwj78 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-L2XpI .framer-1fp9jhh > *, .framer-L2XpI .framer-xswavz > *, .framer-L2XpI .framer-10v5nll > *, .framer-L2XpI .framer-1m1mnvy > *, .framer-L2XpI .framer-f7v16n > *, .framer-L2XpI .framer-17wfpeh > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-L2XpI .framer-1ygu453 > *, .framer-L2XpI .framer-1nki462 > *, .framer-L2XpI .framer-1x8g5en > *, .framer-L2XpI .framer-1y9xxmy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-L2XpI .framer-pa5e24 > *, .framer-L2XpI .framer-19dat3z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-L2XpI .framer-1vkkcak > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-L2XpI .framer-1vkkcak > :first-child { margin-left: 0px; } .framer-L2XpI .framer-1vkkcak > :last-child { margin-right: 0px; } .framer-L2XpI .framer-ckmda > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6106.2\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TL84SKW_6\":{\"layout\":[\"fixed\",\"auto\"]},\"cg3iA2OCV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zYHZh6pOw\":{\"pattern\":\":zYHZh6pOw\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-L2XpI\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6106.2,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...PrimaryHeaderFonts,...FillFonts,...BrandTickerFonts,...CardServiceFonts,...WidgetStatsFonts,...ListItemFonts,...ArcFonts,...CardProjectFonts,...CTASectionFonts,...CommonFooterSectionFonts,...GetTemplateButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TL84SKW_6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cg3iA2OCV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"zYHZh6pOw\\\":{\\\"pattern\\\":\\\":zYHZh6pOw\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"6106.2\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "CounterFonts", "getFonts", "Counter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "endNumber", "height", "id", "text", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ICqotSctS", "Ke261DEj7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerH07toMrPI", "withCSS", "H07toMrPI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "Xchc4X_TE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramervHgfkdNa0", "withCSS", "vHgfkdNa0_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PrimaryHeaderFonts", "getFonts", "UBNgIKIYD_default", "FillFonts", "Qk6rtyRR6_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithFX", "withFX", "RichText2", "BrandTickerFonts", "lrzvojUkf_default", "CardServiceFonts", "usR2f7hbD_default", "WidgetStatsFonts", "H07toMrPI_default", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "ListItemFonts", "vHgfkdNa0_default", "ArcFonts", "Arc_default", "ContainerWithFX", "CardProjectFonts", "NstUYkiNt_default", "CTASectionFonts", "Ar1VO74kq_default", "CommonFooterSectionFonts", "E1S6KQiEj_default", "GetTemplateButtonFonts", "foSouec_1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "transition2", "animation1", "animation2", "animation3", "transition3", "addImageAlt", "image", "alt", "transition4", "transition5", "animation4", "animation5", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "xz1YVVtjyWVtc7uMPm", "Mb8rcYLXuWVtc7uMPm", "yS8ptYNN4WVtc7uMPm", "SxWTM7xYYWVtc7uMPm", "idWVtc7uMPm", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "ChildrenCanSuspend", "yMAJ3Cmj4_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
