{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/e1zZNz539kGgBDpU2Tis/7E81tnBnbkm0LKhoPhDf/bm8zYlgoi.js", "ssg:https://framerusercontent.com/modules/hdqNRHyxQo03DmA5Zi3g/clv2Q3we3IY13wlAlUib/CGOSCAg0z-0.js", "ssg:https://framerusercontent.com/modules/hdqNRHyxQo03DmA5Zi3g/clv2Q3we3IY13wlAlUib/CGOSCAg0z.js", "ssg:https://framerusercontent.com/modules/gq5k8dLlF6xNxjTXq1ta/FlDOvwojdBaksWAbwkhk/CGOSCAg0z.js", "ssg:https://framerusercontent.com/modules/v7hQ9rcX2UuCEDXtqzdn/bIXRAcmtQ0kVUScg4Jyl/jui6Drl4E.js", "ssg:https://framerusercontent.com/modules/mHAdt5ONZkpVJ58hHwKJ/Q8ccuhqkDmBEgnwbYXou/Od9Eu_DN7-0.js", "ssg:https://framerusercontent.com/modules/mHAdt5ONZkpVJ58hHwKJ/Q8ccuhqkDmBEgnwbYXou/Od9Eu_DN7.js", "ssg:https://framerusercontent.com/modules/uLGeAf4epfWb1YebVpBx/2Stf9RijcvZaaBiHHvLb/Od9Eu_DN7.js", "ssg:https://framerusercontent.com/modules/aUTZACi5Ii9RbxcoUlR6/vTx1CnDSpzxRxPMGWgqo/ueiKkVaj3.js", "ssg:https://framerusercontent.com/modules/csNkG4VB8bfuHK95kYxM/Ry4D8I6LjYA7SOzn7bQT/ueiKkVaj3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-0GUBf\";const variantClassNames={Br0xSe2nR:\"framer-v-14d48ns\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image1,image2,image3,image4,image5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,bQspCtjNI:(_ref=image2!==null&&image2!==void 0?image2:props.bQspCtjNI)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg 3443w\"},ELxVQmXQU:(_ref1=image5!==null&&image5!==void 0?image5:props.ELxVQmXQU)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg 3443w\"},GF0qnEJdU:(_ref2=image1!==null&&image1!==void 0?image1:props.GF0qnEJdU)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg 3443w\"},Sf2AaiLP4:(_ref3=image4!==null&&image4!==void 0?image4:props.Sf2AaiLP4)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg 3443w\"},vfTeak1wj:(_ref4=image3!==null&&image3!==void 0?image3:props.vfTeak1wj)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg 3443w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GF0qnEJdU,bQspCtjNI,vfTeak1wj,Sf2AaiLP4,ELxVQmXQU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Br0xSe2nR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14d48ns\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Br0xSe2nR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-0-1215)/2+0+0)),pixelHeight:5165,pixelWidth:3443,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(GF0qnEJdU)},className:\"framer-gp5kj5\",layoutDependency:layoutDependency,layoutId:\"UTwYpFS1L\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-0-1215)/2+235+10)),pixelHeight:5165,pixelWidth:3443,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(bQspCtjNI)},className:\"framer-1s8jzlh\",layoutDependency:layoutDependency,layoutId:\"fv8kg8iFe\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-0-1215)/2+470+20)),pixelHeight:5165,pixelWidth:3443,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(vfTeak1wj)},className:\"framer-ggtkm8\",layoutDependency:layoutDependency,layoutId:\"O9L76j0kF\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-0-1215)/2+705+30)),pixelHeight:5165,pixelWidth:3443,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(Sf2AaiLP4)},className:\"framer-b1bm7q\",layoutDependency:layoutDependency,layoutId:\"ECGSWcodf\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1215)-0-1215)/2+940+40)),pixelHeight:5165,pixelWidth:3443,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(ELxVQmXQU)},className:\"framer-3jt2id\",layoutDependency:layoutDependency,layoutId:\"D3Blhbqgx\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0GUBf.framer-1w870yl, .framer-0GUBf .framer-1w870yl { display: block; }\",\".framer-0GUBf.framer-14d48ns { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 235px; }\",\".framer-0GUBf .framer-gp5kj5, .framer-0GUBf .framer-1s8jzlh, .framer-0GUBf .framer-ggtkm8, .framer-0GUBf .framer-b1bm7q, .framer-0GUBf .framer-3jt2id { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 235px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0GUBf.framer-14d48ns { gap: 0px; } .framer-0GUBf.framer-14d48ns > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0GUBf.framer-14d48ns > :first-child { margin-top: 0px; } .framer-0GUBf.framer-14d48ns > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1215\n * @framerIntrinsicWidth 235\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GF0qnEJdU\":\"image1\",\"bQspCtjNI\":\"image2\",\"vfTeak1wj\":\"image3\",\"Sf2AaiLP4\":\"image4\",\"ELxVQmXQU\":\"image5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbm8zYlgoi=withCSS(Component,css,\"framer-0GUBf\");export default Framerbm8zYlgoi;Framerbm8zYlgoi.displayName=\"Images - Gallery - Homepage\";Framerbm8zYlgoi.defaultProps={height:1215,width:235};addPropertyControls(Framerbm8zYlgoi,{GF0qnEJdU:{__defaultAssetReference:\"data:framer/asset-reference,fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?originalFilename=photo-1585128792020-803d29415281%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},bQspCtjNI:{__defaultAssetReference:\"data:framer/asset-reference,fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?originalFilename=photo-1585128792020-803d29415281%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},vfTeak1wj:{__defaultAssetReference:\"data:framer/asset-reference,fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?originalFilename=photo-1585128792020-803d29415281%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},Sf2AaiLP4:{__defaultAssetReference:\"data:framer/asset-reference,fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?originalFilename=photo-1585128792020-803d29415281%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},ELxVQmXQU:{__defaultAssetReference:\"data:framer/asset-reference,fdOdRFRgl4kMfIvO7R0Ibtg5II.jpg?originalFilename=photo-1585128792020-803d29415281%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw1fHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage}});addFonts(Framerbm8zYlgoi,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbm8zYlgoi\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"235\",\"framerVariables\":\"{\\\"GF0qnEJdU\\\":\\\"image1\\\",\\\"bQspCtjNI\\\":\\\"image2\\\",\\\"vfTeak1wj\\\":\\\"image3\\\",\\\"Sf2AaiLP4\\\":\\\"image4\\\",\\\"ELxVQmXQU\\\":\\\"image5\\\"}\",\"framerIntrinsicHeight\":\"1215\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bm8zYlgoi.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Leer \"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport*as localizedValues from\"./CGOSCAg0z-0.js\";const valuesByLocaleId={S0viHpN1r:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xf9n9NgaJfLU8ftPKCwc/4GZPOIObpGHmzjLZhobV/HRBsjwLer.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Ai9PJ2b2WTWmYRSuBOel/r2reyJkwV3MAEkn1Kuem/WiSN4khPl.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/hdqNRHyxQo03DmA5Zi3g/clv2Q3we3IY13wlAlUib/CGOSCAg0z.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={Qib_MLlLH:{hover:true}};const cycleOrder=[\"Qib_MLlLH\",\"x6FVIDUiT\",\"RkiKw86Aj\"];const serializationHash=\"framer-BC9eJ\";const variantClassNames={Qib_MLlLH:\"framer-v-zx3wnu\",RkiKw86Aj:\"framer-v-u6xhmw\",x6FVIDUiT:\"framer-v-x6to3n\"};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 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={\"Variant 1\":\"Qib_MLlLH\",\"Variant 2\":\"x6FVIDUiT\",\"Variant 3\":\"RkiKw86Aj\"};const getProps=({blogTitle,category,date,height,id,image,link,width,...props})=>{return{...props,It59MEIz2:link??props.It59MEIz2,NAiLYYTPF:image??props.NAiLYYTPF??{src:\"https://framerusercontent.com/images/raBZRgDX3zZk6DsjY2JWECqjYMw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/raBZRgDX3zZk6DsjY2JWECqjYMw.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/raBZRgDX3zZk6DsjY2JWECqjYMw.jpg?scale-down-to=2048 1152w,https://framerusercontent.com/images/raBZRgDX3zZk6DsjY2JWECqjYMw.jpg?scale-down-to=4096 2304w,https://framerusercontent.com/images/raBZRgDX3zZk6DsjY2JWECqjYMw.jpg 4500w\"},qsOI8897U:blogTitle??props.qsOI8897U??\"Welcome Meeting\",u5xr2U0f1:category??props.u5xr2U0f1??\"Category\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Qib_MLlLH\",w3lTipgDR:date??props.w3lTipgDR??\"Date\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qsOI8897U,NAiLYYTPF,w3lTipgDR,It59MEIz2,u5xr2U0f1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qib_MLlLH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"RkiKw86Aj\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:It59MEIz2,motionChild:true,nodeId:\"Qib_MLlLH\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-zx3wnu\",className,classNames)} framer-yc38zo`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Qib_MLlLH\",ref:ref??ref1,style:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{RkiKw86Aj:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(244, 242, 227))\"}},...addPropertyOverrides({\"Qib_MLlLH-hover\":{\"data-framer-name\":undefined},RkiKw86Aj:{\"data-framer-name\":\"Variant 3\"},x6FVIDUiT:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gblybj\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"BCKknfrDB\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0),pixelHeight:8e3,pixelWidth:4500,sizes:\"250px\",...toResponsiveImage(NAiLYYTPF)},className:\"framer-kw8wjh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EsdLEo9yS\",...addPropertyOverrides({\"Qib_MLlLH-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+-9),pixelHeight:8e3,pixelWidth:4500,sizes:\"269px\",...toResponsiveImage(NAiLYYTPF)}},RkiKw86Aj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+0),pixelHeight:8e3,pixelWidth:4500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,...toResponsiveImage(NAiLYYTPF)}},x6FVIDUiT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8+0+0),pixelHeight:8e3,pixelWidth:4500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,...toResponsiveImage(NAiLYYTPF)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f90pbf\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"S1VIL0qv9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a4np2j\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"lyXO_Q4X9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7cddzy\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"Hso3uLZUG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-j9vura\",layoutDependency:layoutDependency,layoutId:\"SHA83Fnkd\",style:{backgroundColor:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(243, 172, 133))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255)))\"},children:\"Category\"})}),className:\"framer-16b9wwk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EcN7EcaBc\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:u5xr2U0f1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Date\"})}),className:\"framer-irlgwj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bwcjnp40C\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:w3lTipgDR,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-14mrivg\",\"data-styles-preset\":\"WiSN4khPl\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Welcome Meeting\"})}),className:\"framer-zwfiu7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OG5Jo_PJD\",style:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qsOI8897U,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.button,{className:\"framer-1c2pyyk\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"JXbD_s1rt\",style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(244, 242, 227))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Read \"})}),className:\"framer-1w0j8f4\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"ShjjLsHDE\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10dihbw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PaVqA1gDx-container\",nodeId:\"PaVqA1gDx\",rendersWithMotion:true,scopeId:\"CGOSCAg0z\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(31, 54, 48))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowCircleRight\",id:\"PaVqA1gDx\",layoutId:\"PaVqA1gDx\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BC9eJ.framer-yc38zo, .framer-BC9eJ .framer-yc38zo { display: block; }\",\".framer-BC9eJ.framer-zx3wnu { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: 530px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BC9eJ .framer-gblybj { flex: none; height: 234px; overflow: hidden; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BC9eJ .framer-kw8wjh { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-BC9eJ .framer-f90pbf { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-BC9eJ .framer-1a4np2j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BC9eJ .framer-7cddzy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BC9eJ .framer-j9vura { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: min-content; }\",\".framer-BC9eJ .framer-16b9wwk, .framer-BC9eJ .framer-irlgwj, .framer-BC9eJ .framer-1w0j8f4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BC9eJ .framer-zwfiu7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BC9eJ .framer-1c2pyyk { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 4px 2px 4px 16px; position: relative; width: min-content; }\",\".framer-BC9eJ .framer-10dihbw-container { flex: none; height: 22px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BC9eJ.framer-zx3wnu, .framer-BC9eJ .framer-1a4np2j, .framer-BC9eJ .framer-7cddzy, .framer-BC9eJ .framer-j9vura, .framer-BC9eJ .framer-1c2pyyk { gap: 0px; } .framer-BC9eJ.framer-zx3wnu > *, .framer-BC9eJ .framer-j9vura > *, .framer-BC9eJ .framer-1c2pyyk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BC9eJ.framer-zx3wnu > :first-child, .framer-BC9eJ .framer-7cddzy > :first-child, .framer-BC9eJ .framer-j9vura > :first-child, .framer-BC9eJ .framer-1c2pyyk > :first-child { margin-left: 0px; } .framer-BC9eJ.framer-zx3wnu > :last-child, .framer-BC9eJ .framer-7cddzy > :last-child, .framer-BC9eJ .framer-j9vura > :last-child, .framer-BC9eJ .framer-1c2pyyk > :last-child { margin-right: 0px; } .framer-BC9eJ .framer-1a4np2j > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-BC9eJ .framer-1a4np2j > :first-child { margin-top: 0px; } .framer-BC9eJ .framer-1a4np2j > :last-child { margin-bottom: 0px; } .framer-BC9eJ .framer-7cddzy > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-BC9eJ.framer-v-x6to3n.framer-zx3wnu { cursor: unset; flex-direction: column; height: 418px; }\",\".framer-BC9eJ.framer-v-x6to3n .framer-gblybj, .framer-BC9eJ.framer-v-u6xhmw .framer-gblybj { width: 100%; }\",\".framer-BC9eJ.framer-v-x6to3n .framer-f90pbf, .framer-BC9eJ.framer-v-u6xhmw .framer-f90pbf { align-self: unset; height: 1px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BC9eJ.framer-v-x6to3n.framer-zx3wnu { gap: 0px; } .framer-BC9eJ.framer-v-x6to3n.framer-zx3wnu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BC9eJ.framer-v-x6to3n.framer-zx3wnu > :first-child { margin-top: 0px; } .framer-BC9eJ.framer-v-x6to3n.framer-zx3wnu > :last-child { margin-bottom: 0px; } }\",\".framer-BC9eJ.framer-v-u6xhmw.framer-zx3wnu { cursor: unset; flex-direction: column; gap: 0px; height: 386px; }\",\".framer-BC9eJ.framer-v-u6xhmw .framer-1a4np2j { flex: 1 0 0px; height: 1px; justify-content: flex-start; padding: 10px; }\",\".framer-BC9eJ.framer-v-u6xhmw .framer-zwfiu7 { flex: 1 0 0px; height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BC9eJ.framer-v-u6xhmw.framer-zx3wnu { gap: 0px; } .framer-BC9eJ.framer-v-u6xhmw.framer-zx3wnu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BC9eJ.framer-v-u6xhmw.framer-zx3wnu > :first-child { margin-top: 0px; } .framer-BC9eJ.framer-v-u6xhmw.framer-zx3wnu > :last-child { margin-bottom: 0px; } }\",\".framer-BC9eJ.framer-v-zx3wnu.hover .framer-kw8wjh { bottom: -9px; left: -9px; right: -9px; top: -9px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 250\n * @framerIntrinsicWidth 530\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x6FVIDUiT\":{\"layout\":[\"fixed\",\"fixed\"]},\"RkiKw86Aj\":{\"layout\":[\"fixed\",\"fixed\"]},\"JarIApvVe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qsOI8897U\":\"blogTitle\",\"NAiLYYTPF\":\"image\",\"w3lTipgDR\":\"date\",\"It59MEIz2\":\"link\",\"u5xr2U0f1\":\"category\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCGOSCAg0z=withCSS(Component,css,\"framer-BC9eJ\");export default FramerCGOSCAg0z;FramerCGOSCAg0z.displayName=\"Blog Card\";FramerCGOSCAg0z.defaultProps={height:250,width:530};addPropertyControls(FramerCGOSCAg0z,{variant:{options:[\"Qib_MLlLH\",\"x6FVIDUiT\",\"RkiKw86Aj\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},qsOI8897U:{defaultValue:\"Welcome Meeting\",displayTextArea:false,title:\"Blog Title\",type:ControlType.String},NAiLYYTPF:{__defaultAssetReference:\"data:framer/asset-reference,raBZRgDX3zZk6DsjY2JWECqjYMw.jpg?originalFilename=photo-1618220179428-22790b461013%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwyfHxpbnRlcmlvcnxlbnwwfHx8fDE3MTc5OTIyNDJ8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},w3lTipgDR:{defaultValue:\"Date\",displayTextArea:false,title:\"Date\",type:ControlType.String},It59MEIz2:{title:\"Link\",type:ControlType.Link},u5xr2U0f1:{defaultValue:\"Category\",displayTextArea:false,title:\"Category\",type:ControlType.String}});addFonts(FramerCGOSCAg0z,[{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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCGOSCAg0z\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"qsOI8897U\\\":\\\"blogTitle\\\",\\\"NAiLYYTPF\\\":\\\"image\\\",\\\"w3lTipgDR\\\":\\\"date\\\",\\\"It59MEIz2\\\":\\\"link\\\",\\\"u5xr2U0f1\\\":\\\"category\\\"}\",\"framerIntrinsicWidth\":\"530\",\"framerIntrinsicHeight\":\"250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x6FVIDUiT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RkiKw86Aj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JarIApvVe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2e3161d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/piZDOMbjCD5Ip77sqk4O/FKe3yO9zkbj38yuMFR3I/QObON56vl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mhmMJ1PlLVFtfj7zrZgs/McqcFlgE9UbpW7h3vqwN/X7ylXautb.js\";const cycleOrder=[\"pmN_X2nC0\",\"HMxqrceSk\"];const serializationHash=\"framer-Uetvt\";const variantClassNames={HMxqrceSk:\"framer-v-1fth57z\",pmN_X2nC0:\"framer-v-eza6g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"pmN_X2nC0\",\"Variant 2\":\"HMxqrceSk\"};const getProps=({height,id,suffix,text,title,value,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,aUWyHBU5y:(_ref=title!==null&&title!==void 0?title:props.aUWyHBU5y)!==null&&_ref!==void 0?_ref:\"Project Completed\",conep8VZj:(_ref1=suffix!==null&&suffix!==void 0?suffix:props.conep8VZj)!==null&&_ref1!==void 0?_ref1:\"+\",LkY2g1GIq:(_ref2=text!==null&&text!==void 0?text:props.LkY2g1GIq)!==null&&_ref2!==void 0?_ref2:\"Over 1000 successful projects completed, showcasing our extensive experience and portfolio.\",RoUY3ecLs:(_ref3=value!==null&&value!==void 0?value:props.RoUY3ecLs)!==null&&_ref3!==void 0?_ref3:100,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"pmN_X2nC0\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RoUY3ecLs,conep8VZj,aUWyHBU5y,LkY2g1GIq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pmN_X2nC0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=numberToString(RoUY3ecLs,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eza6g\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pmN_X2nC0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(247, 246, 233))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({HMxqrceSk:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-97lshm\",layoutDependency:layoutDependency,layoutId:\"EBhqX3aId\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.09em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 54, 157)))\"},children:\"100\"})}),className:\"framer-insgcx\",fonts:[\"FS;Poppins-medium\"],layoutDependency:layoutDependency,layoutId:\"IgbTi4zlN\",style:{\"--extracted-r6o4lv\":\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 54, 157))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(243, 172, 133)))\"},children:\"+\"})}),className:\"framer-129k7qz\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"i1Vpx7wqs\",style:{\"--extracted-r6o4lv\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(243, 172, 133))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:conep8VZj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z4jo2z\",layoutDependency:layoutDependency,layoutId:\"KJZG93Xby\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qrpho1\",\"data-styles-preset\":\"X7ylXautb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Project Completed\"})}),className:\"framer-mqdvnw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sB1Qz_0yl\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aUWyHBU5y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20)))\"},children:\"Over 1000 successful projects completed, showcasing our extensive experience and portfolio.\"})}),className:\"framer-1m6yltw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"avLAxlyB0\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:LkY2g1GIq,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Uetvt.framer-ksv4m0, .framer-Uetvt .framer-ksv4m0 { display: block; }\",\".framer-Uetvt.framer-eza6g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 17px; position: relative; width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Uetvt .framer-97lshm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Uetvt .framer-insgcx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Uetvt .framer-129k7qz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Uetvt .framer-z4jo2z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 221px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Uetvt .framer-mqdvnw, .framer-Uetvt .framer-1m6yltw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Uetvt.framer-eza6g, .framer-Uetvt .framer-97lshm, .framer-Uetvt .framer-z4jo2z { gap: 0px; } .framer-Uetvt.framer-eza6g > *, .framer-Uetvt .framer-z4jo2z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Uetvt.framer-eza6g > :first-child, .framer-Uetvt .framer-z4jo2z > :first-child { margin-top: 0px; } .framer-Uetvt.framer-eza6g > :last-child, .framer-Uetvt .framer-z4jo2z > :last-child { margin-bottom: 0px; } .framer-Uetvt .framer-97lshm > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-Uetvt .framer-97lshm > :first-child { margin-left: 0px; } .framer-Uetvt .framer-97lshm > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 365\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HMxqrceSk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RoUY3ecLs\":\"value\",\"conep8VZj\":\"suffix\",\"aUWyHBU5y\":\"title\",\"LkY2g1GIq\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerjui6Drl4E=withCSS(Component,css,\"framer-Uetvt\");export default Framerjui6Drl4E;Framerjui6Drl4E.displayName=\"Stats\";Framerjui6Drl4E.defaultProps={height:365,width:460};addPropertyControls(Framerjui6Drl4E,{variant:{options:[\"pmN_X2nC0\",\"HMxqrceSk\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},RoUY3ecLs:{defaultValue:100,title:\"Value\",type:ControlType.Number},conep8VZj:{defaultValue:\"+\",displayTextArea:false,title:\"Suffix\",type:ControlType.String},aUWyHBU5y:{defaultValue:\"Project Completed\",displayTextArea:false,title:\"Title\",type:ControlType.String},LkY2g1GIq:{defaultValue:\"Over 1000 successful projects completed, showcasing our extensive experience and portfolio.\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(Framerjui6Drl4E,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjui6Drl4E\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HMxqrceSk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"460\",\"framerVariables\":\"{\\\"RoUY3ecLs\\\":\\\"value\\\",\\\"conep8VZj\\\":\\\"suffix\\\",\\\"aUWyHBU5y\\\":\\\"title\\\",\\\"LkY2g1GIq\\\":\\\"text\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"365\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jui6Drl4E.map", "export const v0=\"Casa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport*as localizedValues from\"./Od9Eu_DN7-0.js\";const valuesByLocaleId={S0viHpN1r:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3THo7ZW6fS07ku91Azt9/0g03flLBDC9NM0AygMWN/QMuEq11PS.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pgsDLABihm25LN1JoqeL/lSMukRQwiajLTfFhPfPO/QObON56vl.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/mHAdt5ONZkpVJ58hHwKJ/Q8ccuhqkDmBEgnwbYXou/Od9Eu_DN7.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const enabledGestures={hp0P9sTBz:{hover:true}};const cycleOrder=[\"zLsm8ipGO\",\"hp0P9sTBz\"];const serializationHash=\"framer-V127e\";const variantClassNames={hp0P9sTBz:\"framer-v-r07nub\",zLsm8ipGO:\"framer-v-hrs9qh\"};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 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={Collapsed:\"hp0P9sTBz\",Open:\"zLsm8ipGO\"};const getProps=({details,height,icon,id,title,width,...props})=>{return{...props,noLQ9SosO:title??props.noLQ9SosO??\"This is the title\",pbvgtsbrE:icon??props.pbvgtsbrE??\"House\",variant:humanReadableVariantMap[props.variant]??props.variant??\"zLsm8ipGO\",yow4NxBke:details??props.yow4NxBke??\"Our journey begins with a comprehensive initial meeting to understand your vision, needs, and preferences. We discuss the project scope, budget, timeline, and design style in detail, laying the foundation for a successful design transformation.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pbvgtsbrE,noLQ9SosO,yow4NxBke,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zLsm8ipGO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19tw3ub=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"hp0P9sTBz\");});const onTap1tms7tc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"zLsm8ipGO\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hrs9qh\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zLsm8ipGO\",onTap:onTap19tw3ub,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"hp0P9sTBz-hover\":{\"data-framer-name\":undefined},hp0P9sTBz:{\"data-framer-name\":\"Collapsed\",onTap:onTap1tms7tc}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lt6d3h\",layoutDependency:layoutDependency,layoutId:\"QteTBfwU6\",style:{backgroundColor:\"var(--token-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.05))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"hp0P9sTBz-hover\":{backgroundColor:\"var(--token-3ef2b024-43b5-4c0c-a7b2-ecacd057a93b, rgba(255, 255, 255, 0.05))\"},hp0P9sTBz:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6tbdiu\",layoutDependency:layoutDependency,layoutId:\"aLjxkDwD1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1skblzz\",layoutDependency:layoutDependency,layoutId:\"HF2Ta1bLo\",style:{backgroundColor:\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2vnaxn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D1ahvYYaf-container\",nodeId:\"D1ahvYYaf\",rendersWithMotion:true,scopeId:\"Od9Eu_DN7\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(80, 200, 120))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:pbvgtsbrE,id:\"D1ahvYYaf\",layoutId:\"D1ahvYYaf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\",...addPropertyOverrides({\"hp0P9sTBz-hover\":{weight:\"duotone\"},hp0P9sTBz:{weight:\"regular\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255)))\"},children:\"text\"})}),className:\"framer-1q31zkb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b856IWj1B\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:noLQ9SosO,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nadsdh-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sVMLzuyri-container\",nodeId:\"sVMLzuyri\",rendersWithMotion:true,scopeId:\"Od9Eu_DN7\",style:{rotate:-180},variants:{hp0P9sTBz:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(248, 248, 245))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:\"CaretDown\",id:\"sVMLzuyri\",layoutId:\"sVMLzuyri\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xbp3cx\",\"data-framer-name\":\"Answer Wrapper\",layoutDependency:layoutDependency,layoutId:\"bXDuRFPzI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255)))\"},children:\"Our journey begins with a comprehensive initial meeting to understand your vision, needs, and preferences. We discuss the project scope, budget, timeline, and design style in detail, laying the foundation for a successful design transformation.\"})}),className:\"framer-pyxel2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fsalP3PA3\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:yow4NxBke,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-V127e.framer-fhd5id, .framer-V127e .framer-fhd5id { display: block; }\",\".framer-V127e.framer-hrs9qh { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 687px; }\",\".framer-V127e .framer-lt6d3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 7px 10px 7px 7px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-V127e .framer-6tbdiu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: 50px; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 0px; position: relative; width: 1px; }\",\".framer-V127e .framer-1skblzz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-V127e .framer-2vnaxn-container { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-V127e .framer-1q31zkb, .framer-V127e .framer-pyxel2 { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-V127e .framer-1nadsdh-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-V127e .framer-1xbp3cx { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 80px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-V127e.framer-hrs9qh, .framer-V127e .framer-6tbdiu, .framer-V127e .framer-1skblzz, .framer-V127e .framer-1xbp3cx { gap: 0px; } .framer-V127e.framer-hrs9qh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-V127e.framer-hrs9qh > :first-child { margin-top: 0px; } .framer-V127e.framer-hrs9qh > :last-child { margin-bottom: 0px; } .framer-V127e .framer-6tbdiu > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-V127e .framer-6tbdiu > :first-child, .framer-V127e .framer-1skblzz > :first-child, .framer-V127e .framer-1xbp3cx > :first-child { margin-left: 0px; } .framer-V127e .framer-6tbdiu > :last-child, .framer-V127e .framer-1skblzz > :last-child, .framer-V127e .framer-1xbp3cx > :last-child { margin-right: 0px; } .framer-V127e .framer-1skblzz > *, .framer-V127e .framer-1xbp3cx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-V127e.framer-v-r07nub.framer-hrs9qh { gap: 0px; padding: 0px; }\",\".framer-V127e.framer-v-r07nub .framer-1xbp3cx { height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-V127e.framer-v-r07nub.framer-hrs9qh { gap: 0px; } .framer-V127e.framer-v-r07nub.framer-hrs9qh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-V127e.framer-v-r07nub.framer-hrs9qh > :first-child { margin-top: 0px; } .framer-V127e.framer-v-r07nub.framer-hrs9qh > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 178\n * @framerIntrinsicWidth 687\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hp0P9sTBz\":{\"layout\":[\"fixed\",\"auto\"]},\"LPL_bBrja\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pbvgtsbrE\":\"icon\",\"noLQ9SosO\":\"title\",\"yow4NxBke\":\"details\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOd9Eu_DN7=withCSS(Component,css,\"framer-V127e\");export default FramerOd9Eu_DN7;FramerOd9Eu_DN7.displayName=\"Accordion\";FramerOd9Eu_DN7.defaultProps={height:178,width:687};addPropertyControls(FramerOd9Eu_DN7,{variant:{options:[\"zLsm8ipGO\",\"hp0P9sTBz\"],optionTitles:[\"Open\",\"Collapsed\"],title:\"Variant\",type:ControlType.Enum},pbvgtsbrE:Phosphor1Controls?.[\"iconSelection\"]&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},noLQ9SosO:{defaultValue:\"This is the title\",displayTextArea:true,title:\"Title\",type:ControlType.String},yow4NxBke:{defaultValue:\"Our journey begins with a comprehensive initial meeting to understand your vision, needs, and preferences. We discuss the project scope, budget, timeline, and design style in detail, laying the foundation for a successful design transformation.\",displayTextArea:true,title:\"Details\",type:ControlType.String}});addFonts(FramerOd9Eu_DN7,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOd9Eu_DN7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"178\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"pbvgtsbrE\\\":\\\"icon\\\",\\\"noLQ9SosO\\\":\\\"title\\\",\\\"yow4NxBke\\\":\\\"details\\\"}\",\"framerIntrinsicWidth\":\"687\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hp0P9sTBz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LPL_bBrja\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fb31e5e)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={S0viHpN1r:new LazyValue(()=>import(\"./ueiKkVaj3-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{showOnlyOnce}from\"https://framerusercontent.com/modules/wvXrzYTQ5UILBXYYT40A/3pKzl6Gpy5oIW2HthVod/ShowOnlyOnce.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/QT1T2E8wheNIIXpHephB/Smooth_Scroll.js\";import Button from\"#framer/local/canvasComponent/bfFy6UW0C/bfFy6UW0C.js\";import ImagesGalleryHomepage from\"#framer/local/canvasComponent/bm8zYlgoi/bm8zYlgoi.js\";import BlogCard from\"#framer/local/canvasComponent/CGOSCAg0z/CGOSCAg0z.js\";import Overlay,*as OverlayInfo from\"#framer/local/canvasComponent/GMwt9Zavw/GMwt9Zavw.js\";import Stats from\"#framer/local/canvasComponent/jui6Drl4E/jui6Drl4E.js\";import NavigationBar from\"#framer/local/canvasComponent/LDekglqvl/LDekglqvl.js\";import Accordion from\"#framer/local/canvasComponent/Od9Eu_DN7/Od9Eu_DN7.js\";import Services from\"#framer/local/canvasComponent/PV1KI2FLg/PV1KI2FLg.js\";import Footer from\"#framer/local/canvasComponent/XHbTl7SMK/XHbTl7SMK.js\";import TextButton from\"#framer/local/canvasComponent/yhpX02Wu6/yhpX02Wu6.js\";import News,{enumToDisplayNameFunctions}from\"#framer/local/collection/L8b3IANtH/L8b3IANtH.js\";import*as sharedStyle4 from\"#framer/local/css/fjyVc4jD3/fjyVc4jD3.js\";import*as sharedStyle3 from\"#framer/local/css/HvbIeng7X/HvbIeng7X.js\";import*as sharedStyle6 from\"#framer/local/css/pOjALZ8om/pOjALZ8om.js\";import*as sharedStyle1 from\"#framer/local/css/QMuEq11PS/QMuEq11PS.js\";import*as sharedStyle5 from\"#framer/local/css/QObON56vl/QObON56vl.js\";import*as sharedStyle2 from\"#framer/local/css/YlG7eJng5/YlG7eJng5.js\";import*as sharedStyle from\"#framer/local/css/YoD4yXnoT/YoD4yXnoT.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/ueiKkVaj3/ueiKkVaj3.js\";import metadataProvider from\"#framer/local/webPageMetadata/ueiKkVaj3/ueiKkVaj3.js\";const OverlayFonts=getFonts(Overlay);const OverlayShowOnlyOnceybpwpeWithMappedReactProps175h4du=withMappedReactProps(withCodeBoundaryForOverrides(Overlay,{nodeId:\"vq3lzHDy3\",override:showOnlyOnce,scopeId:\"ueiKkVaj3\"}),OverlayInfo);const NavigationBarFonts=getFonts(NavigationBar);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TextButtonFonts=getFonts(TextButton);const StatsFonts=getFonts(Stats);const ServicesFonts=getFonts(Services);const AccordionFonts=getFonts(Accordion);const BlogCardFonts=getFonts(BlogCard);const ImagesGalleryHomepageFonts=getFonts(ImagesGalleryHomepage);const ContainerWithFX=withFX(Container);const SmoothScrollFonts=getFonts(SmoothScroll);const FooterFonts=getFonts(Footer);const breakpoints={ePjBTtXEX:\"(min-width: 810px) and (max-width: 1199px)\",gVM634JVz:\"(min-width: 1200px)\",n9gLl4Eao:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-eOwMK\";const variantClassNames={ePjBTtXEX:\"framer-v-7hwwvd\",gVM634JVz:\"framer-v-zgsw7e\",n9gLl4Eao:\"framer-v-otwvw4\"};const transition1={damping:100,delay:0,mass:1,stiffness:362,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const transition2={damping:100,delay:.2,mass:1,stiffness:362,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:170};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"gVM634JVz\",Phone:\"n9gLl4Eao\",Tablet:\"ePjBTtXEX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gVM634JVz\"};};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,eu1SUO8AeXRHkrFveX,zD3ZKyyO9XRHkrFveX,mmsKK_xBbXRHkrFveX,MnZrUXvuIXRHkrFveX,S9w7PJblNXRHkrFveX,idXRHkrFveX,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"d_miMCtlh\");const elementId1=useRouteElementId(\"tj6fwgJq5\");const ref2=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId2=useRouteElementId(\"WdtDyT5MP\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"m04bTWYA6\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ePjBTtXEX\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"n9gLl4Eao\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"gVM634JVz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zgsw7e\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ybpwpe-container\",layoutScroll:true,nodeId:\"vq3lzHDy3\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(OverlayShowOnlyOnceybpwpeWithMappedReactProps175h4du,{height:\"100%\",id:\"vq3lzHDy3\",layoutId:\"vq3lzHDy3\",style:{height:\"100%\",width:\"100%\"},variant:\"Yo8EBlp4k\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hl7t5k-container\",layoutScroll:true,nodeId:\"T6VCz16Xh\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{variant:\"uI65Kuiar\"},n9gLl4Eao:{variant:\"uI65Kuiar\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:\"jcV_yFltq\",height:\"100%\",id:\"T6VCz16Xh\",layoutId:\"T6VCz16Xh\",style:{width:\"100%\"},variant:\"Y6Muk5gpv\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1sv2b1r\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ltk23r\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:40,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1j39tsq\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:.7,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8ck2yw\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-93btow\",\"data-framer-name\":\"Supporting text and button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10w7nzd\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1gfna8p\",\"data-styles-preset\":\"YoD4yXnoT\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Consistent.\",/*#__PURE__*/_jsx(\"br\",{}),\"Compliant. \",/*#__PURE__*/_jsx(\"br\",{}),\"Patient-Centric.\"]})}),className:\"framer-d1vi1q\",\"data-framer-appear-id\":\"d1vi1q\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Allied Corp combines the Colombian natural advantages with pharmaceutical-grade standards to deliver high quality medical cannabis solutions worldwide.\"})}),className:\"framer-xjegof\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LDpT1HaOj\"},implicitPathVariables:undefined},{href:{webPageId:\"LDpT1HaOj\"},implicitPathVariables:undefined},{href:{webPageId:\"LDpT1HaOj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+0+0+0+80+0+0+0+430+0+261},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+0+0+0+60+0+0+0+10.5+0+261}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+0+0+0+150+0+0+-154.5+0+261,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11wlutg-container\",nodeId:\"xNFegY6Cn\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{T5oKm0XoU:resolvedLinks[1]},n9gLl4Eao:{T5oKm0XoU:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"xNFegY6Cn\",layoutId:\"xNFegY6Cn\",QPXgBsk7h:getLocalizedValue(\"v2\",activeLocale)??\"Contact us\",T5oKm0XoU:resolvedLinks[0],variant:\"mOlvOFMPI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+80+0+0+0+0),pixelHeight:888,pixelWidth:1372,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px)`,src:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg\",srcSet:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg 1372w\"}},n9gLl4Eao:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+60+0+0+0+-319.5),pixelHeight:888,pixelWidth:1372,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 24px, 1680px), 1px)`,src:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg\",srcSet:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg 1372w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+150+0+0+-300),pixelHeight:888,pixelWidth:1372,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg\",srcSet:\"https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4OrGutvKbD1w3hbCCIgenVK4HQ.jpeg 1372w\"},className:\"framer-11ol1ai\"})})]})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ey9lpc\",\"data-framer-appear-id\":\"1ey9lpc\",\"data-framer-name\":\"Video\",id:elementId,initial:animation1,optimized:true,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vd6qjz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13jnx1u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yyIHlGZEo\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"yyIHlGZEo\",isMixedBorderRadius:false,layoutId:\"yyIHlGZEo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/9KCawE2hX0Rmd19OvYlVcVFHR4c.webm\",srcType:\"URL\",srcUrl:\"https://www.dropbox.com/scl/fi/5ls6agy20toi6wyplm2ge/WhatsApp-Video-2024-12-11-at-145346-2.webm?rlkey=apit3eypquz4efb22jdoiycfz&st=ap1g11mz&raw=1\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-13gsh6\",\"data-framer-name\":\"Section - About\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nycbxd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d437s5\",\"data-framer-name\":\"Top Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3hqyy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1q3l3un\",\"data-styles-preset\":\"YlG7eJng5\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Founded in 2019, Allied Corp is a trusted supplier of high-quality medical cannabis to pharmaceutical partners worldwide.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Leveraging Canadian cultivation expertise and strict pharmaceutical standards, combined with a site within Colombia\u2019s optimal growing conditions, we offer a consistent supply of high-quality cannabis products to key medical markets globally. Our proven supply chain ensures reliable access for partners, always keeping the needs of patients at the forefront.\"})]}),className:\"framer-4185n3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined},{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined},{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+1326+40+0+0+0+0+0+358},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+393+40+0+0+0+0+0+0+358}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+0+0+700+40+0+0+0+0+0+358,children:/*#__PURE__*/_jsx(Container,{className:\"framer-51c4jq-container\",nodeId:\"JYZuFl8lF\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{D5Z164gFX:resolvedLinks1[1]},n9gLl4Eao:{D5Z164gFX:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(TextButton,{D5Z164gFX:resolvedLinks1[0],height:\"100%\",HOnOT8zKf:getLocalizedValue(\"v4\",activeLocale)??\"Learn More\",id:\"JYZuFl8lF\",layoutId:\"JYZuFl8lF\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19vjbb4\",\"data-framer-name\":\"Statistics\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8wsxx\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpb5xe\",\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 10px) / 2, 200px) * 2 + 10px)`,y:(componentViewport?.y||0)+0+0+0+1326+40+0+0+471+0+0+0+0+0+0},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+393+40+0+0+450+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+700+40+0+0+471+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-255ypw-container\",nodeId:\"ka23v_n79\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Stats,{aUWyHBU5y:getLocalizedValue(\"v6\",activeLocale)??\"Consistent Monthly Supply\",conep8VZj:getLocalizedValue(\"v5\",activeLocale)??\"kg\",height:\"100%\",id:\"ka23v_n79\",layoutId:\"ka23v_n79\",LkY2g1GIq:getLocalizedValue(\"v7\",activeLocale)??\"Proven rolling monthly harvests of up to 1,000kgs meeting European Pharmacopeia and TGO93 testing thresholds\",RoUY3ecLs:1e3,style:{width:\"100%\"},variant:\"pmN_X2nC0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 10px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1326+40+0+0+471+0+0+0+0+0+375},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+393+40+0+0+450+0+0+0+0+0+375}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+700+40+0+0+471+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5mypus-container\",nodeId:\"SQjvmxdqj\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Stats,{aUWyHBU5y:getLocalizedValue(\"v9\",activeLocale)??\"Years of Pharma and Cultivation Expertise\",conep8VZj:getLocalizedValue(\"v8\",activeLocale)??\"+ years\",height:\"100%\",id:\"SQjvmxdqj\",layoutId:\"SQjvmxdqj\",LkY2g1GIq:getLocalizedValue(\"v10\",activeLocale)??\"Core team has over 45+ years of cultivation and pharmaceutical expertise in Canada and Europe, combined with specialist agronomists from Colombia.\",RoUY3ecLs:45,style:{width:\"100%\"},variant:\"pmN_X2nC0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 10px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+1326+40+0+0+471+0+0+0+0+0+375},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1680px)`,y:(componentViewport?.y||0)+0+0+0+393+40+0+0+450+0+0+0+0+0+750}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:365,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1680px) - 20px) / 3, 200px)`,y:(componentViewport?.y||0)+0+0+0+700+40+0+0+471+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eryah1-container\",nodeId:\"YYIVtplfu\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Stats,{aUWyHBU5y:getLocalizedValue(\"v12\",activeLocale)??\"Shipments to Medical Markets\",conep8VZj:getLocalizedValue(\"v11\",activeLocale)??\"+\",height:\"100%\",id:\"YYIVtplfu\",layoutId:\"YYIVtplfu\",LkY2g1GIq:getLocalizedValue(\"v13\",activeLocale)??\"Among the first to export cannabis flower from Colombia in 2022 with proven pharmaceutical supply chains into core medical markets (Australia, Switzerland, Portugal, UK, ...) and 1,000kgs+ shipped to date.\",RoUY3ecLs:10,style:{width:\"100%\"},variant:\"pmN_X2nC0\",width:\"100%\"})})})})]})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1nermdh\",\"data-framer-name\":\"Section - Products\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t2c3mi\",\"data-framer-name\":\"Heading Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Products\"})}),className:\"framer-1miy1xu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+2617+40+168},n9gLl4Eao:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+2038+40+148}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:548,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1280px)`,y:(componentViewport?.y||0)+0+0+0+1616+40+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dff4ke-container\",\"data-framer-name\":\"Products\",name:\"Products\",nodeId:\"P1OYHtGVS\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{variant:\"YuKfuPGgm\"},n9gLl4Eao:{variant:\"YuKfuPGgm\"}},children:/*#__PURE__*/_jsx(Services,{height:\"100%\",id:\"P1OYHtGVS\",layoutId:\"P1OYHtGVS\",name:\"Products\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"D03aXMo6n\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dxy08\",\"data-framer-name\":\"Section - Why Choose Us\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f77tid\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3413+40+0+0),pixelHeight:1600,pixelWidth:1200,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px)`,src:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg\",srcSet:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg 1200w\"}},n9gLl4Eao:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2814+40+0+0),pixelHeight:1600,pixelWidth:1200,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px)`,src:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg\",srcSet:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2412+40+0),pixelHeight:1600,pixelWidth:1200,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 13px) / 2.25, 1px)`,src:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg\",srcSet:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg 1200w\"},className:\"framer-gl4siu\",\"data-framer-name\":\"Image and Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0x6rp\",\"data-framer-name\":\"Text Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w4ir9e\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v525k0\",\"data-styles-preset\":\"fjyVc4jD3\",style:{\"--framer-text-color\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 0, 0))\"},children:\"Our mission is to be a consistent and reliable supplier of high-quality medical cannabis to pharmaceutical companies globally.\"})}),className:\"framer-1iyvvbm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 0, 0))\"},children:\"We aim to make cannabis a primary source of medicine accessible to all and improve patient lives throughout the world.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",style:{\"--framer-text-color\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 0, 0))\"},children:\"We aim to make cannabis a primary source of medicine accessible to all and improve patient lives throughout the world.\"})}),className:\"framer-24zd9r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined},{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined},{href:{webPageId:\"G3Rq4HqpE\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+3413+40+0+0+10+166+20+326},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+2814+40+0+0+10+366+20+326}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+2412+40+0+10+410.79999999999995+20+326,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i74zl7-container\",nodeId:\"YjPRoIwt4\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{T5oKm0XoU:resolvedLinks2[1]},n9gLl4Eao:{T5oKm0XoU:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"YjPRoIwt4\",layoutId:\"YjPRoIwt4\",QPXgBsk7h:getLocalizedValue(\"v18\",activeLocale)??\"Learn more\",T5oKm0XoU:resolvedLinks2[0],variant:\"qafDGgH_d\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rfiqnt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3nza5\",\"data-framer-name\":\"Top Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2sj0u\",\"data-framer-name\":\"Heading and Badge\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Why choose Allied?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"Why choose Allied?\"})}),className:\"framer-18igtig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bifgfb\",\"data-framer-name\":\"Why Choose Us Reasons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+3413+40+0+637+0+62.800000000000004+20+0},n9gLl4Eao:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2814+40+0+850+0+62.800000000000004+12+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 13px) / 1.8, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2412+40+0+0+62.800000000000004+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kgtyex-container\",nodeId:\"QtWJBx5D4\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"QtWJBx5D4\",layoutId:\"QtWJBx5D4\",noLQ9SosO:getLocalizedValue(\"v21\",activeLocale)??\"Stringent Pharmaceutical Standards\",pbvgtsbrE:\"Pill\",style:{width:\"100%\"},variant:\"zLsm8ipGO\",width:\"100%\",yow4NxBke:getLocalizedValue(\"v22\",activeLocale)??\"With an ICA BPA (GAP) certification and several successful audits by European and Australian EU-GMP partners, Allied\u2019s processes meet rigorous international standards to ensure product safety for patients worldwide. Our operations follow highly detailed SOPs to ensure precise control and consistency across cultivation, processing, packaging, testing, and sanitation, maintaining the highest quality standards.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+3413+40+0+637+0+62.800000000000004+20+188},n9gLl4Eao:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2814+40+0+850+0+62.800000000000004+12+188}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 13px) / 1.8, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2412+40+0+0+62.800000000000004+20+188,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ho4vgi-container\",nodeId:\"JMq2WnwKR\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"JMq2WnwKR\",layoutId:\"JMq2WnwKR\",noLQ9SosO:getLocalizedValue(\"v23\",activeLocale)??\"Consistent & Year-Round Production\",pbvgtsbrE:\"CalendarCheck\",style:{width:\"100%\"},variant:\"hp0P9sTBz\",width:\"100%\",yow4NxBke:getLocalizedValue(\"v24\",activeLocale)??\"With Colombia\u2019s stable, year-round climate, Allied achieves uninterrupted cannabis production in controlled greenhouses. Our sun-grown practices enhance terpene profiles while maintaining a natural, energy-efficient process. We have a track record of producing up to 1,000 kg of cannabis per month, meeting the strict European Pharmacopeia standards.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+3413+40+0+637+0+62.800000000000004+20+376},n9gLl4Eao:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2814+40+0+850+0+62.800000000000004+12+376}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 13px) / 1.8, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2412+40+0+0+62.800000000000004+20+376,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pbs9lp-container\",nodeId:\"SwN9pDpac\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"SwN9pDpac\",layoutId:\"SwN9pDpac\",noLQ9SosO:getLocalizedValue(\"v25\",activeLocale)??\"Proven Reliable Supply Chain\",pbvgtsbrE:\"Money\",style:{width:\"100%\"},variant:\"hp0P9sTBz\",width:\"100%\",yow4NxBke:getLocalizedValue(\"v26\",activeLocale)??\"Among the first to export cannabis flower from Colombia in 2022, Allied has shipped over 5,000 kg to core medical markets to date, including Australia and Europe. Our monthly rolling harvests ensure a continuous flow of production, minimizing supply chain risks and guaranteeing a steady, reliable supply for our global partners. To support its product lines, Allied has also established EU-GMP manufacturing capabilities addressing all key medical markets.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+3413+40+0+637+0+62.800000000000004+20+564},n9gLl4Eao:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) - 24px)`,y:(componentViewport?.y||0)+0+0+0+2814+40+0+850+0+62.800000000000004+12+564}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:178,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) - 13px) / 1.8, 1px) - 40px)`,y:(componentViewport?.y||0)+0+0+0+2412+40+0+0+62.800000000000004+20+564,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tklsof-container\",nodeId:\"F6y0uiIUU\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"F6y0uiIUU\",layoutId:\"F6y0uiIUU\",noLQ9SosO:getLocalizedValue(\"v27\",activeLocale)??\"Canadian Expertise & Colombian Environment\",pbvgtsbrE:\"Intersect\",style:{width:\"100%\"},variant:\"hp0P9sTBz\",width:\"100%\",yow4NxBke:getLocalizedValue(\"v28\",activeLocale)??\"Allied combines 30+ years of Canadian cannabis cultivation and 15+  years of pharmaceutical expertise with Colombia\u2019s agronomical strengths. Our local team\u2019s experience managing 8,000 hectares of rice plantations ensures unmatched knowledge of growing conditions, enabling us to deliver compliant, high-quality cannabis globally.\"})})})})]})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lwpy3i\",\"data-framer-name\":\"Section - News\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nova2s\",\"data-framer-name\":\"Heading Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qo0s7g\",\"data-styles-preset\":\"HvbIeng7X\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:\"News\"})}),className:\"framer-mue47v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19313zp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8apt5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{query:{from:{alias:\"XRHkrFveX\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"XRHkrFveX\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"zD3ZKyyO9\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"id\",type:\"Identifier\"}]}},n9gLl4Eao:{query:{from:{alias:\"XRHkrFveX\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"XRHkrFveX\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"zD3ZKyyO9\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XRHkrFveX\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"XRHkrFveX\",name:\"eu1SUO8Ae\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"zD3ZKyyO9\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"mmsKK_xBb\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"MnZrUXvuI\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"S9w7PJblN\",type:\"Identifier\"},{collection:\"XRHkrFveX\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({eu1SUO8Ae:eu1SUO8AeXRHkrFveX,id:idXRHkrFveX,mmsKK_xBb:mmsKK_xBbXRHkrFveX,MnZrUXvuI:MnZrUXvuIXRHkrFveX,S9w7PJblN:S9w7PJblNXRHkrFveX,zD3ZKyyO9:zD3ZKyyO9XRHkrFveX},index)=>{eu1SUO8AeXRHkrFveX??=\"\";MnZrUXvuIXRHkrFveX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XRHkrFveX-${idXRHkrFveX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MnZrUXvuI:MnZrUXvuIXRHkrFveX},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIXRHkrFveX},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined},{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIXRHkrFveX},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined},{href:{pathVariables:{MnZrUXvuI:MnZrUXvuIXRHkrFveX},webPageId:\"K4rlRvU29\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px), 200px)`,y:(componentViewport?.y||0)+0+0+0+4974.8+40+168+0+0+0},n9gLl4Eao:{width:`max(min(${componentViewport?.width||\"100vw\"} - 24px, 1680px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4572.8+40+148+0+0+520}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px) - 11px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+3336.8+40+168+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcalx-container\",nodeId:\"UMX8onSkD\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{It59MEIz2:resolvedLinks3[1]},n9gLl4Eao:{It59MEIz2:resolvedLinks3[2],variant:\"x6FVIDUiT\"}},children:/*#__PURE__*/_jsx(BlogCard,{height:\"100%\",id:\"UMX8onSkD\",It59MEIz2:resolvedLinks3[0],layoutId:\"UMX8onSkD\",NAiLYYTPF:toResponsiveImage(zD3ZKyyO9XRHkrFveX),qsOI8897U:eu1SUO8AeXRHkrFveX,style:{width:\"100%\"},u5xr2U0f1:enumToDisplayNameFunctions[\"S9w7PJblN\"]?.(S9w7PJblNXRHkrFveX,activeLocale),variant:\"Qib_MLlLH\",w3lTipgDR:toDateString(mmsKK_xBbXRHkrFveX,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),width:\"100%\"})})})})})})})},idXRHkrFveX);})})})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-vacmzj\",\"data-framer-name\":\"Section - Gallery\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wrrmfb\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149l52o\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2bh9md\",\"data-framer-name\":\"Shadow\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbj7w7\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zxf4xn\",\"data-styles-preset\":\"pOjALZ8om\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(255, 0, 0))\"},children:\"Discover our facilities, our processes and our range of products\"})}),className:\"framer-1tght8v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JHB81Tb26\"},implicitPathVariables:undefined},{href:{webPageId:\"JHB81Tb26\"},implicitPathVariables:undefined},{href:{webPageId:\"JHB81Tb26\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+0+0+5994.8+0+0+40+396.1+0+79.80000000000001},n9gLl4Eao:{y:(componentViewport?.y||0)+0+0+0+5570.8+0+0+40+386.1+10+79.80000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+4095.8+0+0+40+396.1+0+79.80000000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q77dbt-container\",nodeId:\"jTsVwMeGZ\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{T5oKm0XoU:resolvedLinks4[1]},n9gLl4Eao:{T5oKm0XoU:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jTsVwMeGZ\",layoutId:\"jTsVwMeGZ\",QPXgBsk7h:getLocalizedValue(\"v31\",activeLocale)??\"Find Out More\",T5oKm0XoU:resolvedLinks4[0],variant:\"qafDGgH_d\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c7eiqs\",\"data-framer-name\":\"Image Columns\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5994.8+0+0+40+-147.49999999999977+0},n9gLl4Eao:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) * 0.94 - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5570.8+0+0+40+-146.81851851851832+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1215,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+4095.8+0+0+40+920-785+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:180}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:77,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:155,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-430}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:230}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-141rygs-container\",\"data-framer-name\":\"Column 1\",name:\"Column 1\",nodeId:\"tFnIL51Z1\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(ImagesGalleryHomepage,{bQspCtjNI:addImageAlt({src:\"https://framerusercontent.com/images/dHZbTxDnXTQNYusLQNEyWl44s.jpeg\",srcSet:\"https://framerusercontent.com/images/dHZbTxDnXTQNYusLQNEyWl44s.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/dHZbTxDnXTQNYusLQNEyWl44s.jpeg 1200w\"},getLocalizedValue(\"v33\",activeLocale)??\"Gallery Image\"),ELxVQmXQU:addImageAlt({src:\"https://framerusercontent.com/images/TTUQ8iL5DuOOzDl7dP1hDFAglE.png\",srcSet:\"https://framerusercontent.com/images/TTUQ8iL5DuOOzDl7dP1hDFAglE.png?scale-down-to=512 512w,https://framerusercontent.com/images/TTUQ8iL5DuOOzDl7dP1hDFAglE.png 1024w\"},getLocalizedValue(\"v33\",activeLocale)??\"Gallery Image\"),GF0qnEJdU:addImageAlt({src:\"https://framerusercontent.com/images/J1hy7dUwDdoc78K5wWzegsKtPv4.jpeg\",srcSet:\"https://framerusercontent.com/images/J1hy7dUwDdoc78K5wWzegsKtPv4.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/J1hy7dUwDdoc78K5wWzegsKtPv4.jpeg 1200w\"},getLocalizedValue(\"v32\",activeLocale)??\"Gallery Image\"),height:\"100%\",id:\"tFnIL51Z1\",layoutId:\"tFnIL51Z1\",name:\"Column 1\",Sf2AaiLP4:addImageAlt({src:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg\",srcSet:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg 1200w\"},getLocalizedValue(\"v34\",activeLocale)??\"Gallery Image\"),style:{width:\"100%\"},vfTeak1wj:addImageAlt({src:\"https://framerusercontent.com/images/ahBlztMmL404Lg78tpjyGqt3ul4.jpeg\",srcSet:\"https://framerusercontent.com/images/ahBlztMmL404Lg78tpjyGqt3ul4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ahBlztMmL404Lg78tpjyGqt3ul4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ahBlztMmL404Lg78tpjyGqt3ul4.jpeg 1500w\"},getLocalizedValue(\"v33\",activeLocale)??\"Gallery Image\"),width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1680px) * 0.94 - 10px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+5570.8+0+0+40+-146.81851851851832+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1215,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+4095.8+0+0+40+920-785+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n9gLl4Eao:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:190}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-180}}],__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:77,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:155,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:130}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-410}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wq99k6-container hidden-7hwwvd\",\"data-framer-name\":\"Column 4\",name:\"Column 4\",nodeId:\"iLXGRgFCY\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(ImagesGalleryHomepage,{bQspCtjNI:addImageAlt({src:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg\",srcSet:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg 1200w\"},\"\"),ELxVQmXQU:addImageAlt({src:\"https://framerusercontent.com/images/Do8kZ29NzPBExiv9k7xRuWcnr3Q.jpg\",srcSet:\"https://framerusercontent.com/images/Do8kZ29NzPBExiv9k7xRuWcnr3Q.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/Do8kZ29NzPBExiv9k7xRuWcnr3Q.jpg 1200w\"},\"\"),GF0qnEJdU:addImageAlt({src:\"https://framerusercontent.com/images/NN5Yb9XHdLKlVA1lzQJb2u5Q40.jpeg\",srcSet:\"https://framerusercontent.com/images/NN5Yb9XHdLKlVA1lzQJb2u5Q40.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NN5Yb9XHdLKlVA1lzQJb2u5Q40.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NN5Yb9XHdLKlVA1lzQJb2u5Q40.jpeg 1200w\"},\"\"),height:\"100%\",id:\"iLXGRgFCY\",layoutId:\"iLXGRgFCY\",name:\"Column 4\",Sf2AaiLP4:addImageAlt({src:\"https://framerusercontent.com/images/D4UuRYx9BLy7Z7lVE9FZsMLufd8.jpeg\",srcSet:\"https://framerusercontent.com/images/D4UuRYx9BLy7Z7lVE9FZsMLufd8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/D4UuRYx9BLy7Z7lVE9FZsMLufd8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/D4UuRYx9BLy7Z7lVE9FZsMLufd8.jpeg 2000w\"},\"\"),style:{width:\"100%\"},vfTeak1wj:addImageAlt({src:\"https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg\",srcSet:\"https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg 2741w\"},\"\"),width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5994.8+0+0+40+-147.49999999999977+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1215,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+4095.8+0+0+40+920-785+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:77,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:155,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:130}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-410}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-epgrn8-container hidden-otwvw4\",\"data-framer-name\":\"Column 2\",name:\"Column 2\",nodeId:\"lqYUF8RGN\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(ImagesGalleryHomepage,{bQspCtjNI:addImageAlt({src:\"https://framerusercontent.com/images/6Lu5tkpRhshs6XLKXCkcSHs4Q.png\",srcSet:\"https://framerusercontent.com/images/6Lu5tkpRhshs6XLKXCkcSHs4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/6Lu5tkpRhshs6XLKXCkcSHs4Q.png 1024w\"},\"\"),ELxVQmXQU:addImageAlt({src:\"https://framerusercontent.com/images/S9teLRAS8TUhgg0aFS6ufuLPGPk.png\",srcSet:\"https://framerusercontent.com/images/S9teLRAS8TUhgg0aFS6ufuLPGPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9teLRAS8TUhgg0aFS6ufuLPGPk.png 1024w\"},\"\"),GF0qnEJdU:addImageAlt({src:\"https://framerusercontent.com/images/P3EnoUk1ohCWOisYRrzq0XQ6U.png\",srcSet:\"https://framerusercontent.com/images/P3EnoUk1ohCWOisYRrzq0XQ6U.png?scale-down-to=512 512w,https://framerusercontent.com/images/P3EnoUk1ohCWOisYRrzq0XQ6U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P3EnoUk1ohCWOisYRrzq0XQ6U.png 2048w\"},\"\"),height:\"100%\",id:\"lqYUF8RGN\",layoutId:\"lqYUF8RGN\",name:\"Column 2\",Sf2AaiLP4:addImageAlt({src:\"https://framerusercontent.com/images/jk0qtakr31jpoZBeaEyRVks.png\",srcSet:\"https://framerusercontent.com/images/jk0qtakr31jpoZBeaEyRVks.png?scale-down-to=512 512w,https://framerusercontent.com/images/jk0qtakr31jpoZBeaEyRVks.png 1024w\"},\"\"),style:{width:\"100%\"},vfTeak1wj:addImageAlt({src:\"https://framerusercontent.com/images/qdkatMvPms6ny9OW9AuUxGf9Y.jpeg\",srcSet:\"https://framerusercontent.com/images/qdkatMvPms6ny9OW9AuUxGf9Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qdkatMvPms6ny9OW9AuUxGf9Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qdkatMvPms6ny9OW9AuUxGf9Y.jpeg 1200w\"},\"\"),width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 20px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5994.8+0+0+40+-147.49999999999977+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1215,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1680px) * 0.98 - 30px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+4095.8+0+0+40+920-785+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:77,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:155,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-430}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:230}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ce65sm-container hidden-otwvw4\",\"data-framer-name\":\"Column 3\",name:\"Column 3\",nodeId:\"JUGX5I5TS\",rendersWithMotion:true,scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(ImagesGalleryHomepage,{bQspCtjNI:addImageAlt({src:\"https://framerusercontent.com/images/PZV3WMTk1r8wPIc4BWcwYA8lFqc.jpeg\",srcSet:\"https://framerusercontent.com/images/PZV3WMTk1r8wPIc4BWcwYA8lFqc.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/PZV3WMTk1r8wPIc4BWcwYA8lFqc.jpeg 1200w\"},getLocalizedValue(\"v34\",activeLocale)??\"Gallery Image\"),ELxVQmXQU:addImageAlt({src:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg\",srcSet:\"https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/n9M8Xkr5YzOeDecfnxlDxlhNjA.jpeg 1200w\"},getLocalizedValue(\"v33\",activeLocale)??\"Gallery Image\"),GF0qnEJdU:addImageAlt({src:\"https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg\",srcSet:\"https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aaL6wsbsIscEFrmr81s2F38nmSM.jpeg 2741w\"},getLocalizedValue(\"v32\",activeLocale)??\"Gallery Image\"),height:\"100%\",id:\"JUGX5I5TS\",layoutId:\"JUGX5I5TS\",name:\"Column 3\",Sf2AaiLP4:addImageAlt({src:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg\",srcSet:\"https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/jdKqskRh3uWViu0PqsDHoloPDk.jpeg 1200w\"},getLocalizedValue(\"v35\",activeLocale)??\"Gallery Image\"),style:{width:\"100%\"},vfTeak1wj:addImageAlt({src:\"https://framerusercontent.com/images/BzDD0G9s5kFHEYLLzzyQjQUK2Y.jpg\",srcSet:\"https://framerusercontent.com/images/BzDD0G9s5kFHEYLLzzyQjQUK2Y.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/BzDD0G9s5kFHEYLLzzyQjQUK2Y.jpg 1200w\"},getLocalizedValue(\"v33\",activeLocale)??\"Gallery Image\"),width:\"100%\"})})})})]})]})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bn53kh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"ZCezUq2zT\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZCezUq2zT\",intensity:15,layoutId:\"ZCezUq2zT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{y:(componentViewport?.y||0)+0+8494.8},n9gLl4Eao:{y:(componentViewport?.y||0)+0+8070.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1239,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6595.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q3g1oe-container\",nodeId:\"S6HR3Mlhv\",scopeId:\"ueiKkVaj3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ePjBTtXEX:{variant:\"fKBiJQKlN\"},n9gLl4Eao:{variant:\"k6vGwQYnH\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"S6HR3Mlhv\",layoutId:\"S6HR3Mlhv\",style:{width:\"100%\"},variant:\"u0GGoXVaI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eOwMK.framer-3hkk98, .framer-eOwMK .framer-3hkk98 { display: block; }\",\".framer-eOwMK.framer-zgsw7e { align-content: center; align-items: center; background-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-eOwMK .framer-ybpwpe-container { flex: none; height: 100vh; left: 0px; pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-eOwMK .framer-hl7t5k-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-eOwMK .framer-1sv2b1r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-eOwMK .framer-ltk23r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1j39tsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-8ck2yw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eOwMK .framer-93btow { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-10w7nzd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-d1vi1q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-eOwMK .framer-xjegof, .framer-eOwMK .framer-24zd9r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eOwMK .framer-11wlutg-container, .framer-eOwMK .framer-51c4jq-container, .framer-eOwMK .framer-1i74zl7-container, .framer-eOwMK .framer-q77dbt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eOwMK .framer-11ol1ai { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 100%; min-height: 600px; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eOwMK .framer-1ey9lpc { align-content: center; align-items: center; box-shadow: 0px -59px 70px -10px var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #fffef2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-eOwMK .framer-1vd6qjz { align-content: center; align-items: center; aspect-ratio: 2.4 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 500px); justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eOwMK .framer-13jnx1u-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-eOwMK .framer-13gsh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-nycbxd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 81px; height: min-content; justify-content: flex-start; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-d437s5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1f3hqyy { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-4185n3, .framer-eOwMK .framer-1iyvvbm, .framer-eOwMK .framer-18igtig { --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-eOwMK .framer-19vjbb4 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eOwMK .framer-r8wsxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-hpb5xe { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-255ypw-container, .framer-eOwMK .framer-5mypus-container, .framer-eOwMK .framer-eryah1-container, .framer-eOwMK .framer-1tcalx-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1nermdh { align-content: center; align-items: center; background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, #faf5ea); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-t2c3mi, .framer-eOwMK .framer-1nova2s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-eOwMK .framer-1miy1xu, .framer-eOwMK .framer-mue47v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eOwMK .framer-1dff4ke-container { flex: none; height: auto; max-width: 1280px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-dxy08 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-f77tid { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-gl4siu { align-content: center; align-items: center; align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-end; max-height: 90vh; overflow: hidden; padding: 10px; position: sticky; top: 65px; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-eOwMK .framer-n0x6rp { -webkit-backdrop-filter: blur(15px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(15px); background-color: var(--token-8870a9c4-2a9d-46c2-84fc-3470fbec519e, rgba(0, 0, 0, 0.05)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eOwMK .framer-w4ir9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1rfiqnt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-z3nza5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-eOwMK .framer-w2sj0u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1bifgfb { align-content: center; align-items: center; background-color: var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #000000); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eOwMK .framer-kgtyex-container, .framer-eOwMK .framer-1ho4vgi-container, .framer-eOwMK .framer-1pbs9lp-container, .framer-eOwMK .framer-tklsof-container, .framer-eOwMK .framer-q3g1oe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-eOwMK .framer-1lwpy3i { align-content: center; align-items: center; background-color: var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, #faf5ea); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-19313zp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-r8apt5 { display: grid; flex: 1 0 0px; gap: 11px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-eOwMK .framer-vacmzj { align-content: center; align-items: center; background-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 250vh; justify-content: flex-start; overflow: visible; padding: 0px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-eOwMK .framer-wrrmfb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 40px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-eOwMK .framer-149l52o { align-content: center; align-items: center; background-color: var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, #5e7ce2); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",'.framer-eOwMK .framer-2bh9md { background: radial-gradient(50% 25% at 48.9% 45.2%, var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, #2f372c) /* {\"name\":\"Brand Color\"} */ 0%, rgba(48, 56, 45, 0) 100%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: -22px; flex: none; left: 191px; overflow: visible; position: absolute; top: 78px; width: 66%; z-index: 2; }',\".framer-eOwMK .framer-1wbj7w7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-eOwMK .framer-1tght8v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-eOwMK .framer-1c7eiqs { align-content: center; align-items: center; bottom: -430px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 98%; z-index: 1; }\",\".framer-eOwMK .framer-141rygs-container, .framer-eOwMK .framer-wq99k6-container, .framer-eOwMK .framer-epgrn8-container, .framer-eOwMK .framer-ce65sm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-eOwMK .framer-1bn53kh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eOwMK.framer-zgsw7e, .framer-eOwMK .framer-1sv2b1r, .framer-eOwMK .framer-ltk23r, .framer-eOwMK .framer-1j39tsq, .framer-eOwMK .framer-8ck2yw, .framer-eOwMK .framer-93btow, .framer-eOwMK .framer-10w7nzd, .framer-eOwMK .framer-1ey9lpc, .framer-eOwMK .framer-1vd6qjz, .framer-eOwMK .framer-13gsh6, .framer-eOwMK .framer-nycbxd, .framer-eOwMK .framer-1f3hqyy, .framer-eOwMK .framer-19vjbb4, .framer-eOwMK .framer-r8wsxx, .framer-eOwMK .framer-1nermdh, .framer-eOwMK .framer-t2c3mi, .framer-eOwMK .framer-dxy08, .framer-eOwMK .framer-f77tid, .framer-eOwMK .framer-gl4siu, .framer-eOwMK .framer-n0x6rp, .framer-eOwMK .framer-w4ir9e, .framer-eOwMK .framer-1rfiqnt, .framer-eOwMK .framer-z3nza5, .framer-eOwMK .framer-w2sj0u, .framer-eOwMK .framer-1bifgfb, .framer-eOwMK .framer-1lwpy3i, .framer-eOwMK .framer-1nova2s, .framer-eOwMK .framer-19313zp, .framer-eOwMK .framer-vacmzj, .framer-eOwMK .framer-wrrmfb, .framer-eOwMK .framer-149l52o, .framer-eOwMK .framer-1wbj7w7, .framer-eOwMK .framer-1c7eiqs { gap: 0px; } .framer-eOwMK.framer-zgsw7e > *, .framer-eOwMK .framer-1sv2b1r > *, .framer-eOwMK .framer-t2c3mi > *, .framer-eOwMK .framer-w2sj0u > *, .framer-eOwMK .framer-1nova2s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eOwMK.framer-zgsw7e > :first-child, .framer-eOwMK .framer-1sv2b1r > :first-child, .framer-eOwMK .framer-ltk23r > :first-child, .framer-eOwMK .framer-1j39tsq > :first-child, .framer-eOwMK .framer-10w7nzd > :first-child, .framer-eOwMK .framer-13gsh6 > :first-child, .framer-eOwMK .framer-nycbxd > :first-child, .framer-eOwMK .framer-1f3hqyy > :first-child, .framer-eOwMK .framer-19vjbb4 > :first-child, .framer-eOwMK .framer-r8wsxx > :first-child, .framer-eOwMK .framer-1nermdh > :first-child, .framer-eOwMK .framer-t2c3mi > :first-child, .framer-eOwMK .framer-gl4siu > :first-child, .framer-eOwMK .framer-n0x6rp > :first-child, .framer-eOwMK .framer-w4ir9e > :first-child, .framer-eOwMK .framer-1rfiqnt > :first-child, .framer-eOwMK .framer-z3nza5 > :first-child, .framer-eOwMK .framer-w2sj0u > :first-child, .framer-eOwMK .framer-1bifgfb > :first-child, .framer-eOwMK .framer-1lwpy3i > :first-child, .framer-eOwMK .framer-1nova2s > :first-child, .framer-eOwMK .framer-vacmzj > :first-child, .framer-eOwMK .framer-1wbj7w7 > :first-child { margin-top: 0px; } .framer-eOwMK.framer-zgsw7e > :last-child, .framer-eOwMK .framer-1sv2b1r > :last-child, .framer-eOwMK .framer-ltk23r > :last-child, .framer-eOwMK .framer-1j39tsq > :last-child, .framer-eOwMK .framer-10w7nzd > :last-child, .framer-eOwMK .framer-13gsh6 > :last-child, .framer-eOwMK .framer-nycbxd > :last-child, .framer-eOwMK .framer-1f3hqyy > :last-child, .framer-eOwMK .framer-19vjbb4 > :last-child, .framer-eOwMK .framer-r8wsxx > :last-child, .framer-eOwMK .framer-1nermdh > :last-child, .framer-eOwMK .framer-t2c3mi > :last-child, .framer-eOwMK .framer-gl4siu > :last-child, .framer-eOwMK .framer-n0x6rp > :last-child, .framer-eOwMK .framer-w4ir9e > :last-child, .framer-eOwMK .framer-1rfiqnt > :last-child, .framer-eOwMK .framer-z3nza5 > :last-child, .framer-eOwMK .framer-w2sj0u > :last-child, .framer-eOwMK .framer-1bifgfb > :last-child, .framer-eOwMK .framer-1lwpy3i > :last-child, .framer-eOwMK .framer-1nova2s > :last-child, .framer-eOwMK .framer-vacmzj > :last-child, .framer-eOwMK .framer-1wbj7w7 > :last-child { margin-bottom: 0px; } .framer-eOwMK .framer-ltk23r > *, .framer-eOwMK .framer-gl4siu > *, .framer-eOwMK .framer-1rfiqnt > *, .framer-eOwMK .framer-1bifgfb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eOwMK .framer-1j39tsq > *, .framer-eOwMK .framer-1nermdh > *, .framer-eOwMK .framer-1lwpy3i > *, .framer-eOwMK .framer-vacmzj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-eOwMK .framer-8ck2yw > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-eOwMK .framer-8ck2yw > :first-child, .framer-eOwMK .framer-93btow > :first-child, .framer-eOwMK .framer-1ey9lpc > :first-child, .framer-eOwMK .framer-1vd6qjz > :first-child, .framer-eOwMK .framer-dxy08 > :first-child, .framer-eOwMK .framer-f77tid > :first-child, .framer-eOwMK .framer-19313zp > :first-child, .framer-eOwMK .framer-wrrmfb > :first-child, .framer-eOwMK .framer-149l52o > :first-child, .framer-eOwMK .framer-1c7eiqs > :first-child { margin-left: 0px; } .framer-eOwMK .framer-8ck2yw > :last-child, .framer-eOwMK .framer-93btow > :last-child, .framer-eOwMK .framer-1ey9lpc > :last-child, .framer-eOwMK .framer-1vd6qjz > :last-child, .framer-eOwMK .framer-dxy08 > :last-child, .framer-eOwMK .framer-f77tid > :last-child, .framer-eOwMK .framer-19313zp > :last-child, .framer-eOwMK .framer-wrrmfb > :last-child, .framer-eOwMK .framer-149l52o > :last-child, .framer-eOwMK .framer-1c7eiqs > :last-child { margin-right: 0px; } .framer-eOwMK .framer-93btow > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-eOwMK .framer-10w7nzd > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-eOwMK .framer-1ey9lpc > *, .framer-eOwMK .framer-1vd6qjz > *, .framer-eOwMK .framer-19313zp > *, .framer-eOwMK .framer-wrrmfb > *, .framer-eOwMK .framer-149l52o > *, .framer-eOwMK .framer-1c7eiqs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eOwMK .framer-13gsh6 > *, .framer-eOwMK .framer-r8wsxx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-eOwMK .framer-nycbxd > * { margin: 0px; margin-bottom: calc(81px / 2); margin-top: calc(81px / 2); } .framer-eOwMK .framer-1f3hqyy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eOwMK .framer-19vjbb4 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-eOwMK .framer-dxy08 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-eOwMK .framer-f77tid > * { margin: 0px; margin-left: calc(13px / 2); margin-right: calc(13px / 2); } .framer-eOwMK .framer-n0x6rp > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-eOwMK .framer-w4ir9e > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-eOwMK .framer-z3nza5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eOwMK .framer-1wbj7w7 > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-eOwMK.framer-zgsw7e { width: 810px; } .framer-eOwMK .framer-1j39tsq { padding: 80px 40px 40px 40px; } .framer-eOwMK .framer-93btow { align-self: unset; flex-direction: column; height: min-content; } .framer-eOwMK .framer-10w7nzd { flex: none; order: 1; width: 100%; } .framer-eOwMK .framer-11ol1ai { flex: none; height: 400px; min-height: 400px; order: 0; width: 100%; } .framer-eOwMK .framer-1vd6qjz { aspect-ratio: 1.7724288840262583 / 1; height: var(--framer-aspect-ratio-supported, 457px); } .framer-eOwMK .framer-hpb5xe { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-eOwMK .framer-255ypw-container { grid-column: auto / span 2; } .framer-eOwMK .framer-f77tid { flex-direction: column; gap: 37px; } .framer-eOwMK .framer-gl4siu { align-self: unset; flex: none; height: 60vh; max-height: unset; position: relative; top: unset; width: 100%; } .framer-eOwMK .framer-1rfiqnt { flex: none; width: 100%; } .framer-eOwMK .framer-r8apt5 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-eOwMK .framer-2bh9md { left: 51px; width: 86%; } .framer-eOwMK .framer-1c7eiqs { bottom: unset; top: 50%; transform: translate(-50%, -50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eOwMK .framer-93btow, .framer-eOwMK .framer-f77tid { gap: 0px; } .framer-eOwMK .framer-93btow > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-eOwMK .framer-93btow > :first-child, .framer-eOwMK .framer-f77tid > :first-child { margin-top: 0px; } .framer-eOwMK .framer-93btow > :last-child, .framer-eOwMK .framer-f77tid > :last-child { margin-bottom: 0px; } .framer-eOwMK .framer-f77tid > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } }}\",\"@media (max-width: 809px) { .framer-eOwMK.framer-zgsw7e { width: 390px; } .framer-eOwMK .framer-1j39tsq { gap: 82px; padding: 60px 12px 50px 12px; } .framer-eOwMK .framer-93btow { flex-direction: column; } .framer-eOwMK .framer-10w7nzd { flex: none; order: 1; width: 100%; } .framer-eOwMK .framer-11ol1ai { flex: none; height: 300px; min-height: 300px; order: 0; width: 100%; } .framer-eOwMK .framer-1vd6qjz { aspect-ratio: 1.4285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 273px); padding: 0px 12px 0px 12px; } .framer-eOwMK .framer-13gsh6, .framer-eOwMK .framer-dxy08, .framer-eOwMK .framer-wrrmfb { padding: 40px 12px 40px 12px; } .framer-eOwMK .framer-nycbxd { gap: 60px; } .framer-eOwMK .framer-d437s5 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-eOwMK .framer-1f3hqyy, .framer-eOwMK .framer-1rfiqnt { flex: none; width: 100%; } .framer-eOwMK .framer-19vjbb4 { justify-content: flex-start; } .framer-eOwMK .framer-hpb5xe { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-eOwMK .framer-255ypw-container, .framer-eOwMK .framer-5mypus-container, .framer-eOwMK .framer-eryah1-container, .framer-eOwMK .framer-1tcalx-container { align-self: unset; height: auto; } .framer-eOwMK .framer-1nermdh, .framer-eOwMK .framer-1lwpy3i { gap: 40px; padding: 40px 12px 40px 12px; } .framer-eOwMK .framer-t2c3mi { width: 100%; } .framer-eOwMK .framer-f77tid { flex-direction: column; gap: 50px; } .framer-eOwMK .framer-gl4siu { align-self: unset; flex: none; height: 800px; max-height: unset; position: relative; top: unset; width: 100%; } .framer-eOwMK .framer-z3nza5 { align-content: center; align-items: center; } .framer-eOwMK .framer-w2sj0u { align-content: center; align-items: center; overflow: visible; } .framer-eOwMK .framer-1bifgfb { padding: 12px; } .framer-eOwMK .framer-r8apt5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: flex-start; } .framer-eOwMK .framer-vacmzj { padding: 0px 0px 30px 0px; } .framer-eOwMK .framer-2bh9md { bottom: -15px; left: -285px; top: -15px; width: 256%; } .framer-eOwMK .framer-1wbj7w7 { padding: 10px; } .framer-eOwMK .framer-1c7eiqs { bottom: unset; overflow: visible; top: 50%; transform: translate(-50%, -50%); width: 94%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eOwMK .framer-1j39tsq, .framer-eOwMK .framer-93btow, .framer-eOwMK .framer-nycbxd, .framer-eOwMK .framer-d437s5, .framer-eOwMK .framer-hpb5xe, .framer-eOwMK .framer-1nermdh, .framer-eOwMK .framer-f77tid, .framer-eOwMK .framer-1lwpy3i, .framer-eOwMK .framer-r8apt5 { gap: 0px; } .framer-eOwMK .framer-1j39tsq > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-eOwMK .framer-1j39tsq > :first-child, .framer-eOwMK .framer-93btow > :first-child, .framer-eOwMK .framer-nycbxd > :first-child, .framer-eOwMK .framer-d437s5 > :first-child, .framer-eOwMK .framer-hpb5xe > :first-child, .framer-eOwMK .framer-1nermdh > :first-child, .framer-eOwMK .framer-f77tid > :first-child, .framer-eOwMK .framer-1lwpy3i > :first-child, .framer-eOwMK .framer-r8apt5 > :first-child { margin-top: 0px; } .framer-eOwMK .framer-1j39tsq > :last-child, .framer-eOwMK .framer-93btow > :last-child, .framer-eOwMK .framer-nycbxd > :last-child, .framer-eOwMK .framer-d437s5 > :last-child, .framer-eOwMK .framer-hpb5xe > :last-child, .framer-eOwMK .framer-1nermdh > :last-child, .framer-eOwMK .framer-f77tid > :last-child, .framer-eOwMK .framer-1lwpy3i > :last-child, .framer-eOwMK .framer-r8apt5 > :last-child { margin-bottom: 0px; } .framer-eOwMK .framer-93btow > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-eOwMK .framer-nycbxd > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-eOwMK .framer-d437s5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-eOwMK .framer-hpb5xe > *, .framer-eOwMK .framer-r8apt5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eOwMK .framer-1nermdh > *, .framer-eOwMK .framer-1lwpy3i > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eOwMK .framer-f77tid > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7668\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ePjBTtXEX\":{\"layout\":[\"fixed\",\"auto\"]},\"n9gLl4Eao\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"d_miMCtlh\":{\"pattern\":\":d_miMCtlh\",\"name\":\"video\"},\"tj6fwgJq5\":{\"pattern\":\":tj6fwgJq5\",\"name\":\"services\"},\"WdtDyT5MP\":{\"pattern\":\":WdtDyT5MP\",\"name\":\"gallery-scroll\"},\"m04bTWYA6\":{\"pattern\":\":m04bTWYA6\",\"name\":\"gallery\"}}\n * @framerResponsiveScreen\n */const FramerueiKkVaj3=withCSS(Component,css,\"framer-eOwMK\");export default FramerueiKkVaj3;FramerueiKkVaj3.displayName=\"Home\";FramerueiKkVaj3.defaultProps={height:7668,width:1200};addFonts(FramerueiKkVaj3,[{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\"}]},...OverlayFonts,...NavigationBarFonts,...ButtonFonts,...VideoFonts,...TextButtonFonts,...StatsFonts,...ServicesFonts,...AccordionFonts,...BlogCardFonts,...ImagesGalleryHomepageFonts,...SmoothScrollFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerueiKkVaj3\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"d_miMCtlh\\\":{\\\"pattern\\\":\\\":d_miMCtlh\\\",\\\"name\\\":\\\"video\\\"},\\\"tj6fwgJq5\\\":{\\\"pattern\\\":\\\":tj6fwgJq5\\\",\\\"name\\\":\\\"services\\\"},\\\"WdtDyT5MP\\\":{\\\"pattern\\\":\\\":WdtDyT5MP\\\",\\\"name\\\":\\\"gallery-scroll\\\"},\\\"m04bTWYA6\\\":{\\\"pattern\\\":\\\":m04bTWYA6\\\",\\\"name\\\":\\\"gallery\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ePjBTtXEX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n9gLl4Eao\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7668\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image1", "image2", "image3", "image4", "image5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GF0qnEJdU", "bQspCtjNI", "vfTeak1wj", "Sf2AaiLP4", "ELxVQmXQU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "Framerbm8zYlgoi", "withCSS", "bm8zYlgoi_default", "addPropertyControls", "ControlType", "addFonts", "CGOSCAg0z_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "CGOSCAg0z_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "blogTitle", "category", "date", "height", "id", "image", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "qsOI8897U", "NAiLYYTPF", "w3lTipgDR", "It59MEIz2", "u5xr2U0f1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCGOSCAg0z", "withCSS", "CGOSCAg0z_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToString", "value", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "suffix", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "className", "layoutId", "RoUY3ecLs", "conep8VZj", "aUWyHBU5y", "LkY2g1GIq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framerjui6Drl4E", "withCSS", "jui6Drl4E_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Od9Eu_DN7_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "valuesByLocaleId", "Od9Eu_DN7_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "details", "height", "icon", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pbvgtsbrE", "noLQ9SosO", "yow4NxBke", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19tw3ub", "args", "onTap1tms7tc", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "RichText2", "css", "FramerOd9Eu_DN7", "withCSS", "Od9Eu_DN7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "OverlayFonts", "getFonts", "GMwt9Zavw_default", "OverlayShowOnlyOnceybpwpeWithMappedReactProps175h4du", "withMappedReactProps", "withCodeBoundaryForOverrides", "showOnlyOnce", "GMwt9Zavw_exports", "NavigationBarFonts", "LDekglqvl_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "bfFy6UW0C_default", "MotionSectionWithFX", "withFX", "motion", "MotionDivWithFX", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "TextButtonFonts", "yhpX02Wu6_default", "StatsFonts", "jui6Drl4E_default", "ServicesFonts", "PV1KI2FLg_default", "AccordionFonts", "Od9Eu_DN7_default", "BlogCardFonts", "CGOSCAg0z_default", "ImagesGalleryHomepageFonts", "bm8zYlgoi_default", "ContainerWithFX", "Container", "SmoothScrollFonts", "SmoothScroll", "FooterFonts", "XHbTl7SMK_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "eu1SUO8AeXRHkrFveX", "zD3ZKyyO9XRHkrFveX", "mmsKK_xBbXRHkrFveX", "MnZrUXvuIXRHkrFveX", "S9w7PJblNXRHkrFveX", "idXRHkrFveX", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "elementId1", "ref2", "activeLocaleCode", "useLocaleCode", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "L8b3IANtH_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "enumToDisplayNameFunctions", "resolvedLinks4", "css", "FramerueiKkVaj3", "withCSS", "ueiKkVaj3_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
