{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/yT9VGAwZQpoodTRHbXJv/hTWRjPxiL8kbqY3qU4cI/mYZTePAKV.js", "ssg:https://framerusercontent.com/modules/LJlIb5YBxUG6QmlDBqhy/6s7pa1kmXGGp3sO9FHQa/c92NtX7oT.js", "ssg:https://framerusercontent.com/modules/Dgkj8xvRy1Ay36nplySn/dqta3vFQhNIDmQAmZYrV/jEAjk86ZL.js", "ssg:https://framerusercontent.com/modules/VweHLITIWfZmXJgKkmha/ROEsZUiRZvYY75tFboA2/qpyjRIDyT.js", "ssg:https://framerusercontent.com/modules/SJBwzfUsoB354kLqjb73/5iCiuc85qZpcpLUN1Mxp/Cp98bzNKz.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 (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"AeV_DXVOm\",\"UxsLYSd7W\",\"OkrNeMgZC\"];const serializationHash=\"framer-ryq1p\";const variantClassNames={AeV_DXVOm:\"framer-v-4marpo\",OkrNeMgZC:\"framer-v-602htk\",UxsLYSd7W:\"framer-v-sa749m\"};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={delay:0,duration:.7,ease:[.85,-.03,.21,1.04],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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(React.Fragment);const humanReadableVariantMap={\"1\":\"AeV_DXVOm\",\"2\":\"UxsLYSd7W\",\"3\":\"OkrNeMgZC\"};const getProps=({height,id,image1,image2,image3,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,qE10h59r0:(_ref=image2!==null&&image2!==void 0?image2:props.qE10h59r0)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/9ykRqHQU9r3YS37MurqhGPBnss4.png\"},SNzrxfc6w:(_ref1=image3!==null&&image3!==void 0?image3:props.SNzrxfc6w)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/vpDHzxnROwcChvBz2HkX4iBM.png\"},variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"AeV_DXVOm\",YHHuy3mvV:(_ref3=image1!==null&&image1!==void 0?image1:props.YHHuy3mvV)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/VEdjWxRk4Rpyt6ebuhMIanKsHAQ.png\"}};};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,YHHuy3mvV,qE10h59r0,SNzrxfc6w,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AeV_DXVOm\",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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4marpo\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"AeV_DXVOm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({OkrNeMgZC:{\"data-framer-name\":\"3\"},UxsLYSd7W:{\"data-framer-name\":\"2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-181bk1\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"m0x3kM5ro\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1w0fn\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"BRB8rzOs6\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:616,intrinsicWidth:464,pixelHeight:1232,pixelWidth:928,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(YHHuy3mvV)},className:\"framer-a6098h\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"S_Fqio1hK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:0,z:0},variants:{OkrNeMgZC:{rotateY:-60,z:-220},UxsLYSd7W:{rotateY:60,z:-220}},...addPropertyOverrides({OkrNeMgZC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:616,intrinsicWidth:464,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(YHHuy3mvV)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-120n7b0\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"O5iMRSB0r\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:616,intrinsicWidth:464,pixelHeight:1232,pixelWidth:928,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(qE10h59r0)},className:\"framer-1x6az2y\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"aB4ExsV6_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:-60,z:-220},variants:{OkrNeMgZC:{rotateY:60},UxsLYSd7W:{rotateY:0,z:1}}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mk69fn\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"SnR0WoonP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:616,intrinsicWidth:464,pixelHeight:1232,pixelWidth:928,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(SNzrxfc6w)},className:\"framer-621gbc\",\"data-border\":true,\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"lr8zMMS6w\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotateY:60,z:-220},variants:{OkrNeMgZC:{rotateY:0,z:1},UxsLYSd7W:{rotateY:-60}},...addPropertyOverrides({UxsLYSd7W:{background:{alt:\"\",intrinsicHeight:616,intrinsicWidth:464,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.45)`,...toResponsiveImage(SNzrxfc6w),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ryq1p.framer-93o47j, .framer-ryq1p .framer-93o47j { display: block; }\",\".framer-ryq1p.framer-4marpo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-ryq1p .framer-181bk1 { 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: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 100%; }\",\".framer-ryq1p .framer-a1w0fn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 50%; transform-style: preserve-3d; width: 100%; z-index: 6; }\",\".framer-ryq1p .framer-a6098h, .framer-ryq1p .framer-1x6az2y, .framer-ryq1p .framer-621gbc { aspect-ratio: 0.7535211267605634 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 597px); overflow: visible; position: relative; width: 45%; }\",\".framer-ryq1p .framer-120n7b0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 5; }\",\".framer-ryq1p .framer-1mk69fn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; transform-style: preserve-3d; width: 100%; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ryq1p.framer-4marpo, .framer-ryq1p .framer-181bk1, .framer-ryq1p .framer-a1w0fn, .framer-ryq1p .framer-120n7b0, .framer-ryq1p .framer-1mk69fn { gap: 0px; } .framer-ryq1p.framer-4marpo > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ryq1p.framer-4marpo > :first-child, .framer-ryq1p .framer-181bk1 > :first-child, .framer-ryq1p .framer-a1w0fn > :first-child, .framer-ryq1p .framer-120n7b0 > :first-child, .framer-ryq1p .framer-1mk69fn > :first-child { margin-top: 0px; } .framer-ryq1p.framer-4marpo > :last-child, .framer-ryq1p .framer-181bk1 > :last-child, .framer-ryq1p .framer-a1w0fn > :last-child, .framer-ryq1p .framer-120n7b0 > :last-child, .framer-ryq1p .framer-1mk69fn > :last-child { margin-bottom: 0px; } .framer-ryq1p .framer-181bk1 > *, .framer-ryq1p .framer-a1w0fn > *, .framer-ryq1p .framer-120n7b0 > *, .framer-ryq1p .framer-1mk69fn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ryq1p.framer-v-sa749m .framer-a1w0fn, .framer-ryq1p.framer-v-602htk .framer-120n7b0 { align-content: flex-start; align-items: flex-start; }\",\".framer-ryq1p.framer-v-sa749m .framer-120n7b0, .framer-ryq1p.framer-v-602htk .framer-1mk69fn { align-content: center; align-items: center; }\",\".framer-ryq1p.framer-v-sa749m .framer-1mk69fn, .framer-ryq1p.framer-v-602htk .framer-a1w0fn { align-content: flex-end; align-items: flex-end; }\",'.framer-ryq1p[data-border=\"true\"]::after, .framer-ryq1p [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 597\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UxsLYSd7W\":{\"layout\":[\"fixed\",\"auto\"]},\"OkrNeMgZC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YHHuy3mvV\":\"image1\",\"qE10h59r0\":\"image2\",\"SNzrxfc6w\":\"image3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermYZTePAKV=withCSS(Component,css,\"framer-ryq1p\");export default FramermYZTePAKV;FramermYZTePAKV.displayName=\"Carousel\";FramermYZTePAKV.defaultProps={height:597,width:1e3};addPropertyControls(FramermYZTePAKV,{variant:{options:[\"AeV_DXVOm\",\"UxsLYSd7W\",\"OkrNeMgZC\"],optionTitles:[\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},YHHuy3mvV:{__defaultAssetReference:\"data:framer/asset-reference,VEdjWxRk4Rpyt6ebuhMIanKsHAQ.png?originalFilename=133ef0038cdc04a45bddb109a50fb76f+11.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},qE10h59r0:{__defaultAssetReference:\"data:framer/asset-reference,9ykRqHQU9r3YS37MurqhGPBnss4.png?originalFilename=133ef0038cdc04a45bddb109a50fb76f+10.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},SNzrxfc6w:{__defaultAssetReference:\"data:framer/asset-reference,vpDHzxnROwcChvBz2HkX4iBM.png?originalFilename=133ef0038cdc04a45bddb109a50fb76f+7.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage}});addFonts(FramermYZTePAKV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermYZTePAKV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YHHuy3mvV\\\":\\\"image1\\\",\\\"qE10h59r0\\\":\\\"image2\\\",\\\"SNzrxfc6w\\\":\\\"image3\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UxsLYSd7W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OkrNeMgZC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"597\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mYZTePAKV.map", "// Generated by Framer (8ea6382)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/yT9VGAwZQpoodTRHbXJv/hTWRjPxiL8kbqY3qU4cI/mYZTePAKV.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"O80INt8v4\",\"Kz8ePVbGD\",\"r2FG0lLKs\"];const serializationHash=\"framer-IvvMo\";const variantClassNames={Kz8ePVbGD:\"framer-v-1ovlcd7\",O80INt8v4:\"framer-v-sft6bw\",r2FG0lLKs:\"framer-v-m6bzc1\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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\":\"O80INt8v4\",\"Variant 2\":\"Kz8ePVbGD\",\"Variant 3\":\"r2FG0lLKs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"O80INt8v4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O80INt8v4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1c7hhxa=activeVariantCallback(async(...args)=>{setVariant(\"r2FG0lLKs\");});const onTap1fpay3y=activeVariantCallback(async(...args)=>{setVariant(\"O80INt8v4\");});const onTapgaeoy3=activeVariantCallback(async(...args)=>{setVariant(\"Kz8ePVbGD\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-sft6bw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O80INt8v4\",ref:refBinding,style:{...style},...addPropertyOverrides({Kz8ePVbGD:{\"data-framer-name\":\"Variant 2\"},r2FG0lLKs:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-55zy0q\",layoutDependency:layoutDependency,layoutId:\"MzwCLKqOl\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qk4ry8\",layoutDependency:layoutDependency,layoutId:\"KwcjjNPxp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4qzfs\",layoutDependency:layoutDependency,layoutId:\"MCDXa22Sq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ierx3\",\"data-framer-name\":\"Mission_1\",layoutDependency:layoutDependency,layoutId:\"rDhJqHkkv\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14h6i6y\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WEHKrK2oQ\",onTap:onTap1c7hhxa,...addPropertyOverrides({Kz8ePVbGD:{onTap:onTap1fpay3y},r2FG0lLKs:{onTap:onTapgaeoy3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejojb5\",\"data-framer-name\":\"Group_6826\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"z2nakBmOP\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" transform=\"rotate(-180 16 16)\" fill=\"#324736\"/><path d=\"m18.58 10.322-6.193 6.194 6.194 6.194\" stroke=\"#FBFF1E\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10cfkps\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O4QzBCtMo\",onTap:onTapgaeoy3,...addPropertyOverrides({Kz8ePVbGD:{onTap:onTap1c7hhxa},r2FG0lLKs:{onTap:onTap1fpay3y}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-larkz7\",\"data-framer-name\":\"Group_6830\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"BYlXJhoeC\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#324736\"/><path d=\"m13.42 21.677 6.193-6.193-6.194-6.194\" stroke=\"#FBFF1E\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rcjbvv\",layoutDependency:layoutDependency,layoutId:\"zMj7NmIeM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"53px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"Our Mission \"})}),className:\"framer-1j3y5r\",\"data-framer-name\":\"Our Mission\",fonts:[\"GF;Antonio-700\"],layoutDependency:layoutDependency,layoutId:\"quIH26YZS\",style:{\"--extracted-r6o4lv\":\"rgb(50, 71, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"WildEast is a movement of people living and working in the villages and towns in the east of England. We believe that by taking positive action together we can reverse the depletion of nature and biodiversity, as well as restore our own connection to nature \u2013 our wild hearts which have been starved of oxygen.\"})}),className:\"framer-p6r6o1\",\"data-framer-name\":\"WildEast is a movement of people living and working in the villages and towns in the East of England. We believe that by taking positive action together we can reverse the depletion of nature and biodiversity, as well as restore our own connection to nature \u2013 our wild hearts which have been starved of oxygen.\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"ILTLMDtD9\",style:{\"--extracted-r6o4lv\":\"rgb(50, 71, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Kz8ePVbGD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"We've got two clear aims. To gather the support of a million people across the region with one clear voice for nature, and to revert 20% of land in the east to natural habitat by 2030. By working together with one sense of purpose but a million separate actions, this is how we can all make the change happen.\"})})},r2FG0lLKs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"Want to help? Show your support by pinning your name to our map. Form a community group; sign our petitions; share the WildEast message. And, if you have some outside space share what you are doing towards the 20% so we can show the change you are helping create. Backyard, schoolyard, churchyard, farm or industrial estate, any scale, any location. It all makes the difference.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:\"https://mapofdreams.wildeast.co.uk/\",motionChild:true,nodeId:\"mAgeSXH9G\",openInNewTab:true,scopeId:\"c92NtX7oT\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-21usie framer-oxkp0g\",\"data-framer-name\":\"Group 6864\",layoutDependency:layoutDependency,layoutId:\"mAgeSXH9G\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8p3mvv\",\"data-framer-name\":\"Rectangle 859\",layoutDependency:layoutDependency,layoutId:\"zO5xUlGov\",style:{backgroundColor:\"rgb(50, 71, 54)\",borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 255, 30))\"},children:\"Pin your name to the map\"})}),className:\"framer-7iv8pd\",\"data-framer-name\":\"Pin your name to the map\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"vB6B2Yhvf\",style:{\"--extracted-r6o4lv\":\"rgb(250, 255, 30)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zhmpgp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:129,intrinsicWidth:185,layoutDependency:layoutDependency,layoutId:\"zT1OcvBJP\",svg:'<svg width=\"185\" height=\"129\" viewBox=\"0 0 185 129\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M178.196 79.7399C178.318 79.4442 178.677 79.1271 178.117 78.8848L178.335 78.488C178.778 77.9676 178.367 77.6249 178.089 77.2502C177.682 76.692 177.295 76.11 176.891 75.5426C176.793 75.2313 176.289 75.088 176.508 74.6374C177.178 74.038 177.056 73.6521 176.187 73.4767C176.009 73.3595 175.831 73.2646 175.638 73.4443C175.591 73.349 175.544 73.2538 175.496 73.1585C175.599 72.8329 176.21 72.6097 175.69 72.1672C175.58 71.6998 175.237 71.98 174.992 71.9437C174.928 71.9169 174.884 71.8663 174.84 71.8156C175.076 71.6104 175.154 71.3179 175.032 71.062C174.795 70.5634 174.598 71.5101 174.332 71.1077L174.283 71.1202C174.257 70.6871 174.105 70.3214 173.733 70.07C173.578 69.032 172.934 68.3652 172.086 67.852C172.196 67.5841 172.863 67.2539 172.084 67.0721C171.582 66.9511 171.669 66.4785 171.35 66.2817C170.708 65.7133 170.691 64.5265 169.527 64.4887C169.588 64.2109 169.825 63.9518 169.507 63.6472C169.237 63.3841 169.037 63.4746 168.812 63.6521C168.74 63.6439 168.658 63.6318 168.594 63.605C168.261 63.4674 169.279 62.4709 168.119 62.8678C167.6 62.6853 168.196 61.8714 167.504 61.7909C166.621 61.5986 166.707 60.4222 165.861 60.1914C165.242 59.9353 165.474 58.8516 164.577 58.8486C163.96 58.3771 163.853 57.3805 162.808 57.3163C162.439 57.2934 162.716 56.7804 162.708 56.485L160.712 55.6595C160.592 55.7936 160.462 55.924 160.342 56.0581C159.808 56.4326 159.18 56.4866 158.569 56.602C158.087 56.6948 158.241 56.899 158.519 57.0898C158.483 57.1507 158.451 57.2023 158.409 57.2501C158.063 57.1718 157.697 56.8258 157.362 57.2713C157.967 57.4567 157.43 58.2304 157.979 58.4466C157.966 59.3174 158.288 60.0027 158.925 60.6342C159.74 61.4366 160.569 62.2337 161.188 63.2475C161.804 64.2705 162.338 65.4652 163.67 65.8541C163.735 65.8808 163.77 66.0576 163.8 66.1676C164.078 67.3538 165.11 68.0511 165.762 68.9594C167.341 71.1599 168.924 73.3511 170.31 75.6775C170.196 75.717 170.092 75.7604 169.982 75.7907C169.47 75.9035 168.952 76.0572 168.424 75.8932C168.204 75.5099 168.01 75.1158 167.515 75.0302C167.154 74.805 166.754 74.6722 166.535 74.2351C166.341 73.8409 166.1 74.0554 165.941 74.3358C164.678 73.413 163.038 73.3734 161.734 72.4984C161.253 72.1696 160.559 72.2507 160.119 71.6141C159.975 71.4137 159.091 71.903 158.644 71.3611C158.219 71.3691 158.422 70.6417 157.988 70.7759C157.861 70.8208 157.841 71.2347 157.774 71.4772C157.503 70.5102 156.391 70.5808 155.853 69.9468C155.538 69.8169 155.246 69.6092 154.882 69.7294C154.55 69.6679 154.592 68.9925 154.085 69.2484L153.853 69.1305C153.656 68.508 153.156 69.297 152.906 68.9338C152.185 68.0618 151.396 67.5085 150.284 68.3145C150.129 68.1641 149.962 68.0192 149.989 67.7706C149.871 66.9317 149.658 66.8438 148.658 67.2203C148.331 66.5981 147.925 66.246 147.268 66.8401L146.933 66.474C146.643 66.3109 146.821 65.0966 146.02 66.0641L146.033 66.1125C145.338 65.9336 144.746 65.429 143.971 65.4979C144.066 64.3792 143.372 64.5903 142.706 64.7366C142.43 64.5143 142.142 64.3735 141.776 64.5252C141.826 64.3512 141.983 64.1562 141.78 64.0183C141.714 63.9692 141.513 64.1136 141.374 64.164C141.226 64.1028 141.078 64.0417 140.93 63.9805C140.93 62.8551 140.206 63.6378 139.81 63.5496C139.588 63.4579 139.366 63.3661 139.139 63.2613C138.869 63.1282 138.587 63.0005 138.317 62.8673C138.117 62.0702 137.36 62.6445 136.968 62.3093C136.771 61.6868 136.252 61.8943 135.833 61.8615C135.486 61.7071 135.149 61.5787 134.889 61.2655C134.64 60.9785 134.348 61.0308 134.196 61.4227C133.839 61.3721 133.56 61.2352 133.373 60.8764C132.968 60.1029 132.602 60.2546 132.322 60.983C131.691 60.9385 132.352 60.0214 131.777 60.076C131.292 60.1242 130.891 59.8391 130.431 59.9303C130.051 59.5136 129.689 59.3422 129.363 59.9754C129.215 59.9142 129.067 59.8531 128.919 59.7919C129.022 59.5963 129.076 59.413 128.909 59.2143C128.704 58.794 128.572 58.1982 127.964 58.856C127.713 58.8605 127.472 58.8688 127.221 58.8733C126.924 58.4148 126.474 58.2722 125.96 58.2866C124.835 57.1072 123.245 57.2614 121.852 56.8366C121.717 56.4561 121.358 56.3832 121.036 56.2718C120.888 56.2106 120.742 56.1718 120.59 56.1199C120.387 55.6681 120.074 56.112 119.83 56.0219C119.586 55.9317 119.338 55.8508 119.094 55.7607C118.843 55.7652 118.605 55.7643 118.355 55.7688C118.354 55.6926 118.366 55.5572 118.348 55.5496C117.443 55.305 116.631 54.4933 115.617 54.9829C115.076 55.2458 115.259 54.6184 114.996 54.5745C114.914 54.5624 114.824 54.5465 114.742 54.5344C114.052 53.9785 113.117 54.3817 112.407 53.9259C111.732 53.203 110.865 53.4176 110.043 53.4675C110.056 53.0182 109.759 53.0036 109.43 53.0406C108.803 52.6192 107.97 52.8806 107.404 52.549C106.474 52.0237 105.552 51.74 104.516 51.7335C104.41 51.6245 104.303 51.5156 104.206 51.4104C104.105 51.3684 104.011 51.3079 103.913 51.2566C103.125 51.4609 102.439 50.8958 101.665 50.9871C101.473 50.9291 101.295 50.888 101.148 51.0869C100.992 50.9142 100.86 50.6323 100.678 50.6004C99.0494 50.2732 97.4148 49.9867 95.784 49.6909C95.5472 49.4523 95.2782 49.2653 94.9131 49.3632C94.7366 49.2144 94.5495 49.1695 94.3584 49.3177C93.8123 49.6438 93.3314 49.315 92.8318 49.1625C92.6346 49.0376 92.5335 48.6279 92.1843 48.9488C91.3631 48.5009 90.457 48.4941 89.5667 48.3964C89.3319 48.3101 89.1063 48.2276 88.8714 48.1413C88.6245 48.1366 88.3906 48.1264 88.1437 48.1217C87.4666 47.7442 86.7111 47.7131 85.9578 47.6505C85.0606 47.5174 84.1633 47.3844 83.2568 47.2476C82.1782 46.8988 81.0744 46.951 79.9637 46.9677C79.322 46.8971 78.6765 46.8357 78.0347 46.7651C77.6552 46.6622 77.3349 46.2592 76.8733 46.5119C76.1602 46.5092 75.4258 46.5842 74.727 46.4683C72.9994 46.1975 71.2058 46.0076 69.5298 46.0827C66.0979 46.2432 62.6551 46.0638 59.2392 46.4473C58.6535 45.7181 58.1843 46.617 57.6464 46.5569C57.3615 46.4607 57.0674 46.3607 56.7826 46.2645C56.4888 46.2945 56.195 46.3245 55.9013 46.3545C55.7164 46.2781 55.5348 46.2463 55.3606 46.3798C54.8507 46.1473 54.3878 46.1939 53.9966 46.6164C53.7363 46.801 53.4603 46.8925 53.1369 46.7587C52.54 45.8733 52.1648 46.5189 51.7567 46.9562C50.9482 46.3729 50.213 47.3133 49.4154 47.07C49.0971 46.8193 48.8228 46.9331 48.5418 47.1415C48.0896 47.2142 47.6856 46.8306 47.1863 47.122C45.9973 47.7989 44.5778 47.3849 43.3336 47.8551C42.7335 47.239 42.6091 47.8801 42.3599 48.2207C41.5784 48.2005 40.8201 48.5686 40.0263 48.3161C39.8339 48.2581 39.643 48.2225 39.5105 48.4382C38.2609 48.5815 37.1059 49.0453 35.9564 49.5221C35.6521 49.3422 35.35 49.1306 35.0958 49.5882C34.7265 49.5653 34.4472 50.1099 34.0278 49.7633C33.3566 50.4705 32.2811 49.8525 31.5974 50.5112C31.2655 50.9475 30.3952 50.2521 30.2698 51.1309C29.2549 50.7328 28.5375 51.4208 27.74 51.8052C27.5538 50.8949 27.213 51.7712 26.9553 51.7403C25.9896 52.5313 24.6985 52.4085 23.6306 52.8975C23.1526 52.7972 22.6779 52.7415 22.2889 53.1325C21.9056 53.3528 21.6017 53.6166 21.0779 53.6272C20.2886 53.6255 19.5603 53.9735 19.0235 54.6172C18.557 54.4892 17.8127 54.3004 17.6534 54.5808C17.1718 55.4313 16.4733 55.1316 15.8227 55.1872C15.3667 54.9553 15.2903 55.4539 15.0268 55.5939C14.18 55.9145 13.3749 56.3174 12.6517 56.8624C12.4675 56.7321 12.6373 56.3478 12.3419 56.3555C12.2658 56.3565 12.189 56.7251 12.1272 56.9268C11.1998 57.3116 10.2669 57.6832 9.33946 58.068C9.37129 57.8864 9.40756 57.6416 9.12304 57.6755C8.84775 57.7131 8.87775 58.0069 8.82139 58.2216C8.66497 58.4167 8.39956 58.4043 8.23676 58.5101C7.52789 58.942 6.54614 58.5684 5.9619 59.3007C5.29656 59.0255 4.66853 58.8956 4.29301 59.725C3.17982 60.271 2.07204 60.8301 0.958853 61.3761C0.882414 61.5609 0.523958 61.5641 0.633931 61.8477C0.655606 61.8999 0.830212 61.8964 0.930263 61.9162C0.477567 62.3566 0.567178 62.794 0.954375 63.1923C1.42793 63.6695 1.90309 64.169 2.65536 64.1555C3.57083 64.48 5.1479 63.6497 5.66198 62.5638C6.12412 63.3826 6.64692 62.982 7.16909 62.6352C7.39053 62.5969 7.64671 62.6055 7.77763 62.3675C7.99713 62.1769 8.13472 61.8442 8.5072 61.9117C8.96296 62.6413 9.11898 62.0024 9.35982 61.7341C9.98461 61.5055 10.6225 61.2716 11.2472 61.043C11.7404 60.4786 12.8254 61.2304 13.1159 60.2143C13.8206 59.9755 14.5161 59.7329 15.2209 59.4941C16.1437 59.6702 16.5609 58.6091 17.404 58.6115C17.7665 58.4152 18.1145 58.2019 18.5532 58.3185C18.8018 58.3455 18.9789 58.1266 19.1834 58.103C19.9331 57.991 20.5311 57.1995 21.3953 57.6218C21.6671 57.7234 21.7473 57.5294 21.8183 57.3315C22.3408 57.1147 22.8688 56.911 23.3913 56.6943C23.6003 56.6076 23.8001 56.5171 24.0091 56.4304C24.7198 55.837 25.7137 56.129 26.4531 55.6232C27.5103 55.422 28.628 55.4406 29.5857 54.8519C29.6173 54.8541 29.6472 54.834 29.6733 54.8232C29.6434 54.8433 29.6173 54.8541 29.5857 54.8519C30.0427 55.1599 30.2902 54.797 30.5533 54.5271C31.7167 54.9325 31.309 53.7466 31.7273 53.3894C31.8882 53.4451 32.0529 53.4916 32.2139 53.5473C32.4082 53.7576 32.183 54.1189 32.5667 54.3426C32.711 53.9153 33.1593 53.8518 33.4779 53.6048C34.1559 53.4307 34.8339 53.2566 35.5026 53.0787C36.5343 52.8345 37.5752 52.5941 38.6031 52.3591C38.7528 52.2587 38.9156 52.1529 39.0653 52.0525C39.4904 51.9144 39.9164 51.8525 40.3491 52.0099C40.9953 52.3313 41.2784 51.4636 41.8548 51.5613C42.7515 51.7482 43.5322 50.2531 44.4921 51.3859C44.5411 51.3197 44.5832 51.218 44.6409 51.2094C45.5081 51.0487 46.5445 50.5575 47.2115 50.855C48.0039 51.2152 48.0361 50.8497 48.2804 50.4422C48.7064 50.6941 49.4247 49.4546 49.6757 50.7055C49.6773 50.7278 49.9019 50.7341 49.9934 50.6962C51.1474 50.1562 52.3358 49.847 53.6272 50.0997C54.1242 49.84 54.6102 50.3656 55.1126 50.1189C55.257 50.0055 55.3882 49.8974 55.5325 49.784C56.49 49.693 57.4549 50.0812 58.397 49.7134C58.8337 50.803 59.4204 49.8553 59.9388 49.8317C60.355 49.8198 60.5399 50.5239 61.0429 50.2234C62.2641 49.4948 63.6298 49.5943 64.9642 49.5077C65.3239 49.7107 65.6898 50.5005 66.0449 49.5111C66.3005 49.5735 66.5452 49.6098 66.8275 49.6075C67.5444 49.601 68.3183 49.3259 68.9818 49.7626C69.1844 49.9005 69.2973 50.0987 69.5499 49.9327C69.8962 49.6971 69.5963 49.4541 69.5565 49.2103C70.1466 49.2488 70.6985 49.3797 70.9793 49.9828C71.1175 49.9101 71.2651 49.8413 71.4033 49.7686C72.2349 49.7987 73.0628 49.8381 73.8944 49.8682C74.4641 50.0606 74.956 49.9177 75.3842 49.5105C75.7232 49.4234 75.9222 50.1983 76.3407 49.6572C76.6932 50.0086 77.0291 50.5046 77.5583 49.8794C77.6969 49.9367 77.8355 49.9941 77.9741 50.0514C78.2772 50.3391 80.4292 50.5257 81.0371 50.3118C81.111 50.3424 81.1779 50.3376 81.2525 50.3143C81.9045 50.7788 82.7137 50.4967 83.409 50.7518C83.8417 50.5953 84.2101 50.8558 84.6179 50.9163C84.9729 51.0523 85.3247 51.4575 85.671 50.9082C85.9809 50.6035 85.644 51.7844 86.1145 51.0916C86.2739 51.1251 86.4239 51.1547 86.5832 51.1881C86.7971 51.4821 87.0743 51.283 87.3266 51.3008C87.8791 51.3778 88.3463 51.7658 88.9338 51.7058L88.9415 51.6873C89.2085 51.722 89.4663 51.7528 89.711 51.7891C90.0163 52.3591 90.513 51.9693 90.9116 52.026C91.9045 52.5557 92.9376 52.8315 94.0623 52.5716C94.7679 53.5344 95.925 53.039 96.8176 53.419C97.654 53.8299 98.5886 53.7944 99.4569 54.0236C99.7076 54.0191 99.9491 54.0108 100.2 54.0063C100.688 54.6304 101.291 54.8473 102.056 54.5684C102.307 54.5639 102.536 54.4533 102.812 54.6756C103.688 55.3841 104.744 55.4744 105.821 55.4331C105.882 55.653 106.08 55.6702 106.254 55.7205C106.629 56.1241 107.022 55.8538 107.411 55.7767C107.721 56.4136 108.238 56.4976 108.855 56.3414C109.175 56.3767 109.436 56.766 109.816 56.5011C109.977 56.4269 110.109 56.4488 110.234 56.5116C110.095 56.5081 109.96 56.4954 109.816 56.5011C110.624 57.1383 111.531 57.459 112.537 57.4317C112.615 57.4531 112.697 57.4651 112.784 57.4365C113.228 57.4361 113.53 58.0153 114.045 57.7632C114.515 57.8058 114.775 58.3789 115.304 58.2514C115.957 58.3482 116.485 58.9022 117.192 58.7618C118.232 59.5707 119.583 59.7071 120.741 60.0995C122.243 60.6017 123.821 61.103 125.38 61.5204C126.431 61.8038 127.443 62.6012 128.523 62.6584C129.613 62.7193 130.107 63.8542 131.375 63.7186C131.953 63.6548 133.14 64.0809 133.916 64.6396C133.932 65.3065 134.326 64.9286 134.602 64.8909L135.185 65.2079C135.479 65.6217 135.735 66.1279 136.37 65.6655C136.776 66.1475 137.405 66.0936 137.926 66.2984C139.915 67.0886 141.83 68.032 143.842 68.7667C145.73 69.461 147.568 70.2755 149.429 71.0344C149.796 71.4027 150.33 71.3421 150.764 71.5217C151.469 71.9106 152.067 72.5583 152.98 72.4705C153.497 72.6846 154.006 72.8948 154.523 73.1088C154.671 73.17 154.819 73.2311 154.971 73.283C155.302 73.5283 155.552 73.9453 156.068 73.7694C157.482 74.3541 159.026 74.7547 160.337 75.4051C162.132 76.2989 164.002 77.0617 165.818 77.8777C166.851 78.3373 167.501 79.1472 168.391 79.6887C168.384 80.151 169.542 79.9157 168.992 80.6948C168.796 80.6461 168.608 80.7089 168.425 80.7309C167.66 80.8037 167.081 81.679 166.37 81.4609C165.582 81.2214 165.095 81.615 164.487 81.8289C164.334 81.8847 164.141 82.0106 164.043 81.9593C162.904 81.3907 161.977 82.5332 160.775 82.274C159.75 82.0559 158.586 82.5697 157.477 82.6088C155.007 82.6914 152.534 82.7071 150.208 83.6717C149.529 83.9534 148.746 84.0947 148.355 84.8311C147.648 84.6038 147.62 85.09 147.596 85.567C147.272 86.2986 147.833 86.7471 148.054 87.3365C148.456 88.4332 149.287 88.2795 150.072 88.3982C150.306 88.3545 150.573 88.3892 150.763 88.2187C150.744 88.211 150.713 88.2088 150.68 88.1843C150.746 88.1795 150.808 88.1617 150.859 88.1177C151.101 88.0016 151.357 87.8802 151.6 87.7642C151.951 87.7794 152.379 88.3137 152.625 87.6146C152.814 87.3679 153.228 87.5176 153.365 87.185C153.623 87.3997 153.882 87.1928 154.136 87.1791C155.122 87.0457 156.144 87.4792 157.1 86.9983C157.342 87.1199 157.601 87.3569 157.837 87.3356C159.354 87.227 160.781 86.3671 162.381 86.7906C162.527 86.8294 162.818 86.701 162.894 86.57C163.219 86.0445 163.665 86.3803 164.059 86.37C164.594 86.3317 165.222 86.4616 165.392 85.7096C165.961 86.1397 166.464 85.6553 166.998 85.5946C167.607 85.3269 168.322 85.7958 168.907 85.3235C170.089 84.925 171.362 84.8025 172.498 84.2549C173.1 84.3418 173.78 84.8177 174.201 83.9312C174.967 83.5446 175.767 83.2048 176.493 82.7582C177.64 82.0529 177.873 80.8077 178.197 79.6322L178.196 79.7399ZM21.6724 57.1088L21.6647 57.1273C21.6647 57.1273 21.6239 57.1212 21.5924 57.119C21.6185 57.1081 21.6408 57.1065 21.6762 57.0995L21.6724 57.1088ZM65.5007 49.3617C65.5007 49.3617 65.5561 49.3847 65.5893 49.4092C65.5893 49.4092 65.5893 49.4092 65.5801 49.4054C65.5507 49.3716 65.5377 49.377 65.5045 49.3525L65.5007 49.3617ZM106.474 55.086C106.474 55.086 106.477 55.0768 106.481 55.0676C106.511 55.0475 106.532 55.0236 106.571 55.0073C106.537 55.0366 106.517 55.0605 106.483 55.0899L106.474 55.086ZM170.801 77.0277L170.809 77.0093C170.809 77.0093 170.798 76.9831 170.793 76.9701C170.793 76.9701 170.793 76.9701 170.802 76.9739C170.811 76.9777 170.83 76.9854 170.839 76.9892C170.83 76.9854 170.82 76.9815 170.803 76.9962L170.796 77.0147L170.801 77.0277ZM176.239 74.0066C176.239 74.0066 176.239 74.0066 176.242 73.9973L176.239 74.0066Z\" fill=\"#FF00FF\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) * 0.55)`,y:(componentViewport?.y||0)+80+0+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pv1q8-container\",layoutDependency:layoutDependency,layoutId:\"zye3mg2ul-container\",nodeId:\"zye3mg2ul\",rendersWithMotion:true,scopeId:\"c92NtX7oT\",children:/*#__PURE__*/_jsx(Carousel,{height:\"100%\",id:\"zye3mg2ul\",layoutId:\"zye3mg2ul\",qE10h59r0:addImageAlt({src:\"https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png\",srcSet:\"https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png 1000w\"},\"\"),SNzrxfc6w:addImageAlt({src:\"https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png\",srcSet:\"https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png?scale-down-to=1024 819w,https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png 979w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"AeV_DXVOm\",width:\"100%\",YHHuy3mvV:addImageAlt({src:\"https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png\",srcSet:\"https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png?scale-down-to=1024 819w,https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png 1075w\"},\"\"),...addPropertyOverrides({Kz8ePVbGD:{variant:\"UxsLYSd7W\"},r2FG0lLKs:{variant:\"OkrNeMgZC\"}},baseVariant,gestureVariant)})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IvvMo.framer-oxkp0g, .framer-IvvMo .framer-oxkp0g { display: block; }\",\".framer-IvvMo.framer-sft6bw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-IvvMo .framer-55zy0q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IvvMo .framer-qk4ry8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IvvMo .framer-4qzfs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 300px; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-IvvMo .framer-7ierx3 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: center; min-height: 566px; overflow: visible; padding: 0px 95px 0px 95px; position: relative; width: 1px; }\",\".framer-IvvMo .framer-14h6i6y { cursor: pointer; flex: none; height: 32px; left: 20px; overflow: visible; position: absolute; top: calc(50.736497545008206% - 32px / 2); width: 32px; }\",\".framer-IvvMo .framer-1ejojb5, .framer-IvvMo .framer-larkz7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-IvvMo .framer-10cfkps { cursor: pointer; flex: none; height: 32px; overflow: visible; position: absolute; right: 20px; top: calc(50.736497545008206% - 32px / 2); width: 32px; }\",\".framer-IvvMo .framer-1rcjbvv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-IvvMo .framer-1j3y5r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IvvMo .framer-p6r6o1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IvvMo .framer-21usie { flex: none; height: 42px; overflow: visible; position: relative; text-decoration: none; width: 252px; }\",\".framer-IvvMo .framer-8p3mvv { flex: none; height: 42px; left: 0px; position: absolute; top: 0px; width: 252px; }\",\".framer-IvvMo .framer-7iv8pd { flex: none; height: auto; left: 20px; position: absolute; top: 12px; white-space: pre; width: auto; }\",\".framer-IvvMo .framer-zhmpgp { aspect-ratio: 1.434108527131783 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); position: absolute; right: -80px; top: 25px; width: 165px; z-index: 5; }\",\".framer-IvvMo .framer-pv1q8-container { align-self: stretch; flex: none; height: auto; position: relative; width: 55%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IvvMo.framer-sft6bw, .framer-IvvMo .framer-55zy0q, .framer-IvvMo .framer-qk4ry8, .framer-IvvMo .framer-4qzfs, .framer-IvvMo .framer-7ierx3 { gap: 0px; } .framer-IvvMo.framer-sft6bw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IvvMo.framer-sft6bw > :first-child, .framer-IvvMo .framer-7ierx3 > :first-child { margin-top: 0px; } .framer-IvvMo.framer-sft6bw > :last-child, .framer-IvvMo .framer-7ierx3 > :last-child { margin-bottom: 0px; } .framer-IvvMo .framer-55zy0q > *, .framer-IvvMo .framer-4qzfs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IvvMo .framer-55zy0q > :first-child, .framer-IvvMo .framer-qk4ry8 > :first-child, .framer-IvvMo .framer-4qzfs > :first-child { margin-left: 0px; } .framer-IvvMo .framer-55zy0q > :last-child, .framer-IvvMo .framer-qk4ry8 > :last-child, .framer-IvvMo .framer-4qzfs > :last-child { margin-right: 0px; } .framer-IvvMo .framer-qk4ry8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IvvMo .framer-7ierx3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 726\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Kz8ePVbGD\":{\"layout\":[\"fixed\",\"auto\"]},\"r2FG0lLKs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerc92NtX7oT=withCSS(Component,css,\"framer-IvvMo\");export default Framerc92NtX7oT;Framerc92NtX7oT.displayName=\"(D) Our Mission\";Framerc92NtX7oT.defaultProps={height:726,width:1440};addPropertyControls(Framerc92NtX7oT,{variant:{options:[\"O80INt8v4\",\"Kz8ePVbGD\",\"r2FG0lLKs\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerc92NtX7oT,[{explicitInter:true,fonts:[{family:\"Antonio\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerc92NtX7oT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kz8ePVbGD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r2FG0lLKs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"726\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./c92NtX7oT.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={hVZPBOhnq:{hover:true},pIrQAakcT:{hover:true}};const cycleOrder=[\"hVZPBOhnq\",\"pIrQAakcT\"];const serializationHash=\"framer-9HdRx\";const variantClassNames={hVZPBOhnq:\"framer-v-nmoke0\",pIrQAakcT:\"framer-v-h3h8hd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hVZPBOhnq\",\"Variant 2\":\"pIrQAakcT\"};const getProps=({height,id,link,newTab,smoothScroll,tap,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,lQdzo7JzD:link!==null&&link!==void 0?link:props.lQdzo7JzD,NB30K0oUu:tap!==null&&tap!==void 0?tap:props.NB30K0oUu,QWESVHvfa:(_ref=smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.QWESVHvfa)!==null&&_ref!==void 0?_ref:true,RKbNC_BR6:(_ref1=title!==null&&title!==void 0?title:props.RKbNC_BR6)!==null&&_ref1!==void 0?_ref1:\"Press play\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"hVZPBOhnq\",wTpRe_7KS:(_ref3=newTab!==null&&newTab!==void 0?newTab:props.wTpRe_7KS)!==null&&_ref3!==void 0?_ref3:true};};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,RKbNC_BR6,NB30K0oUu,lQdzo7JzD,wTpRe_7KS,QWESVHvfa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hVZPBOhnq\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1t2f8a9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(NB30K0oUu){const res=await NB30K0oUu(...args);if(res===false)return false;}});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__*/_jsx(Link,{href:lQdzo7JzD,openInNewTab:wTpRe_7KS,smoothScroll:QWESVHvfa,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-nmoke0\",className,classNames)} framer-twzpaj`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hVZPBOhnq\",onTap:onTap1t2f8a9,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(250, 255, 30)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"hVZPBOhnq-hover\":{backgroundColor:\"rgb(226, 230, 9)\"},\"pIrQAakcT-hover\":{backgroundColor:\"rgb(33, 51, 36)\"},pIrQAakcT:{backgroundColor:\"rgb(50, 71, 54)\"}},...addPropertyOverrides({\"hVZPBOhnq-hover\":{\"data-framer-name\":undefined},\"pIrQAakcT-hover\":{\"data-framer-name\":undefined},pIrQAakcT:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"Press play\"})}),className:\"framer-ydb09s\",\"data-framer-name\":\"Press play\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"iRRczwrUq\",style:{\"--extracted-r6o4lv\":\"rgb(50, 71, 54)\",\"--framer-paragraph-spacing\":\"0px\"},text:RKbNC_BR6,variants:{pIrQAakcT:{\"--extracted-r6o4lv\":\"rgb(226, 231, 13)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pIrQAakcT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(226, 231, 13))\"},children:\"Press play\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9HdRx.framer-twzpaj, .framer-9HdRx .framer-twzpaj { display: block; }\",\".framer-9HdRx.framer-nmoke0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-9HdRx .framer-ydb09s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9HdRx.framer-nmoke0 { gap: 0px; } .framer-9HdRx.framer-nmoke0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9HdRx.framer-nmoke0 > :first-child { margin-top: 0px; } .framer-9HdRx.framer-nmoke0 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 143\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"pIrQAakcT\":{\"layout\":[\"auto\",\"fixed\"]},\"niRl5Prt3\":{\"layout\":[\"auto\",\"fixed\"]},\"qEXes3GiD\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"RKbNC_BR6\":\"title\",\"NB30K0oUu\":\"tap\",\"lQdzo7JzD\":\"link\",\"wTpRe_7KS\":\"newTab\",\"QWESVHvfa\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjEAjk86ZL=withCSS(Component,css,\"framer-9HdRx\");export default FramerjEAjk86ZL;FramerjEAjk86ZL.displayName=\"GenericButton\";FramerjEAjk86ZL.defaultProps={height:42,width:143};addPropertyControls(FramerjEAjk86ZL,{variant:{options:[\"hVZPBOhnq\",\"pIrQAakcT\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},RKbNC_BR6:{defaultValue:\"Press play\",displayTextArea:false,title:\"Title\",type:ControlType.String},NB30K0oUu:{title:\"Tap\",type:ControlType.EventHandler},lQdzo7JzD:{title:\"Link\",type:ControlType.Link},wTpRe_7KS:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean},QWESVHvfa:{defaultValue:true,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramerjEAjk86ZL,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjEAjk86ZL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"143\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"pIrQAakcT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"niRl5Prt3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qEXes3GiD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"RKbNC_BR6\\\":\\\"title\\\",\\\"NB30K0oUu\\\":\\\"tap\\\",\\\"lQdzo7JzD\\\":\\\"link\\\",\\\"wTpRe_7KS\\\":\\\"newTab\\\",\\\"QWESVHvfa\\\":\\\"smoothScroll\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jEAjk86ZL.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/yT9VGAwZQpoodTRHbXJv/hTWRjPxiL8kbqY3qU4cI/mYZTePAKV.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"oju4ifxGm\",\"S5TX1r5zm\",\"PqW6dgA7H\"];const serializationHash=\"framer-CnCMb\";const variantClassNames={oju4ifxGm:\"framer-v-1yiqqpn\",PqW6dgA7H:\"framer-v-ddn9n6\",S5TX1r5zm:\"framer-v-1y3a2ge\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"oju4ifxGm\",\"Variant 2\":\"S5TX1r5zm\",\"Variant 3\":\"PqW6dgA7H\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"oju4ifxGm\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oju4ifxGm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1vtdna1=activeVariantCallback(async(...args)=>{setVariant(\"PqW6dgA7H\");});const onTap70qc5w=activeVariantCallback(async(...args)=>{setVariant(\"oju4ifxGm\");});const onTapqfetmy=activeVariantCallback(async(...args)=>{setVariant(\"S5TX1r5zm\");});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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yiqqpn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"oju4ifxGm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({PqW6dgA7H:{\"data-framer-name\":\"Variant 3\"},S5TX1r5zm:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-149af4v\",layoutDependency:layoutDependency,layoutId:\"mNR5AvdJM\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e8sn1v\",layoutDependency:layoutDependency,layoutId:\"p59l46T1q\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ss4ln\",layoutDependency:layoutDependency,layoutId:\"GmXIe4x2_\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-onqwob\",\"data-framer-name\":\"Mission_1\",layoutDependency:layoutDependency,layoutId:\"THjwHrS4M\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mg96b9\",layoutDependency:layoutDependency,layoutId:\"ViwAZpXQp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"Our Mission \"})}),className:\"framer-foc9cd\",\"data-framer-name\":\"Our Mission\",fonts:[\"GF;Antonio-700\"],layoutDependency:layoutDependency,layoutId:\"JCENNFRC6\",style:{\"--extracted-r6o4lv\":\"rgb(50, 71, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(max(max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 600px), 300px), 1px) - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-plfcdl-container\",layoutDependency:layoutDependency,layoutId:\"ClLHvLEqI-container\",children:/*#__PURE__*/_jsx(Carousel,{height:\"100%\",id:\"ClLHvLEqI\",layoutId:\"ClLHvLEqI\",qE10h59r0:addImageAlt({src:\"https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png\",srcSet:\"https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/vz5sNyR0JmQ5oV8JVuLA3GpPO8.png 1000w\"},\"\"),SNzrxfc6w:addImageAlt({src:\"https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png\",srcSet:\"https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png?scale-down-to=1024 819w,https://framerusercontent.com/images/EBo4xG5lrhoqRVaPoaj63clkuI.png 979w\"},\"\"),style:{width:\"100%\"},variant:\"AeV_DXVOm\",width:\"100%\",YHHuy3mvV:addImageAlt({src:\"https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png\",srcSet:\"https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png?scale-down-to=1024 819w,https://framerusercontent.com/images/T0cBJR5GIt5VFZJImZ6lGPEQw.png 1075w\"},\"\"),...addPropertyOverrides({PqW6dgA7H:{variant:\"OkrNeMgZC\"},S5TX1r5zm:{variant:\"UxsLYSd7W\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"WildEast is a movement of people living and working in the villages and towns in the East of England. We believe that by taking positive action together we can reverse the depletion of nature and biodiversity, as well as restore our own connection to nature \u2013 our wild hearts which have been starved of oxygen.\"})}),className:\"framer-14y9kxo\",\"data-framer-name\":\"WildEast is a movement of people living and working in the villages and towns in the East of England. We believe that by taking positive action together we can reverse the depletion of nature and biodiversity, as well as restore our own connection to nature \u2013 our wild hearts which have been starved of oxygen.\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"zVu35SNPm\",style:{\"--extracted-r6o4lv\":\"rgb(50, 71, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PqW6dgA7H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"Want to help? Show your support by pinning your name to our map. Form a community group; sign our petitions; share the WildEast message. And, if you have some outside space share what you are doing towards the 20% so we can show the change you are helping create. Backyard, schoolyard, churchyard, farm or industrial estate, any scale, any location. It all makes the difference.\"})})},S5TX1r5zm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(50, 71, 54))\"},children:\"We've got two clear aims. To gather the support of a million people across the region with one clear voice for nature, and to revert 20% of land in the east to natural habitat by 2030. By working together with one sense of purpose but a million separate actions, this is how we can all make the change happen.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cn855j\",layoutDependency:layoutDependency,layoutId:\"so0c5lezP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1waiu2x\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mrQkmTgRW\",onTap:onTap1vtdna1,...addPropertyOverrides({PqW6dgA7H:{onTap:onTapqfetmy},S5TX1r5zm:{onTap:onTap70qc5w}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d8x751\",\"data-framer-name\":\"Group_6826\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"rscQ6qs3v\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" transform=\"rotate(-180 16 16)\" fill=\"#324736\"/><path d=\"m18.58 10.322-6.193 6.194 6.194 6.194\" stroke=\"#FBFF1E\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"http://mapofdreams.wildeast.co.uk/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-69hais framer-1a1ksjm\",\"data-framer-name\":\"Button2\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"f3zkuHE34\",style:{backgroundColor:\"rgb(50, 71, 54)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(250, 255, 30))\"},children:\"Pin your name to the map\"})}),className:\"framer-19i5rsr\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"YcMPhBgo2\",style:{\"--extracted-r6o4lv\":\"rgb(250, 255, 30)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmen3c\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"T_lyMxV2N\",onTap:onTapqfetmy,...addPropertyOverrides({PqW6dgA7H:{onTap:onTap70qc5w},S5TX1r5zm:{onTap:onTap1vtdna1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qkbg11\",\"data-framer-name\":\"Group_6830\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"CYGNLCIbI\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"16\" cy=\"16\" r=\"16\" fill=\"#324736\"/><path d=\"m13.42 21.677 6.193-6.193-6.194-6.194\" stroke=\"#FBFF1E\"/></svg>',withExternalLayout:true})})]})]})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CnCMb.framer-1a1ksjm, .framer-CnCMb .framer-1a1ksjm { display: block; }\",\".framer-CnCMb.framer-1yiqqpn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1440px; }\",\".framer-CnCMb .framer-149af4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CnCMb .framer-e8sn1v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 74px; height: min-content; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CnCMb .framer-1ss4ln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-width: 300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CnCMb .framer-onqwob { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 566px; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 1px; }\",\".framer-CnCMb .framer-mg96b9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CnCMb .framer-foc9cd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CnCMb .framer-plfcdl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-CnCMb .framer-14y9kxo { flex: none; height: auto; min-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CnCMb .framer-1cn855j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CnCMb .framer-1waiu2x, .framer-CnCMb .framer-hmen3c { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 40px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-CnCMb .framer-1d8x751, .framer-CnCMb .framer-1qkbg11 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 100%; z-index: 1; }\",\".framer-CnCMb .framer-69hais { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CnCMb .framer-19i5rsr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CnCMb.framer-1yiqqpn, .framer-CnCMb .framer-149af4v, .framer-CnCMb .framer-e8sn1v, .framer-CnCMb .framer-1ss4ln, .framer-CnCMb .framer-onqwob, .framer-CnCMb .framer-mg96b9, .framer-CnCMb .framer-1waiu2x, .framer-CnCMb .framer-69hais, .framer-CnCMb .framer-hmen3c { gap: 0px; } .framer-CnCMb.framer-1yiqqpn > *, .framer-CnCMb .framer-1waiu2x > *, .framer-CnCMb .framer-hmen3c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CnCMb.framer-1yiqqpn > :first-child, .framer-CnCMb .framer-e8sn1v > :first-child, .framer-CnCMb .framer-onqwob > :first-child, .framer-CnCMb .framer-mg96b9 > :first-child, .framer-CnCMb .framer-1waiu2x > :first-child, .framer-CnCMb .framer-hmen3c > :first-child { margin-top: 0px; } .framer-CnCMb.framer-1yiqqpn > :last-child, .framer-CnCMb .framer-e8sn1v > :last-child, .framer-CnCMb .framer-onqwob > :last-child, .framer-CnCMb .framer-mg96b9 > :last-child, .framer-CnCMb .framer-1waiu2x > :last-child, .framer-CnCMb .framer-hmen3c > :last-child { margin-bottom: 0px; } .framer-CnCMb .framer-149af4v > *, .framer-CnCMb .framer-1ss4ln > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CnCMb .framer-149af4v > :first-child, .framer-CnCMb .framer-1ss4ln > :first-child, .framer-CnCMb .framer-69hais > :first-child { margin-left: 0px; } .framer-CnCMb .framer-149af4v > :last-child, .framer-CnCMb .framer-1ss4ln > :last-child, .framer-CnCMb .framer-69hais > :last-child { margin-right: 0px; } .framer-CnCMb .framer-e8sn1v > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-CnCMb .framer-onqwob > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CnCMb .framer-mg96b9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-CnCMb .framer-69hais > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-CnCMb.framer-v-1y3a2ge .framer-1d8x751, .framer-CnCMb.framer-v-1y3a2ge .framer-1qkbg11, .framer-CnCMb.framer-v-ddn9n6 .framer-1d8x751, .framer-CnCMb.framer-v-ddn9n6 .framer-1qkbg11 { height: var(--framer-aspect-ratio-supported, 200px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"S5TX1r5zm\":{\"layout\":[\"fixed\",\"auto\"]},\"PqW6dgA7H\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqpyjRIDyT=withCSS(Component,css,\"framer-CnCMb\");export default FramerqpyjRIDyT;FramerqpyjRIDyT.displayName=\"(M) Our Mission\";FramerqpyjRIDyT.defaultProps={height:800,width:1440};addPropertyControls(FramerqpyjRIDyT,{variant:{options:[\"oju4ifxGm\",\"S5TX1r5zm\",\"PqW6dgA7H\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqpyjRIDyT,[{explicitInter:true,fonts:[{family:\"Antonio\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"}]},...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqpyjRIDyT\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S5TX1r5zm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqW6dgA7H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"800\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qpyjRIDyT.map", "// Generated by Framer (d5ca742)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import DOurMission from\"#framer/local/canvasComponent/c92NtX7oT/c92NtX7oT.js\";import GetWild from\"#framer/local/canvasComponent/DOglGCBiS/DOglGCBiS.js\";import SignUp from\"#framer/local/canvasComponent/H7TUcf3lK/H7TUcf3lK.js\";import Partners from\"#framer/local/canvasComponent/HgLhRrHwt/HgLhRrHwt.js\";import Footer from\"#framer/local/canvasComponent/I616T2nO5/I616T2nO5.js\";import GenericButton from\"#framer/local/canvasComponent/jEAjk86ZL/jEAjk86ZL.js\";import TickerWildEast from\"#framer/local/canvasComponent/KLJkhWHrd/KLJkhWHrd.js\";import MOurMission from\"#framer/local/canvasComponent/qpyjRIDyT/qpyjRIDyT.js\";import Button from\"#framer/local/canvasComponent/TYUUFB2x4/TYUUFB2x4.js\";import TickerText from\"#framer/local/canvasComponent/VtKfcFInf/VtKfcFInf.js\";import Navigation from\"#framer/local/canvasComponent/ZuV0r8ZyN/ZuV0r8ZyN.js\";import*as sharedStyle from\"#framer/local/css/yUyPN1x5w/yUyPN1x5w.js\";import metadataProvider from\"#framer/local/webPageMetadata/Cp98bzNKz/Cp98bzNKz.js\";const NavigationFonts=getFonts(Navigation);const GenericButtonFonts=getFonts(GenericButton);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const RichTextWithFX=withFX(RichText);const DOurMissionFonts=getFonts(DOurMission);const MOurMissionFonts=getFonts(MOurMission);const PartnersFonts=getFonts(Partners);const GetWildFonts=getFonts(GetWild);const TickerTextFonts=getFonts(TickerText);const SignUpFonts=getFonts(SignUp);const FooterFonts=getFonts(Footer);const TickerWildEastFonts=getFonts(TickerWildEast);const breakpoints={CiP6DO3cc:\"(max-width: 809px)\",dg5c6OXBF:\"(min-width: 1080px) and (max-width: 1439px)\",hy00H5MQp:\"(min-width: 1440px)\",x632maH7S:\"(min-width: 810px) and (max-width: 1079px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-QT8BN\";const variantClassNames={CiP6DO3cc:\"framer-v-109ky4j\",dg5c6OXBF:\"framer-v-mluz5s\",hy00H5MQp:\"framer-v-y0832\",x632maH7S:\"framer-v-19jccai\"};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:-1,transition:transition1};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition1};const metadata=metadataProvider();const humanReadableVariantMap={\"Small Desktop\":\"dg5c6OXBF\",Desktop:\"hy00H5MQp\",Phone:\"CiP6DO3cc\",Tablet:\"x632maH7S\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"hy00H5MQp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-QT8BN`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-QT8BN`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const NB30K0oUuwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const elementId=useRouteElementId(\"nzSxy_r1b\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"CiP6DO3cc\")return false;return true;};const elementId1=useRouteElementId(\"RFA1UAcXR\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Y23LOogY3\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"CiP6DO3cc\",\"x632maH7S\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"CiP6DO3cc\",\"x632maH7S\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"CiP6DO3cc\")return true;return false;};const elementId3=useRouteElementId(\"nANbuuR1d\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hy00H5MQp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-y0832\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1448c6a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{variant:\"sy1TD_v3b\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"zgc3GDifW\",layoutId:\"zgc3GDifW\",style:{width:\"100%\"},variant:\"MUWkyc1Dc\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a51n7i\",\"data-framer-name\":\"Hero Page\",name:\"Hero Page\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-thrjc1\",\"data-framer-name\":\"#1\",id:elementId,name:\"#1\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99q5ht\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s7khd6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"71px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 255, 30)\",\"--framer-text-transform\":\"uppercase\"},children:\"People Powered \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"71px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 255, 30)\",\"--framer-text-transform\":\"uppercase\"},children:\"Nature Recovery\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 255, 30)\",\"--framer-text-transform\":\"uppercase\"},children:\"People Powered \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(250, 255, 30)\",\"--framer-text-transform\":\"uppercase\"},children:\"Nature Recovery\"})]}),className:\"framer-fd8g0t\",\"data-framer-name\":\"People Powered Nature Recovery\",fonts:[\"GF;Antonio-700\"],name:\"People Powered Nature Recovery\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:444}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:473,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-gkzpj5-container\",id:\"gkzpj5\",children:[/*#__PURE__*/_jsx(GenericButton,{height:\"100%\",id:\"yDlJRtmaU\",layoutId:\"yDlJRtmaU\",NB30K0oUu:NB30K0oUuwelu7j({overlay}),QWESVHvfa:true,RKbNC_BR6:\"Press play\",style:{height:\"100%\"},variant:\"hVZPBOhnq\",width:\"100%\",wTpRe_7KS:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-gyr1my\",\"data-framer-portal-id\":\"gkzpj5\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"RPbexx6sn\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1at8372-container\",\"data-framer-portal-id\":\"gkzpj5\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"Obzk16J9f\",isMixedBorderRadius:false,layoutId:\"Obzk16J9f\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://b28bded45661ee35e4ddd8429c09f7f2.cdn.bubble.io/f1733761631822x327878332040303800/Wild_East_Brand_Film.mp4?_gl=1*53zzdy*_gcl_aw*R0NMLjE3MzE1MzM3NzkuQ2p3S0NBaUF1ZEc1QmhBUkVpd0FXTWxTakFjNXR3ai1VSlVhU3J5cnlPcjdyYkhRVDZtS29BZHNZU0hkbFdwNkVYOWE1d0FXZko2ZWNSb0NvYW9RQXZEX0J3RQ..*_gcl_au*MTY1ODg1OTEzOC4xNzMxNDkyMTYy*_ga*MTk1MTk5MjE4My4xNzE1NjIwMDE5*_ga_BFPVR2DEE2*MTczMzc0MDM1My4xNDkuMS4xNzMzNzYxNjg1LjYwLjAuMA..\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"SXPNJEFh5\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1hy5msn framer-aww15t\",\"data-framer-name\":\"Down\",name:\"Down\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ixjo34\",\"data-framer-name\":\"Vector 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:18,name:\"Vector 8\",svg:'<svg width=\"18\" height=\"10\" viewBox=\"-1 -1 18 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0L8 8L16 0\" stroke=\"#324736\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kv2677\",\"data-framer-name\":\"Ticker_1\",name:\"Ticker_1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-173rp3i-container\",\"data-framer-name\":\"Ticker_1\",name:\"Ticker_1\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"oLxRRMXen\",layoutId:\"oLxRRMXen\",name:\"Ticker_1\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://mapofdreams.wildeast.co.uk/\",nodeId:\"UZEoWGqMa\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1l28dh9 framer-aww15t\",\"data-framer-name\":\"Ticker_1\",name:\"Ticker_1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100px\",\"--framer-text-color\":\"rgb(50, 71, 54)\",\"--framer-text-transform\":\"uppercase\"},children:\"Join us now    \"})}),className:\"framer-10onmg2\",\"data-framer-name\":\"Join us now join us join us join us join us\",fonts:[\"GF;Antonio-700\"],name:\"Join us now join us join us join us join us\",verticalAlignment:\"top\",withExternalLayout:true})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:130,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(82),pixelHeight:933,pixelWidth:1400,sizes:\"100vw\",src:\"https://framerusercontent.com/images/bAXhE4fwYvdxWoy9iZd3EQYWI.png\",srcSet:\"https://framerusercontent.com/images/bAXhE4fwYvdxWoy9iZd3EQYWI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bAXhE4fwYvdxWoy9iZd3EQYWI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bAXhE4fwYvdxWoy9iZd3EQYWI.png 1400w\"},className:\"framer-11qmcak\"})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12w4vfz hidden-109ky4j\",\"data-framer-name\":\"Imagine\",name:\"Imagine\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5auas\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pyybuu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-70fqf1\",\"data-framer-name\":\"Content Holder\",name:\"Content Holder\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyn7cu\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rgj0s0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11k0thz\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:309,loading:getLoadingLazyAtYPosition(991.5000000000002),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f23iUrsh1WguzKUAOlC1QgMcE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:309,loading:getLoadingLazyAtYPosition(912),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f23iUrsh1WguzKUAOlC1QgMcE.svg\"},className:\"framer-xcgh87\",\"data-framer-name\":\"scribble_1\",name:\"scribble_1\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Imagine if we could live in a nature rese\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"r\"}),\"ve, not just visit one.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Imagine if we could live in a nature rese\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"r\"}),\"ve, not just visit one.\"]})}),className:\"framer-12pc4r3\",fonts:[\"GF;Antonio-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4wp9r\",\"data-framer-name\":\"crown\",name:\"crown\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(992.5000000000002),pixelHeight:1391,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"404px\",src:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png\",srcSet:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png?scale-down-to=1024 736w,https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(943),pixelHeight:1391,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"537px\",src:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png\",srcSet:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png?scale-down-to=1024 736w,https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png 1000w\"},className:\"framer-1x2g8cv\",\"data-framer-name\":\"cbdb891d61eadbf9b664481d53933be5 2\",name:\"cbdb891d61eadbf9b664481d53933be5 2\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y7sdte\",\"data-framer-name\":\"Rectangle 908\",name:\"Rectangle 908\",whileHover:animation})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5slk8t\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvqf09\",\"data-framer-name\":\"Content Holder\",name:\"Content Holder\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1415.0000000000002),pixelHeight:666,pixelWidth:1e3,sizes:\"251px\",src:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png\",srcSet:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png 1000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1244),pixelHeight:666,pixelWidth:1e3,sizes:\"387px\",src:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png\",srcSet:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png 1000w\"},className:\"framer-1tgcifb\",\"data-framer-name\":\"plant\",name:\"plant\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vxloew\",\"data-framer-name\":\"Textbox\",name:\"Textbox\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18zzwlu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hbgx17\",\"data-styles-preset\":\"yUyPN1x5w\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Efforts to protect nature are nothing new \u2013 but until now, these efforts have been made by\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"too few\"}),\"\\xa0people in\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"too few\"}),\"\\xa0places.\\xa0For nature to thrive\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"like us,\"}),\"\\xa0it needs to be well-networked and connected, just like us.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hbgx17\",\"data-styles-preset\":\"yUyPN1x5w\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"WildEast wants nature recovery to be about\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"everyone, everywhere\\xa0\"}),\"doing their bit, wherever they can, be it a backyard, schoolyard, churchyard, farmyard, housing estate, or industrial estate.\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hbgx17\",\"data-styles-preset\":\"yUyPN1x5w\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the WildEast thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\"})]}),className:\"framer-1nusaax\",\"data-framer-name\":\"Nature holds on in too small pockets, supported by too few people. It cannot survive, let alone thrive on its own. We all need to work together to reconnect -both existing habitats and our relationship with the natural world. It\u2019s got to be about EVERYONE.\\xa0 That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the Wild East thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\",fonts:[\"Inter\",\"Inter-Italic\"],name:\"Nature holds on in too small pockets, supported by too few people. It cannot survive, let alone thrive on its own. We all need to work together to reconnect -both existing habitats and our relationship with the natural world. It\u2019s got to be about EVERYONE.\\xa0 That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the Wild East thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{y:1722.5000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:1785,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9lfky2-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"EDg5xz5Z0\",layoutId:\"EDg5xz5Z0\",OSelfNsna:\"https://mapofdreams.wildeast.co.uk/\",RKbNC_BR6:\"Pin your name to the map\",style:{height:\"100%\"},variant:\"phnSEb4xB\",width:\"100%\"})})})})]})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-akqqwg\",\"data-framer-name\":\"By 2030\",id:elementId2,name:\"By 2030\",ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{__framer__speed:100,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2741),sizes:\"140px\",src:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg\",srcSet:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg 3072w\"},transformTemplate:undefined},x632maH7S:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2462),sizes:\"203px\",src:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg\",srcSet:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg 3072w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2368),sizes:\"165px\",src:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg\",srcSet:\"https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0PHkHiE45HZpVwaSb5PuZo9Ryc.jpg 3072w\"},className:\"framer-12z1jhb\",\"data-framer-name\":\"0c8cd76abc9d26f26c117b394cd5a223 1\",name:\"0c8cd76abc9d26f26c117b394cd5a223 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{__framer__speed:100,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2447.5),pixelHeight:84,pixelWidth:127,src:\"https://framerusercontent.com/images/AOhsXsMjBKg7JziPf7STDoMlLlg.png\"},style:{rotate:-15}},x632maH7S:{__framer__speed:101,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1765),pixelHeight:84,pixelWidth:127,src:\"https://framerusercontent.com/images/AOhsXsMjBKg7JziPf7STDoMlLlg.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1911),pixelHeight:84,pixelWidth:127,src:\"https://framerusercontent.com/images/AOhsXsMjBKg7JziPf7STDoMlLlg.png\"},className:\"framer-1ad89g7\",\"data-framer-name\":\"istockphoto-926264556-612x612 2\",name:\"istockphoto-926264556-612x612 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2500.5),positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png\",srcSet:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png?scale-down-to=512 512w,https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png 660w\"}},x632maH7S:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1826.0000000000002),positionX:\"center\",positionY:\"center\",sizes:\"170px\",src:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png\",srcSet:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png?scale-down-to=512 512w,https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png 660w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:102,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1887),positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png\",srcSet:\"https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png?scale-down-to=512 512w,https://framerusercontent.com/images/90BTtDb5M9XIyFzwlIerpw86ANI.png 660w\"},className:\"framer-10cwkca\",\"data-framer-name\":\"7a1b0ebe33940b9f22591cd17fbccad1 2\",name:\"7a1b0ebe33940b9f22591cd17fbccad1 2\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2183),pixelHeight:291,pixelWidth:300,src:\"https://framerusercontent.com/images/rLliQEFQS9peiUzovrlyzjPISlI.png\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:100,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2325.5),pixelHeight:291,pixelWidth:300,src:\"https://framerusercontent.com/images/rLliQEFQS9peiUzovrlyzjPISlI.png\"},className:\"framer-whld2q hidden-109ky4j\",\"data-framer-name\":\"71UVwV7jkjL._SL1500_ 2\",name:\"71UVwV7jkjL._SL1500_ 2\",style:{rotate:37},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{__framer__speed:101,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2500.5),positionX:\"center\",positionY:\"center\",sizes:\"104px\",src:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png\",srcSet:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png 660w\"},transformTemplate:undefined},x632maH7S:{__framer__speed:101,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2448),positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png\",srcSet:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png 660w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2128),positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png\",srcSet:\"https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png?scale-down-to=512 512w,https://framerusercontent.com/images/nCfEHa5cunaTMrxH0erDOTp4boE.png 660w\"},className:\"framer-4v02ry\",\"data-framer-name\":\"eb46c8aed069c5a9d748fba95851d536 1\",name:\"eb46c8aed069c5a9d748fba95851d536 1\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azv728\",\"data-framer-name\":\"Group 6854\",name:\"Group 6854\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12gq7nb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(50, 71, 54)\",\"--framer-text-transform\":\"uppercase\"},children:\"Our Target\"})}),className:\"framer-lbe25e\",\"data-framer-name\":\"Our Target\",fonts:[\"GF;Poppins-regular\"],name:\"Our Target\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"BY 2030\"})}),viewBox:\"0 0 274 91\"},dg5c6OXBF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"230px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"232px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"BY 2030\"})})},x632maH7S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"270px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"BY 2030\"})}),viewBox:\"0 0 731.5 270\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"280px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"232px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"BY 2030\"})}),className:\"framer-1penhth\",\"data-framer-name\":\"BY 2030\",fonts:[\"GF;Antonio-700\"],name:\"BY 2030\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dudv11\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"1 million people\"})})},x632maH7S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"1 million people\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:-1,x:0,y:30}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"1 million people\"})}),className:\"framer-17qwhf7\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"\\xa330m funding\"})})},x632maH7S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"\\xa330m funding\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:-1,x:0,y:30}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"\\xa330m funding\"})}),className:\"framer-1b1rjih\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"20% restored\"})})},x632maH7S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"20% restored\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:-1,x:0,y:30}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1tZWRpdW0=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(50, 71, 54)\"},children:\"20% restored\"})}),className:\"framer-rqkiji\",fonts:[\"FS;Poppins-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zzwda2 hidden-109ky4j\",\"data-framer-name\":\"#7\",name:\"#7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-351cna\",\"data-framer-name\":\"#7\",name:\"#7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dadghc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pin your name \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"to the map\"})]}),className:\"framer-1ynybgi\",\"data-framer-name\":\"Pin your name to the map\",fonts:[\"GF;Antonio-700\"],name:\"Pin your name to the map\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z7vfcf\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ygezj7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:225,name:\"Vector\",svg:'<svg width=\"225\" height=\"19\" viewBox=\"0 0 225 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M224.66 0.717307C224.282 0.503495 223.895 0.289682 223.516 0.0758694C219.253 0.062075 214.982 0.0551784 210.719 0.041384C209.067 0.041384 207.407 0.027589 205.755 0.0137947L204.973 0.041384C204.716 0.0275897 204.466 0.0206904 204.208 0.00689602C204.079 0.0206904 203.942 0.0275897 203.813 0.041384C203.555 0.041384 203.297 0.041384 203.039 0.041384C202.782 0.0344868 202.516 0.0206918 202.258 0.0137947C201.879 0.0137947 201.5 0.0137932 201.113 0.00689602C200.976 0.00689602 200.847 0.00689749 200.71 0.0137947C200.461 0.027589 200.211 0.0482804 199.961 0.0620747C199.695 0.324167 199.429 0.29658 199.163 0.0551787C198.776 0.117253 198.398 0.12415 198.019 0.0137947C197.882 0.0137947 197.753 0.0137935 197.616 0.0206907C197.358 0.0206907 197.1 0.0206922 196.842 0.0275893H196.834C196.705 0.289682 196.544 0.262092 196.367 0.0689707C196.262 0.117251 196.165 0.110355 196.077 0.04828C195.44 0.04828 194.796 0.0551775 194.159 0.0620747C193.877 0.344859 193.595 0.296579 193.313 0.0620747C193.087 0.0620747 192.861 0.0620747 192.636 0.0620747C192.467 0.248299 192.281 0.248298 192.096 0.0827654C191.782 0.0827654 191.475 0.0827654 191.161 0.0827654C190.831 0.400036 190.5 0.296578 190.17 0.0827654H190.041C189.823 0.317269 189.606 0.317269 189.396 0.0827654C189.203 0.0827654 189.01 0.0758679 188.816 0.0689707C188.655 0.255195 188.494 0.351757 188.317 0.103459L188.139 0.117253L187.97 0.04828C187.841 0.0344857 187.704 0.0137944 187.575 0C187.333 0.0275887 187.092 0.0551767 186.842 0.0827654C186.697 0.324167 186.544 0.324168 186.391 0.089664C185.238 0.0827669 184.086 0.0689719 182.941 0.0620747C182.845 0.110355 182.748 0.110355 182.643 0.0620747C182.329 0.351756 182.015 0.282784 181.7 0.0620747C181.588 0.110355 181.491 0.103458 181.402 0.0275893C180.766 0.17243 180.129 0.400036 179.484 0.0620747C179.186 0.344859 178.88 0.289682 178.558 0.0758694C178.348 0.158636 178.139 0.158635 177.937 0.0620747C177.284 0.0620747 176.632 0.0689722 175.979 0.0758694C175.592 0.151738 175.213 0.158636 174.835 0.041384C174.706 0.041384 174.577 0.041384 174.448 0.041384C174.23 0.158636 174.013 0.144841 173.787 0.0620747C173.586 0.234504 173.384 0.234504 173.183 0.0620747C173.086 0.124149 172.997 0.117252 172.909 0.04828C172.78 0.04828 172.651 0.04828 172.514 0.04828C172.264 0.0551772 172.006 0.0689722 171.756 0.0758694C171.49 0.0689722 171.232 0.0620744 170.967 0.04828C170.838 0.04828 170.709 0.0413825 170.588 0.0344854C166.583 0.296578 162.57 0.14484 158.565 0.131045C155.954 0.124148 153.343 0.179327 150.74 0.151739C148.491 0.12415 146.203 0.193122 143.963 0.165533C140.65 0.12415 137.33 0.248299 134.01 0.151739C130.456 0.0482811 126.895 0.124149 123.341 0.124149C118.304 0.124149 113.268 0.124149 108.239 0.124149C105.064 0.124149 101.889 0.200019 98.7221 0.165533C95.4665 0.131048 92.2189 0.36555 88.9552 0.110355C86.868 -0.0482804 84.7486 0.110355 82.6454 0.124149C78.6806 0.137944 74.7158 0.144842 70.751 0.151739C66.9474 0.151739 63.1438 0.082767 59.3402 0.151739C56.6809 0.200019 54.0296 0.075869 51.3784 0.172429C49.2429 0.248298 47.0671 0.296579 44.9477 0.172429C41.6195 -0.0206915 38.3075 0.19312 34.9874 0.131045C30.7486 0.0551765 26.4857 0.0275895 22.2388 0.151739C21.0945 0.186225 19.9663 0.103459 18.822 0.151739C17.9839 0.193122 17.9034 0.634541 17.8469 1.13804C17.7905 1.68291 18.1129 1.9588 18.7495 1.97259C19.2008 1.97949 19.6521 1.99328 20.1033 1.99328C27.3963 1.99328 34.6892 1.99328 41.9902 1.99328C50.6289 1.99328 59.2677 2.00708 67.9064 2.00708C75.7956 2.00708 83.6849 1.99328 91.5742 1.99328C98.432 1.99328 105.29 1.97949 112.148 1.97949C121.898 1.97949 131.641 1.97949 141.392 1.98639C148.056 1.98639 154.729 2.03467 161.393 1.98639C162.513 1.97949 163.714 2.28297 164.794 1.7174C169.041 1.44151 173.295 1.73809 177.55 1.66222C177.687 1.4553 177.832 1.4553 177.969 1.66222C178.936 1.51048 179.903 1.97949 180.943 1.52428C181.418 1.31046 181.709 2.06915 181.974 2.62783C180.959 2.57265 180.065 2.95889 179.122 2.683C178.993 2.683 178.856 2.6899 178.727 2.6968C176.277 3.23478 173.803 3.53135 171.265 3.29685C166.277 3.51066 161.361 4.24176 156.397 4.66249C152.714 4.97286 149.031 5.32462 145.349 5.60051C141.094 5.91778 136.871 6.46266 132.592 6.6006C127.354 6.77303 122.156 7.36619 116.91 7.53172C112.679 7.66277 108.457 8.15246 104.226 8.43525C100.495 8.67665 96.7397 8.96633 93.0005 9.24911C88.4314 9.59397 83.8622 9.93194 79.293 10.2906C74.6594 10.6561 70.0257 10.9872 65.3921 11.2907C59.9768 11.6424 54.5776 12.1528 49.1301 12.1183C47.3008 12.1045 45.4473 12.4287 43.6503 12.408C40.991 12.3804 38.3478 12.5046 35.6965 12.6218C33.7383 12.7046 31.8043 12.6977 29.8299 12.9046C27.356 13.1667 24.8014 12.9115 22.2872 12.9598C17.1942 13.0564 12.1093 13.215 7.01632 13.0081C5.17898 12.9322 3.31746 12.8494 1.45595 13.0288C0.609808 13.1115 0.18271 13.4495 0.0134811 14.0427C-0.123513 14.491 0.811271 15.1669 1.56071 15.1876C6.30717 15.3255 11.0536 15.4497 15.8001 15.5738C19.2814 15.6635 22.7626 15.7532 26.2439 15.8497L26.2681 16.5808C26.0424 16.6153 25.8249 16.705 25.6556 16.9257C25.8652 16.8912 26.0666 16.8636 26.2761 16.836V16.9188C26.0747 16.9188 25.8652 16.9188 25.6556 16.9326C25.5428 17.0705 25.43 17.2016 25.3252 17.3395C24.6564 18.2223 24.9868 18.8431 26.2117 18.9741C26.5904 19.0155 26.9853 18.9948 27.3721 18.9948C38.799 18.9603 50.218 18.9121 61.6449 18.8914C71.4602 18.8776 81.2674 18.8914 91.0826 18.9121C94.1046 18.9121 97.1184 18.9603 100.14 18.9465C101.099 18.9465 102.308 18.9259 102.8 18.2292C103.412 17.3671 104.307 17.4568 105.104 17.3326C106.555 17.1119 108.038 17.0843 109.504 16.9326C114.283 16.436 119.062 15.9187 123.84 15.4014C128.49 14.8979 133.132 14.3875 137.774 13.8702C141.142 13.4978 144.51 13.077 147.879 12.7322C150.554 12.4632 153.206 12.0149 155.913 11.9873C156.171 11.9597 156.421 11.939 156.679 11.9114C156.816 11.9183 156.945 11.9252 157.082 11.9321L157.227 11.8907L157.372 11.9252C158.653 11.47 160.007 11.6493 161.329 11.6148C161.53 11.5045 161.748 11.5045 161.965 11.5873C163.657 11.1458 165.414 11.3872 167.139 11.2631C167.26 11.2631 167.389 11.27 167.509 11.2769C167.63 11.2769 167.751 11.2769 167.88 11.27C168.025 11.0838 168.162 11.0976 168.307 11.27C168.428 11.2355 168.549 11.2355 168.67 11.27C169.927 10.8562 171.232 10.9665 172.538 10.9872C172.675 10.9872 172.804 10.9803 172.941 10.9734C173.199 10.9734 173.449 10.9734 173.706 10.9734L173.876 10.9113L174.053 10.9389C174.206 10.7872 174.351 10.7389 174.512 10.9182C174.633 10.9182 174.762 10.9182 174.883 10.9182L175.012 10.87L175.141 10.9182C176.551 10.4354 178.058 10.7803 179.501 10.5872C179.799 10.2768 180.226 10.2768 180.645 10.2492C180.879 9.75261 180.588 9.38016 180.242 9.02151C180.032 8.98702 179.911 8.87667 179.855 8.71114C179.202 8.64216 178.509 8.71803 177.945 8.33869C177.945 8.34558 177.945 8.35248 177.953 8.35938L177.784 8.37317L177.615 8.33869C177.317 8.59388 177.018 8.64216 176.712 8.33869C176.543 8.33869 176.374 8.33869 176.205 8.34558C175.447 8.89736 174.553 8.44904 173.747 8.60078C173.61 8.60078 173.481 8.60078 173.344 8.60768C172.586 8.8077 171.821 8.60768 171.063 8.66975C170.902 8.90426 170.733 8.84908 170.572 8.65596C170.491 8.69734 170.419 8.69734 170.338 8.65596C169.202 9.17325 167.985 8.86287 166.8 8.91805C166.43 9.07669 166.035 9.00771 165.64 8.99392C165.342 9.34568 165.116 8.96633 164.85 8.93874C164.753 9.01461 164.649 9.02841 164.536 8.98013C163.819 9.30429 163.101 9.35257 162.376 9.00082H162.279C161.264 9.2767 160.289 8.82149 159.241 8.92495C153.496 9.5181 147.71 9.71123 141.948 10.1113C129.457 10.9803 116.967 11.9873 104.468 12.7391C93.3148 13.415 82.1619 14.2151 70.9767 14.491L60.7746 13.9254C64.2317 13.7323 67.6969 13.5323 71.1459 13.2702C81.2029 12.5253 91.2519 11.67 101.325 10.9734C110.367 10.3458 119.408 9.74571 128.45 9.17325C138.33 8.5456 148.169 7.59379 158.025 6.73164C159.411 6.6075 160.869 6.62819 162.142 5.97985C162.473 5.96606 162.803 5.95226 163.142 5.93847C163.375 5.67638 163.617 5.67638 163.851 5.93847H163.915C164.286 5.60051 164.745 5.59361 165.229 5.67638C165.688 5.55912 166.148 5.49015 166.623 5.6143C167.26 5.17288 168.001 5.32462 168.718 5.32462L168.847 5.26255L168.992 5.28324C170.161 4.91079 171.378 4.95217 172.586 4.98666L172.731 4.93148L172.884 4.95217C173.763 4.46937 174.746 4.72457 175.689 4.6418C176.043 4.6349 176.39 4.62111 176.745 4.61421C177.486 4.11072 178.348 4.36591 179.162 4.33143C179.404 4.31763 179.637 4.31074 179.879 4.29694C181.007 3.76586 182.224 4.01416 183.409 4.00726C183.747 3.88311 184.086 3.85552 184.44 3.94519C185.335 3.48997 186.31 3.64171 187.269 3.69689L187.438 3.62102L187.623 3.63481C187.801 3.44859 187.986 3.44169 188.188 3.61412C188.486 3.61412 188.792 3.61412 189.09 3.61412C189.84 3.11753 190.694 3.33823 191.524 3.35892C191.774 3.34513 192.023 3.32444 192.273 3.31064C193.53 2.80025 194.868 3.02786 196.174 3.00027C196.649 2.84164 197.133 2.90371 197.616 2.96579C199.429 2.47609 201.283 2.62093 203.128 2.683L203.281 2.61403L203.45 2.62783C204.288 2.34504 205.135 2.15192 205.981 2.62093H206.085C207.77 2.04846 209.535 2.40022 211.259 2.31745C211.775 2.21399 212.283 2.16571 212.798 2.32435H213.572C213.789 2.32435 214.007 2.30366 214.217 2.29676C214.523 2.04157 214.829 2.00708 215.135 2.29676C215.635 2.29676 216.134 2.29676 216.634 2.29676C216.811 2.08295 216.981 2.13812 217.158 2.31055C217.472 2.23468 217.778 2.21399 218.093 2.31055C218.681 2.07605 219.269 1.9588 219.858 2.31055L219.938 2.26917L220.027 2.31055C220.365 2.05536 220.704 1.98639 221.05 2.30366C221.244 2.31055 221.437 2.31745 221.63 2.32435C222.356 1.93121 223.194 2.06915 223.975 1.96569C224.314 1.57945 225.507 1.57945 224.757 0.703512L224.66 0.717307ZM109.093 14.2772C110.423 14.6496 111.729 14.1668 113.058 14.1944C113.711 14.2082 114.372 14.1944 115.121 14.1944C114.621 15.0152 113.735 15.0496 113.074 15.1393C112.156 15.2635 111.189 15.2014 110.246 15.36C110.036 15.3945 109.746 15.0772 109.496 14.9186C109.335 15.2152 109.037 15.2497 108.707 15.2428C108.384 15.2704 108.086 15.2704 107.973 14.9393C108.207 14.5393 108.666 14.4289 109.093 14.2703V14.2772ZM89.1244 16.0221C89.2211 15.56 89.7449 15.9187 90.0673 15.8635C91.4775 15.3876 92.9522 15.5738 94.4108 15.5807C95.0555 15.629 95.7082 15.2841 96.3448 15.6014C96.4496 15.5531 96.5543 15.5393 96.6672 15.5669C98.4723 15.0772 100.334 15.229 102.179 15.1876C103.058 15.0083 103.944 14.891 104.847 14.9393C104.975 14.8979 105.096 14.9186 105.201 14.9945C105.926 14.9393 106.652 14.891 107.546 14.822C106.821 16.0359 105.628 15.1669 104.838 15.5462C104.597 15.7187 104.347 15.9118 104.097 15.5462C103.46 15.5876 102.824 15.6221 102.187 15.6635C100.6 15.9325 99.0122 16.2429 97.3682 15.9946C96.9976 16.2153 96.6672 16.098 96.3448 15.9118C95.9097 16.3118 95.3859 16.367 94.7976 16.2222C93.6049 15.9463 92.4445 16.9877 91.2357 16.2911C90.8006 16.3601 90.3654 16.4705 89.9303 16.4981C89.5354 16.5256 89.0358 16.4084 89.1163 16.0152L89.1244 16.0221ZM86.4651 16.0359L86.5618 16.0911L86.449 16.1256L86.4651 16.0359Z\" fill=\"#FF00FF\"/>\\n<path d=\"M224.66 0.717307C224.282 0.503495 223.895 0.289682 223.516 0.0758694C219.253 0.062075 214.982 0.0551784 210.719 0.041384C209.067 0.041384 207.407 0.027589 205.755 0.0137947L204.973 0.041384C204.716 0.0275897 204.466 0.0206904 204.208 0.00689602C204.079 0.0206904 203.942 0.0275897 203.813 0.041384C203.555 0.041384 203.297 0.041384 203.039 0.041384C202.782 0.0344868 202.516 0.0206918 202.258 0.0137947C201.879 0.0137947 201.5 0.0137932 201.113 0.00689602C200.976 0.00689602 200.847 0.00689749 200.71 0.0137947C200.461 0.027589 200.211 0.0482804 199.961 0.0620747C199.695 0.324167 199.429 0.29658 199.163 0.0551787C198.776 0.117253 198.398 0.12415 198.019 0.0137947C197.882 0.0137947 197.753 0.0137935 197.616 0.0206907C197.358 0.0206907 197.1 0.0206922 196.842 0.0275893H196.834C196.705 0.289682 196.544 0.262092 196.367 0.0689707C196.262 0.117251 196.165 0.110355 196.077 0.04828C195.44 0.04828 194.796 0.0551775 194.159 0.0620747C193.877 0.344859 193.595 0.296579 193.313 0.0620747C193.087 0.0620747 192.861 0.0620747 192.636 0.0620747C192.467 0.248299 192.281 0.248298 192.096 0.0827654C191.782 0.0827654 191.475 0.0827654 191.161 0.0827654C190.831 0.400036 190.5 0.296578 190.17 0.0827654H190.041C189.823 0.317269 189.606 0.317269 189.396 0.0827654C189.203 0.0827654 189.01 0.0758679 188.816 0.0689707C188.655 0.255195 188.494 0.351757 188.317 0.103459L188.139 0.117253L187.97 0.04828C187.841 0.0344857 187.704 0.0137944 187.575 0C187.333 0.0275887 187.092 0.0551767 186.842 0.0827654C186.697 0.324167 186.544 0.324168 186.391 0.089664C185.238 0.0827669 184.086 0.0689719 182.941 0.0620747C182.845 0.110355 182.748 0.110355 182.643 0.0620747C182.329 0.351756 182.015 0.282784 181.7 0.0620747C181.588 0.110355 181.491 0.103458 181.402 0.0275893C180.766 0.17243 180.129 0.400036 179.484 0.0620747C179.186 0.344859 178.88 0.289682 178.558 0.0758694C178.348 0.158636 178.139 0.158635 177.937 0.0620747C177.284 0.0620747 176.632 0.0689722 175.979 0.0758694C175.592 0.151738 175.213 0.158636 174.835 0.041384C174.706 0.041384 174.577 0.041384 174.448 0.041384C174.23 0.158636 174.013 0.144841 173.787 0.0620747C173.586 0.234504 173.384 0.234504 173.183 0.0620747C173.086 0.124149 172.997 0.117252 172.909 0.04828C172.78 0.04828 172.651 0.04828 172.514 0.04828C172.264 0.0551772 172.006 0.0689722 171.756 0.0758694C171.49 0.0689722 171.232 0.0620744 170.967 0.04828C170.838 0.04828 170.709 0.0413825 170.588 0.0344854C166.583 0.296578 162.57 0.14484 158.565 0.131045C155.954 0.124148 153.343 0.179327 150.74 0.151739C148.491 0.12415 146.203 0.193122 143.963 0.165533C140.65 0.12415 137.33 0.248299 134.01 0.151739C130.456 0.0482811 126.895 0.124149 123.341 0.124149C118.304 0.124149 113.268 0.124149 108.239 0.124149C105.064 0.124149 101.889 0.200019 98.7221 0.165533C95.4665 0.131048 92.2189 0.36555 88.9552 0.110355C86.868 -0.0482804 84.7486 0.110355 82.6454 0.124149C78.6806 0.137944 74.7158 0.144842 70.751 0.151739C66.9474 0.151739 63.1438 0.082767 59.3402 0.151739C56.6809 0.200019 54.0296 0.075869 51.3784 0.172429C49.2429 0.248298 47.0671 0.296579 44.9477 0.172429C41.6195 -0.0206915 38.3075 0.19312 34.9874 0.131045C30.7486 0.0551765 26.4857 0.0275895 22.2388 0.151739C21.0945 0.186225 19.9663 0.103459 18.822 0.151739C17.9839 0.193122 17.9034 0.634541 17.8469 1.13804C17.7905 1.68291 18.1129 1.9588 18.7495 1.97259C19.2008 1.97949 19.6521 1.99328 20.1033 1.99328C27.3963 1.99328 34.6892 1.99328 41.9902 1.99328C50.6289 1.99328 59.2677 2.00708 67.9064 2.00708C75.7956 2.00708 83.6849 1.99328 91.5742 1.99328C98.432 1.99328 105.29 1.97949 112.148 1.97949C121.898 1.97949 131.641 1.97949 141.392 1.98639C148.056 1.98639 154.729 2.03467 161.393 1.98639C162.513 1.97949 163.714 2.28297 164.794 1.7174C169.041 1.44151 173.295 1.73809 177.55 1.66222C177.687 1.4553 177.832 1.4553 177.969 1.66222C178.936 1.51048 179.903 1.97949 180.943 1.52428C181.418 1.31046 181.709 2.06915 181.974 2.62783C180.959 2.57265 180.065 2.95889 179.122 2.683C178.993 2.683 178.856 2.6899 178.727 2.6968C176.277 3.23478 173.803 3.53135 171.265 3.29685C166.277 3.51066 161.361 4.24176 156.397 4.66249C152.714 4.97286 149.031 5.32462 145.349 5.60051C141.094 5.91778 136.871 6.46266 132.592 6.6006C127.354 6.77303 122.156 7.36619 116.91 7.53172C112.679 7.66277 108.457 8.15246 104.226 8.43525C100.495 8.67665 96.7397 8.96633 93.0005 9.24911C88.4314 9.59397 83.8622 9.93194 79.293 10.2906C74.6594 10.6561 70.0257 10.9872 65.3921 11.2907C59.9768 11.6424 54.5776 12.1528 49.1301 12.1183C47.3008 12.1045 45.4473 12.4287 43.6503 12.408C40.991 12.3804 38.3478 12.5046 35.6965 12.6218C33.7383 12.7046 31.8043 12.6977 29.8299 12.9046C27.356 13.1667 24.8014 12.9115 22.2872 12.9598C17.1942 13.0564 12.1093 13.215 7.01632 13.0081C5.17898 12.9322 3.31746 12.8494 1.45595 13.0288C0.609808 13.1115 0.18271 13.4495 0.0134811 14.0427C-0.123513 14.491 0.811271 15.1669 1.56071 15.1876C6.30717 15.3255 11.0536 15.4497 15.8001 15.5738C19.2814 15.6635 22.7626 15.7532 26.2439 15.8497L26.2681 16.5808C26.0424 16.6153 25.8249 16.705 25.6556 16.9257C25.8652 16.8912 26.0666 16.8636 26.2761 16.836V16.9188C26.0747 16.9188 25.8652 16.9188 25.6556 16.9326C25.5428 17.0705 25.43 17.2016 25.3252 17.3395C24.6564 18.2223 24.9868 18.8431 26.2117 18.9741C26.5904 19.0155 26.9853 18.9948 27.3721 18.9948C38.799 18.9603 50.218 18.9121 61.6449 18.8914C71.4602 18.8776 81.2674 18.8914 91.0826 18.9121C94.1046 18.9121 97.1184 18.9603 100.14 18.9465C101.099 18.9465 102.308 18.9259 102.8 18.2292C103.412 17.3671 104.307 17.4568 105.104 17.3326C106.555 17.1119 108.038 17.0843 109.504 16.9326C114.283 16.436 119.062 15.9187 123.84 15.4014C128.49 14.8979 133.132 14.3875 137.774 13.8702C141.142 13.4978 144.51 13.077 147.879 12.7322C150.554 12.4632 153.206 12.0149 155.913 11.9873C156.171 11.9597 156.421 11.939 156.679 11.9114C156.816 11.9183 156.945 11.9252 157.082 11.9321L157.227 11.8907L157.372 11.9252C158.653 11.47 160.007 11.6493 161.329 11.6148C161.53 11.5045 161.748 11.5045 161.965 11.5873C163.657 11.1458 165.414 11.3872 167.139 11.2631C167.26 11.2631 167.389 11.27 167.509 11.2769C167.63 11.2769 167.751 11.2769 167.88 11.27C168.025 11.0838 168.162 11.0976 168.307 11.27C168.428 11.2355 168.549 11.2355 168.67 11.27C169.927 10.8562 171.232 10.9665 172.538 10.9872C172.675 10.9872 172.804 10.9803 172.941 10.9734C173.199 10.9734 173.449 10.9734 173.706 10.9734L173.876 10.9113L174.053 10.9389C174.206 10.7872 174.351 10.7389 174.512 10.9182C174.633 10.9182 174.762 10.9182 174.883 10.9182L175.012 10.87L175.141 10.9182C176.551 10.4354 178.058 10.7803 179.501 10.5872C179.799 10.2768 180.226 10.2768 180.645 10.2492C180.879 9.75261 180.588 9.38016 180.242 9.02151C180.032 8.98702 179.911 8.87667 179.855 8.71114C179.202 8.64216 178.509 8.71803 177.945 8.33869C177.945 8.34558 177.945 8.35248 177.953 8.35938L177.784 8.37317L177.615 8.33869C177.317 8.59388 177.018 8.64216 176.712 8.33869C176.543 8.33869 176.374 8.33869 176.205 8.34558C175.447 8.89736 174.553 8.44904 173.747 8.60078C173.61 8.60078 173.481 8.60078 173.344 8.60768C172.586 8.8077 171.821 8.60768 171.063 8.66975C170.902 8.90426 170.733 8.84908 170.572 8.65596C170.491 8.69734 170.419 8.69734 170.338 8.65596C169.202 9.17325 167.985 8.86287 166.8 8.91805C166.43 9.07669 166.035 9.00771 165.64 8.99392C165.342 9.34568 165.116 8.96633 164.85 8.93874C164.753 9.01461 164.649 9.02841 164.536 8.98013C163.819 9.30429 163.101 9.35257 162.376 9.00082H162.279C161.264 9.2767 160.289 8.82149 159.241 8.92495C153.496 9.5181 147.71 9.71123 141.948 10.1113C129.457 10.9803 116.967 11.9873 104.468 12.7391C93.3148 13.415 82.1619 14.2151 70.9767 14.491L60.7746 13.9254C64.2317 13.7323 67.6969 13.5323 71.1459 13.2702C81.2029 12.5253 91.2519 11.67 101.325 10.9734C110.367 10.3458 119.408 9.74571 128.45 9.17325C138.33 8.5456 148.169 7.59379 158.025 6.73164C159.411 6.6075 160.869 6.62819 162.142 5.97985C162.473 5.96606 162.803 5.95226 163.142 5.93847C163.375 5.67638 163.617 5.67638 163.851 5.93847H163.915C164.286 5.60051 164.745 5.59361 165.229 5.67638C165.688 5.55912 166.148 5.49015 166.623 5.6143C167.26 5.17288 168.001 5.32462 168.718 5.32462L168.847 5.26255L168.992 5.28324C170.161 4.91079 171.378 4.95217 172.586 4.98666L172.731 4.93148L172.884 4.95217C173.763 4.46937 174.746 4.72457 175.689 4.6418C176.043 4.6349 176.39 4.62111 176.745 4.61421C177.486 4.11072 178.348 4.36591 179.162 4.33143C179.404 4.31763 179.637 4.31074 179.879 4.29694C181.007 3.76586 182.224 4.01416 183.409 4.00726C183.747 3.88311 184.086 3.85552 184.44 3.94519C185.335 3.48997 186.31 3.64171 187.269 3.69689L187.438 3.62102L187.623 3.63481C187.801 3.44859 187.986 3.44169 188.188 3.61412C188.486 3.61412 188.792 3.61412 189.09 3.61412C189.84 3.11753 190.694 3.33823 191.524 3.35892C191.774 3.34513 192.023 3.32444 192.273 3.31064C193.53 2.80025 194.868 3.02786 196.174 3.00027C196.649 2.84164 197.133 2.90371 197.616 2.96579C199.429 2.47609 201.283 2.62093 203.128 2.683L203.281 2.61403L203.45 2.62783C204.288 2.34504 205.135 2.15192 205.981 2.62093H206.085C207.77 2.04846 209.535 2.40022 211.259 2.31745C211.775 2.21399 212.283 2.16571 212.798 2.32435H213.572C213.789 2.32435 214.007 2.30366 214.217 2.29676C214.523 2.04157 214.829 2.00708 215.135 2.29676C215.635 2.29676 216.134 2.29676 216.634 2.29676C216.811 2.08295 216.981 2.13812 217.158 2.31055C217.472 2.23468 217.778 2.21399 218.093 2.31055C218.681 2.07605 219.269 1.9588 219.858 2.31055L219.938 2.26917L220.027 2.31055C220.365 2.05536 220.704 1.98639 221.05 2.30366C221.244 2.31055 221.437 2.31745 221.63 2.32435C222.356 1.93121 223.194 2.06915 223.975 1.96569C224.314 1.57945 225.507 1.57945 224.757 0.703512L224.66 0.717307ZM109.093 14.2772C110.423 14.6496 111.729 14.1668 113.058 14.1944C113.711 14.2082 114.372 14.1944 115.121 14.1944C114.621 15.0152 113.735 15.0496 113.074 15.1393C112.156 15.2635 111.189 15.2014 110.246 15.36C110.036 15.3945 109.746 15.0772 109.496 14.9186C109.335 15.2152 109.037 15.2497 108.707 15.2428C108.384 15.2704 108.086 15.2704 107.973 14.9393C108.207 14.5393 108.666 14.4289 109.093 14.2703V14.2772ZM89.1244 16.0221C89.2211 15.56 89.7449 15.9187 90.0673 15.8635C91.4775 15.3876 92.9522 15.5738 94.4108 15.5807C95.0555 15.629 95.7082 15.2841 96.3448 15.6014C96.4496 15.5531 96.5543 15.5393 96.6672 15.5669C98.4723 15.0772 100.334 15.229 102.179 15.1876C103.058 15.0083 103.944 14.891 104.847 14.9393C104.975 14.8979 105.096 14.9186 105.201 14.9945C105.926 14.9393 106.652 14.891 107.546 14.822C106.821 16.0359 105.628 15.1669 104.838 15.5462C104.597 15.7187 104.347 15.9118 104.097 15.5462C103.46 15.5876 102.824 15.6221 102.187 15.6635C100.6 15.9325 99.0122 16.2429 97.3682 15.9946C96.9976 16.2153 96.6672 16.098 96.3448 15.9118C95.9097 16.3118 95.3859 16.367 94.7976 16.2222C93.6049 15.9463 92.4445 16.9877 91.2357 16.2911C90.8006 16.3601 90.3654 16.4705 89.9303 16.4981C89.5354 16.5256 89.0358 16.4084 89.1163 16.0152L89.1244 16.0221ZM86.4651 16.0359L86.5618 16.0911L86.449 16.1256L86.4651 16.0359Z\" fill=\"#FF00FF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's WildEast are dedicated to creating a nature reserve we can live in, not just visit.\"})]}),className:\"framer-ss3vjc\",\"data-framer-name\":\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0 It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's wild East are dedicated to creating a nature reserve we can live in, not just visit.\",fonts:[\"GF;Poppins-regular\"],name:\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0 It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's wild East are dedicated to creating a nature reserve we can live in, not just visit.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dg5c6OXBF:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2574.9762388506397),positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png\",srcSet:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png 828w\"},style:{rotate:40}},x632maH7S:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5037.465068472346),positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png\",srcSet:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png 828w\"},style:{rotate:49}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(2565.001542958743),positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png\",srcSet:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png 828w\"},className:\"framer-1brxld5\",\"data-framer-name\":\"Handwriting_08 2\",name:\"Handwriting_08 2\",style:{rotate:10},whileHover:animation1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{y:5063}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:4188,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ul76ya-container\",children:/*#__PURE__*/_jsx(GenericButton,{height:\"100%\",id:\"sjvulRzv4\",layoutId:\"sjvulRzv4\",lQdzo7JzD:\"https://mapofdreams.wildeast.co.uk/\",QWESVHvfa:true,RKbNC_BR6:\"Pin name\",style:{height:\"100%\"},variant:\"hVZPBOhnq\",width:\"100%\",wTpRe_7KS:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x632maH7S:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:-1,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-1g2dpx4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k66w4i-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"szc2GFLaa\",isMixedBorderRadius:false,layoutId:\"szc2GFLaa\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/tQHhl1BrqWckIhjRXdxTGXdPBU.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13of6mn\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ter56d\",\"data-framer-name\":\"Our Mission\",name:\"Our Mission\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:726,width:\"calc(min(max(100vw, 1px), 1440px) - 30px)\",y:4310,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5l2682-container hidden-109ky4j hidden-19jccai\",children:/*#__PURE__*/_jsx(DOurMission,{height:\"100%\",id:\"eVKHBXrbC\",layoutId:\"eVKHBXrbC\",style:{width:\"100%\"},variant:\"O80INt8v4\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{height:800,width:\"max(min(max(100vw, 1px), 1440px) - 40px, 1px)\",y:2949},x632maH7S:{height:800,width:\"min(max(100vw, 1px), 1440px)\",y:2515}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ln76py-container hidden-y0832 hidden-mluz5s\",children:/*#__PURE__*/_jsx(MOurMission,{height:\"100%\",id:\"B7L1ZckcH\",layoutId:\"B7L1ZckcH\",style:{width:\"100%\"},variant:\"oju4ifxGm\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qxgt9n\",\"data-framer-name\":\"#8\",name:\"#8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gzg5i8\",\"data-framer-name\":\"#8\",name:\"#8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5615),sizes:\"116px\",src:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png\",srcSet:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png 1200w\"}},dg5c6OXBF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5411),sizes:\"412.4043px\",src:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png\",srcSet:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png 1200w\"},transformTemplate:undefined},x632maH7S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5474),sizes:\"92px\",src:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png\",srcSet:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png 1200w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,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:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6002),sizes:\"116px\",src:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png\",srcSet:\"https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PHoU5fpNFGgvOoy9vNHmZIfZkfc.png 1200w\"},className:\"framer-fg9jkt\",\"data-framer-name\":\"oak-leaf 6\",name:\"oak-leaf 6\",transformTemplate:transformTemplate1})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dg5c6OXBF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5771),pixelHeight:331,pixelWidth:300,src:\"https://framerusercontent.com/images/th0UDx4RnWmTAhx0IA1eqhNU7Lc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,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:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5933),pixelHeight:331,pixelWidth:300,src:\"https://framerusercontent.com/images/th0UDx4RnWmTAhx0IA1eqhNU7Lc.png\"},className:\"framer-12i0f62 hidden-109ky4j hidden-19jccai\",\"data-framer-name\":\"istockphoto-926264556-612x612 4\",name:\"istockphoto-926264556-612x612 4\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obouqx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(250, 255, 30)\",\"--framer-text-transform\":\"uppercase\"},children:\"Wilder by the sum of our partners\"})}),className:\"framer-1eyxi88\",\"data-framer-name\":\"WE means Business\",fonts:[\"GF;Poppins-regular\"],name:\"WE means Business\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-85skao\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"45px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"WildEast is\"}),\"\\xa0proud to be working with these organisations that are helping us on our mission to create a nature reserve we can all\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"live in \"})}),\"\\xa0(not just) visit. If\\xa0you aren\u2019t one of\\xa0our\\xa0partners yet, get in touch.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"45px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})},dg5c6OXBF:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"WildEast is\"}),\"\\xa0proud to be working with these organisations that are helping us on our mission to create a nature reserve we can all\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"live in \"})}),\"\\xa0(not just) visit. If\\xa0you aren\u2019t one of\\xa0our\\xa0partners yet, get in touch.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"54px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"74px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"WildEast is\"}),\"\\xa0proud to be working with these organisations that are helping us on our mission to create a nature reserve we can all\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"live in \"})}),\"\\xa0(not just) visit. If\\xa0you aren\u2019t one of\\xa0our\\xa0partners yet, get in touch.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"74px\",\"--framer-text-color\":\"rgb(250, 255, 30)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1hp7zuq\",\"data-framer-name\":\"WildEast is a movement of change makers -making positive contributions to nature recovery through individual and community action \u2014and that goes for businesses, too.\\xa0If you'd like your organisation to show its wild side (and show its support for our region) get in touch today to see how we can work together.\\xa0\",fonts:[\"GF;Antonio-700\"],name:\"WildEast is a movement of change makers -making positive contributions to nature recovery through individual and community action \u2014and that goes for businesses, too.\\xa0If you'd like your organisation to show its wild side (and show its support for our region) get in touch today to see how we can work together.\\xa0\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":L7wHthuCH\",webPageId:\"GDUKDzqEn\"},implicitPathVariables:undefined},{href:{hash:\":L7wHthuCH\",webPageId:\"GDUKDzqEn\"},implicitPathVariables:undefined},{href:{hash:\":L7wHthuCH\",webPageId:\"GDUKDzqEn\"},implicitPathVariables:undefined},{href:{hash:\":L7wHthuCH\",webPageId:\"GDUKDzqEn\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:5546},dg5c6OXBF:{y:5733},x632maH7S:{y:5514}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:5933,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uymk0t-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{lQdzo7JzD:resolvedLinks[1]},dg5c6OXBF:{lQdzo7JzD:resolvedLinks[3]},x632maH7S:{lQdzo7JzD:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(GenericButton,{height:\"100%\",id:\"atBirNhRu\",layoutId:\"atBirNhRu\",lQdzo7JzD:resolvedLinks[0],QWESVHvfa:true,RKbNC_BR6:\"Let's talk\",style:{height:\"100%\"},variant:\"hVZPBOhnq\",width:\"100%\",wTpRe_7KS:false})})})})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:5668},dg5c6OXBF:{y:5855},x632maH7S:{y:5636}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:556,width:\"100vw\",y:6055,children:/*#__PURE__*/_jsx(Container,{className:\"framer-132rdx6-container\",children:/*#__PURE__*/_jsx(Partners,{height:\"100%\",id:\"n0yP755QC\",layoutId:\"n0yP755QC\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:6388},dg5c6OXBF:{y:6411},x632maH7S:{y:6356}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:650,width:\"100vw\",y:6611,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6c5eu4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{variant:\"zX8Cm5CTP\"},dg5c6OXBF:{variant:\"Il0I2JH2C\"},x632maH7S:{variant:\"hAyD7YVNc\"}},children:/*#__PURE__*/_jsx(GetWild,{cLbTUtO5y:\"rgb(50, 71, 54)\",Dxw_o5q0e:\"rgb(251, 255, 30)\",height:\"100%\",id:\"mXE28ajj1\",layoutId:\"mXE28ajj1\",style:{height:\"100%\",width:\"100%\"},variant:\"Ukacwh2Bo\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:6224},dg5c6OXBF:{y:7061},x632maH7S:{y:6192}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:164,width:\"100vw\",y:7261,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9u5lb-container\",children:/*#__PURE__*/_jsx(TickerText,{ctwi8X0j6:\"rgba(255, 255, 255, 0)\",FY3KK3IAw:\"rgb(18, 201, 53)\",height:\"100%\",id:\"X_OryylSE\",layoutId:\"X_OryylSE\",style:{width:\"100%\"},sUb8sLwex:\"FOLLOW US    \",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12eo0c3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{width:\"min(max(100vw - 40px, 1px), 1148px)\",y:7078},dg5c6OXBF:{y:7305},x632maH7S:{y:7086}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:216,width:\"min(max(100vw - 60px, 1px), 1148px)\",y:7505,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e8ysx4-container\",children:/*#__PURE__*/_jsx(SignUp,{height:\"100%\",id:\"FPCU6iVr_\",layoutId:\"FPCU6iVr_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"R8mVj7XFE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:7334},dg5c6OXBF:{y:7601},x632maH7S:{y:7382}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"100vw\",y:7801,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1unwjpa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{variant:\"Ay9pRTVsW\"},x632maH7S:{variant:\"XAl5tAKoj\"}},children:/*#__PURE__*/_jsx(Footer,{CNqjrKj81:\"rgb(50, 71, 54)\",height:\"100%\",id:\"dnXCUJeay\",layoutId:\"dnXCUJeay\",style:{width:\"100%\"},variant:\"QLyrtersg\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:7855},dg5c6OXBF:{y:8122},x632maH7S:{y:7903}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"100vw\",y:8322,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pri55-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{variant:\"XOyV2IiGE\"},dg5c6OXBF:{variant:\"a5diweKEy\"},x632maH7S:{variant:\"X7VIkVtx7\"}},children:/*#__PURE__*/_jsx(TickerWildEast,{height:\"100%\",Hte7On8B6:\"rgb(18, 201, 53)\",id:\"w_vPEDYeW\",layoutId:\"w_vPEDYeW\",style:{width:\"100%\"},variant:\"xyTb928YN\",width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ilwa78 hidden-y0832 hidden-19jccai hidden-mluz5s\",\"data-framer-name\":\"#7\",name:\"#7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3b94sr\",\"data-framer-name\":\"#7\",name:\"#7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rwjbgu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Pin your name \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"to the map\"})]}),className:\"framer-jua49q\",\"data-framer-name\":\"Pin your name to the map\",fonts:[\"GF;Antonio-700\"],name:\"Pin your name to the map\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15bvdh7\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1780tto\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:225,name:\"Vector\",svg:'<svg width=\"225\" height=\"19\" viewBox=\"0 0 225 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M224.66 0.717307C224.282 0.503495 223.895 0.289682 223.516 0.0758694C219.253 0.062075 214.982 0.0551784 210.719 0.041384C209.067 0.041384 207.407 0.027589 205.755 0.0137947L204.973 0.041384C204.716 0.0275897 204.466 0.0206904 204.208 0.00689602C204.079 0.0206904 203.942 0.0275897 203.813 0.041384C203.555 0.041384 203.297 0.041384 203.039 0.041384C202.782 0.0344868 202.516 0.0206918 202.258 0.0137947C201.879 0.0137947 201.5 0.0137932 201.113 0.00689602C200.976 0.00689602 200.847 0.00689749 200.71 0.0137947C200.461 0.027589 200.211 0.0482804 199.961 0.0620747C199.695 0.324167 199.429 0.29658 199.163 0.0551787C198.776 0.117253 198.398 0.12415 198.019 0.0137947C197.882 0.0137947 197.753 0.0137935 197.616 0.0206907C197.358 0.0206907 197.1 0.0206922 196.842 0.0275893H196.834C196.705 0.289682 196.544 0.262092 196.367 0.0689707C196.262 0.117251 196.165 0.110355 196.077 0.04828C195.44 0.04828 194.796 0.0551775 194.159 0.0620747C193.877 0.344859 193.595 0.296579 193.313 0.0620747C193.087 0.0620747 192.861 0.0620747 192.636 0.0620747C192.467 0.248299 192.281 0.248298 192.096 0.0827654C191.782 0.0827654 191.475 0.0827654 191.161 0.0827654C190.831 0.400036 190.5 0.296578 190.17 0.0827654H190.041C189.823 0.317269 189.606 0.317269 189.396 0.0827654C189.203 0.0827654 189.01 0.0758679 188.816 0.0689707C188.655 0.255195 188.494 0.351757 188.317 0.103459L188.139 0.117253L187.97 0.04828C187.841 0.0344857 187.704 0.0137944 187.575 0C187.333 0.0275887 187.092 0.0551767 186.842 0.0827654C186.697 0.324167 186.544 0.324168 186.391 0.089664C185.238 0.0827669 184.086 0.0689719 182.941 0.0620747C182.845 0.110355 182.748 0.110355 182.643 0.0620747C182.329 0.351756 182.015 0.282784 181.7 0.0620747C181.588 0.110355 181.491 0.103458 181.402 0.0275893C180.766 0.17243 180.129 0.400036 179.484 0.0620747C179.186 0.344859 178.88 0.289682 178.558 0.0758694C178.348 0.158636 178.139 0.158635 177.937 0.0620747C177.284 0.0620747 176.632 0.0689722 175.979 0.0758694C175.592 0.151738 175.213 0.158636 174.835 0.041384C174.706 0.041384 174.577 0.041384 174.448 0.041384C174.23 0.158636 174.013 0.144841 173.787 0.0620747C173.586 0.234504 173.384 0.234504 173.183 0.0620747C173.086 0.124149 172.997 0.117252 172.909 0.04828C172.78 0.04828 172.651 0.04828 172.514 0.04828C172.264 0.0551772 172.006 0.0689722 171.756 0.0758694C171.49 0.0689722 171.232 0.0620744 170.967 0.04828C170.838 0.04828 170.709 0.0413825 170.588 0.0344854C166.583 0.296578 162.57 0.14484 158.565 0.131045C155.954 0.124148 153.343 0.179327 150.74 0.151739C148.491 0.12415 146.203 0.193122 143.963 0.165533C140.65 0.12415 137.33 0.248299 134.01 0.151739C130.456 0.0482811 126.895 0.124149 123.341 0.124149C118.304 0.124149 113.268 0.124149 108.239 0.124149C105.064 0.124149 101.889 0.200019 98.7221 0.165533C95.4665 0.131048 92.2189 0.36555 88.9552 0.110355C86.868 -0.0482804 84.7486 0.110355 82.6454 0.124149C78.6806 0.137944 74.7158 0.144842 70.751 0.151739C66.9474 0.151739 63.1438 0.082767 59.3402 0.151739C56.6809 0.200019 54.0296 0.075869 51.3784 0.172429C49.2429 0.248298 47.0671 0.296579 44.9477 0.172429C41.6195 -0.0206915 38.3075 0.19312 34.9874 0.131045C30.7486 0.0551765 26.4857 0.0275895 22.2388 0.151739C21.0945 0.186225 19.9663 0.103459 18.822 0.151739C17.9839 0.193122 17.9034 0.634541 17.8469 1.13804C17.7905 1.68291 18.1129 1.9588 18.7495 1.97259C19.2008 1.97949 19.6521 1.99328 20.1033 1.99328C27.3963 1.99328 34.6892 1.99328 41.9902 1.99328C50.6289 1.99328 59.2677 2.00708 67.9064 2.00708C75.7956 2.00708 83.6849 1.99328 91.5742 1.99328C98.432 1.99328 105.29 1.97949 112.148 1.97949C121.898 1.97949 131.641 1.97949 141.392 1.98639C148.056 1.98639 154.729 2.03467 161.393 1.98639C162.513 1.97949 163.714 2.28297 164.794 1.7174C169.041 1.44151 173.295 1.73809 177.55 1.66222C177.687 1.4553 177.832 1.4553 177.969 1.66222C178.936 1.51048 179.903 1.97949 180.943 1.52428C181.418 1.31046 181.709 2.06915 181.974 2.62783C180.959 2.57265 180.065 2.95889 179.122 2.683C178.993 2.683 178.856 2.6899 178.727 2.6968C176.277 3.23478 173.803 3.53135 171.265 3.29685C166.277 3.51066 161.361 4.24176 156.397 4.66249C152.714 4.97286 149.031 5.32462 145.349 5.60051C141.094 5.91778 136.871 6.46266 132.592 6.6006C127.354 6.77303 122.156 7.36619 116.91 7.53172C112.679 7.66277 108.457 8.15246 104.226 8.43525C100.495 8.67665 96.7397 8.96633 93.0005 9.24911C88.4314 9.59397 83.8622 9.93194 79.293 10.2906C74.6594 10.6561 70.0257 10.9872 65.3921 11.2907C59.9768 11.6424 54.5776 12.1528 49.1301 12.1183C47.3008 12.1045 45.4473 12.4287 43.6503 12.408C40.991 12.3804 38.3478 12.5046 35.6965 12.6218C33.7383 12.7046 31.8043 12.6977 29.8299 12.9046C27.356 13.1667 24.8014 12.9115 22.2872 12.9598C17.1942 13.0564 12.1093 13.215 7.01632 13.0081C5.17898 12.9322 3.31746 12.8494 1.45595 13.0288C0.609808 13.1115 0.18271 13.4495 0.0134811 14.0427C-0.123513 14.491 0.811271 15.1669 1.56071 15.1876C6.30717 15.3255 11.0536 15.4497 15.8001 15.5738C19.2814 15.6635 22.7626 15.7532 26.2439 15.8497L26.2681 16.5808C26.0424 16.6153 25.8249 16.705 25.6556 16.9257C25.8652 16.8912 26.0666 16.8636 26.2761 16.836V16.9188C26.0747 16.9188 25.8652 16.9188 25.6556 16.9326C25.5428 17.0705 25.43 17.2016 25.3252 17.3395C24.6564 18.2223 24.9868 18.8431 26.2117 18.9741C26.5904 19.0155 26.9853 18.9948 27.3721 18.9948C38.799 18.9603 50.218 18.9121 61.6449 18.8914C71.4602 18.8776 81.2674 18.8914 91.0826 18.9121C94.1046 18.9121 97.1184 18.9603 100.14 18.9465C101.099 18.9465 102.308 18.9259 102.8 18.2292C103.412 17.3671 104.307 17.4568 105.104 17.3326C106.555 17.1119 108.038 17.0843 109.504 16.9326C114.283 16.436 119.062 15.9187 123.84 15.4014C128.49 14.8979 133.132 14.3875 137.774 13.8702C141.142 13.4978 144.51 13.077 147.879 12.7322C150.554 12.4632 153.206 12.0149 155.913 11.9873C156.171 11.9597 156.421 11.939 156.679 11.9114C156.816 11.9183 156.945 11.9252 157.082 11.9321L157.227 11.8907L157.372 11.9252C158.653 11.47 160.007 11.6493 161.329 11.6148C161.53 11.5045 161.748 11.5045 161.965 11.5873C163.657 11.1458 165.414 11.3872 167.139 11.2631C167.26 11.2631 167.389 11.27 167.509 11.2769C167.63 11.2769 167.751 11.2769 167.88 11.27C168.025 11.0838 168.162 11.0976 168.307 11.27C168.428 11.2355 168.549 11.2355 168.67 11.27C169.927 10.8562 171.232 10.9665 172.538 10.9872C172.675 10.9872 172.804 10.9803 172.941 10.9734C173.199 10.9734 173.449 10.9734 173.706 10.9734L173.876 10.9113L174.053 10.9389C174.206 10.7872 174.351 10.7389 174.512 10.9182C174.633 10.9182 174.762 10.9182 174.883 10.9182L175.012 10.87L175.141 10.9182C176.551 10.4354 178.058 10.7803 179.501 10.5872C179.799 10.2768 180.226 10.2768 180.645 10.2492C180.879 9.75261 180.588 9.38016 180.242 9.02151C180.032 8.98702 179.911 8.87667 179.855 8.71114C179.202 8.64216 178.509 8.71803 177.945 8.33869C177.945 8.34558 177.945 8.35248 177.953 8.35938L177.784 8.37317L177.615 8.33869C177.317 8.59388 177.018 8.64216 176.712 8.33869C176.543 8.33869 176.374 8.33869 176.205 8.34558C175.447 8.89736 174.553 8.44904 173.747 8.60078C173.61 8.60078 173.481 8.60078 173.344 8.60768C172.586 8.8077 171.821 8.60768 171.063 8.66975C170.902 8.90426 170.733 8.84908 170.572 8.65596C170.491 8.69734 170.419 8.69734 170.338 8.65596C169.202 9.17325 167.985 8.86287 166.8 8.91805C166.43 9.07669 166.035 9.00771 165.64 8.99392C165.342 9.34568 165.116 8.96633 164.85 8.93874C164.753 9.01461 164.649 9.02841 164.536 8.98013C163.819 9.30429 163.101 9.35257 162.376 9.00082H162.279C161.264 9.2767 160.289 8.82149 159.241 8.92495C153.496 9.5181 147.71 9.71123 141.948 10.1113C129.457 10.9803 116.967 11.9873 104.468 12.7391C93.3148 13.415 82.1619 14.2151 70.9767 14.491L60.7746 13.9254C64.2317 13.7323 67.6969 13.5323 71.1459 13.2702C81.2029 12.5253 91.2519 11.67 101.325 10.9734C110.367 10.3458 119.408 9.74571 128.45 9.17325C138.33 8.5456 148.169 7.59379 158.025 6.73164C159.411 6.6075 160.869 6.62819 162.142 5.97985C162.473 5.96606 162.803 5.95226 163.142 5.93847C163.375 5.67638 163.617 5.67638 163.851 5.93847H163.915C164.286 5.60051 164.745 5.59361 165.229 5.67638C165.688 5.55912 166.148 5.49015 166.623 5.6143C167.26 5.17288 168.001 5.32462 168.718 5.32462L168.847 5.26255L168.992 5.28324C170.161 4.91079 171.378 4.95217 172.586 4.98666L172.731 4.93148L172.884 4.95217C173.763 4.46937 174.746 4.72457 175.689 4.6418C176.043 4.6349 176.39 4.62111 176.745 4.61421C177.486 4.11072 178.348 4.36591 179.162 4.33143C179.404 4.31763 179.637 4.31074 179.879 4.29694C181.007 3.76586 182.224 4.01416 183.409 4.00726C183.747 3.88311 184.086 3.85552 184.44 3.94519C185.335 3.48997 186.31 3.64171 187.269 3.69689L187.438 3.62102L187.623 3.63481C187.801 3.44859 187.986 3.44169 188.188 3.61412C188.486 3.61412 188.792 3.61412 189.09 3.61412C189.84 3.11753 190.694 3.33823 191.524 3.35892C191.774 3.34513 192.023 3.32444 192.273 3.31064C193.53 2.80025 194.868 3.02786 196.174 3.00027C196.649 2.84164 197.133 2.90371 197.616 2.96579C199.429 2.47609 201.283 2.62093 203.128 2.683L203.281 2.61403L203.45 2.62783C204.288 2.34504 205.135 2.15192 205.981 2.62093H206.085C207.77 2.04846 209.535 2.40022 211.259 2.31745C211.775 2.21399 212.283 2.16571 212.798 2.32435H213.572C213.789 2.32435 214.007 2.30366 214.217 2.29676C214.523 2.04157 214.829 2.00708 215.135 2.29676C215.635 2.29676 216.134 2.29676 216.634 2.29676C216.811 2.08295 216.981 2.13812 217.158 2.31055C217.472 2.23468 217.778 2.21399 218.093 2.31055C218.681 2.07605 219.269 1.9588 219.858 2.31055L219.938 2.26917L220.027 2.31055C220.365 2.05536 220.704 1.98639 221.05 2.30366C221.244 2.31055 221.437 2.31745 221.63 2.32435C222.356 1.93121 223.194 2.06915 223.975 1.96569C224.314 1.57945 225.507 1.57945 224.757 0.703512L224.66 0.717307ZM109.093 14.2772C110.423 14.6496 111.729 14.1668 113.058 14.1944C113.711 14.2082 114.372 14.1944 115.121 14.1944C114.621 15.0152 113.735 15.0496 113.074 15.1393C112.156 15.2635 111.189 15.2014 110.246 15.36C110.036 15.3945 109.746 15.0772 109.496 14.9186C109.335 15.2152 109.037 15.2497 108.707 15.2428C108.384 15.2704 108.086 15.2704 107.973 14.9393C108.207 14.5393 108.666 14.4289 109.093 14.2703V14.2772ZM89.1244 16.0221C89.2211 15.56 89.7449 15.9187 90.0673 15.8635C91.4775 15.3876 92.9522 15.5738 94.4108 15.5807C95.0555 15.629 95.7082 15.2841 96.3448 15.6014C96.4496 15.5531 96.5543 15.5393 96.6672 15.5669C98.4723 15.0772 100.334 15.229 102.179 15.1876C103.058 15.0083 103.944 14.891 104.847 14.9393C104.975 14.8979 105.096 14.9186 105.201 14.9945C105.926 14.9393 106.652 14.891 107.546 14.822C106.821 16.0359 105.628 15.1669 104.838 15.5462C104.597 15.7187 104.347 15.9118 104.097 15.5462C103.46 15.5876 102.824 15.6221 102.187 15.6635C100.6 15.9325 99.0122 16.2429 97.3682 15.9946C96.9976 16.2153 96.6672 16.098 96.3448 15.9118C95.9097 16.3118 95.3859 16.367 94.7976 16.2222C93.6049 15.9463 92.4445 16.9877 91.2357 16.2911C90.8006 16.3601 90.3654 16.4705 89.9303 16.4981C89.5354 16.5256 89.0358 16.4084 89.1163 16.0152L89.1244 16.0221ZM86.4651 16.0359L86.5618 16.0911L86.449 16.1256L86.4651 16.0359Z\" fill=\"#FF00FF\"/>\\n<path d=\"M224.66 0.717307C224.282 0.503495 223.895 0.289682 223.516 0.0758694C219.253 0.062075 214.982 0.0551784 210.719 0.041384C209.067 0.041384 207.407 0.027589 205.755 0.0137947L204.973 0.041384C204.716 0.0275897 204.466 0.0206904 204.208 0.00689602C204.079 0.0206904 203.942 0.0275897 203.813 0.041384C203.555 0.041384 203.297 0.041384 203.039 0.041384C202.782 0.0344868 202.516 0.0206918 202.258 0.0137947C201.879 0.0137947 201.5 0.0137932 201.113 0.00689602C200.976 0.00689602 200.847 0.00689749 200.71 0.0137947C200.461 0.027589 200.211 0.0482804 199.961 0.0620747C199.695 0.324167 199.429 0.29658 199.163 0.0551787C198.776 0.117253 198.398 0.12415 198.019 0.0137947C197.882 0.0137947 197.753 0.0137935 197.616 0.0206907C197.358 0.0206907 197.1 0.0206922 196.842 0.0275893H196.834C196.705 0.289682 196.544 0.262092 196.367 0.0689707C196.262 0.117251 196.165 0.110355 196.077 0.04828C195.44 0.04828 194.796 0.0551775 194.159 0.0620747C193.877 0.344859 193.595 0.296579 193.313 0.0620747C193.087 0.0620747 192.861 0.0620747 192.636 0.0620747C192.467 0.248299 192.281 0.248298 192.096 0.0827654C191.782 0.0827654 191.475 0.0827654 191.161 0.0827654C190.831 0.400036 190.5 0.296578 190.17 0.0827654H190.041C189.823 0.317269 189.606 0.317269 189.396 0.0827654C189.203 0.0827654 189.01 0.0758679 188.816 0.0689707C188.655 0.255195 188.494 0.351757 188.317 0.103459L188.139 0.117253L187.97 0.04828C187.841 0.0344857 187.704 0.0137944 187.575 0C187.333 0.0275887 187.092 0.0551767 186.842 0.0827654C186.697 0.324167 186.544 0.324168 186.391 0.089664C185.238 0.0827669 184.086 0.0689719 182.941 0.0620747C182.845 0.110355 182.748 0.110355 182.643 0.0620747C182.329 0.351756 182.015 0.282784 181.7 0.0620747C181.588 0.110355 181.491 0.103458 181.402 0.0275893C180.766 0.17243 180.129 0.400036 179.484 0.0620747C179.186 0.344859 178.88 0.289682 178.558 0.0758694C178.348 0.158636 178.139 0.158635 177.937 0.0620747C177.284 0.0620747 176.632 0.0689722 175.979 0.0758694C175.592 0.151738 175.213 0.158636 174.835 0.041384C174.706 0.041384 174.577 0.041384 174.448 0.041384C174.23 0.158636 174.013 0.144841 173.787 0.0620747C173.586 0.234504 173.384 0.234504 173.183 0.0620747C173.086 0.124149 172.997 0.117252 172.909 0.04828C172.78 0.04828 172.651 0.04828 172.514 0.04828C172.264 0.0551772 172.006 0.0689722 171.756 0.0758694C171.49 0.0689722 171.232 0.0620744 170.967 0.04828C170.838 0.04828 170.709 0.0413825 170.588 0.0344854C166.583 0.296578 162.57 0.14484 158.565 0.131045C155.954 0.124148 153.343 0.179327 150.74 0.151739C148.491 0.12415 146.203 0.193122 143.963 0.165533C140.65 0.12415 137.33 0.248299 134.01 0.151739C130.456 0.0482811 126.895 0.124149 123.341 0.124149C118.304 0.124149 113.268 0.124149 108.239 0.124149C105.064 0.124149 101.889 0.200019 98.7221 0.165533C95.4665 0.131048 92.2189 0.36555 88.9552 0.110355C86.868 -0.0482804 84.7486 0.110355 82.6454 0.124149C78.6806 0.137944 74.7158 0.144842 70.751 0.151739C66.9474 0.151739 63.1438 0.082767 59.3402 0.151739C56.6809 0.200019 54.0296 0.075869 51.3784 0.172429C49.2429 0.248298 47.0671 0.296579 44.9477 0.172429C41.6195 -0.0206915 38.3075 0.19312 34.9874 0.131045C30.7486 0.0551765 26.4857 0.0275895 22.2388 0.151739C21.0945 0.186225 19.9663 0.103459 18.822 0.151739C17.9839 0.193122 17.9034 0.634541 17.8469 1.13804C17.7905 1.68291 18.1129 1.9588 18.7495 1.97259C19.2008 1.97949 19.6521 1.99328 20.1033 1.99328C27.3963 1.99328 34.6892 1.99328 41.9902 1.99328C50.6289 1.99328 59.2677 2.00708 67.9064 2.00708C75.7956 2.00708 83.6849 1.99328 91.5742 1.99328C98.432 1.99328 105.29 1.97949 112.148 1.97949C121.898 1.97949 131.641 1.97949 141.392 1.98639C148.056 1.98639 154.729 2.03467 161.393 1.98639C162.513 1.97949 163.714 2.28297 164.794 1.7174C169.041 1.44151 173.295 1.73809 177.55 1.66222C177.687 1.4553 177.832 1.4553 177.969 1.66222C178.936 1.51048 179.903 1.97949 180.943 1.52428C181.418 1.31046 181.709 2.06915 181.974 2.62783C180.959 2.57265 180.065 2.95889 179.122 2.683C178.993 2.683 178.856 2.6899 178.727 2.6968C176.277 3.23478 173.803 3.53135 171.265 3.29685C166.277 3.51066 161.361 4.24176 156.397 4.66249C152.714 4.97286 149.031 5.32462 145.349 5.60051C141.094 5.91778 136.871 6.46266 132.592 6.6006C127.354 6.77303 122.156 7.36619 116.91 7.53172C112.679 7.66277 108.457 8.15246 104.226 8.43525C100.495 8.67665 96.7397 8.96633 93.0005 9.24911C88.4314 9.59397 83.8622 9.93194 79.293 10.2906C74.6594 10.6561 70.0257 10.9872 65.3921 11.2907C59.9768 11.6424 54.5776 12.1528 49.1301 12.1183C47.3008 12.1045 45.4473 12.4287 43.6503 12.408C40.991 12.3804 38.3478 12.5046 35.6965 12.6218C33.7383 12.7046 31.8043 12.6977 29.8299 12.9046C27.356 13.1667 24.8014 12.9115 22.2872 12.9598C17.1942 13.0564 12.1093 13.215 7.01632 13.0081C5.17898 12.9322 3.31746 12.8494 1.45595 13.0288C0.609808 13.1115 0.18271 13.4495 0.0134811 14.0427C-0.123513 14.491 0.811271 15.1669 1.56071 15.1876C6.30717 15.3255 11.0536 15.4497 15.8001 15.5738C19.2814 15.6635 22.7626 15.7532 26.2439 15.8497L26.2681 16.5808C26.0424 16.6153 25.8249 16.705 25.6556 16.9257C25.8652 16.8912 26.0666 16.8636 26.2761 16.836V16.9188C26.0747 16.9188 25.8652 16.9188 25.6556 16.9326C25.5428 17.0705 25.43 17.2016 25.3252 17.3395C24.6564 18.2223 24.9868 18.8431 26.2117 18.9741C26.5904 19.0155 26.9853 18.9948 27.3721 18.9948C38.799 18.9603 50.218 18.9121 61.6449 18.8914C71.4602 18.8776 81.2674 18.8914 91.0826 18.9121C94.1046 18.9121 97.1184 18.9603 100.14 18.9465C101.099 18.9465 102.308 18.9259 102.8 18.2292C103.412 17.3671 104.307 17.4568 105.104 17.3326C106.555 17.1119 108.038 17.0843 109.504 16.9326C114.283 16.436 119.062 15.9187 123.84 15.4014C128.49 14.8979 133.132 14.3875 137.774 13.8702C141.142 13.4978 144.51 13.077 147.879 12.7322C150.554 12.4632 153.206 12.0149 155.913 11.9873C156.171 11.9597 156.421 11.939 156.679 11.9114C156.816 11.9183 156.945 11.9252 157.082 11.9321L157.227 11.8907L157.372 11.9252C158.653 11.47 160.007 11.6493 161.329 11.6148C161.53 11.5045 161.748 11.5045 161.965 11.5873C163.657 11.1458 165.414 11.3872 167.139 11.2631C167.26 11.2631 167.389 11.27 167.509 11.2769C167.63 11.2769 167.751 11.2769 167.88 11.27C168.025 11.0838 168.162 11.0976 168.307 11.27C168.428 11.2355 168.549 11.2355 168.67 11.27C169.927 10.8562 171.232 10.9665 172.538 10.9872C172.675 10.9872 172.804 10.9803 172.941 10.9734C173.199 10.9734 173.449 10.9734 173.706 10.9734L173.876 10.9113L174.053 10.9389C174.206 10.7872 174.351 10.7389 174.512 10.9182C174.633 10.9182 174.762 10.9182 174.883 10.9182L175.012 10.87L175.141 10.9182C176.551 10.4354 178.058 10.7803 179.501 10.5872C179.799 10.2768 180.226 10.2768 180.645 10.2492C180.879 9.75261 180.588 9.38016 180.242 9.02151C180.032 8.98702 179.911 8.87667 179.855 8.71114C179.202 8.64216 178.509 8.71803 177.945 8.33869C177.945 8.34558 177.945 8.35248 177.953 8.35938L177.784 8.37317L177.615 8.33869C177.317 8.59388 177.018 8.64216 176.712 8.33869C176.543 8.33869 176.374 8.33869 176.205 8.34558C175.447 8.89736 174.553 8.44904 173.747 8.60078C173.61 8.60078 173.481 8.60078 173.344 8.60768C172.586 8.8077 171.821 8.60768 171.063 8.66975C170.902 8.90426 170.733 8.84908 170.572 8.65596C170.491 8.69734 170.419 8.69734 170.338 8.65596C169.202 9.17325 167.985 8.86287 166.8 8.91805C166.43 9.07669 166.035 9.00771 165.64 8.99392C165.342 9.34568 165.116 8.96633 164.85 8.93874C164.753 9.01461 164.649 9.02841 164.536 8.98013C163.819 9.30429 163.101 9.35257 162.376 9.00082H162.279C161.264 9.2767 160.289 8.82149 159.241 8.92495C153.496 9.5181 147.71 9.71123 141.948 10.1113C129.457 10.9803 116.967 11.9873 104.468 12.7391C93.3148 13.415 82.1619 14.2151 70.9767 14.491L60.7746 13.9254C64.2317 13.7323 67.6969 13.5323 71.1459 13.2702C81.2029 12.5253 91.2519 11.67 101.325 10.9734C110.367 10.3458 119.408 9.74571 128.45 9.17325C138.33 8.5456 148.169 7.59379 158.025 6.73164C159.411 6.6075 160.869 6.62819 162.142 5.97985C162.473 5.96606 162.803 5.95226 163.142 5.93847C163.375 5.67638 163.617 5.67638 163.851 5.93847H163.915C164.286 5.60051 164.745 5.59361 165.229 5.67638C165.688 5.55912 166.148 5.49015 166.623 5.6143C167.26 5.17288 168.001 5.32462 168.718 5.32462L168.847 5.26255L168.992 5.28324C170.161 4.91079 171.378 4.95217 172.586 4.98666L172.731 4.93148L172.884 4.95217C173.763 4.46937 174.746 4.72457 175.689 4.6418C176.043 4.6349 176.39 4.62111 176.745 4.61421C177.486 4.11072 178.348 4.36591 179.162 4.33143C179.404 4.31763 179.637 4.31074 179.879 4.29694C181.007 3.76586 182.224 4.01416 183.409 4.00726C183.747 3.88311 184.086 3.85552 184.44 3.94519C185.335 3.48997 186.31 3.64171 187.269 3.69689L187.438 3.62102L187.623 3.63481C187.801 3.44859 187.986 3.44169 188.188 3.61412C188.486 3.61412 188.792 3.61412 189.09 3.61412C189.84 3.11753 190.694 3.33823 191.524 3.35892C191.774 3.34513 192.023 3.32444 192.273 3.31064C193.53 2.80025 194.868 3.02786 196.174 3.00027C196.649 2.84164 197.133 2.90371 197.616 2.96579C199.429 2.47609 201.283 2.62093 203.128 2.683L203.281 2.61403L203.45 2.62783C204.288 2.34504 205.135 2.15192 205.981 2.62093H206.085C207.77 2.04846 209.535 2.40022 211.259 2.31745C211.775 2.21399 212.283 2.16571 212.798 2.32435H213.572C213.789 2.32435 214.007 2.30366 214.217 2.29676C214.523 2.04157 214.829 2.00708 215.135 2.29676C215.635 2.29676 216.134 2.29676 216.634 2.29676C216.811 2.08295 216.981 2.13812 217.158 2.31055C217.472 2.23468 217.778 2.21399 218.093 2.31055C218.681 2.07605 219.269 1.9588 219.858 2.31055L219.938 2.26917L220.027 2.31055C220.365 2.05536 220.704 1.98639 221.05 2.30366C221.244 2.31055 221.437 2.31745 221.63 2.32435C222.356 1.93121 223.194 2.06915 223.975 1.96569C224.314 1.57945 225.507 1.57945 224.757 0.703512L224.66 0.717307ZM109.093 14.2772C110.423 14.6496 111.729 14.1668 113.058 14.1944C113.711 14.2082 114.372 14.1944 115.121 14.1944C114.621 15.0152 113.735 15.0496 113.074 15.1393C112.156 15.2635 111.189 15.2014 110.246 15.36C110.036 15.3945 109.746 15.0772 109.496 14.9186C109.335 15.2152 109.037 15.2497 108.707 15.2428C108.384 15.2704 108.086 15.2704 107.973 14.9393C108.207 14.5393 108.666 14.4289 109.093 14.2703V14.2772ZM89.1244 16.0221C89.2211 15.56 89.7449 15.9187 90.0673 15.8635C91.4775 15.3876 92.9522 15.5738 94.4108 15.5807C95.0555 15.629 95.7082 15.2841 96.3448 15.6014C96.4496 15.5531 96.5543 15.5393 96.6672 15.5669C98.4723 15.0772 100.334 15.229 102.179 15.1876C103.058 15.0083 103.944 14.891 104.847 14.9393C104.975 14.8979 105.096 14.9186 105.201 14.9945C105.926 14.9393 106.652 14.891 107.546 14.822C106.821 16.0359 105.628 15.1669 104.838 15.5462C104.597 15.7187 104.347 15.9118 104.097 15.5462C103.46 15.5876 102.824 15.6221 102.187 15.6635C100.6 15.9325 99.0122 16.2429 97.3682 15.9946C96.9976 16.2153 96.6672 16.098 96.3448 15.9118C95.9097 16.3118 95.3859 16.367 94.7976 16.2222C93.6049 15.9463 92.4445 16.9877 91.2357 16.2911C90.8006 16.3601 90.3654 16.4705 89.9303 16.4981C89.5354 16.5256 89.0358 16.4084 89.1163 16.0152L89.1244 16.0221ZM86.4651 16.0359L86.5618 16.0911L86.449 16.1256L86.4651 16.0359Z\" fill=\"#FF00FF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's wild East are dedicated to creating a nature reserve we can live in, not just visit.\"})]}),className:\"framer-1hjghza\",\"data-framer-name\":\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0 It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's wild East are dedicated to creating a nature reserve we can live in, not just visit.\",fonts:[\"GF;Poppins-regular\"],name:\"Want to show your support for WildEast? It couldn't be easier. Just pin your name to our virtual map and join our community of amazing people.\\xa0 It takes just a few seconds. And, by adding your name, you'll be helping us show the world that the people of England's wild East are dedicated to creating a nature reserve we can live in, not just visit.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4950.8984375),positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png\",srcSet:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png 828w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"207px\",src:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png\",srcSet:\"https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/XGlryhTdkAOhOD0aHFFBsaHQx7s.png 828w\"},className:\"framer-ta5vc9\",\"data-framer-name\":\"Handwriting_08 2\",name:\"Handwriting_08 2\",style:{rotate:90},whileHover:animation1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:4897}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pju6wq-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"HOUx6Ca78\",layoutId:\"HOUx6Ca78\",RKbNC_BR6:\"Pin Name\",style:{height:\"100%\"},variant:\"phnSEb4xB\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4389),pixelHeight:589,pixelWidth:335,sizes:\"350px\",src:\"https://framerusercontent.com/images/XoxGSgJ3Aom3eISCWb3UyMq7SnQ.png\",srcSet:\"https://framerusercontent.com/images/XoxGSgJ3Aom3eISCWb3UyMq7SnQ.png 335w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:-1,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:589,pixelWidth:335,sizes:\"350px\",src:\"https://framerusercontent.com/images/XoxGSgJ3Aom3eISCWb3UyMq7SnQ.png\",srcSet:\"https://framerusercontent.com/images/XoxGSgJ3Aom3eISCWb3UyMq7SnQ.png 335w\"},className:\"framer-14vw5i0\",transformTemplate:transformTemplate1})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcogjt hidden-y0832 hidden-19jccai hidden-mluz5s\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2046.5833333333337),pixelHeight:666,pixelWidth:1e3,sizes:\"315px\",src:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png\",srcSet:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:666,pixelWidth:1e3,sizes:\"315px\",src:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png\",srcSet:\"https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/AIuh4gB2ZSit6NzZYelP8zNHUs.png 1000w\"},className:\"framer-1ii7ot7\",\"data-framer-name\":\"plant\",name:\"plant\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9d589\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15dcwnl\",\"data-framer-name\":\"Content Holder\",name:\"Content Holder\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nav3o4\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qxg8u1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19b8vbt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:309,loading:getLoadingLazyAtYPosition(993.0000000000001),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f23iUrsh1WguzKUAOlC1QgMcE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:144,intrinsicWidth:309,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/f23iUrsh1WguzKUAOlC1QgMcE.svg\"},className:\"framer-1g8t8yz\",\"data-framer-name\":\"scribble_1\",name:\"scribble_1\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b25pby03MDA=\",\"--framer-font-family\":'\"Antonio\", \"Antonio Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Imagine if we could live in a nature rese\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0.01em\"},children:\"r\"}),\"ve, not just visit one.\"]})}),className:\"framer-1ytmhjt\",fonts:[\"GF;Antonio-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rayu3c\",\"data-framer-name\":\"crown\",name:\"crown\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1143),pixelHeight:1391,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"344px\",src:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png\",srcSet:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png?scale-down-to=1024 736w,https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1391,pixelWidth:1e3,positionX:\"center\",positionY:\"top\",sizes:\"344px\",src:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png\",srcSet:\"https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png?scale-down-to=1024 736w,https://framerusercontent.com/images/r0UMhopKJ0Shwga1MbEHuJdYp4U.png 1000w\"},className:\"framer-1rrmdfw\",\"data-framer-name\":\"cbdb891d61eadbf9b664481d53933be5 2\",name:\"cbdb891d61eadbf9b664481d53933be5 2\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ghpwf4\",\"data-framer-name\":\"Rectangle 908\",name:\"Rectangle 908\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ep5lez\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fggg61\",\"data-framer-name\":\"Content Holder\",name:\"Content Holder\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rb7128\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Efforts to protect nature are nothing new \u2013 but until now, these efforts have been made by\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"too few\"}),\"\\xa0people in\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"too few\"}),\"\\xa0places.\\xa0For nature to thrive\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"like us,\"}),\"\\xa0it needs to be well-networked and connected, just like us.\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hbgx17\",\"data-styles-preset\":\"yUyPN1x5w\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"WildEast wants nature recovery to be about\\xa0\",/*#__PURE__*/_jsx(\"em\",{children:\"everyone, everywhere\\xa0\"}),\"doing their bit, wherever they can, be it a backyard, schoolyard, churchyard, farmyard, housing estate, or industrial estate.\\xa0\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hbgx17\",\"data-styles-preset\":\"yUyPN1x5w\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the Wild East thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\"})]}),className:\"framer-q5kl3o\",\"data-framer-name\":\"Nature holds on in too small pockets, supported by too few people. It cannot survive, let alone thrive on its own. We all need to work together to reconnect -both existing habitats and our relationship with the natural world. It\u2019s got to be about EVERYONE.\\xa0 That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the Wild East thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\",fonts:[\"GF;Poppins-regular\",\"GF;Poppins-italic\"],name:\"Nature holds on in too small pockets, supported by too few people. It cannot survive, let alone thrive on its own. We all need to work together to reconnect -both existing habitats and our relationship with the natural world. It\u2019s got to be about EVERYONE.\\xa0 That's why we're gathering the support of a million untameable people across the region to give a voice to nature, help restore our natural spaces and let the Wild East thrive again. This way, we can be wilder than the sum of our parts. Start your journey now towards being be part of a new regional identity, The Wild East.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiP6DO3cc:{y:1924.6347222222225}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-amxmeh-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"kXq3Uc8Ag\",layoutId:\"kXq3Uc8Ag\",RKbNC_BR6:\"Pin your name to the map\",style:{height:\"100%\"},variant:\"phnSEb4xB\",width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-QT8BN { background: white; }`,\".framer-QT8BN.framer-aww15t, .framer-QT8BN .framer-aww15t { display: block; }\",\".framer-QT8BN.framer-y0832 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-QT8BN .framer-1448c6a-container, .framer-QT8BN .framer-5l2682-container, .framer-QT8BN .framer-ln76py-container, .framer-QT8BN .framer-132rdx6-container, .framer-QT8BN .framer-s9u5lb-container, .framer-QT8BN .framer-1unwjpa-container, .framer-QT8BN .framer-pri55-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1a51n7i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-thrjc1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-QT8BN .framer-99q5ht { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1s7khd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-fd8g0t { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-gkzpj5-container, .framer-QT8BN .framer-9lfky2-container, .framer-QT8BN .framer-ul76ya-container, .framer-QT8BN .framer-uymk0t-container, .framer-QT8BN .framer-pju6wq-container, .framer-QT8BN .framer-amxmeh-container { flex: none; height: 42px; position: relative; width: auto; }\",\".framer-QT8BN .framer-gyr1my { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-QT8BN .framer-1at8372-container { aspect-ratio: 1.9866220735785953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 580px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; z-index: 6; }\",\".framer-QT8BN .framer-1hy5msn { align-content: center; align-items: center; aspect-ratio: 0.926829268292683 / 1; background-color: #fbff1e; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; bottom: -20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 41px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; text-decoration: none; transform: translateX(-50%); width: 38px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QT8BN .framer-1ixjo34 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); position: relative; width: 16px; }\",\".framer-QT8BN .framer-kv2677 { align-content: center; align-items: center; background-color: #fbff1e; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-QT8BN .framer-173rp3i-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; z-index: 0; }\",\".framer-QT8BN .framer-1l28dh9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 34px 0px 45px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QT8BN .framer-10onmg2, .framer-QT8BN .framer-lbe25e, .framer-QT8BN .framer-1penhth, .framer-QT8BN .framer-1eyxi88 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QT8BN .framer-11qmcak { flex: none; height: 956px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-QT8BN .framer-12w4vfz { align-content: center; align-items: center; background-color: #324736; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1w5auas { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1055px; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-pyybuu { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-QT8BN .framer-70fqf1, .framer-QT8BN .framer-15dcwnl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-QT8BN .framer-1wyn7cu, .framer-QT8BN .framer-1nav3o4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 1px; z-index: 1; }\",\".framer-QT8BN .framer-1rgj0s0 { flex: none; height: 420px; overflow: hidden; position: relative; width: 906px; }\",\".framer-QT8BN .framer-11k0thz { flex: none; height: 144px; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 309px; }\",\".framer-QT8BN .framer-xcgh87, .framer-QT8BN .framer-1g8t8yz { aspect-ratio: 2.1458333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 144px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QT8BN .framer-12pc4r3, .framer-QT8BN .framer-1ytmhjt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; max-width: 100%; position: absolute; right: 0px; top: -2px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-4wp9r { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 411px; overflow: hidden; position: absolute; right: 30px; top: 60px; width: 537px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QT8BN .framer-1x2g8cv { bottom: 0px; flex: none; height: 410px; left: 0px; position: absolute; right: 0px; }\",\".framer-QT8BN .framer-1y7sdte { background-color: rgba(0, 0, 0, 0.25); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 408px; left: 0px; position: absolute; right: 0px; top: calc(50.121654501216575% - 408px / 2); }\",\".framer-QT8BN .framer-5slk8t { bottom: 110px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 100%; }\",\".framer-QT8BN .framer-cvqf09 { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 100%; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 100%; }\",\".framer-QT8BN .framer-1tgcifb { aspect-ratio: 0.8638392857142857 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 135px; flex: none; height: var(--framer-aspect-ratio-supported, 448px); left: 170px; position: absolute; width: 387px; z-index: 0; }\",\".framer-QT8BN .framer-1vxloew { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-18zzwlu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; max-width: 828px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 5; }\",\".framer-QT8BN .framer-1nusaax { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 551px; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-akqqwg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 100%; z-index: 5; }\",\".framer-QT8BN .framer-12z1jhb { aspect-ratio: 1.3524590163934427 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -50px; flex: none; height: var(--framer-aspect-ratio-supported, 122px); left: 54%; position: absolute; transform: translateX(-50%); width: 165px; z-index: 1; }\",\".framer-QT8BN .framer-1ad89g7 { aspect-ratio: 1.4190476190476191 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); position: absolute; right: 739px; top: -26px; width: 149px; z-index: 1; }\",\".framer-QT8BN .framer-10cwkca { aspect-ratio: 1.3636363636363635 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 121px); position: absolute; right: 90px; top: -50px; width: 165px; z-index: 1; }\",\".framer-QT8BN .framer-whld2q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 95px); position: absolute; right: 49px; top: 87%; transform: translateY(-50%); width: 95px; z-index: 1; }\",\".framer-QT8BN .framer-4v02ry { aspect-ratio: 1.3524590163934427 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 122px); left: -87px; position: absolute; top: 50%; transform: translateY(-50%); width: 165px; z-index: 1; }\",\".framer-QT8BN .framer-azv728 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1250px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-QT8BN .framer-12gq7nb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 343px; justify-content: flex-start; min-width: 60%; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QT8BN .framer-1dudv11 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QT8BN .framer-17qwhf7, .framer-QT8BN .framer-1b1rjih, .framer-QT8BN .framer-rqkiji { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QT8BN .framer-zzwda2, .framer-QT8BN .framer-ilwa78 { align-content: center; align-items: center; background-color: #324736; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-351cna { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-1dadghc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QT8BN .framer-1ynybgi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 672px; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-z7vfcf { flex: none; height: 19px; left: 293px; overflow: hidden; position: absolute; top: 124px; width: 225px; }\",\".framer-QT8BN .framer-1ygezj7 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-QT8BN .framer-ss3vjc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 462px; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-1brxld5 { aspect-ratio: 2.0740741875515596 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: absolute; right: -86px; top: 45px; width: 207px; z-index: 5; }\",\".framer-QT8BN .framer-1g2dpx4 { align-content: center; align-items: center; aspect-ratio: 0.9551820728291317 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: -80px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 679px); justify-content: center; left: 728px; overflow: hidden; padding: 0px; position: absolute; width: 45%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QT8BN .framer-1k66w4i-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-13of6mn { align-content: center; align-items: center; background-color: #fbff1e; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1ter56d { 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; max-width: 1440px; overflow: hidden; padding: 0px 0px 0px 30px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-1qxgt9n { align-content: center; align-items: center; background-color: #38336c; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-gzg5i8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 80px 30px 80px 30px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-fg9jkt { aspect-ratio: 1.5106382978723405 / 1; bottom: -24px; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 50%; position: absolute; transform: translateX(-50%); width: 116px; z-index: 1; }\",\".framer-QT8BN .framer-12i0f62 { aspect-ratio: 1.4285714285714286 / 1; bottom: 38px; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 1182px; position: absolute; width: 120px; z-index: 1; }\",\".framer-QT8BN .framer-obouqx { align-content: flex-start; align-items: flex-start; 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-QT8BN .framer-85skao { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1hp7zuq, .framer-QT8BN .framer-jua49q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-6c5eu4-container { flex: none; height: 650px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-12eo0c3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 30px 80px 30px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-e8ysx4-container { flex: 1 0 0px; height: auto; max-width: 1148px; position: relative; width: 1px; }\",\".framer-QT8BN .framer-3b94sr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1190px; justify-content: flex-start; max-width: 390px; overflow: visible; padding: 80px 20px 80px 20px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1rwjbgu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-15bvdh7 { flex: none; height: 19px; left: calc(57.56756756756759% - 225px / 2); overflow: hidden; position: absolute; top: calc(12.741312741312763% - 19px / 2); width: 225px; }\",\".framer-QT8BN .framer-1780tto { aspect-ratio: 11.842105263157896 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); left: 54%; position: absolute; top: 3px; transform: translateX(-50%); width: 114px; z-index: 1; }\",\".framer-QT8BN .framer-1hjghza { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-QT8BN .framer-ta5vc9 { aspect-ratio: 2.0740741875515596 / 1; bottom: -112px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: absolute; right: -5px; width: 207px; z-index: 5; }\",\".framer-QT8BN .framer-14vw5i0 { aspect-ratio: 0.5932203389830508 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: -40px; flex: none; height: var(--framer-aspect-ratio-supported, 590px); left: 50%; overflow: hidden; position: absolute; transform: translateX(-50%); width: 350px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-QT8BN .framer-gcogjt { align-content: flex-start; align-items: flex-start; background-color: #324736; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1469px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-1ii7ot7 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 364px; left: calc(50.00000000000002% - 315px / 2); position: absolute; top: calc(91.66666666666669% - 364px / 2); width: 315px; z-index: 0; }\",\".framer-QT8BN .framer-1t9d589 { flex: none; height: 530px; left: calc(50.00000000000002% - 390px / 2); overflow: visible; position: absolute; top: 20px; width: 390px; }\",\".framer-QT8BN .framer-1qxg8u1 { flex: none; height: 420px; overflow: hidden; position: relative; width: 333px; }\",\".framer-QT8BN .framer-19b8vbt { flex: none; height: 82px; left: calc(39.03903903903906% - 176px / 2); overflow: hidden; position: absolute; top: calc(24.285714285714306% - 82px / 2); width: 176px; }\",\".framer-QT8BN .framer-1rayu3c { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 264px; left: calc(50.00000000000002% - 344px / 2); overflow: hidden; position: absolute; top: calc(70.37735849056605% - 264px / 2); width: 344px; will-change: var(--framer-will-change-override, transform); }\",\".framer-QT8BN .framer-1rrmdfw { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QT8BN .framer-1ghpwf4 { background-color: rgba(0, 0, 0, 0.25); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QT8BN .framer-ep5lez { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 57%; transform: translate(-50%, -50%); width: 390px; }\",\".framer-QT8BN .framer-1fggg61 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QT8BN .framer-rb7128 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 5; }\",\".framer-QT8BN .framer-q5kl3o { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 336px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QT8BN.framer-y0832, .framer-QT8BN .framer-1a51n7i, .framer-QT8BN .framer-thrjc1, .framer-QT8BN .framer-99q5ht, .framer-QT8BN .framer-1s7khd6, .framer-QT8BN .framer-1hy5msn, .framer-QT8BN .framer-kv2677, .framer-QT8BN .framer-1l28dh9, .framer-QT8BN .framer-12w4vfz, .framer-QT8BN .framer-1w5auas, .framer-QT8BN .framer-70fqf1, .framer-QT8BN .framer-1wyn7cu, .framer-QT8BN .framer-cvqf09, .framer-QT8BN .framer-1vxloew, .framer-QT8BN .framer-18zzwlu, .framer-QT8BN .framer-akqqwg, .framer-QT8BN .framer-azv728, .framer-QT8BN .framer-12gq7nb, .framer-QT8BN .framer-1dudv11, .framer-QT8BN .framer-zzwda2, .framer-QT8BN .framer-1dadghc, .framer-QT8BN .framer-1g2dpx4, .framer-QT8BN .framer-13of6mn, .framer-QT8BN .framer-1ter56d, .framer-QT8BN .framer-1qxgt9n, .framer-QT8BN .framer-gzg5i8, .framer-QT8BN .framer-obouqx, .framer-QT8BN .framer-85skao, .framer-QT8BN .framer-12eo0c3, .framer-QT8BN .framer-ilwa78, .framer-QT8BN .framer-3b94sr, .framer-QT8BN .framer-1rwjbgu, .framer-QT8BN .framer-gcogjt, .framer-QT8BN .framer-15dcwnl, .framer-QT8BN .framer-1nav3o4, .framer-QT8BN .framer-ep5lez, .framer-QT8BN .framer-1fggg61, .framer-QT8BN .framer-rb7128 { gap: 0px; } .framer-QT8BN.framer-y0832 > *, .framer-QT8BN .framer-1a51n7i > *, .framer-QT8BN .framer-1w5auas > *, .framer-QT8BN .framer-12gq7nb > *, .framer-QT8BN .framer-gcogjt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-QT8BN.framer-y0832 > :first-child, .framer-QT8BN .framer-1a51n7i > :first-child, .framer-QT8BN .framer-99q5ht > :first-child, .framer-QT8BN .framer-1s7khd6 > :first-child, .framer-QT8BN .framer-1hy5msn > :first-child, .framer-QT8BN .framer-1w5auas > :first-child, .framer-QT8BN .framer-18zzwlu > :first-child, .framer-QT8BN .framer-12gq7nb > :first-child, .framer-QT8BN .framer-1dudv11 > :first-child, .framer-QT8BN .framer-1dadghc > :first-child, .framer-QT8BN .framer-1g2dpx4 > :first-child, .framer-QT8BN .framer-1ter56d > :first-child, .framer-QT8BN .framer-gzg5i8 > :first-child, .framer-QT8BN .framer-obouqx > :first-child, .framer-QT8BN .framer-85skao > :first-child, .framer-QT8BN .framer-1rwjbgu > :first-child, .framer-QT8BN .framer-gcogjt > :first-child, .framer-QT8BN .framer-ep5lez > :first-child, .framer-QT8BN .framer-1fggg61 > :first-child, .framer-QT8BN .framer-rb7128 > :first-child { margin-top: 0px; } .framer-QT8BN.framer-y0832 > :last-child, .framer-QT8BN .framer-1a51n7i > :last-child, .framer-QT8BN .framer-99q5ht > :last-child, .framer-QT8BN .framer-1s7khd6 > :last-child, .framer-QT8BN .framer-1hy5msn > :last-child, .framer-QT8BN .framer-1w5auas > :last-child, .framer-QT8BN .framer-18zzwlu > :last-child, .framer-QT8BN .framer-12gq7nb > :last-child, .framer-QT8BN .framer-1dudv11 > :last-child, .framer-QT8BN .framer-1dadghc > :last-child, .framer-QT8BN .framer-1g2dpx4 > :last-child, .framer-QT8BN .framer-1ter56d > :last-child, .framer-QT8BN .framer-gzg5i8 > :last-child, .framer-QT8BN .framer-obouqx > :last-child, .framer-QT8BN .framer-85skao > :last-child, .framer-QT8BN .framer-1rwjbgu > :last-child, .framer-QT8BN .framer-gcogjt > :last-child, .framer-QT8BN .framer-ep5lez > :last-child, .framer-QT8BN .framer-1fggg61 > :last-child, .framer-QT8BN .framer-rb7128 > :last-child { margin-bottom: 0px; } .framer-QT8BN .framer-thrjc1 > *, .framer-QT8BN .framer-kv2677 > *, .framer-QT8BN .framer-1l28dh9 > *, .framer-QT8BN .framer-12w4vfz > *, .framer-QT8BN .framer-1wyn7cu > *, .framer-QT8BN .framer-1vxloew > *, .framer-QT8BN .framer-zzwda2 > *, .framer-QT8BN .framer-13of6mn > *, .framer-QT8BN .framer-1qxgt9n > *, .framer-QT8BN .framer-12eo0c3 > *, .framer-QT8BN .framer-ilwa78 > *, .framer-QT8BN .framer-3b94sr > *, .framer-QT8BN .framer-1nav3o4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QT8BN .framer-thrjc1 > :first-child, .framer-QT8BN .framer-kv2677 > :first-child, .framer-QT8BN .framer-1l28dh9 > :first-child, .framer-QT8BN .framer-12w4vfz > :first-child, .framer-QT8BN .framer-70fqf1 > :first-child, .framer-QT8BN .framer-1wyn7cu > :first-child, .framer-QT8BN .framer-cvqf09 > :first-child, .framer-QT8BN .framer-1vxloew > :first-child, .framer-QT8BN .framer-akqqwg > :first-child, .framer-QT8BN .framer-azv728 > :first-child, .framer-QT8BN .framer-zzwda2 > :first-child, .framer-QT8BN .framer-13of6mn > :first-child, .framer-QT8BN .framer-1qxgt9n > :first-child, .framer-QT8BN .framer-12eo0c3 > :first-child, .framer-QT8BN .framer-ilwa78 > :first-child, .framer-QT8BN .framer-3b94sr > :first-child, .framer-QT8BN .framer-15dcwnl > :first-child, .framer-QT8BN .framer-1nav3o4 > :first-child { margin-left: 0px; } .framer-QT8BN .framer-thrjc1 > :last-child, .framer-QT8BN .framer-kv2677 > :last-child, .framer-QT8BN .framer-1l28dh9 > :last-child, .framer-QT8BN .framer-12w4vfz > :last-child, .framer-QT8BN .framer-70fqf1 > :last-child, .framer-QT8BN .framer-1wyn7cu > :last-child, .framer-QT8BN .framer-cvqf09 > :last-child, .framer-QT8BN .framer-1vxloew > :last-child, .framer-QT8BN .framer-akqqwg > :last-child, .framer-QT8BN .framer-azv728 > :last-child, .framer-QT8BN .framer-zzwda2 > :last-child, .framer-QT8BN .framer-13of6mn > :last-child, .framer-QT8BN .framer-1qxgt9n > :last-child, .framer-QT8BN .framer-12eo0c3 > :last-child, .framer-QT8BN .framer-ilwa78 > :last-child, .framer-QT8BN .framer-3b94sr > :last-child, .framer-QT8BN .framer-15dcwnl > :last-child, .framer-QT8BN .framer-1nav3o4 > :last-child { margin-right: 0px; } .framer-QT8BN .framer-99q5ht > *, .framer-QT8BN .framer-1hy5msn > *, .framer-QT8BN .framer-1g2dpx4 > *, .framer-QT8BN .framer-1ter56d > *, .framer-QT8BN .framer-gzg5i8 > *, .framer-QT8BN .framer-obouqx > *, .framer-QT8BN .framer-ep5lez > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QT8BN .framer-1s7khd6 > *, .framer-QT8BN .framer-1dadghc > *, .framer-QT8BN .framer-1rwjbgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-QT8BN .framer-70fqf1 > *, .framer-QT8BN .framer-akqqwg > *, .framer-QT8BN .framer-15dcwnl > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QT8BN .framer-cvqf09 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-QT8BN .framer-18zzwlu > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-QT8BN .framer-azv728 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-QT8BN .framer-1dudv11 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-QT8BN .framer-85skao > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QT8BN .framer-1fggg61 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-QT8BN .framer-rb7128 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-QT8BN { background: white; } .framer-QT8BN.framer-y0832 { width: 390px; } .framer-QT8BN .framer-1448c6a-container, .framer-QT8BN .framer-lbe25e, .framer-QT8BN .framer-1t9d589, .framer-QT8BN .framer-q5kl3o { order: 0; } .framer-QT8BN .framer-1a51n7i, .framer-QT8BN .framer-ep5lez, .framer-QT8BN .framer-amxmeh-container { order: 1; } .framer-QT8BN .framer-thrjc1, .framer-QT8BN .framer-kv2677 { flex-direction: column; } .framer-QT8BN .framer-99q5ht { flex: 1 0 0px; height: 1px; } .framer-QT8BN .framer-1at8372-container { height: var(--framer-aspect-ratio-supported, 101px); } .framer-QT8BN .framer-173rp3i-container, .framer-QT8BN .framer-gzg5i8 { flex: none; width: 100%; } .framer-QT8BN .framer-akqqwg { display: block; height: 598px; order: 3; padding: unset; } .framer-QT8BN .framer-12z1jhb { aspect-ratio: unset; bottom: 105px; height: 103px; left: calc(75.12820512820515% - 140px / 2); transform: unset; width: 140px; } .framer-QT8BN .framer-1ad89g7 { aspect-ratio: unset; height: 73px; left: calc(46.92307692307695% - 103px / 2); right: unset; top: calc(22.240802675585307% - 73px / 2); width: 103px; } .framer-QT8BN .framer-10cwkca { aspect-ratio: unset; height: 121px; left: calc(75.64102564102566% - 165px / 2); right: unset; top: calc(35.11705685618731% - 121px / 2); } .framer-QT8BN .framer-4v02ry { aspect-ratio: unset; height: 77px; left: 23px; top: 150px; transform: unset; width: 104px; } .framer-QT8BN .framer-azv728 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 31px; justify-content: flex-start; left: 50%; position: absolute; top: 63%; transform: translate(-50%, -50%); width: 364px; } .framer-QT8BN .framer-12gq7nb { height: min-content; justify-content: center; width: 100%; } .framer-QT8BN .framer-1penhth { order: 1; width: 100%; } .framer-QT8BN .framer-1dudv11 { gap: 16px; } .framer-QT8BN .framer-13of6mn { order: 5; } .framer-QT8BN .framer-1ter56d { flex-direction: row; padding: 0px 20px 0px 20px; } .framer-QT8BN .framer-ln76py-container { flex: 1 0 0px; order: 0; width: 1px; } .framer-QT8BN .framer-1qxgt9n { flex-direction: column; order: 9; } .framer-QT8BN .framer-132rdx6-container { order: 10; } .framer-QT8BN .framer-6c5eu4-container { order: 12; } .framer-QT8BN .framer-s9u5lb-container { order: 11; } .framer-QT8BN .framer-12eo0c3 { order: 13; padding: 40px 20px 40px 20px; } .framer-QT8BN .framer-1unwjpa-container { order: 14; } .framer-QT8BN .framer-pri55-container { order: 15; } .framer-QT8BN .framer-ilwa78 { order: 8; } .framer-QT8BN .framer-gcogjt, .framer-QT8BN .framer-1ii7ot7 { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QT8BN .framer-thrjc1, .framer-QT8BN .framer-kv2677, .framer-QT8BN .framer-akqqwg, .framer-QT8BN .framer-azv728, .framer-QT8BN .framer-1dudv11, .framer-QT8BN .framer-1ter56d, .framer-QT8BN .framer-1qxgt9n { gap: 0px; } .framer-QT8BN .framer-thrjc1 > *, .framer-QT8BN .framer-kv2677 > *, .framer-QT8BN .framer-1qxgt9n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QT8BN .framer-thrjc1 > :first-child, .framer-QT8BN .framer-kv2677 > :first-child, .framer-QT8BN .framer-azv728 > :first-child, .framer-QT8BN .framer-1dudv11 > :first-child, .framer-QT8BN .framer-1qxgt9n > :first-child { margin-top: 0px; } .framer-QT8BN .framer-thrjc1 > :last-child, .framer-QT8BN .framer-kv2677 > :last-child, .framer-QT8BN .framer-azv728 > :last-child, .framer-QT8BN .framer-1dudv11 > :last-child, .framer-QT8BN .framer-1qxgt9n > :last-child { margin-bottom: 0px; } .framer-QT8BN .framer-akqqwg > *, .framer-QT8BN .framer-akqqwg > :first-child, .framer-QT8BN .framer-akqqwg > :last-child { margin: 0px; } .framer-QT8BN .framer-azv728 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-QT8BN .framer-1dudv11 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-QT8BN .framer-1ter56d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QT8BN .framer-1ter56d > :first-child { margin-left: 0px; } .framer-QT8BN .framer-1ter56d > :last-child { margin-right: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1079px) { .${metadata.bodyClassName}-framer-QT8BN { background: white; } .framer-QT8BN.framer-y0832 { width: 810px; } .framer-QT8BN .framer-1448c6a-container { order: 0; } .framer-QT8BN .framer-1a51n7i, .framer-QT8BN .framer-9lfky2-container { order: 1; } .framer-QT8BN .framer-1at8372-container { height: var(--framer-aspect-ratio-supported, 101px); } .framer-QT8BN .framer-12w4vfz { order: 2; } .framer-QT8BN .framer-1w5auas { height: 923px; } .framer-QT8BN .framer-pyybuu { height: 923px; left: calc(50.00000000000002% - 810px / 2); top: calc(49.945828819068275% - 923px / 2); width: 810px; } .framer-QT8BN .framer-1rgj0s0 { width: 516px; } .framer-QT8BN .framer-11k0thz { left: 75px; right: unset; top: 80px; } .framer-QT8BN .framer-4wp9r { aspect-ratio: 1.3065693430656935 / 1; height: var(--framer-aspect-ratio-supported, 309px); right: 20px; top: 111px; width: 404px; } .framer-QT8BN .framer-1x2g8cv { height: unset; top: 0px; } .framer-QT8BN .framer-1y7sdte { background-color: unset; bottom: 0px; height: unset; top: 0px; } .framer-QT8BN .framer-5slk8t { bottom: unset; height: 453px; left: calc(50.00000000000002% - 810px / 2); overflow: visible; top: calc(71.07258938244856% - 453px / 2); width: 810px; } .framer-QT8BN .framer-cvqf09 { height: 93%; left: 30px; overflow: visible; width: 94%; } .framer-QT8BN .framer-1tgcifb { bottom: 59px; height: var(--framer-aspect-ratio-supported, 291px); left: 498px; order: 1; width: 251px; } .framer-QT8BN .framer-1vxloew { flex: none; order: 0; width: min-content; } .framer-QT8BN .framer-18zzwlu { flex: none; width: min-content; } .framer-QT8BN .framer-1nusaax { order: 0; width: 479px; } .framer-QT8BN .framer-akqqwg { height: 710px; order: 3; } .framer-QT8BN .framer-12z1jhb { bottom: -97px; height: var(--framer-aspect-ratio-supported, 150px); left: 563px; transform: unset; width: 203px; } .framer-QT8BN .framer-1ad89g7 { right: 686px; top: -40px; } .framer-QT8BN .framer-10cwkca { aspect-ratio: unset; height: 124px; right: 102px; top: calc(11.690140845070445% - 124px / 2); width: 170px; } .framer-QT8BN .framer-whld2q { bottom: 219px; height: var(--framer-aspect-ratio-supported, 113px); right: 23px; top: unset; transform: unset; width: 113px; } .framer-QT8BN .framer-4v02ry { bottom: -30px; height: var(--framer-aspect-ratio-supported, 97px); left: 44px; top: unset; transform: unset; width: 131px; } .framer-QT8BN .framer-azv728 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; height: 73%; width: 100%; } .framer-QT8BN .framer-12gq7nb { gap: 10px; height: 361px; justify-content: center; width: 773px; } .framer-QT8BN .framer-lbe25e { left: 20px; order: 0; position: absolute; top: 33px; z-index: 1; } .framer-QT8BN .framer-1penhth { order: 1; width: 100%; } .framer-QT8BN .framer-1dudv11 { gap: 16px; } .framer-QT8BN .framer-zzwda2 { order: 7; } .framer-QT8BN .framer-351cna { align-content: flex-start; align-items: flex-start; gap: 10px; height: 1302px; justify-content: flex-start; max-width: 810px; padding: 80px 60px 80px 60px; } .framer-QT8BN .framer-z7vfcf { left: calc(60.26785714285716% - 225px / 2); top: calc(23.856502242152487% - 19px / 2); } .framer-QT8BN .framer-1brxld5 { bottom: -32px; left: 448px; right: unset; top: unset; } .framer-QT8BN .framer-1g2dpx4 { bottom: -45px; left: 50%; transform: translateX(-50%); width: 80%; } .framer-QT8BN .framer-13of6mn { order: 4; } .framer-QT8BN .framer-1ter56d { padding: 0px; } .framer-QT8BN .framer-1qxgt9n { order: 8; } .framer-QT8BN .framer-fg9jkt { bottom: 101px; height: var(--framer-aspect-ratio-supported, 61px); left: 657px; transform: unset; width: 92px; } .framer-QT8BN .framer-1hp7zuq { width: 744px; } .framer-QT8BN .framer-132rdx6-container { order: 9; } .framer-QT8BN .framer-6c5eu4-container { order: 11; } .framer-QT8BN .framer-s9u5lb-container { order: 10; } .framer-QT8BN .framer-12eo0c3 { order: 12; } .framer-QT8BN .framer-1unwjpa-container { order: 13; } .framer-QT8BN .framer-pri55-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-QT8BN .framer-azv728, .framer-QT8BN .framer-12gq7nb, .framer-QT8BN .framer-1dudv11, .framer-QT8BN .framer-351cna { gap: 0px; } .framer-QT8BN .framer-azv728 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QT8BN .framer-azv728 > :first-child, .framer-QT8BN .framer-12gq7nb > :first-child, .framer-QT8BN .framer-1dudv11 > :first-child { margin-top: 0px; } .framer-QT8BN .framer-azv728 > :last-child, .framer-QT8BN .framer-12gq7nb > :last-child, .framer-QT8BN .framer-1dudv11 > :last-child { margin-bottom: 0px; } .framer-QT8BN .framer-12gq7nb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QT8BN .framer-1dudv11 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-QT8BN .framer-351cna > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QT8BN .framer-351cna > :first-child { margin-left: 0px; } .framer-QT8BN .framer-351cna > :last-child { margin-right: 0px; } }}`,`@media (min-width: 1080px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-QT8BN { background: white; } .framer-QT8BN.framer-y0832 { width: 1080px; } .framer-QT8BN .framer-1at8372-container { height: var(--framer-aspect-ratio-supported, 101px); } .framer-QT8BN .framer-1tgcifb { left: 60px; } .framer-QT8BN .framer-18zzwlu { flex: none; width: 600px; } .framer-QT8BN .framer-351cna { max-width: 1080px; } .framer-QT8BN .framer-1brxld5 { right: -70px; top: 55px; } .framer-QT8BN .framer-1g2dpx4 { bottom: -36px; height: var(--framer-aspect-ratio-supported, 509px); left: 570px; } .framer-QT8BN .framer-fg9jkt { bottom: 171px; height: unset; left: unset; right: 30px; top: 375px; transform: unset; width: var(--framer-aspect-ratio-supported, 86px); } .framer-QT8BN .framer-12i0f62 { bottom: 0px; left: 640px; }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6963\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CiP6DO3cc\":{\"layout\":[\"fixed\",\"auto\"]},\"x632maH7S\":{\"layout\":[\"fixed\",\"auto\"]},\"dg5c6OXBF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerCp98bzNKz=withCSS(Component,css,\"framer-QT8BN\");export default FramerCp98bzNKz;FramerCp98bzNKz.displayName=\"Page\";FramerCp98bzNKz.defaultProps={height:6963,width:1440};addFonts(FramerCp98bzNKz,[{explicitInter:true,fonts:[{family:\"Antonio\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonio/v19/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htNY2DwSXlM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K4RHKGAGLQZBXEZQT2O2AGSLKJF2E4YC/JRUTXNFPWLFGIEVSSEYOW7EP7TYM3V6A/UCDYLFFGLZRGCFY5GYDYM5LDB52BAR5M.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiGyp8kv8JHgFVrJJLecnFBGPaTSQ.woff2\",weight:\"400\"}]},...NavigationFonts,...GenericButtonFonts,...VideoFonts,...TickerFonts,...ButtonFonts,...DOurMissionFonts,...MOurMissionFonts,...PartnersFonts,...GetWildFonts,...TickerTextFonts,...SignUpFonts,...FooterFonts,...TickerWildEastFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCp98bzNKz\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CiP6DO3cc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x632maH7S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dg5c6OXBF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6963\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image2", "image3", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "YHHuy3mvV", "qE10h59r0", "SNzrxfc6w", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Image2", "css", "FramermYZTePAKV", "withCSS", "mYZTePAKV_default", "addPropertyControls", "ControlType", "addFonts", "CarouselFonts", "getFonts", "mYZTePAKV_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1c7hhxa", "args", "onTap1fpay3y", "onTapgaeoy3", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "RichText2", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerc92NtX7oT", "withCSS", "c92NtX7oT_default", "addPropertyControls", "ControlType", "addFonts", "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", "height", "id", "link", "newTab", "smoothScroll", "tap", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RKbNC_BR6", "NB30K0oUu", "lQdzo7JzD", "wTpRe_7KS", "QWESVHvfa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1t2f8a9", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerjEAjk86ZL", "withCSS", "jEAjk86ZL_default", "addPropertyControls", "ControlType", "addFonts", "CarouselFonts", "getFonts", "mYZTePAKV_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1vtdna1", "args", "onTap70qc5w", "onTapqfetmy", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "SVG", "Link", "css", "FramerqpyjRIDyT", "withCSS", "qpyjRIDyT_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "ZuV0r8ZyN_default", "GenericButtonFonts", "jEAjk86ZL_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "ButtonFonts", "TYUUFB2x4_default", "RichTextWithFX", "RichText2", "DOurMissionFonts", "c92NtX7oT_default", "MOurMissionFonts", "qpyjRIDyT_default", "PartnersFonts", "HgLhRrHwt_default", "GetWildFonts", "DOglGCBiS_default", "TickerTextFonts", "VtKfcFInf_default", "SignUpFonts", "H7TUcf3lK_default", "FooterFonts", "I616T2nO5_default", "TickerWildEastFonts", "KLJkhWHrd_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "NB30K0oUuwelu7j", "overlay", "paginationInfo", "args", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "elementId2", "ref4", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "elementId3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "l", "AnimatePresence", "Ga", "Link", "SVG", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "css", "FramerCp98bzNKz", "withCSS", "Cp98bzNKz_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
