{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/pUC2Q4HS9uuwHefZZ6Oq/SVG.js", "ssg:https://framerusercontent.com/modules/jmMzEi0o7lZuXjXvorzp/bou1DhebtOdDjw8Ywhv9/Vls9BSDeO.js", "ssg:https://framerusercontent.com/modules/s0ebJKGYanql7YEA8R7Y/0YfRPXCNrGYq5Ycx8MMa/hPxMkjQmS.js", "ssg:https://framerusercontent.com/modules/ajrL9IOI7QbTG5CqK42D/VJg7NQhEotTjvzrymJJF/YrmfOT8Rd.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){// Find the circle element and update its fill attribute\nconst circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){// Update the fill attribute with the custom color\nconst updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{// If there is no fill attribute, add it with the custom color\nreplacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle});}SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M11.9996 4.58607L19.414 12.0001L22.9139 8.50015L15.4997 1.08594L11.9996 4.58607Z\" fill=\"black\"/> <path d=\"M18.403 13.8175L10.1822 5.59708L5.63438 7.25082L3.08203 19.5021L8.15387 14.4302C8.0427 14.1472 7.98166 13.839 7.98166 13.5166C7.98166 12.1359 9.10095 11.0166 10.4817 11.0166C11.8624 11.0166 12.9817 12.1359 12.9817 13.5166C12.9817 14.8973 11.8624 16.0166 10.4817 16.0166C10.1592 16.0166 9.85109 15.9556 9.56811 15.8444L4.49378 20.9188L16.7491 18.3656L18.403 13.8175Z\" fill=\"black\"/> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/pUC2Q4HS9uuwHefZZ6Oq/SVG.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"VCJZzC3TE\",\"aHCFSXIdG\",\"HDVinegAc\",\"A2nUAZ8FM\",\"Yqr6gyZhU\"];const serializationHash=\"framer-LRbC0\";const variantClassNames={A2nUAZ8FM:\"framer-v-cm49tw\",aHCFSXIdG:\"framer-v-1ogbmfl\",HDVinegAc:\"framer-v-12vasib\",VCJZzC3TE:\"framer-v-x498pd\",Yqr6gyZhU:\"framer-v-1xq9vsk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={back_black:\"Yqr6gyZhU\",back_gray:\"VCJZzC3TE\",back_yellow:\"aHCFSXIdG\",next_gray:\"HDVinegAc\",next_yellow:\"A2nUAZ8FM\"};const getProps=({click,height,id,width,...props})=>{return{...props,sgRCryYBY:click??props.sgRCryYBY,variant:humanReadableVariantMap[props.variant]??props.variant??\"VCJZzC3TE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,sgRCryYBY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VCJZzC3TE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqr4oqj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(sgRCryYBY){const res=await sgRCryYBY(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-x498pd\",className,classNames),\"data-framer-name\":\"back_gray\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VCJZzC3TE\",onTap:onTapqr4oqj,ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0.2)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:.2,...style},variants:{A2nUAZ8FM:{backgroundColor:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(252, 238, 133))\",opacity:1},aHCFSXIdG:{backgroundColor:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(252, 238, 133))\",opacity:1},Yqr6gyZhU:{backgroundColor:\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(17, 59, 24))\",opacity:1}},...addPropertyOverrides({A2nUAZ8FM:{\"data-framer-name\":\"next_yellow\"},aHCFSXIdG:{\"data-framer-name\":\"back_yellow\"},HDVinegAc:{\"data-framer-name\":\"next_gray\"},Yqr6gyZhU:{\"data-framer-name\":\"back_black\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11hafky-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JxQdExZ6s-container\",nodeId:\"JxQdExZ6s\",rendersWithMotion:true,scopeId:\"Vls9BSDeO\",style:{rotate:180},variants:{A2nUAZ8FM:{rotate:360},HDVinegAc:{rotate:360}},children:/*#__PURE__*/_jsx(SVG,{customColor:\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(17, 59, 24))\",customPadding:0,customStrokeWidth:1.5,customSvgCode:'<svg width=\" 100%\" height=\" 100%\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M15.3286 5.13599L21.6926 11.4999L15.3286 17.8639\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/> <path d=\"M3.30765 11.5H20.9853\" stroke=\"currentColor\" stroke-width=\"1.5\" stroke-linecap=\"square\" stroke-linejoin=\"round\"/> </svg>',height:\"100%\",id:\"JxQdExZ6s\",layoutId:\"JxQdExZ6s\",lineCap:\"square\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Yqr6gyZhU:{customColor:\"var(--token-118d202d-61c3-4796-b2a6-a482c6e50013, rgb(255, 255, 255))\"}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LRbC0.framer-1b5nxm9, .framer-LRbC0 .framer-1b5nxm9 { display: block; }\",\".framer-LRbC0.framer-x498pd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-LRbC0 .framer-11hafky-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LRbC0.framer-x498pd { gap: 0px; } .framer-LRbC0.framer-x498pd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LRbC0.framer-x498pd > :first-child { margin-left: 0px; } .framer-LRbC0.framer-x498pd > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"aHCFSXIdG\":{\"layout\":[\"fixed\",\"fixed\"]},\"HDVinegAc\":{\"layout\":[\"fixed\",\"fixed\"]},\"A2nUAZ8FM\":{\"layout\":[\"fixed\",\"fixed\"]},\"Yqr6gyZhU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sgRCryYBY\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVls9BSDeO=withCSS(Component,css,\"framer-LRbC0\");export default FramerVls9BSDeO;FramerVls9BSDeO.displayName=\"carousel arrow\";FramerVls9BSDeO.defaultProps={height:42,width:64};addPropertyControls(FramerVls9BSDeO,{variant:{options:[\"VCJZzC3TE\",\"aHCFSXIdG\",\"HDVinegAc\",\"A2nUAZ8FM\",\"Yqr6gyZhU\"],optionTitles:[\"back_gray\",\"back_yellow\",\"next_gray\",\"next_yellow\",\"back_black\"],title:\"Variant\",type:ControlType.Enum},sgRCryYBY:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerVls9BSDeO,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVls9BSDeO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aHCFSXIdG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HDVinegAc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A2nUAZ8FM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Yqr6gyZhU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"sgRCryYBY\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"64\",\"framerIntrinsicHeight\":\"42\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vls9BSDeO.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/jks3D5ZUFPjSzkq4zUzM/LIPCvVEtzVLP6hpwHDIH/ZMdHCqIB8.js\";import CarouselArrow from\"https://framerusercontent.com/modules/jmMzEi0o7lZuXjXvorzp/bou1DhebtOdDjw8Ywhv9/Vls9BSDeO.js\";const CarouselArrowFonts=getFonts(CarouselArrow);const cycleOrder=[\"lzKVvHFp_\",\"ZH_cS0qHR\",\"LAswTXAZB\",\"ICaLqjgrF\",\"xG6CtAegT\",\"qHiZOmJjF\",\"W2wcEeK5t\",\"TUHARYOQg\",\"bKdLSbrxP\",\"hfffsE37s\",\"r2tgIh1J1\",\"UUYWGxIp4\"];const serializationHash=\"framer-t0tTw\";const variantClassNames={bKdLSbrxP:\"framer-v-1e0ui96\",hfffsE37s:\"framer-v-1xd51lh\",ICaLqjgrF:\"framer-v-11oirn6\",LAswTXAZB:\"framer-v-1g4d72g\",lzKVvHFp_:\"framer-v-51q4wh\",qHiZOmJjF:\"framer-v-7yrb9q\",r2tgIh1J1:\"framer-v-1pl9xyq\",TUHARYOQg:\"framer-v-15rv1ff\",UUYWGxIp4:\"framer-v-p8at60\",W2wcEeK5t:\"framer-v-1xnt4u6\",xG6CtAegT:\"framer-v-1udjozo\",ZH_cS0qHR:\"framer-v-brl204\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"Yqr6gyZhU\";}else{return\"VCJZzC3TE\";}};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"A2nUAZ8FM\";}else{return\"HDVinegAc\";}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"desktop 1\":\"lzKVvHFp_\",\"desktop 10\":\"hfffsE37s\",\"desktop 11\":\"r2tgIh1J1\",\"desktop 12\":\"UUYWGxIp4\",\"desktop 2\":\"ZH_cS0qHR\",\"desktop 3\":\"LAswTXAZB\",\"desktop 4\":\"ICaLqjgrF\",\"desktop 5\":\"xG6CtAegT\",\"desktop 6\":\"qHiZOmJjF\",\"desktop 7\":\"W2wcEeK5t\",\"desktop 8\":\"TUHARYOQg\",\"desktop 9\":\"bKdLSbrxP\"};const getProps=({height,id,image1,image10,image11,image12,image2,image3,image4,image5,image6,image7,image8,image9,imageCaption1,imageCaption10,imageCaption11,imageCaption12,imageCaption2,imageCaption3,imageCaption4,imageCaption5,imageCaption6,imageCaption7,imageCaption8,imageCaption9,width,...props})=>{return{...props,AdRY9zCBm:image8??props.AdRY9zCBm,B5DKgLXjn:image3??props.B5DKgLXjn,bMe44Ctfh:imageCaption11??props.bMe44Ctfh??\"Caption\",BSMR_pmgK:image5??props.BSMR_pmgK,c8uTbVtDQ:image4??props.c8uTbVtDQ,dId_bLgxH:imageCaption8??props.dId_bLgxH??\"Caption\",eqB3o2taF:imageCaption7??props.eqB3o2taF??\"Caption\",fCkH6dPfN:imageCaption3??props.fCkH6dPfN??\"Caption\",FdHqBODBm:image10??props.FdHqBODBm,heDG7QfcP:imageCaption12??props.heDG7QfcP??\"Caption\",JF0rWzRCY:image7??props.JF0rWzRCY,ln8mfKf4k:imageCaption4??props.ln8mfKf4k??\"Caption\",mawlB2lTk:image1??props.mawlB2lTk,pHoe7PH_C:imageCaption2??props.pHoe7PH_C??\"Caption\",RRmiddvvd:imageCaption5??props.RRmiddvvd??\"Caption\",tD24xMiL8:image2??props.tD24xMiL8,txNb0EPTO:imageCaption1??props.txNb0EPTO??\"Caption\",variant:humanReadableVariantMap[props.variant]??props.variant??\"lzKVvHFp_\",ViTAjP7by:image11??props.ViTAjP7by,Wm0NlstBJ:imageCaption10??props.Wm0NlstBJ??\"Caption\",wxJtOkMpN:imageCaption9??props.wxJtOkMpN??\"Caption\",xoQZIqE_k:imageCaption6??props.xoQZIqE_k??\"Caption\",y1HcmKPp0:image9??props.y1HcmKPp0,y9H5aOTSR:image12??props.y9H5aOTSR,yHPePlCCn:image6??props.yHPePlCCn};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,mawlB2lTk,txNb0EPTO,tD24xMiL8,pHoe7PH_C,B5DKgLXjn,fCkH6dPfN,c8uTbVtDQ,ln8mfKf4k,BSMR_pmgK,RRmiddvvd,yHPePlCCn,xoQZIqE_k,JF0rWzRCY,eqB3o2taF,AdRY9zCBm,dId_bLgxH,y1HcmKPp0,wxJtOkMpN,FdHqBODBm,Wm0NlstBJ,ViTAjP7by,bMe44Ctfh,y9H5aOTSR,heDG7QfcP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lzKVvHFp_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const sgRCryYBY1hj10o7=activeVariantCallback(async(...args)=>{setVariant(\"lzKVvHFp_\");});const sgRCryYBY9wjd3c=activeVariantCallback(async(...args)=>{setVariant(\"ZH_cS0qHR\");});const sgRCryYBY194sboc=activeVariantCallback(async(...args)=>{setVariant(\"LAswTXAZB\");});const sgRCryYBY3pbci9=activeVariantCallback(async(...args)=>{setVariant(\"ICaLqjgrF\");});const sgRCryYBYaxaomd=activeVariantCallback(async(...args)=>{setVariant(\"xG6CtAegT\");});const sgRCryYBY1llgroe=activeVariantCallback(async(...args)=>{setVariant(\"qHiZOmJjF\");});const sgRCryYBY2rpc2t=activeVariantCallback(async(...args)=>{setVariant(\"W2wcEeK5t\");});const sgRCryYBY1j3ecni=activeVariantCallback(async(...args)=>{setVariant(\"TUHARYOQg\");});const sgRCryYBY1kx6f7=activeVariantCallback(async(...args)=>{setVariant(\"bKdLSbrxP\");});const sgRCryYBYn04mw9=activeVariantCallback(async(...args)=>{setVariant(\"hfffsE37s\");});const sgRCryYBYgfppys=activeVariantCallback(async(...args)=>{setVariant(\"r2tgIh1J1\");});const sgRCryYBY1ryek7g=activeVariantCallback(async(...args)=>{setVariant(\"UUYWGxIp4\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(tD24xMiL8);const visible1=isSet(B5DKgLXjn);const visible2=isSet(c8uTbVtDQ);const visible3=isSet(BSMR_pmgK);const visible4=isSet(yHPePlCCn);const visible5=isSet(JF0rWzRCY);const visible6=isSet(AdRY9zCBm);const visible7=isSet(y1HcmKPp0);const visible8=isSet(FdHqBODBm);const visible9=isSet(ViTAjP7by);const visible10=isSet(y9H5aOTSR);const isDisplayed=(value,value1,value2,value3,value4,value5,value6,value7,value8,value9,value10)=>{if(baseVariant===\"ZH_cS0qHR\")return value1;if(baseVariant===\"LAswTXAZB\")return value2;if(baseVariant===\"ICaLqjgrF\")return value3;if(baseVariant===\"xG6CtAegT\")return value4;if(baseVariant===\"qHiZOmJjF\")return value5;if(baseVariant===\"W2wcEeK5t\")return value6;if(baseVariant===\"TUHARYOQg\")return value7;if(baseVariant===\"bKdLSbrxP\")return value8;if(baseVariant===\"hfffsE37s\")return value9;if(baseVariant===\"r2tgIh1J1\")return value10;if(baseVariant===\"UUYWGxIp4\")return true;return value;};const visible11=isSet(mawlB2lTk);const isDisplayed1=value=>{if(baseVariant===\"ZH_cS0qHR\")return value;return true;};const isDisplayed2=value=>{if(baseVariant===\"LAswTXAZB\")return value;return true;};const isDisplayed3=value=>{if(baseVariant===\"ICaLqjgrF\")return value;return true;};const isDisplayed4=value=>{if(baseVariant===\"xG6CtAegT\")return value;return true;};const isDisplayed5=value=>{if(baseVariant===\"qHiZOmJjF\")return value;return true;};const isDisplayed6=value=>{if(baseVariant===\"W2wcEeK5t\")return value;return true;};const isDisplayed7=value=>{if(baseVariant===\"TUHARYOQg\")return value;return true;};const isDisplayed8=value=>{if(baseVariant===\"bKdLSbrxP\")return value;return true;};const isDisplayed9=value=>{if(baseVariant===\"hfffsE37s\")return value;return true;};const isDisplayed10=value=>{if(baseVariant===\"r2tgIh1J1\")return value;return true;};const isDisplayed11=value=>{if(baseVariant===\"UUYWGxIp4\")return value;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-51q4wh\",className,classNames),\"data-framer-name\":\"desktop 1\",layoutDependency:layoutDependency,layoutId:\"lzKVvHFp_\",ref:refBinding,style:{...style},...addPropertyOverrides({bKdLSbrxP:{\"data-framer-name\":\"desktop 9\"},hfffsE37s:{\"data-framer-name\":\"desktop 10\"},ICaLqjgrF:{\"data-framer-name\":\"desktop 4\"},LAswTXAZB:{\"data-framer-name\":\"desktop 3\"},qHiZOmJjF:{\"data-framer-name\":\"desktop 6\"},r2tgIh1J1:{\"data-framer-name\":\"desktop 11\"},TUHARYOQg:{\"data-framer-name\":\"desktop 8\"},UUYWGxIp4:{\"data-framer-name\":\"desktop 12\"},W2wcEeK5t:{\"data-framer-name\":\"desktop 7\"},xG6CtAegT:{\"data-framer-name\":\"desktop 5\"},ZH_cS0qHR:{\"data-framer-name\":\"desktop 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ifzmbc\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"VR2w0u9lC\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13ixo0o\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"bMhSroIIu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19eiywg\",\"data-framer-name\":\"Caption Wrapper\",layoutDependency:layoutDependency,layoutId:\"AHNuHUE8b\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yd7x34\",\"data-framer-name\":\"Caption\",layoutDependency:layoutDependency,layoutId:\"WYIkgpAhJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:'Eleifend sed vulputate erat vulputate. Imperdiet consectetur gravida cras tristique etiam nam suscipit et. Ut dictumst a fermentum diam posuere commodo in sed orci..\"'})}),className:\"framer-1hc3d1p\",\"data-framer-name\":\"Medium length hero headline goes here\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cKxtngelK\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:txNb0EPTO,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bKdLSbrxP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:wxJtOkMpN},hfffsE37s:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:Wm0NlstBJ},ICaLqjgrF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:ln8mfKf4k},LAswTXAZB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:fCkH6dPfN},qHiZOmJjF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:xoQZIqE_k},r2tgIh1J1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:bMe44Ctfh},TUHARYOQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:dId_bLgxH},UUYWGxIp4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:heDG7QfcP},W2wcEeK5t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:eqB3o2taF},xG6CtAegT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:RRmiddvvd},ZH_cS0qHR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2c7fk9\",\"data-styles-preset\":\"ZMdHCqIB8\",children:\"Caption\"})}),text:pHoe7PH_C}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5a5xex\",\"data-framer-name\":\"Arrows\",layoutDependency:layoutDependency,layoutId:\"Qa0E3muZS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-516c8l\",layoutDependency:layoutDependency,layoutId:\"jiqLd4i04\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"64px\",y:(componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0,...addPropertyOverrides({bKdLSbrxP:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},hfffsE37s:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},ICaLqjgrF:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},qHiZOmJjF:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},r2tgIh1J1:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},TUHARYOQg:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},UUYWGxIp4:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},W2wcEeK5t:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},xG6CtAegT:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iyi73b-container\",layoutDependency:layoutDependency,layoutId:\"Mxs1vrbs5-container\",nodeId:\"Mxs1vrbs5\",rendersWithMotion:true,scopeId:\"hPxMkjQmS\",children:/*#__PURE__*/_jsx(CarouselArrow,{height:\"100%\",id:\"Mxs1vrbs5\",layoutId:\"Mxs1vrbs5\",style:{height:\"100%\",width:\"100%\"},variant:\"VCJZzC3TE\",width:\"100%\",...addPropertyOverrides({bKdLSbrxP:{sgRCryYBY:sgRCryYBY1j3ecni,variant:convertFromBoolean(isSet(AdRY9zCBm),activeLocale)},hfffsE37s:{sgRCryYBY:sgRCryYBY1kx6f7,variant:convertFromBoolean(isSet(y1HcmKPp0),activeLocale)},ICaLqjgrF:{sgRCryYBY:sgRCryYBY194sboc,variant:convertFromBoolean(isSet(B5DKgLXjn),activeLocale)},LAswTXAZB:{sgRCryYBY:sgRCryYBY9wjd3c,variant:convertFromBoolean(isSet(tD24xMiL8),activeLocale)},qHiZOmJjF:{sgRCryYBY:sgRCryYBYaxaomd,variant:convertFromBoolean(isSet(BSMR_pmgK),activeLocale)},r2tgIh1J1:{sgRCryYBY:sgRCryYBYn04mw9,variant:convertFromBoolean(isSet(FdHqBODBm),activeLocale)},TUHARYOQg:{sgRCryYBY:sgRCryYBY2rpc2t,variant:convertFromBoolean(isSet(JF0rWzRCY),activeLocale)},UUYWGxIp4:{sgRCryYBY:sgRCryYBYgfppys,variant:convertFromBoolean(isSet(ViTAjP7by),activeLocale)},W2wcEeK5t:{sgRCryYBY:sgRCryYBY1llgroe,variant:convertFromBoolean(isSet(yHPePlCCn),activeLocale)},xG6CtAegT:{sgRCryYBY:sgRCryYBY3pbci9,variant:convertFromBoolean(isSet(c8uTbVtDQ),activeLocale)},ZH_cS0qHR:{sgRCryYBY:sgRCryYBY1hj10o7,variant:convertFromBoolean(isSet(mawlB2lTk),activeLocale)}},baseVariant,gestureVariant)})})}),isDisplayed(visible,visible1,visible2,visible3,visible4,visible5,visible6,visible7,visible8,visible9,visible10)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"64px\",y:(componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0,...addPropertyOverrides({bKdLSbrxP:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},hfffsE37s:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},ICaLqjgrF:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},qHiZOmJjF:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},r2tgIh1J1:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},TUHARYOQg:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},UUYWGxIp4:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},W2wcEeK5t:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0},xG6CtAegT:{y:(componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+310+0+178+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f5dua7-container\",layoutDependency:layoutDependency,layoutId:\"yIQKa3hQr-container\",nodeId:\"yIQKa3hQr\",rendersWithMotion:true,scopeId:\"hPxMkjQmS\",children:/*#__PURE__*/_jsx(CarouselArrow,{height:\"100%\",id:\"yIQKa3hQr\",layoutId:\"yIQKa3hQr\",sgRCryYBY:sgRCryYBY9wjd3c,style:{height:\"100%\",width:\"100%\"},variant:convertFromBoolean1(isSet(tD24xMiL8),activeLocale),width:\"100%\",...addPropertyOverrides({bKdLSbrxP:{sgRCryYBY:sgRCryYBYn04mw9,variant:convertFromBoolean1(isSet(FdHqBODBm),activeLocale)},hfffsE37s:{sgRCryYBY:sgRCryYBYgfppys,variant:convertFromBoolean1(isSet(ViTAjP7by),activeLocale)},ICaLqjgrF:{sgRCryYBY:sgRCryYBYaxaomd,variant:convertFromBoolean1(isSet(BSMR_pmgK),activeLocale)},LAswTXAZB:{sgRCryYBY:sgRCryYBY3pbci9,variant:convertFromBoolean1(isSet(c8uTbVtDQ),activeLocale)},qHiZOmJjF:{sgRCryYBY:sgRCryYBY2rpc2t,variant:convertFromBoolean1(isSet(JF0rWzRCY),activeLocale)},r2tgIh1J1:{sgRCryYBY:sgRCryYBY1ryek7g,variant:convertFromBoolean1(isSet(y9H5aOTSR),activeLocale)},TUHARYOQg:{sgRCryYBY:sgRCryYBY1kx6f7,variant:convertFromBoolean1(isSet(y1HcmKPp0),activeLocale)},UUYWGxIp4:{sgRCryYBY:sgRCryYBY1hj10o7,variant:\"HDVinegAc\"},W2wcEeK5t:{sgRCryYBY:sgRCryYBY1j3ecni,variant:convertFromBoolean1(isSet(AdRY9zCBm),activeLocale)},xG6CtAegT:{sgRCryYBY:sgRCryYBY1llgroe,variant:convertFromBoolean1(isSet(yHPePlCCn),activeLocale)},ZH_cS0qHR:{sgRCryYBY:sgRCryYBY194sboc,variant:convertFromBoolean1(isSet(B5DKgLXjn),activeLocale)}},baseVariant,gestureVariant)})})})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vxkhg2\",layoutDependency:layoutDependency,layoutId:\"CRLOgOzuN\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[visible11&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:6532,pixelWidth:4355,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(mawlB2lTk)},className:\"framer-6pk2b2\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"lCp2VM92k\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:6532,pixelWidth:4355,sizes:\"624.5887px\",...toResponsiveImage(mawlB2lTk)}},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:6532,pixelWidth:4355,sizes:\"624px\",...toResponsiveImage(mawlB2lTk)}}},baseVariant,gestureVariant)}),isDisplayed1(visible)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(tD24xMiL8)},className:\"framer-1rgv24g\",\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"D2cDhpwe4\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(tD24xMiL8),...{positionX:\"center\",positionY:\"center\"}}},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(tD24xMiL8)}}},baseVariant,gestureVariant)}),isDisplayed2(visible1)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(B5DKgLXjn)},className:\"framer-7tntlq\",\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"PKk0SZiP6\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(B5DKgLXjn),...{positionX:\"center\",positionY:\"center\"}}},LAswTXAZB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(B5DKgLXjn)}},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(B5DKgLXjn)}}},baseVariant,gestureVariant)}),isDisplayed3(visible2)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(c8uTbVtDQ)},className:\"framer-l1vit5\",\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"yvQWt5NIB\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(c8uTbVtDQ)}},LAswTXAZB:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(c8uTbVtDQ)}},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(c8uTbVtDQ),...{positionX:\"center\",positionY:\"center\"}}},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed4(visible3)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(BSMR_pmgK)},className:\"framer-1oho56l\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"jrVm5B5z4\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(BSMR_pmgK)}},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(BSMR_pmgK),...{positionX:\"center\",positionY:\"center\"}}},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(BSMR_pmgK)}},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed5(visible4)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(yHPePlCCn)},className:\"framer-1j0zz3\",\"data-framer-name\":\"Image 6\",layoutDependency:layoutDependency,layoutId:\"aFV9CwjP0\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(yHPePlCCn)}},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(yHPePlCCn),...{positionX:\"center\",positionY:\"center\"}}},xG6CtAegT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(yHPePlCCn)}},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed6(visible5)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(JF0rWzRCY)},className:\"framer-l8yh42\",\"data-framer-name\":\"Image 7\",layoutDependency:layoutDependency,layoutId:\"xyR10HXPA\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(JF0rWzRCY)}},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(JF0rWzRCY),...{positionX:\"center\",positionY:\"center\"}}},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(JF0rWzRCY)}},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed7(visible6)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(AdRY9zCBm)},className:\"framer-1refj39\",\"data-framer-name\":\"Image 8\",layoutDependency:layoutDependency,layoutId:\"GZlRV46Op\",...addPropertyOverrides({bKdLSbrxP:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(AdRY9zCBm),...{positionX:\"center\",positionY:\"center\"}}},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(AdRY9zCBm)}},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(AdRY9zCBm)}},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed8(visible7)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(y1HcmKPp0)},className:\"framer-8k9ofe\",\"data-framer-name\":\"Image 9\",layoutDependency:layoutDependency,layoutId:\"COfoLd2Ko\",...addPropertyOverrides({bKdLSbrxP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(y1HcmKPp0)}},hfffsE37s:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:\"634px\",...toResponsiveImage(y1HcmKPp0),...{positionX:\"center\",positionY:\"center\"}}},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:undefined},TUHARYOQg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(y1HcmKPp0)}},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed9(visible8)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(FdHqBODBm)},className:\"framer-c1jki1\",\"data-framer-name\":\"Image 10\",layoutDependency:layoutDependency,layoutId:\"Hf00qujql\",...addPropertyOverrides({bKdLSbrxP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(FdHqBODBm)}},hfffsE37s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(FdHqBODBm)}},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(FdHqBODBm),...{positionX:\"center\",positionY:\"center\"}}},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:undefined},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed10(visible9)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(ViTAjP7by)},className:\"framer-19i8eo\",\"data-framer-name\":\"Image 11\",layoutDependency:layoutDependency,layoutId:\"A0oIzOh1O\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(ViTAjP7by)}},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(ViTAjP7by)}},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px) + 1.5px)`,...toResponsiveImage(ViTAjP7by)}},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:undefined}},baseVariant,gestureVariant)}),isDisplayed11(visible10)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||682.5)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:1667,pixelWidth:2500,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(y9H5aOTSR)},className:\"framer-1nw41jf\",\"data-framer-name\":\"Image 12\",layoutDependency:layoutDependency,layoutId:\"s0lE0ppPj\",...addPropertyOverrides({bKdLSbrxP:{background:undefined},hfffsE37s:{background:undefined},ICaLqjgrF:{background:undefined},LAswTXAZB:{background:undefined},qHiZOmJjF:{background:undefined},r2tgIh1J1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:\"634px\",...toResponsiveImage(y9H5aOTSR)}},TUHARYOQg:{background:undefined},UUYWGxIp4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+(((componentViewport?.height||200)-144-530)/2+0+0)+0+0+0+0+0),pixelHeight:4e3,pixelWidth:2667,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 108px) / 2, 1px)`,...toResponsiveImage(y9H5aOTSR)}},W2wcEeK5t:{background:undefined},xG6CtAegT:{background:undefined},ZH_cS0qHR:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"}}},baseVariant,gestureVariant)})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t0tTw.framer-zxkxki, .framer-t0tTw .framer-zxkxki { display: block; }\",\".framer-t0tTw.framer-51q4wh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 96px 32px 48px 32px; position: relative; width: 1440px; }\",\".framer-t0tTw .framer-1ifzmbc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0tTw .framer-13ixo0o { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 108px; height: min-content; justify-content: flex-start; max-width: 1376px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0tTw .framer-19eiywg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-t0tTw .framer-1yd7x34 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0tTw .framer-1hc3d1p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-t0tTw .framer-5a5xex { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-t0tTw .framer-516c8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-t0tTw .framer-iyi73b-container, .framer-t0tTw .framer-1f5dua7-container { flex: none; height: 42px; position: relative; width: 64px; }\",\".framer-t0tTw .framer-1vxkhg2 { aspect-ratio: 1.1773584905660377 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 539px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-t0tTw .framer-6pk2b2 { aspect-ratio: 1.1773584905660377 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-t0tTw .framer-1rgv24g, .framer-t0tTw .framer-7tntlq, .framer-t0tTw .framer-l1vit5, .framer-t0tTw .framer-1oho56l, .framer-t0tTw .framer-1j0zz3, .framer-t0tTw .framer-l8yh42, .framer-t0tTw .framer-1refj39, .framer-t0tTw .framer-8k9ofe, .framer-t0tTw .framer-c1jki1, .framer-t0tTw .framer-19i8eo, .framer-t0tTw .framer-1nw41jf { bottom: 0px; flex: none; left: -634px; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t0tTw.framer-51q4wh, .framer-t0tTw .framer-1ifzmbc, .framer-t0tTw .framer-13ixo0o, .framer-t0tTw .framer-19eiywg, .framer-t0tTw .framer-1yd7x34, .framer-t0tTw .framer-5a5xex, .framer-t0tTw .framer-516c8l { gap: 0px; } .framer-t0tTw.framer-51q4wh > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-t0tTw.framer-51q4wh > :first-child, .framer-t0tTw .framer-1ifzmbc > :first-child, .framer-t0tTw .framer-19eiywg > :first-child, .framer-t0tTw .framer-1yd7x34 > :first-child { margin-top: 0px; } .framer-t0tTw.framer-51q4wh > :last-child, .framer-t0tTw .framer-1ifzmbc > :last-child, .framer-t0tTw .framer-19eiywg > :last-child, .framer-t0tTw .framer-1yd7x34 > :last-child { margin-bottom: 0px; } .framer-t0tTw .framer-1ifzmbc > *, .framer-t0tTw .framer-19eiywg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-t0tTw .framer-13ixo0o > * { margin: 0px; margin-left: calc(108px / 2); margin-right: calc(108px / 2); } .framer-t0tTw .framer-13ixo0o > :first-child, .framer-t0tTw .framer-5a5xex > :first-child, .framer-t0tTw .framer-516c8l > :first-child { margin-left: 0px; } .framer-t0tTw .framer-13ixo0o > :last-child, .framer-t0tTw .framer-5a5xex > :last-child, .framer-t0tTw .framer-516c8l > :last-child { margin-right: 0px; } .framer-t0tTw .framer-1yd7x34 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-t0tTw .framer-5a5xex > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-t0tTw .framer-516c8l > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-t0tTw.framer-v-brl204 .framer-516c8l, .framer-t0tTw.framer-v-1g4d72g .framer-516c8l, .framer-t0tTw.framer-v-11oirn6 .framer-516c8l, .framer-t0tTw.framer-v-1udjozo .framer-516c8l, .framer-t0tTw.framer-v-7yrb9q .framer-516c8l, .framer-t0tTw.framer-v-1xnt4u6 .framer-516c8l, .framer-t0tTw.framer-v-15rv1ff .framer-516c8l, .framer-t0tTw.framer-v-1e0ui96 .framer-516c8l, .framer-t0tTw.framer-v-1xd51lh .framer-516c8l, .framer-t0tTw.framer-v-1pl9xyq .framer-516c8l, .framer-t0tTw.framer-v-p8at60 .framer-516c8l { order: 0; }\",\".framer-t0tTw.framer-v-brl204 .framer-6pk2b2, .framer-t0tTw.framer-v-11oirn6 .framer-6pk2b2, .framer-t0tTw.framer-v-1udjozo .framer-6pk2b2 { bottom: 0px; height: unset; left: unset; right: -634px; width: var(--framer-aspect-ratio-supported, 634px); }\",\".framer-t0tTw.framer-v-brl204 .framer-1rgv24g, .framer-t0tTw.framer-v-1g4d72g .framer-7tntlq, .framer-t0tTw.framer-v-11oirn6 .framer-l1vit5, .framer-t0tTw.framer-v-1udjozo .framer-1oho56l, .framer-t0tTw.framer-v-7yrb9q .framer-1j0zz3, .framer-t0tTw.framer-v-1xnt4u6 .framer-l8yh42, .framer-t0tTw.framer-v-15rv1ff .framer-1refj39, .framer-t0tTw.framer-v-1e0ui96 .framer-8k9ofe, .framer-t0tTw.framer-v-1xd51lh .framer-c1jki1, .framer-t0tTw.framer-v-1pl9xyq .framer-19i8eo, .framer-t0tTw.framer-v-p8at60 .framer-1nw41jf { bottom: 0px; left: 0px; right: 0px; width: unset; }\",\".framer-t0tTw.framer-v-brl204 .framer-7tntlq, .framer-t0tTw.framer-v-brl204 .framer-l1vit5, .framer-t0tTw.framer-v-brl204 .framer-1oho56l, .framer-t0tTw.framer-v-brl204 .framer-1j0zz3, .framer-t0tTw.framer-v-brl204 .framer-l8yh42, .framer-t0tTw.framer-v-brl204 .framer-1refj39, .framer-t0tTw.framer-v-brl204 .framer-8k9ofe, .framer-t0tTw.framer-v-brl204 .framer-c1jki1, .framer-t0tTw.framer-v-brl204 .framer-19i8eo, .framer-t0tTw.framer-v-brl204 .framer-1nw41jf, .framer-t0tTw.framer-v-1g4d72g .framer-l1vit5, .framer-t0tTw.framer-v-1g4d72g .framer-1oho56l, .framer-t0tTw.framer-v-1g4d72g .framer-1j0zz3, .framer-t0tTw.framer-v-1g4d72g .framer-l8yh42, .framer-t0tTw.framer-v-1g4d72g .framer-1refj39, .framer-t0tTw.framer-v-1g4d72g .framer-8k9ofe, .framer-t0tTw.framer-v-1g4d72g .framer-c1jki1, .framer-t0tTw.framer-v-1g4d72g .framer-19i8eo, .framer-t0tTw.framer-v-1g4d72g .framer-1nw41jf, .framer-t0tTw.framer-v-11oirn6 .framer-1oho56l, .framer-t0tTw.framer-v-11oirn6 .framer-1j0zz3, .framer-t0tTw.framer-v-11oirn6 .framer-l8yh42, .framer-t0tTw.framer-v-11oirn6 .framer-1refj39, .framer-t0tTw.framer-v-11oirn6 .framer-8k9ofe, .framer-t0tTw.framer-v-11oirn6 .framer-c1jki1, .framer-t0tTw.framer-v-11oirn6 .framer-19i8eo, .framer-t0tTw.framer-v-11oirn6 .framer-1nw41jf, .framer-t0tTw.framer-v-1udjozo .framer-1j0zz3, .framer-t0tTw.framer-v-1udjozo .framer-l8yh42, .framer-t0tTw.framer-v-1udjozo .framer-1refj39, .framer-t0tTw.framer-v-1udjozo .framer-8k9ofe, .framer-t0tTw.framer-v-1udjozo .framer-c1jki1, .framer-t0tTw.framer-v-1udjozo .framer-19i8eo, .framer-t0tTw.framer-v-1udjozo .framer-1nw41jf, .framer-t0tTw.framer-v-7yrb9q .framer-l8yh42, .framer-t0tTw.framer-v-7yrb9q .framer-1refj39, .framer-t0tTw.framer-v-7yrb9q .framer-8k9ofe, .framer-t0tTw.framer-v-7yrb9q .framer-c1jki1, .framer-t0tTw.framer-v-7yrb9q .framer-19i8eo, .framer-t0tTw.framer-v-7yrb9q .framer-1nw41jf, .framer-t0tTw.framer-v-1xnt4u6 .framer-1refj39, .framer-t0tTw.framer-v-1xnt4u6 .framer-8k9ofe, .framer-t0tTw.framer-v-1xnt4u6 .framer-c1jki1, .framer-t0tTw.framer-v-1xnt4u6 .framer-19i8eo, .framer-t0tTw.framer-v-1xnt4u6 .framer-1nw41jf, .framer-t0tTw.framer-v-15rv1ff .framer-8k9ofe, .framer-t0tTw.framer-v-15rv1ff .framer-c1jki1, .framer-t0tTw.framer-v-15rv1ff .framer-19i8eo, .framer-t0tTw.framer-v-15rv1ff .framer-1nw41jf, .framer-t0tTw.framer-v-1e0ui96 .framer-c1jki1, .framer-t0tTw.framer-v-1e0ui96 .framer-19i8eo, .framer-t0tTw.framer-v-1e0ui96 .framer-1nw41jf, .framer-t0tTw.framer-v-1xd51lh .framer-19i8eo, .framer-t0tTw.framer-v-1xd51lh .framer-1nw41jf, .framer-t0tTw.framer-v-1pl9xyq .framer-1nw41jf { bottom: 0px; width: 634px; }\",\".framer-t0tTw.framer-v-1g4d72g .framer-6pk2b2 { bottom: var(--framer-aspect-ratio-supported, 0px); height: unset; left: unset; right: -634px; }\",\".framer-t0tTw.framer-v-1g4d72g .framer-1rgv24g, .framer-t0tTw.framer-v-11oirn6 .framer-1rgv24g, .framer-t0tTw.framer-v-11oirn6 .framer-7tntlq, .framer-t0tTw.framer-v-1udjozo .framer-1rgv24g, .framer-t0tTw.framer-v-1udjozo .framer-7tntlq, .framer-t0tTw.framer-v-1udjozo .framer-l1vit5, .framer-t0tTw.framer-v-7yrb9q .framer-1rgv24g, .framer-t0tTw.framer-v-7yrb9q .framer-7tntlq, .framer-t0tTw.framer-v-7yrb9q .framer-l1vit5, .framer-t0tTw.framer-v-7yrb9q .framer-1oho56l, .framer-t0tTw.framer-v-1xnt4u6 .framer-1rgv24g, .framer-t0tTw.framer-v-1xnt4u6 .framer-7tntlq, .framer-t0tTw.framer-v-1xnt4u6 .framer-l1vit5, .framer-t0tTw.framer-v-1xnt4u6 .framer-1oho56l, .framer-t0tTw.framer-v-1xnt4u6 .framer-1j0zz3, .framer-t0tTw.framer-v-15rv1ff .framer-1j0zz3, .framer-t0tTw.framer-v-1xd51lh .framer-1rgv24g, .framer-t0tTw.framer-v-1xd51lh .framer-7tntlq, .framer-t0tTw.framer-v-1xd51lh .framer-l1vit5, .framer-t0tTw.framer-v-1xd51lh .framer-1oho56l, .framer-t0tTw.framer-v-1xd51lh .framer-1j0zz3, .framer-t0tTw.framer-v-1xd51lh .framer-l8yh42, .framer-t0tTw.framer-v-1xd51lh .framer-1refj39, .framer-t0tTw.framer-v-1xd51lh .framer-8k9ofe { bottom: 0px; left: unset; right: -634px; width: 634px; }\",\".framer-t0tTw.framer-v-11oirn6 .framer-1vxkhg2, .framer-t0tTw.framer-v-1udjozo .framer-1vxkhg2, .framer-t0tTw.framer-v-7yrb9q .framer-1vxkhg2, .framer-t0tTw.framer-v-1xnt4u6 .framer-1vxkhg2, .framer-t0tTw.framer-v-15rv1ff .framer-1vxkhg2, .framer-t0tTw.framer-v-1e0ui96 .framer-1vxkhg2, .framer-t0tTw.framer-v-1xd51lh .framer-1vxkhg2, .framer-t0tTw.framer-v-1pl9xyq .framer-1vxkhg2, .framer-t0tTw.framer-v-p8at60 .framer-1vxkhg2 { height: var(--framer-aspect-ratio-supported, 170px); }\",\".framer-t0tTw.framer-v-7yrb9q .framer-6pk2b2, .framer-t0tTw.framer-v-1xd51lh .framer-6pk2b2 { left: unset; right: -629px; }\",\".framer-t0tTw.framer-v-1xnt4u6 .framer-6pk2b2, .framer-t0tTw.framer-v-15rv1ff .framer-6pk2b2, .framer-t0tTw.framer-v-1e0ui96 .framer-6pk2b2, .framer-t0tTw.framer-v-1pl9xyq .framer-6pk2b2, .framer-t0tTw.framer-v-p8at60 .framer-6pk2b2 { bottom: 0px; height: unset; left: unset; right: -634px; width: var(--framer-aspect-ratio-supported, 635px); }\",\".framer-t0tTw.framer-v-15rv1ff .framer-1rgv24g, .framer-t0tTw.framer-v-15rv1ff .framer-7tntlq, .framer-t0tTw.framer-v-15rv1ff .framer-l1vit5, .framer-t0tTw.framer-v-15rv1ff .framer-1oho56l, .framer-t0tTw.framer-v-15rv1ff .framer-l8yh42, .framer-t0tTw.framer-v-1e0ui96 .framer-1rgv24g, .framer-t0tTw.framer-v-1e0ui96 .framer-7tntlq, .framer-t0tTw.framer-v-1e0ui96 .framer-l1vit5, .framer-t0tTw.framer-v-1e0ui96 .framer-1oho56l, .framer-t0tTw.framer-v-1e0ui96 .framer-1j0zz3, .framer-t0tTw.framer-v-1e0ui96 .framer-l8yh42, .framer-t0tTw.framer-v-1e0ui96 .framer-1refj39, .framer-t0tTw.framer-v-1pl9xyq .framer-1rgv24g, .framer-t0tTw.framer-v-1pl9xyq .framer-7tntlq, .framer-t0tTw.framer-v-1pl9xyq .framer-l1vit5, .framer-t0tTw.framer-v-1pl9xyq .framer-1oho56l, .framer-t0tTw.framer-v-1pl9xyq .framer-1j0zz3, .framer-t0tTw.framer-v-1pl9xyq .framer-l8yh42, .framer-t0tTw.framer-v-1pl9xyq .framer-1refj39, .framer-t0tTw.framer-v-1pl9xyq .framer-8k9ofe, .framer-t0tTw.framer-v-1pl9xyq .framer-c1jki1 { bottom: 0px; left: 634px; right: -634px; width: unset; }\",\".framer-t0tTw.framer-v-p8at60 .framer-1rgv24g, .framer-t0tTw.framer-v-p8at60 .framer-7tntlq, .framer-t0tTw.framer-v-p8at60 .framer-l1vit5, .framer-t0tTw.framer-v-p8at60 .framer-1oho56l, .framer-t0tTw.framer-v-p8at60 .framer-1j0zz3, .framer-t0tTw.framer-v-p8at60 .framer-l8yh42, .framer-t0tTw.framer-v-p8at60 .framer-1refj39, .framer-t0tTw.framer-v-p8at60 .framer-8k9ofe, .framer-t0tTw.framer-v-p8at60 .framer-c1jki1 { bottom: 0px; left: 632px; right: -634px; width: unset; }\",\".framer-t0tTw.framer-v-p8at60 .framer-19i8eo { bottom: 0px; left: 635px; right: -636px; width: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 682.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZH_cS0qHR\":{\"layout\":[\"fixed\",\"auto\"]},\"LAswTXAZB\":{\"layout\":[\"fixed\",\"auto\"]},\"ICaLqjgrF\":{\"layout\":[\"fixed\",\"auto\"]},\"xG6CtAegT\":{\"layout\":[\"fixed\",\"auto\"]},\"qHiZOmJjF\":{\"layout\":[\"fixed\",\"auto\"]},\"W2wcEeK5t\":{\"layout\":[\"fixed\",\"auto\"]},\"TUHARYOQg\":{\"layout\":[\"fixed\",\"auto\"]},\"bKdLSbrxP\":{\"layout\":[\"fixed\",\"auto\"]},\"hfffsE37s\":{\"layout\":[\"fixed\",\"auto\"]},\"r2tgIh1J1\":{\"layout\":[\"fixed\",\"auto\"]},\"UUYWGxIp4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mawlB2lTk\":\"image1\",\"txNb0EPTO\":\"imageCaption1\",\"tD24xMiL8\":\"image2\",\"pHoe7PH_C\":\"imageCaption2\",\"B5DKgLXjn\":\"image3\",\"fCkH6dPfN\":\"imageCaption3\",\"c8uTbVtDQ\":\"image4\",\"ln8mfKf4k\":\"imageCaption4\",\"BSMR_pmgK\":\"image5\",\"RRmiddvvd\":\"imageCaption5\",\"yHPePlCCn\":\"image6\",\"xoQZIqE_k\":\"imageCaption6\",\"JF0rWzRCY\":\"image7\",\"eqB3o2taF\":\"imageCaption7\",\"AdRY9zCBm\":\"image8\",\"dId_bLgxH\":\"imageCaption8\",\"y1HcmKPp0\":\"image9\",\"wxJtOkMpN\":\"imageCaption9\",\"FdHqBODBm\":\"image10\",\"Wm0NlstBJ\":\"imageCaption10\",\"ViTAjP7by\":\"image11\",\"bMe44Ctfh\":\"imageCaption11\",\"y9H5aOTSR\":\"image12\",\"heDG7QfcP\":\"imageCaption12\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhPxMkjQmS=withCSS(Component,css,\"framer-t0tTw\");export default FramerhPxMkjQmS;FramerhPxMkjQmS.displayName=\"Image Carousel\";FramerhPxMkjQmS.defaultProps={height:682.5,width:1440};addPropertyControls(FramerhPxMkjQmS,{variant:{options:[\"lzKVvHFp_\",\"ZH_cS0qHR\",\"LAswTXAZB\",\"ICaLqjgrF\",\"xG6CtAegT\",\"qHiZOmJjF\",\"W2wcEeK5t\",\"TUHARYOQg\",\"bKdLSbrxP\",\"hfffsE37s\",\"r2tgIh1J1\",\"UUYWGxIp4\"],optionTitles:[\"desktop 1\",\"desktop 2\",\"desktop 3\",\"desktop 4\",\"desktop 5\",\"desktop 6\",\"desktop 7\",\"desktop 8\",\"desktop 9\",\"desktop 10\",\"desktop 11\",\"desktop 12\"],title:\"Variant\",type:ControlType.Enum},mawlB2lTk:{title:\"Image 1\",type:ControlType.ResponsiveImage},txNb0EPTO:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 1\",type:ControlType.String},tD24xMiL8:{title:\"Image 2\",type:ControlType.ResponsiveImage},pHoe7PH_C:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 2\",type:ControlType.String},B5DKgLXjn:{title:\"Image 3\",type:ControlType.ResponsiveImage},fCkH6dPfN:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 3\",type:ControlType.String},c8uTbVtDQ:{title:\"Image 4\",type:ControlType.ResponsiveImage},ln8mfKf4k:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 4\",type:ControlType.String},BSMR_pmgK:{title:\"Image 5\",type:ControlType.ResponsiveImage},RRmiddvvd:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 5\",type:ControlType.String},yHPePlCCn:{title:\"Image 6\",type:ControlType.ResponsiveImage},xoQZIqE_k:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 6\",type:ControlType.String},JF0rWzRCY:{title:\"Image 7\",type:ControlType.ResponsiveImage},eqB3o2taF:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 7\",type:ControlType.String},AdRY9zCBm:{title:\"Image 8\",type:ControlType.ResponsiveImage},dId_bLgxH:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 8\",type:ControlType.String},y1HcmKPp0:{title:\"Image 9\",type:ControlType.ResponsiveImage},wxJtOkMpN:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 9\",type:ControlType.String},FdHqBODBm:{title:\"Image 10\",type:ControlType.ResponsiveImage},Wm0NlstBJ:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 10\",type:ControlType.String},ViTAjP7by:{title:\"Image 11\",type:ControlType.ResponsiveImage},bMe44Ctfh:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 11\",type:ControlType.String},y9H5aOTSR:{title:\"Image 12\",type:ControlType.ResponsiveImage},heDG7QfcP:{defaultValue:\"Caption\",displayTextArea:false,title:\"Image Caption 12\",type:ControlType.String}});addFonts(FramerhPxMkjQmS,[{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\"}]},...CarouselArrowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhPxMkjQmS\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"mawlB2lTk\\\":\\\"image1\\\",\\\"txNb0EPTO\\\":\\\"imageCaption1\\\",\\\"tD24xMiL8\\\":\\\"image2\\\",\\\"pHoe7PH_C\\\":\\\"imageCaption2\\\",\\\"B5DKgLXjn\\\":\\\"image3\\\",\\\"fCkH6dPfN\\\":\\\"imageCaption3\\\",\\\"c8uTbVtDQ\\\":\\\"image4\\\",\\\"ln8mfKf4k\\\":\\\"imageCaption4\\\",\\\"BSMR_pmgK\\\":\\\"image5\\\",\\\"RRmiddvvd\\\":\\\"imageCaption5\\\",\\\"yHPePlCCn\\\":\\\"image6\\\",\\\"xoQZIqE_k\\\":\\\"imageCaption6\\\",\\\"JF0rWzRCY\\\":\\\"image7\\\",\\\"eqB3o2taF\\\":\\\"imageCaption7\\\",\\\"AdRY9zCBm\\\":\\\"image8\\\",\\\"dId_bLgxH\\\":\\\"imageCaption8\\\",\\\"y1HcmKPp0\\\":\\\"image9\\\",\\\"wxJtOkMpN\\\":\\\"imageCaption9\\\",\\\"FdHqBODBm\\\":\\\"image10\\\",\\\"Wm0NlstBJ\\\":\\\"imageCaption10\\\",\\\"ViTAjP7by\\\":\\\"image11\\\",\\\"bMe44Ctfh\\\":\\\"imageCaption11\\\",\\\"y9H5aOTSR\\\":\\\"image12\\\",\\\"heDG7QfcP\\\":\\\"imageCaption12\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"682.5\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZH_cS0qHR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LAswTXAZB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ICaLqjgrF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xG6CtAegT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qHiZOmJjF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W2wcEeK5t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TUHARYOQg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bKdLSbrxP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hfffsE37s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r2tgIh1J1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UUYWGxIp4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hPxMkjQmS.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Navigation from\"#framer/local/canvasComponent/au45l9Y4f/au45l9Y4f.js\";import Footer from\"#framer/local/canvasComponent/g0GkeaaDQ/g0GkeaaDQ.js\";import ImageCarousel from\"#framer/local/canvasComponent/hPxMkjQmS/hPxMkjQmS.js\";import ExpertiseTag from\"#framer/local/canvasComponent/Ik0drfmJ8/Ik0drfmJ8.js\";import Button from\"#framer/local/canvasComponent/JPYMgXYdk/JPYMgXYdk.js\";import BentoQuote from\"#framer/local/canvasComponent/qbrLrvlrs/qbrLrvlrs.js\";import FooterCTA from\"#framer/local/canvasComponent/skIUMIWFD/skIUMIWFD.js\";import Projects,{enumToDisplayNameFunctions}from\"#framer/local/collection/WONmTdNjq/WONmTdNjq.js\";import*as sharedStyle6 from\"#framer/local/css/d5VOYRWSA/d5VOYRWSA.js\";import*as sharedStyle from\"#framer/local/css/e0iKVzbwj/e0iKVzbwj.js\";import*as sharedStyle2 from\"#framer/local/css/fc3AkIQBk/fc3AkIQBk.js\";import*as sharedStyle8 from\"#framer/local/css/jiU3DdQzq/jiU3DdQzq.js\";import*as sharedStyle3 from\"#framer/local/css/K4kPWFZmQ/K4kPWFZmQ.js\";import*as sharedStyle5 from\"#framer/local/css/noO1bB3h9/noO1bB3h9.js\";import*as sharedStyle9 from\"#framer/local/css/QJozNBKRz/QJozNBKRz.js\";import*as sharedStyle10 from\"#framer/local/css/Re0gOWYe_/Re0gOWYe_.js\";import*as sharedStyle1 from\"#framer/local/css/suIdH8ZoL/suIdH8ZoL.js\";import*as sharedStyle4 from\"#framer/local/css/yTSV2YWX_/yTSV2YWX_.js\";import*as sharedStyle7 from\"#framer/local/css/ZMdHCqIB8/ZMdHCqIB8.js\";import metadataProvider from\"#framer/local/webPageMetadata/YrmfOT8Rd/YrmfOT8Rd.js\";const NavigationFonts=getFonts(Navigation);const ExpertiseTagFonts=getFonts(ExpertiseTag);const ImageCarouselFonts=getFonts(ImageCarousel);const ButtonFonts=getFonts(Button);const BentoQuoteFonts=getFonts(BentoQuote);const FooterCTAFonts=getFonts(FooterCTA);const FooterFonts=getFonts(Footer);const breakpoints={fA3hrLJ2P:\"(min-width: 768px) and (max-width: 1199px)\",GtQc39WrX:\"(min-width: 1200px) and (max-width: 1439px)\",sKuS2ZhHo:\"(max-width: 767px)\",T3kczirOG:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Rcfrm\";const variantClassNames={fA3hrLJ2P:\"framer-v-18w97se\",GtQc39WrX:\"framer-v-8nq2yv\",sKuS2ZhHo:\"framer-v-25si9k\",T3kczirOG:\"framer-v-i4tk7j\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromString=(value,activeLocale)=>{switch(typeof value===\"string\"?value.toLowerCase():value){case\"\":return undefined;default:return 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={Desktop:\"GtQc39WrX\",Large:\"T3kczirOG\",Phone:\"sKuS2ZhHo\",Tablet:\"fA3hrLJ2P\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GtQc39WrX\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"YrmfOT8Rd\",data:Projects,type:\"Collection\"},select:[{collection:\"YrmfOT8Rd\",name:\"YAJ_fL229\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"rXJnPW7qV\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"v9EJMI6ee\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"x_QD7LUXQ\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"xL2QQKRz0\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"QBddrIDJx\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"ju4uUFQpg\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"N5CcQrrta\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"YONfR9Eg_\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"HU8r2Tzpe\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"ay5nX7OdT\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"wVI_JQHpK\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"iwiuvAUmm\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"uVge6XpWA\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"gKWbH_s0F\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"gVKXqcif6\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"aDl5mPgtB\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"njSoHZa7V\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"KkUTBRi9c\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"luzN7UYCQ\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"Wc1pVgeST\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"cwbeT_a30\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"krJjhpf1c\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"UTGW85k_q\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"zrCbYMUbZ\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"HDoWQKwwW\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"YwkfWnlX0\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"Dc4jSlFv7\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"HCNwCtHq3\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"elTrMp4RZ\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"HVcOCaevQ\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"dZI7UFnbn\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"QvOpaAvYn\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"QYZbsNJiL\",type:\"Identifier\"},{collection:\"YrmfOT8Rd\",name:\"fMmqIwkFA\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"YrmfOT8Rd\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,YAJ_fL229=getFromCurrentRouteData(\"YAJ_fL229\")??\"\",rXJnPW7qV=getFromCurrentRouteData(\"rXJnPW7qV\"),ju4uUFQpg=getFromCurrentRouteData(\"ju4uUFQpg\")??\"\",x_QD7LUXQ=getFromCurrentRouteData(\"x_QD7LUXQ\"),HU8r2Tzpe=getFromCurrentRouteData(\"HU8r2Tzpe\")??\"\",ay5nX7OdT=getFromCurrentRouteData(\"ay5nX7OdT\")??\"\",xL2QQKRz0=getFromCurrentRouteData(\"xL2QQKRz0\")??\"\",QBddrIDJx=getFromCurrentRouteData(\"QBddrIDJx\")??\"\",v9EJMI6ee=getFromCurrentRouteData(\"v9EJMI6ee\")??\"\",N5CcQrrta=getFromCurrentRouteData(\"N5CcQrrta\")??\"\",wVI_JQHpK=getFromCurrentRouteData(\"wVI_JQHpK\"),iwiuvAUmm=getFromCurrentRouteData(\"iwiuvAUmm\")??\"\",uVge6XpWA=getFromCurrentRouteData(\"uVge6XpWA\"),gKWbH_s0F=getFromCurrentRouteData(\"gKWbH_s0F\")??\"\",gVKXqcif6=getFromCurrentRouteData(\"gVKXqcif6\"),aDl5mPgtB=getFromCurrentRouteData(\"aDl5mPgtB\")??\"\",njSoHZa7V=getFromCurrentRouteData(\"njSoHZa7V\"),KkUTBRi9c=getFromCurrentRouteData(\"KkUTBRi9c\")??\"\",luzN7UYCQ=getFromCurrentRouteData(\"luzN7UYCQ\"),Wc1pVgeST=getFromCurrentRouteData(\"Wc1pVgeST\")??\"\",cwbeT_a30=getFromCurrentRouteData(\"cwbeT_a30\"),krJjhpf1c=getFromCurrentRouteData(\"krJjhpf1c\")??\"\",UTGW85k_q=getFromCurrentRouteData(\"UTGW85k_q\"),zrCbYMUbZ=getFromCurrentRouteData(\"zrCbYMUbZ\")??\"\",HDoWQKwwW=getFromCurrentRouteData(\"HDoWQKwwW\"),YwkfWnlX0=getFromCurrentRouteData(\"YwkfWnlX0\")??\"\",Dc4jSlFv7=getFromCurrentRouteData(\"Dc4jSlFv7\"),HCNwCtHq3=getFromCurrentRouteData(\"HCNwCtHq3\")??\"\",elTrMp4RZ=getFromCurrentRouteData(\"elTrMp4RZ\"),HVcOCaevQ=getFromCurrentRouteData(\"HVcOCaevQ\")??\"\",dZI7UFnbn=getFromCurrentRouteData(\"dZI7UFnbn\"),QvOpaAvYn=getFromCurrentRouteData(\"QvOpaAvYn\")??\"\",QYZbsNJiL=getFromCurrentRouteData(\"QYZbsNJiL\"),fMmqIwkFA=getFromCurrentRouteData(\"fMmqIwkFA\")??\"\",YONfR9Eg_=getFromCurrentRouteData(\"YONfR9Eg_\")??\"\",zpYSIZ9CHXjGZnxCcS,YAJ_fL229XjGZnxCcS,x_QD7LUXQXjGZnxCcS,rXJnPW7qVXjGZnxCcS,idXjGZnxCcS,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(ju4uUFQpg);const visible1=isSet(HU8r2Tzpe);const visible2=isSet(ay5nX7OdT);const visible3=isSet(xL2QQKRz0);const visible4=isSet(QBddrIDJx);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"T3kczirOG\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"T3kczirOG\")return true;return false;};const visible5=isSet(wVI_JQHpK);const isDisplayed2=value=>{if(!isBrowser())return true;if(baseVariant===\"sKuS2ZhHo\")return false;return value;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GtQc39WrX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(Image,{...restProps,background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1500,pixelWidth:2001,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WD7roHVSFSXkRukIC9oNNL1oUgw.png\",srcSet:\"https://framerusercontent.com/images/WD7roHVSFSXkRukIC9oNNL1oUgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WD7roHVSFSXkRukIC9oNNL1oUgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WD7roHVSFSXkRukIC9oNNL1oUgw.png 2001w\"},className:cx(scopingClassNames,\"framer-8nq2yv\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xa1mg-container\",nodeId:\"HApIilF8B\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{variant:\"ChL8oHie7\"},sKuS2ZhHo:{variant:\"ChL8oHie7\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"HApIilF8B\",layoutId:\"HApIilF8B\",style:{width:\"100%\"},variant:\"I4BXnk0F8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y6r1b8\",\"data-framer-name\":\"HEADER\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dl640q\",\"data-styles-preset\":\"e0iKVzbwj\",style:{\"--framer-text-color\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(17, 59, 24))\"},children:\"Learn about agroforestry\"})}),className:\"framer-1r4uyqy\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],text:YAJ_fL229,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jxj7gx\",\"data-framer-name\":\"SPACER\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yb0upn\",\"data-framer-name\":\"HEADER IMAGE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sKuS2ZhHo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+268+0),pixelHeight:816,pixelWidth:1456,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,...toResponsiveImage(rXJnPW7qV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:816,intrinsicWidth:1456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+348+0),pixelHeight:816,pixelWidth:1456,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px)`,...toResponsiveImage(rXJnPW7qV)},className:\"framer-1220t20\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgg812\",\"data-framer-name\":\"ABOUT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqwxsw\",\"data-framer-name\":\"Tags list\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ado31\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bn3elr\",\"data-styles-preset\":\"suIdH8ZoL\",children:\"Completion\"})}),className:\"framer-33nvt1\",\"data-framer-name\":\"completion date\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ltgol\",\"data-framer-name\":\"related-tags\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+921+40+0+0+0+0+66.8256+0+0},T3kczirOG:{y:(componentViewport?.y||0)+0+921+40+0+0+0+66.8256+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tf0b6h-container\",nodeId:\"wg9O3Uf6l\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"wg9O3Uf6l\",layoutId:\"wg9O3Uf6l\",width:\"100%\",YtQdizKIL:ju4uUFQpg})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6drm8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bn3elr\",\"data-styles-preset\":\"suIdH8ZoL\",children:\"Agroforestry Practice\"})}),className:\"framer-1vbsdcj\",\"data-framer-name\":\"agroforestry practice\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-acepf8\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c14qdk-container\",nodeId:\"kuHF6aJID\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"kuHF6aJID\",layoutId:\"kuHF6aJID\",width:\"100%\",YtQdizKIL:enumToDisplayNameFunctions[\"x_QD7LUXQ\"]?.(x_QD7LUXQ,activeLocale)})})})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtzxke\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bn3elr\",\"data-styles-preset\":\"suIdH8ZoL\",children:\"Team\"})}),className:\"framer-13k0i9d\",\"data-framer-name\":\"team\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ux8hv\",\"data-framer-name\":\"tags\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+921+40+0+0+240+0+66.8256+0+0},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+841+40+0+0+120+0+66.8256+0+0},T3kczirOG:{y:(componentViewport?.y||0)+0+921+40+0+240+0+66.8256+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+921+40+0+120+0+66.8256+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yhd3sv-container\",nodeId:\"uLuFY0rPA\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"uLuFY0rPA\",layoutId:\"uLuFY0rPA\",width:\"100%\",YtQdizKIL:HU8r2Tzpe})})})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+921+40+0+0+240+0+66.8256+0+0},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+841+40+0+0+120+0+66.8256+0+0},T3kczirOG:{y:(componentViewport?.y||0)+0+921+40+0+240+0+66.8256+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,y:(componentViewport?.y||0)+0+921+40+0+120+0+66.8256+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zlnexd-container\",nodeId:\"HyB9x3faY\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"HyB9x3faY\",layoutId:\"HyB9x3faY\",width:\"100%\",YtQdizKIL:ay5nX7OdT})})})})]})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-brnpj9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bn3elr\",\"data-styles-preset\":\"suIdH8ZoL\",children:\"Client\"})}),className:\"framer-61894b\",\"data-framer-name\":\"client\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o14eid\",\"data-framer-name\":\"related-tags\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hkjw8j-container\",nodeId:\"A6AFGjnGO\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"A6AFGjnGO\",layoutId:\"A6AFGjnGO\",width:\"100%\",YtQdizKIL:xL2QQKRz0})})})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3a853b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1bn3elr\",\"data-styles-preset\":\"suIdH8ZoL\",children:\"Funding\"})}),className:\"framer-1kdlmqe\",\"data-framer-name\":\"Our areas of expertise.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m025f7\",\"data-framer-name\":\"related-tags\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,children:/*#__PURE__*/_jsx(Container,{className:\"framer-137ot46-container\",nodeId:\"vI6ZUT9QD\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ExpertiseTag,{height:\"100%\",id:\"vI6ZUT9QD\",layoutId:\"vI6ZUT9QD\",width:\"100%\",YtQdizKIL:QBddrIDJx})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ckqim\",\"data-framer-name\":\"details\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c2pzw8 hidden-i4tk7j\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nbhm8i\",\"data-styles-preset\":\"fc3AkIQBk\",children:\"This case study explores ClimaCo's successful collaboration with Acme Steel, a leading steel manufacturer, to implement a groundbreaking carbon capture technology (CCT) solution. Facing mounting pressure to reduce their environmental footprint,\"})}),className:\"framer-byll6z\",fonts:[\"Inter\"],text:v9EJMI6ee,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mnmpzq\",\"data-framer-name\":\"summary\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},children:\"Summary\"})}),className:\"framer-1vojofi\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:N5CcQrrta,className:\"framer-rsbxrq\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-yaoqe7\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-a96sf1\",h3:\"framer-styles-preset-1nbhm8i\",h4:\"framer-styles-preset-6seovk\",h5:\"framer-styles-preset-1nw6d46\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-uwglju\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sz4oys hidden-8nq2yv hidden-18w97se hidden-25si9k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nbhm8i\",\"data-styles-preset\":\"fc3AkIQBk\",children:\"This case study explores ClimaCo's successful collaboration with Acme Steel, a leading steel manufacturer, to implement a groundbreaking carbon capture technology (CCT) solution. Facing mounting pressure to reduce their environmental footprint,\"})}),className:\"framer-rzljri\",fonts:[\"Inter\"],text:v9EJMI6ee,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1perpjy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},children:\"Summary\"})}),className:\"framer-t6pd39\",fonts:[\"GF;Figtree-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:N5CcQrrta,className:\"framer-my65kp\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-yaoqe7\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-a96sf1\",h3:\"framer-styles-preset-1nbhm8i\",h4:\"framer-styles-preset-6seovk\",h5:\"framer-styles-preset-1nw6d46\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-uwglju\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed2(visible5)&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+1487}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:682,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1247,children:/*#__PURE__*/_jsx(Container,{className:cx(\"framer-bh9zhg-container\",\"hidden-25si9k\",!visible5&&\"hidden-8nq2yv\",!visible5&&\"hidden-18w97se\",!visible5&&\"hidden-i4tk7j\"),nodeId:\"Cs04zEKGq\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(ImageCarousel,{AdRY9zCBm:toResponsiveImage(HDoWQKwwW),B5DKgLXjn:toResponsiveImage(gVKXqcif6),bMe44Ctfh:QvOpaAvYn,BSMR_pmgK:toResponsiveImage(luzN7UYCQ),c8uTbVtDQ:toResponsiveImage(njSoHZa7V),dId_bLgxH:YwkfWnlX0,eqB3o2taF:zrCbYMUbZ,fCkH6dPfN:aDl5mPgtB,FdHqBODBm:toResponsiveImage(elTrMp4RZ),heDG7QfcP:fMmqIwkFA,height:\"100%\",id:\"Cs04zEKGq\",JF0rWzRCY:toResponsiveImage(UTGW85k_q),layoutId:\"Cs04zEKGq\",ln8mfKf4k:KkUTBRi9c,mawlB2lTk:toResponsiveImage(wVI_JQHpK),pHoe7PH_C:gKWbH_s0F,RRmiddvvd:Wc1pVgeST,style:{width:\"100%\"},tD24xMiL8:toResponsiveImage(uVge6XpWA),txNb0EPTO:iwiuvAUmm,variant:\"lzKVvHFp_\",ViTAjP7by:toResponsiveImage(dZI7UFnbn),width:\"100%\",Wm0NlstBJ:HVcOCaevQ,wxJtOkMpN:HCNwCtHq3,xoQZIqE_k:krJjhpf1c,y1HcmKPp0:toResponsiveImage(Dc4jSlFv7),y9H5aOTSR:toResponsiveImage(QYZbsNJiL),yHPePlCCn:toResponsiveImage(cwbeT_a30)})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19aplte\",\"data-border\":true,\"data-framer-name\":\"LETS WORK TOGETHER\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q4gicn\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a96sf1\",\"data-styles-preset\":\"K4kPWFZmQ\",children:\"Let's work together\"})}),className:\"framer-t07ro5\",\"data-framer-name\":\"Our areas of expertise.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k5ltnv\",\"data-framer-name\":\"Detail\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19axu95\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nbhm8i\",\"data-styles-preset\":\"fc3AkIQBk\",children:\"Looking to adopt or improve your agroforestry systems?\"})}),className:\"framer-1gg0tre hidden-i4tk7j\",fonts:[\"Inter\"],text:YONfR9Eg_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ryp5hd\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cR6kYgmZr\"},implicitPathVariables:undefined},{href:{webPageId:\"cR6kYgmZr\"},implicitPathVariables:undefined},{href:{webPageId:\"cR6kYgmZr\"},implicitPathVariables:undefined},{href:{webPageId:\"cR6kYgmZr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+2169+80+0+0+0+94+0},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+1407+80+0+0+0+94+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1929+80+0+0+0+94+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pk7j5z-container\",nodeId:\"aC82PvWak\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{bco_KBUfa:resolvedLinks[1]},sKuS2ZhHo:{bco_KBUfa:resolvedLinks[2]},T3kczirOG:{bco_KBUfa:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{AL6IB9otP:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(221, 255, 149))\",bco_KBUfa:resolvedLinks[0],fTULNZYxz:\"var(--token-23e7e1e6-6379-4cde-9b08-fdd99a110668, rgb(43, 63, 0))\",height:\"100%\",id:\"aC82PvWak\",k3JhaMy5_:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',layoutId:\"aC82PvWak\",Lf8afaZg_:\"var(--token-118d202d-61c3-4796-b2a6-a482c6e50013, rgb(255, 255, 255))\",Lzyfez8Rw:\"var(--token-118d202d-61c3-4796-b2a6-a482c6e50013, rgb(255, 255, 255))\",Oon8L041D:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(221, 255, 149))\",rZYR6tqXt:\"var(--token-23e7e1e6-6379-4cde-9b08-fdd99a110668, rgb(43, 63, 0))\",style:{height:\"100%\"},VArIlTNTt:\"Contact us\",wbc_aIg1P:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',width:\"100%\"})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ej88g7 hidden-8nq2yv hidden-18w97se hidden-25si9k\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1nbhm8i\",\"data-styles-preset\":\"fc3AkIQBk\",children:\"This case study explores ClimaCo's successful collaboration with Acme Steel, a leading steel manufacturer, to implement a groundbreaking carbon capture technology (CCT) solution. Facing mounting pressure to reduce their environmental footprint,\"})}),className:\"framer-d33tso\",fonts:[\"Inter\"],text:YONfR9Eg_,verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-112hx6v\",\"data-framer-name\":\"EXPLORE MORE\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2srh7\",\"data-framer-name\":\"content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99igon\",\"data-framer-name\":\"heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a96sf1\",\"data-styles-preset\":\"K4kPWFZmQ\",children:\"Explore more\"})}),className:\"framer-9l3y2j\",\"data-framer-name\":\"We design, build and run collaborative spaces where climate-science, technology and people can thrive.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":N421wigO4\",webPageId:\"foFuO9tWD\"},implicitPathVariables:undefined},{href:{hash:\":N421wigO4\",webPageId:\"foFuO9tWD\"},implicitPathVariables:undefined},{href:{hash:\":N421wigO4\",webPageId:\"foFuO9tWD\"},implicitPathVariables:undefined},{href:{hash:\":N421wigO4\",webPageId:\"foFuO9tWD\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+2477+80+0+0+0+0+8},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+1715+40+0+0+0+0+86}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+2237+80+0+0+0+0+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ptpxrw-container\",nodeId:\"sG0ewZ4E9\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{bco_KBUfa:resolvedLinks1[1]},sKuS2ZhHo:{bco_KBUfa:resolvedLinks1[2]},T3kczirOG:{bco_KBUfa:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{AL6IB9otP:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(221, 255, 149))\",bco_KBUfa:resolvedLinks1[0],fTULNZYxz:\"var(--token-23e7e1e6-6379-4cde-9b08-fdd99a110668, rgb(43, 63, 0))\",height:\"100%\",id:\"sG0ewZ4E9\",k3JhaMy5_:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',layoutId:\"sG0ewZ4E9\",Lf8afaZg_:\"var(--token-118d202d-61c3-4796-b2a6-a482c6e50013, rgb(255, 255, 255))\",Lzyfez8Rw:\"var(--token-118d202d-61c3-4796-b2a6-a482c6e50013, rgb(255, 255, 255))\",Oon8L041D:\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(221, 255, 149))\",rZYR6tqXt:\"var(--token-23e7e1e6-6379-4cde-9b08-fdd99a110668, rgb(43, 63, 0))\",style:{height:\"100%\"},VArIlTNTt:\"View all projects\",wbc_aIg1P:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M13.5 5L20.5 12L13.5 19M3.5 12L20 12\" stroke=\"black\" stroke-width=\"2\"/> </svg>',width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n3fv5z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{query:{from:{alias:\"XjGZnxCcS\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"XjGZnxCcS\",name:\"zpYSIZ9CH\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"YAJ_fL229\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"x_QD7LUXQ\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"rXJnPW7qV\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"id\",type:\"Identifier\"}]}},sKuS2ZhHo:{query:{from:{alias:\"XjGZnxCcS\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"XjGZnxCcS\",name:\"YAJ_fL229\",type:\"Identifier\"}],select:[{collection:\"XjGZnxCcS\",name:\"zpYSIZ9CH\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"YAJ_fL229\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"x_QD7LUXQ\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"rXJnPW7qV\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"id\",type:\"Identifier\"}]}},T3kczirOG:{query:{from:{alias:\"XjGZnxCcS\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"XjGZnxCcS\",name:\"zpYSIZ9CH\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"YAJ_fL229\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"x_QD7LUXQ\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"rXJnPW7qV\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XjGZnxCcS\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"XjGZnxCcS\",name:\"zpYSIZ9CH\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"YAJ_fL229\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"x_QD7LUXQ\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"rXJnPW7qV\",type:\"Identifier\"},{collection:\"XjGZnxCcS\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idXjGZnxCcS,rXJnPW7qV:rXJnPW7qVXjGZnxCcS,x_QD7LUXQ:x_QD7LUXQXjGZnxCcS,YAJ_fL229:YAJ_fL229XjGZnxCcS,zpYSIZ9CH:zpYSIZ9CHXjGZnxCcS},index)=>{zpYSIZ9CHXjGZnxCcS??=\"\";YAJ_fL229XjGZnxCcS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XjGZnxCcS-${idXjGZnxCcS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{zpYSIZ9CH:zpYSIZ9CHXjGZnxCcS},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{zpYSIZ9CH:zpYSIZ9CHXjGZnxCcS},webPageId:\"YrmfOT8Rd\"},motionChild:true,nodeId:\"jOTAtzC9e\",openInNewTab:false,scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ogh8am framer-1r4k8ki\",\"data-framer-name\":\"Post\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromString(zpYSIZ9CHXjGZnxCcS,activeLocale),implicitPathVariables:undefined},{href:convertFromString(zpYSIZ9CHXjGZnxCcS,activeLocale),implicitPathVariables:undefined},{href:convertFromString(zpYSIZ9CHXjGZnxCcS,activeLocale),implicitPathVariables:undefined},{href:convertFromString(zpYSIZ9CHXjGZnxCcS,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1376px), 1px)`,y:(componentViewport?.y||0)+0+2477+80+0+0+142+0+0+0},sKuS2ZhHo:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1376px), 1px)`,y:(componentViewport?.y||0)+0+1715+40+0+0+180+0+0+0},T3kczirOG:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1376px) - 48px) / 4, 200px)`,y:(componentViewport?.y||0)+0+2237+80+0+0+142+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:428,width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1376px), 1px)`,y:(componentViewport?.y||0)+0+2237+80+0+0+142+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zn15d7-container\",nodeId:\"fLYJ7d7bF\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{L8bvCrck2:resolvedLinks2[1]},sKuS2ZhHo:{L8bvCrck2:resolvedLinks2[2]},T3kczirOG:{L8bvCrck2:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(BentoQuote,{DBMFdhUHS:\"Learn more\",height:\"100%\",id:\"fLYJ7d7bF\",iQm1QETPD:YAJ_fL229XjGZnxCcS,L8bvCrck2:resolvedLinks2[0],layoutId:\"fLYJ7d7bF\",Mk0N_UlLD:\"\",qeydDA6Ta:enumToDisplayNameFunctions[\"x_QD7LUXQ\"]?.(x_QD7LUXQXjGZnxCcS,activeLocale),style:{width:\"100%\"},variant:\"QfWu2se_c\",We6xw2hSQ:toResponsiveImage(rXJnPW7qVXjGZnxCcS),width:\"100%\"})})})})})})})})})},idXjGZnxCcS);})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":pA9nSBR21\",webPageId:\"LMKqb5phU\"},implicitPathVariables:undefined},{href:{hash:\":pA9nSBR21\",webPageId:\"LMKqb5phU\"},implicitPathVariables:undefined},{href:{hash:\":pA9nSBR21\",webPageId:\"LMKqb5phU\"},implicitPathVariables:undefined},{href:{hash:\":pA9nSBR21\",webPageId:\"LMKqb5phU\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+3207},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+2403},T3kczirOG:{y:(componentViewport?.y||0)+0+3411}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2967,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bx3jnu-container\",nodeId:\"dKiDhMoca\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{JUFTJU5Cd:resolvedLinks3[1],variant:\"tLbZleq1Z\"},sKuS2ZhHo:{JUFTJU5Cd:resolvedLinks3[2],variant:\"N1falujyy\"},T3kczirOG:{JUFTJU5Cd:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(FooterCTA,{height:\"100%\",id:\"dKiDhMoca\",JUFTJU5Cd:resolvedLinks3[0],layoutId:\"dKiDhMoca\",OKB8i4gJ2:\"Invest in us\",Rmbm4O6sC:\"Donate\",style:{width:\"100%\"},variant:\"Qny3oCZY9\",width:\"100%\",wsmWbAmo7:\"Your contribution immediately supports our efforts to build a healthy Pacific Northwest, where productive lands and thriving ecosystems coexist.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{y:(componentViewport?.y||0)+0+4007},sKuS2ZhHo:{y:(componentViewport?.y||0)+0+3203},T3kczirOG:{y:(componentViewport?.y||0)+0+4211}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:702,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3767,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r7albo-container\",nodeId:\"usJ6q1MfV\",scopeId:\"YrmfOT8Rd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fA3hrLJ2P:{variant:\"EcZ2baUiS\"},sKuS2ZhHo:{variant:\"EcZ2baUiS\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"usJ6q1MfV\",layoutId:\"usJ6q1MfV\",style:{width:\"100%\"},variant:\"TDaxcf9uw\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rcfrm.framer-1r4k8ki, .framer-Rcfrm .framer-1r4k8ki { display: block; }\",\".framer-Rcfrm.framer-8nq2yv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Rcfrm .framer-13xa1mg-container, .framer-Rcfrm .framer-bh9zhg-container, .framer-Rcfrm .framer-zn15d7-container, .framer-Rcfrm .framer-bx3jnu-container, .framer-Rcfrm .framer-1r7albo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1y6r1b8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-46e0f15b-3a27-41af-b278-a095b5377899, #bfe3e2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 80px 32px 80px 32px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1r4uyqy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 968px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rcfrm .framer-jxj7gx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 15px; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1yb0upn { flex: none; height: 573px; max-width: 1440px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1220t20 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 0px; flex: none; left: 32px; overflow: hidden; position: absolute; right: 32px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rcfrm .framer-wgg812 { 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; max-width: 1440px; overflow: visible; padding: 40px 32px 40px 32px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1bqwxsw { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rcfrm .framer-19ado31, .framer-Rcfrm .framer-1s6drm8, .framer-Rcfrm .framer-mtzxke, .framer-Rcfrm .framer-brnpj9, .framer-Rcfrm .framer-3a853b { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-33nvt1, .framer-Rcfrm .framer-1vbsdcj, .framer-Rcfrm .framer-13k0i9d, .framer-Rcfrm .framer-61894b, .framer-Rcfrm .framer-1kdlmqe, .framer-Rcfrm .framer-t07ro5 { --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-Rcfrm .framer-18ltgol, .framer-Rcfrm .framer-13ux8hv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: 61%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1tf0b6h-container, .framer-Rcfrm .framer-c14qdk-container, .framer-Rcfrm .framer-yhd3sv-container, .framer-Rcfrm .framer-zlnexd-container, .framer-Rcfrm .framer-hkjw8j-container, .framer-Rcfrm .framer-137ot46-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Rcfrm .framer-acepf8, .framer-Rcfrm .framer-o14eid, .framer-Rcfrm .framer-m025f7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: 61%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-6ckqim, .framer-Rcfrm .framer-k5ltnv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rcfrm .framer-c2pzw8, .framer-Rcfrm .framer-1sz4oys, .framer-Rcfrm .framer-19axu95, .framer-Rcfrm .framer-1ej88g7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Rcfrm .framer-byll6z, .framer-Rcfrm .framer-rsbxrq, .framer-Rcfrm .framer-1gg0tre { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 530px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rcfrm .framer-1mnmpzq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 530px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1vojofi, .framer-Rcfrm .framer-t6pd39, .framer-Rcfrm .framer-my65kp { --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-Rcfrm .framer-rzljri, .framer-Rcfrm .framer-d33tso { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 676px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rcfrm .framer-1perpjy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 676px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-19aplte { --border-bottom-width: 0px; --border-color: var(--token-c0b7cf48-5384-40ba-b331-13dbb1d48dd0, #ecebe4); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; 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; max-width: 1440px; overflow: visible; padding: 80px 32px 80px 32px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-q4gicn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rcfrm .framer-1ryp5hd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: flex-end; max-width: 530px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-pk7j5z-container, .framer-Rcfrm .framer-ptpxrw-container { flex: none; height: 54px; position: relative; width: auto; }\",\".framer-Rcfrm .framer-112hx6v { align-content: center; align-items: center; background-color: var(--token-c0b7cf48-5384-40ba-b331-13dbb1d48dd0, #ecebe4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 32px 80px 32px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-d2srh7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1376px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-99igon { align-content: flex-end; align-items: flex-end; 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-Rcfrm .framer-9l3y2j { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Rcfrm .framer-n3fv5z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Rcfrm .framer-1ogh8am { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rcfrm.framer-8nq2yv, .framer-Rcfrm .framer-1y6r1b8, .framer-Rcfrm .framer-jxj7gx, .framer-Rcfrm .framer-19ado31, .framer-Rcfrm .framer-18ltgol, .framer-Rcfrm .framer-1s6drm8, .framer-Rcfrm .framer-acepf8, .framer-Rcfrm .framer-mtzxke, .framer-Rcfrm .framer-13ux8hv, .framer-Rcfrm .framer-brnpj9, .framer-Rcfrm .framer-o14eid, .framer-Rcfrm .framer-3a853b, .framer-Rcfrm .framer-m025f7, .framer-Rcfrm .framer-6ckqim, .framer-Rcfrm .framer-c2pzw8, .framer-Rcfrm .framer-1mnmpzq, .framer-Rcfrm .framer-1sz4oys, .framer-Rcfrm .framer-1perpjy, .framer-Rcfrm .framer-q4gicn, .framer-Rcfrm .framer-k5ltnv, .framer-Rcfrm .framer-19axu95, .framer-Rcfrm .framer-1ryp5hd, .framer-Rcfrm .framer-1ej88g7, .framer-Rcfrm .framer-112hx6v, .framer-Rcfrm .framer-d2srh7, .framer-Rcfrm .framer-n3fv5z, .framer-Rcfrm .framer-1ogh8am { gap: 0px; } .framer-Rcfrm.framer-8nq2yv > *, .framer-Rcfrm .framer-112hx6v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rcfrm.framer-8nq2yv > :first-child, .framer-Rcfrm .framer-1y6r1b8 > :first-child, .framer-Rcfrm .framer-jxj7gx > :first-child, .framer-Rcfrm .framer-19ado31 > :first-child, .framer-Rcfrm .framer-18ltgol > :first-child, .framer-Rcfrm .framer-1s6drm8 > :first-child, .framer-Rcfrm .framer-mtzxke > :first-child, .framer-Rcfrm .framer-13ux8hv > :first-child, .framer-Rcfrm .framer-brnpj9 > :first-child, .framer-Rcfrm .framer-3a853b > :first-child, .framer-Rcfrm .framer-6ckqim > :first-child, .framer-Rcfrm .framer-c2pzw8 > :first-child, .framer-Rcfrm .framer-1mnmpzq > :first-child, .framer-Rcfrm .framer-1sz4oys > :first-child, .framer-Rcfrm .framer-1perpjy > :first-child, .framer-Rcfrm .framer-q4gicn > :first-child, .framer-Rcfrm .framer-k5ltnv > :first-child, .framer-Rcfrm .framer-19axu95 > :first-child, .framer-Rcfrm .framer-1ej88g7 > :first-child, .framer-Rcfrm .framer-112hx6v > :first-child, .framer-Rcfrm .framer-d2srh7 > :first-child, .framer-Rcfrm .framer-1ogh8am > :first-child { margin-top: 0px; } .framer-Rcfrm.framer-8nq2yv > :last-child, .framer-Rcfrm .framer-1y6r1b8 > :last-child, .framer-Rcfrm .framer-jxj7gx > :last-child, .framer-Rcfrm .framer-19ado31 > :last-child, .framer-Rcfrm .framer-18ltgol > :last-child, .framer-Rcfrm .framer-1s6drm8 > :last-child, .framer-Rcfrm .framer-mtzxke > :last-child, .framer-Rcfrm .framer-13ux8hv > :last-child, .framer-Rcfrm .framer-brnpj9 > :last-child, .framer-Rcfrm .framer-3a853b > :last-child, .framer-Rcfrm .framer-6ckqim > :last-child, .framer-Rcfrm .framer-c2pzw8 > :last-child, .framer-Rcfrm .framer-1mnmpzq > :last-child, .framer-Rcfrm .framer-1sz4oys > :last-child, .framer-Rcfrm .framer-1perpjy > :last-child, .framer-Rcfrm .framer-q4gicn > :last-child, .framer-Rcfrm .framer-k5ltnv > :last-child, .framer-Rcfrm .framer-19axu95 > :last-child, .framer-Rcfrm .framer-1ej88g7 > :last-child, .framer-Rcfrm .framer-112hx6v > :last-child, .framer-Rcfrm .framer-d2srh7 > :last-child, .framer-Rcfrm .framer-1ogh8am > :last-child { margin-bottom: 0px; } .framer-Rcfrm .framer-1y6r1b8 > *, .framer-Rcfrm .framer-d2srh7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Rcfrm .framer-jxj7gx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Rcfrm .framer-19ado31 > *, .framer-Rcfrm .framer-18ltgol > *, .framer-Rcfrm .framer-1s6drm8 > *, .framer-Rcfrm .framer-mtzxke > *, .framer-Rcfrm .framer-13ux8hv > *, .framer-Rcfrm .framer-brnpj9 > *, .framer-Rcfrm .framer-3a853b > *, .framer-Rcfrm .framer-q4gicn > *, .framer-Rcfrm .framer-1ogh8am > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Rcfrm .framer-acepf8 > *, .framer-Rcfrm .framer-o14eid > *, .framer-Rcfrm .framer-m025f7 > *, .framer-Rcfrm .framer-n3fv5z > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Rcfrm .framer-acepf8 > :first-child, .framer-Rcfrm .framer-o14eid > :first-child, .framer-Rcfrm .framer-m025f7 > :first-child, .framer-Rcfrm .framer-1ryp5hd > :first-child, .framer-Rcfrm .framer-n3fv5z > :first-child { margin-left: 0px; } .framer-Rcfrm .framer-acepf8 > :last-child, .framer-Rcfrm .framer-o14eid > :last-child, .framer-Rcfrm .framer-m025f7 > :last-child, .framer-Rcfrm .framer-1ryp5hd > :last-child, .framer-Rcfrm .framer-n3fv5z > :last-child { margin-right: 0px; } .framer-Rcfrm .framer-6ckqim > *, .framer-Rcfrm .framer-c2pzw8 > *, .framer-Rcfrm .framer-1sz4oys > *, .framer-Rcfrm .framer-k5ltnv > *, .framer-Rcfrm .framer-19axu95 > *, .framer-Rcfrm .framer-1ej88g7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-Rcfrm .framer-1mnmpzq > *, .framer-Rcfrm .framer-1perpjy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rcfrm .framer-1ryp5hd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,'.framer-Rcfrm[data-border=\"true\"]::after, .framer-Rcfrm [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: 768px) and (max-width: 1199px) { .framer-Rcfrm.framer-8nq2yv { width: 768px; } .framer-Rcfrm .framer-1y6r1b8, .framer-Rcfrm .framer-112hx6v { padding: 80px 16px 80px 16px; } .framer-Rcfrm .framer-1r4uyqy { width: 100%; } .framer-Rcfrm .framer-wgg812 { flex-direction: column; } .framer-Rcfrm .framer-1bqwxsw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; width: 100%; } .framer-Rcfrm .framer-19ado31, .framer-Rcfrm .framer-1s6drm8, .framer-Rcfrm .framer-mtzxke, .framer-Rcfrm .framer-brnpj9, .framer-Rcfrm .framer-3a853b { align-self: unset; } .framer-Rcfrm .framer-6ckqim { flex: none; padding: 24px 0px 0px 0px; width: 100%; } .framer-Rcfrm .framer-c2pzw8 { align-content: flex-start; align-items: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rcfrm .framer-wgg812, .framer-Rcfrm .framer-1bqwxsw { gap: 0px; } .framer-Rcfrm .framer-wgg812 > *, .framer-Rcfrm .framer-wgg812 > :first-child, .framer-Rcfrm .framer-wgg812 > :last-child { margin: 0px; } .framer-Rcfrm .framer-1bqwxsw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rcfrm .framer-1bqwxsw > :first-child { margin-top: 0px; } .framer-Rcfrm .framer-1bqwxsw > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 767px) { .framer-Rcfrm.framer-8nq2yv { width: 414px; } .framer-Rcfrm .framer-1y6r1b8, .framer-Rcfrm .framer-112hx6v { padding: 40px 16px 40px 16px; } .framer-Rcfrm .framer-1r4uyqy { width: 100%; } .framer-Rcfrm .framer-wgg812 { flex-direction: column; } .framer-Rcfrm .framer-1bqwxsw, .framer-Rcfrm .framer-6ckqim, .framer-Rcfrm .framer-9l3y2j { flex: none; width: 100%; } .framer-Rcfrm .framer-c2pzw8 { padding: 24px 0px 0px 0px; } .framer-Rcfrm .framer-19axu95 { align-content: flex-start; align-items: flex-start; } .framer-Rcfrm .framer-1ryp5hd { justify-content: flex-start; } .framer-Rcfrm .framer-d2srh7 { gap: 40px; } .framer-Rcfrm .framer-99igon { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rcfrm .framer-wgg812, .framer-Rcfrm .framer-d2srh7, .framer-Rcfrm .framer-99igon { gap: 0px; } .framer-Rcfrm .framer-wgg812 > *, .framer-Rcfrm .framer-wgg812 > :first-child, .framer-Rcfrm .framer-wgg812 > :last-child { margin: 0px; } .framer-Rcfrm .framer-d2srh7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Rcfrm .framer-d2srh7 > :first-child, .framer-Rcfrm .framer-99igon > :first-child { margin-top: 0px; } .framer-Rcfrm .framer-d2srh7 > :last-child, .framer-Rcfrm .framer-99igon > :last-child { margin-bottom: 0px; } .framer-Rcfrm .framer-99igon > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 1440px) { .framer-Rcfrm.framer-8nq2yv { width: 1440px; } .framer-Rcfrm .framer-1y6r1b8, .framer-Rcfrm .framer-jxj7gx { align-content: center; align-items: center; max-width: unset; } .framer-Rcfrm .framer-1r4uyqy { max-width: 1440px; width: 1376px; } .framer-Rcfrm .framer-1bqwxsw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 530px; } .framer-Rcfrm .framer-19ado31, .framer-Rcfrm .framer-1s6drm8, .framer-Rcfrm .framer-mtzxke, .framer-Rcfrm .framer-brnpj9, .framer-Rcfrm .framer-3a853b { align-self: unset; } .framer-Rcfrm .framer-1ryp5hd { order: 2; } .framer-Rcfrm .framer-1ej88g7 { order: 1; } .framer-Rcfrm .framer-n3fv5z { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); justify-content: center; } .framer-Rcfrm .framer-1ogh8am { align-self: start; flex: none; justify-self: start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rcfrm .framer-1bqwxsw, .framer-Rcfrm .framer-n3fv5z { gap: 0px; } .framer-Rcfrm .framer-1bqwxsw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rcfrm .framer-1bqwxsw > :first-child { margin-top: 0px; } .framer-Rcfrm .framer-1bqwxsw > :last-child { margin-bottom: 0px; } .framer-Rcfrm .framer-n3fv5z > *, .framer-Rcfrm .framer-n3fv5z > :first-child, .framer-Rcfrm .framer-n3fv5z > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4247\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fA3hrLJ2P\":{\"layout\":[\"fixed\",\"auto\"]},\"sKuS2ZhHo\":{\"layout\":[\"fixed\",\"auto\"]},\"T3kczirOG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerYrmfOT8Rd=withCSS(Component,css,\"framer-Rcfrm\");export default FramerYrmfOT8Rd;FramerYrmfOT8Rd.displayName=\"Projects\";FramerYrmfOT8Rd.defaultProps={height:4247,width:1200};addFonts(FramerYrmfOT8Rd,[{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:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"}]},...NavigationFonts,...ExpertiseTagFonts,...ImageCarouselFonts,...ButtonFonts,...BentoQuoteFonts,...FooterCTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYrmfOT8Rd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4247\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fA3hrLJ2P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sKuS2ZhHo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T3kczirOG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "p", "addPropertyControls", "ControlType", "SVG_default", "SVGFonts", "getFonts", "SVG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "sgRCryYBY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqr4oqj", "args", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerVls9BSDeO", "withCSS", "Vls9BSDeO_default", "addPropertyControls", "ControlType", "addFonts", "CarouselArrowFonts", "getFonts", "Vls9BSDeO_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "convertFromBoolean", "activeLocale", "convertFromBoolean1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image10", "image11", "image12", "image2", "image3", "image4", "image5", "image6", "image7", "image8", "image9", "imageCaption1", "imageCaption10", "imageCaption11", "imageCaption12", "imageCaption2", "imageCaption3", "imageCaption4", "imageCaption5", "imageCaption6", "imageCaption7", "imageCaption8", "imageCaption9", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "mawlB2lTk", "txNb0EPTO", "tD24xMiL8", "pHoe7PH_C", "B5DKgLXjn", "fCkH6dPfN", "c8uTbVtDQ", "ln8mfKf4k", "BSMR_pmgK", "RRmiddvvd", "yHPePlCCn", "xoQZIqE_k", "JF0rWzRCY", "eqB3o2taF", "AdRY9zCBm", "dId_bLgxH", "y1HcmKPp0", "wxJtOkMpN", "FdHqBODBm", "Wm0NlstBJ", "ViTAjP7by", "bMe44Ctfh", "y9H5aOTSR", "heDG7QfcP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "sgRCryYBY1hj10o7", "args", "sgRCryYBY9wjd3c", "sgRCryYBY194sboc", "sgRCryYBY3pbci9", "sgRCryYBYaxaomd", "sgRCryYBY1llgroe", "sgRCryYBY2rpc2t", "sgRCryYBY1j3ecni", "sgRCryYBY1kx6f7", "sgRCryYBYn04mw9", "sgRCryYBYgfppys", "sgRCryYBY1ryek7g", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "isDisplayed", "value1", "value2", "value3", "value4", "value5", "value6", "value7", "value8", "value9", "value10", "visible11", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerhPxMkjQmS", "withCSS", "hPxMkjQmS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "au45l9Y4f_default", "ExpertiseTagFonts", "Ik0drfmJ8_default", "ImageCarouselFonts", "hPxMkjQmS_default", "ButtonFonts", "JPYMgXYdk_default", "BentoQuoteFonts", "qbrLrvlrs_default", "FooterCTAFonts", "skIUMIWFD_default", "FooterFonts", "g0GkeaaDQ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "convertFromString", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "WONmTdNjq_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "YAJ_fL229", "rXJnPW7qV", "ju4uUFQpg", "x_QD7LUXQ", "HU8r2Tzpe", "ay5nX7OdT", "xL2QQKRz0", "QBddrIDJx", "v9EJMI6ee", "N5CcQrrta", "wVI_JQHpK", "iwiuvAUmm", "uVge6XpWA", "gKWbH_s0F", "gVKXqcif6", "aDl5mPgtB", "njSoHZa7V", "KkUTBRi9c", "luzN7UYCQ", "Wc1pVgeST", "cwbeT_a30", "krJjhpf1c", "UTGW85k_q", "zrCbYMUbZ", "HDoWQKwwW", "YwkfWnlX0", "Dc4jSlFv7", "HCNwCtHq3", "elTrMp4RZ", "HVcOCaevQ", "dZI7UFnbn", "QvOpaAvYn", "QYZbsNJiL", "fMmqIwkFA", "YONfR9Eg_", "zpYSIZ9CHXjGZnxCcS", "YAJ_fL229XjGZnxCcS", "x_QD7LUXQXjGZnxCcS", "rXJnPW7qVXjGZnxCcS", "idXjGZnxCcS", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "isDisplayed", "isDisplayed1", "visible5", "isDisplayed2", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "enumToDisplayNameFunctions", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "motion", "resolvedLinks2", "resolvedLinks3", "css", "FramerYrmfOT8Rd", "withCSS", "YrmfOT8Rd_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
