{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/pXseBK7i5rCYqSAE4oF3/EsNjr48wQwvrszUIAWHH/h8imkrbUn.js", "ssg:https://framerusercontent.com/modules/4IxYL5hlTVGFMjYITPfI/zp0TrlghS7P9ndEGXDoi/M06ZG_oTU.js", "ssg:https://framerusercontent.com/modules/4jGBX07Y1TJCGj2dVvOa/M5f0T7I420Uh1iYESFFl/Mn_xmDIB7-0.js", "ssg:https://framerusercontent.com/modules/zAQtT8bi9c3jEqlxD9Jg/l0Zy1MLcZKHOgSoMWsks/N9fBhGEkJ.js", "ssg:https://framerusercontent.com/modules/4jGBX07Y1TJCGj2dVvOa/M5f0T7I420Uh1iYESFFl/Mn_xmDIB7.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";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});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);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();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,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:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===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:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// 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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"CUSTOM;Satoshi Medium\"]);export const fonts=[{family:\"Satoshi Medium\",moduleAsset:{localModuleIdentifier:\"local-module:css/h8imkrbUn:default\",url:\"assets/cEsy1GfJcC5FNQtE1q3V5SiQ.otf\"},url:new URL(\"assets/cEsy1GfJcC5FNQtE1q3V5SiQ.otf\",\"https://framerusercontent.com/modules/pXseBK7i5rCYqSAE4oF3/EsNjr48wQwvrszUIAWHH/h8imkrbUn.js\").href}];export const css=['.framer-1ax0r .framer-styles-preset-1rhb41q:not(.rich-text-wrapper), .framer-1ax0r .framer-styles-preset-1rhb41q.rich-text-wrapper h6 { --framer-font-family: \"Satoshi Medium\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 55px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-be409b5d-128d-4795-b436-9099a86b46ba, #4d4d4d); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 810px) and (min-width: 810px) { .framer-1ax0r .framer-styles-preset-1rhb41q:not(.rich-text-wrapper), .framer-1ax0r .framer-styles-preset-1rhb41q.rich-text-wrapper h6 { --framer-font-family: \"Satoshi Medium\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 55px; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-be409b5d-128d-4795-b436-9099a86b46ba, #4d4d4d); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1ax0r .framer-styles-preset-1rhb41q:not(.rich-text-wrapper), .framer-1ax0r .framer-styles-preset-1rhb41q.rich-text-wrapper h6 { --framer-font-family: \"Satoshi Medium\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.2px; --framer-line-height: 55px; --framer-paragraph-spacing: 30px; --framer-text-alignment: left; --framer-text-color: var(--token-be409b5d-128d-4795-b436-9099a86b46ba, #4d4d4d); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-1ax0r\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a1b5076)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={LWVKvHc7w:{hover:true}};const cycleOrder=[\"LWVKvHc7w\"];const variantClassNames={LWVKvHc7w:\"framer-v-ovtklk\"};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 transitions={default:{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 getProps=({height,id,width,...props})=>{var _tap;return{...props,PJXjzMfx5:(_tap=props.tap)!==null&&_tap!==void 0?_tap:props.PJXjzMfx5};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,PJXjzMfx5,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"LWVKvHc7w\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr33o3a=activeVariantCallback(async(...args)=>{if(PJXjzMfx5){const res=await PJXjzMfx5(...args);if(res===false)return false;}});const isDisplayed=()=>{if(gestureVariant===\"LWVKvHc7w-hover\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"LWVKvHc7w-hover\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-T86Lx\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-ovtklk\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LWVKvHc7w\",ref:ref,style:{...style},...addPropertyOverrides({\"LWVKvHc7w-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-ya63mz\",\"data-border\":true,\"data-framer-name\":\"button/Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"m_ANr3DXT\",onTap:onTapr33o3a,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(66, 119, 78)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(247, 244, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,rotate:180},variants:{\"LWVKvHc7w-hover\":{backgroundColor:\"var(--token-0cd7521d-46de-48a2-96cb-c09b05a58f59, rgb(96, 147, 106))\"}},children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1gxx3ei\",\"data-framer-name\":\"svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ecnJq1jmJ\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1659_1922)\">\\n<path d=\"M0.625476 8.34763L13.3826 8.34763C13.5608 8.34763 13.65 8.56306 13.5241 8.68905L8.11857 14.0945V14.0945C8.09102 14.1221 8.09039 14.1666 8.11711 14.1949V14.1949L8.49166 14.5949V14.5949C8.51968 14.6249 8.56736 14.6261 8.59638 14.5971V14.5971L15.1418 8.05163V8.05163C15.1698 8.02326 15.17 7.97726 15.1418 7.94909V7.94909L8.59638 1.40363V1.40363C8.56766 1.37451 8.5201 1.375 8.49238 1.40509V1.40509L8.11711 1.80509V1.80509C8.09039 1.83343 8.09102 1.87791 8.11857 1.90545V1.90545L13.5241 7.31094C13.65 7.43693 13.5608 7.65236 13.3826 7.65236L0.752749 7.65236C0.642292 7.65236 0.552749 7.7419 0.552749 7.85236L0.552749 8.27491C0.552749 8.31507 0.58531 8.34763 0.625476 8.34763V8.34763Z\" fill=\"#42774E\" stroke=\"#42774E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1659_1922\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(16 16) rotate(180)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-fz47n3\",\"data-framer-name\":\"svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e_phzbU3o\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(-0 -0)\" id=\"ss2678490984_1\"><path d=\"M 16 0 L 16 16 L 0 16 L 0 0 Z\" fill=\"transparent\"></path><path d=\"M 0.625 8.348 L 13.383 8.348 C 13.561 8.348 13.65 8.563 13.524 8.689 L 8.119 14.095 L 8.119 14.095 C 8.091 14.122 8.09 14.167 8.117 14.195 L 8.117 14.195 L 8.492 14.595 L 8.492 14.595 C 8.52 14.625 8.567 14.626 8.596 14.597 L 8.596 14.597 L 15.142 8.052 L 15.142 8.052 C 15.17 8.023 15.17 7.977 15.142 7.949 L 15.142 7.949 L 8.596 1.404 L 8.596 1.404 C 8.568 1.375 8.52 1.375 8.492 1.405 L 8.492 1.405 L 8.117 1.805 L 8.117 1.805 C 8.09 1.833 8.091 1.878 8.119 1.905 L 8.119 1.905 L 13.524 7.311 C 13.65 7.437 13.561 7.652 13.383 7.652 L 0.753 7.652 C 0.642 7.652 0.553 7.742 0.553 7.852 L 0.553 8.275 C 0.553 8.315 0.585 8.348 0.625 8.348 Z\" fill=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:2678490984,withExternalLayout:true,...addPropertyOverrides({\"LWVKvHc7w-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(-0 -0)\" id=\"ss287687322_1\"><path d=\"M 16 0 L 16 16 L 0 16 L 0 0 Z\" fill=\"transparent\"></path><path d=\"M 0.625 8.348 L 13.383 8.348 C 13.561 8.348 13.65 8.563 13.524 8.689 L 8.119 14.095 L 8.119 14.095 C 8.091 14.122 8.09 14.167 8.117 14.195 L 8.117 14.195 L 8.492 14.595 L 8.492 14.595 C 8.52 14.625 8.567 14.626 8.596 14.597 L 8.596 14.597 L 15.142 8.052 L 15.142 8.052 C 15.17 8.023 15.17 7.977 15.142 7.949 L 15.142 7.949 L 8.596 1.404 L 8.596 1.404 C 8.568 1.375 8.52 1.375 8.492 1.405 L 8.492 1.405 L 8.117 1.805 L 8.117 1.805 C 8.09 1.833 8.091 1.878 8.119 1.905 L 8.119 1.905 L 13.524 7.311 C 13.65 7.437 13.561 7.652 13.383 7.652 L 0.753 7.652 C 0.642 7.652 0.553 7.742 0.553 7.852 L 0.553 8.275 C 0.553 8.315 0.585 8.348 0.625 8.348 Z\" fill=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:287687322}},baseVariant,gestureVariant)})]})})})})});});const css=['.framer-T86Lx [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-T86Lx .framer-zlo17l { display: block; }\",\".framer-T86Lx .framer-ovtklk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 125px; }\",\".framer-T86Lx .framer-ya63mz { cursor: pointer; flex: none; height: 48px; overflow: visible; position: relative; width: 48px; }\",\".framer-T86Lx .framer-1gxx3ei { flex: none; height: 16px; left: 16px; position: absolute; top: 16px; width: 16px; }\",\".framer-T86Lx .framer-1qdj5go, .framer-T86Lx .framer-vqrsau, .framer-T86Lx .framer-fz47n3 { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-T86Lx .framer-v-ovtklk .framer-ovtklk { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-T86Lx .framer-ovtklk { gap: 0px; } .framer-T86Lx .framer-ovtklk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-T86Lx .framer-ovtklk > :first-child { margin-left: 0px; } .framer-T86Lx .framer-ovtklk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 125\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kjxtaDyYx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */ const FramerM06ZG_oTU=withCSS(Component,css,\"framer-T86Lx\");export default FramerM06ZG_oTU;FramerM06ZG_oTU.displayName=\"arrow hover\";FramerM06ZG_oTU.defaultProps={height:48,width:125};addPropertyControls(FramerM06ZG_oTU,{PJXjzMfx5:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerM06ZG_oTU,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM06ZG_oTU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kjxtaDyYx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"125\",\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M06ZG_oTU.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"\u201CRespyre is uniek vanwege hun vele oplossingen op het gebied van duurzaamheid. Denk aan de vermindering van NOx en CO\u2082, de toename van biodiversiteit, waterabsorptie, koeling en nog veel meer.\u201D\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:'\"De ontwikkeling van de groene gevels van Respyre is een belangrijke en voordelige toevoeging aan onze projecten. Ze bieden de mogelijkheid om op creatieve wijze planten te integreren in het ontwerp van onze constructies.\"'})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"''Het product van Respyre kan onze projecten economisch effici\\xebnter maken door het verminderen van NOx. Dit gecombineerd met het verkoelende effect, waterretentie en het verminderen van onderhoud maakt Respyre zeer interessant.''\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"\u201CRespyre is uniek vanwege hun vele oplossingen op het gebied van duurzaamheid. Denk aan de vermindering van NOx en CO\u2082, de toename van biodiversiteit, waterabsorptie, koeling en nog veel meer.\u201D\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1rhb41q\",\"data-styles-preset\":\"h8imkrbUn\",children:'\"De ontwikkeling van de groene gevels van Respyre is een belangrijke en voordelige toevoeging aan onze projecten. Ze bieden de mogelijkheid om op creatieve wijze planten te integreren in het ontwerp van onze constructies.\"'})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1rhb41q\",\"data-styles-preset\":\"h8imkrbUn\",children:\"''Het product van Respyre kan onze projecten economisch effici\\xebnter maken door het verminderen van NOx. Dit gecombineerd met het verkoelende effect, waterretentie en het verminderen van onderhoud maakt Respyre zeer interessant.''\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a1b5076)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={q5RfML5Vp:{hover:true}};const cycleOrder=[\"q5RfML5Vp\"];const variantClassNames={q5RfML5Vp:\"framer-v-k0ztc7\"};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 transitions={default:{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 getProps=({height,id,width,...props})=>{var _tap;return{...props,AnkqU82sE:(_tap=props.tap)!==null&&_tap!==void 0?_tap:props.AnkqU82sE};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,AnkqU82sE,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"q5RfML5Vp\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1kocmz0=activeVariantCallback(async(...args)=>{if(AnkqU82sE){const res=await AnkqU82sE(...args);if(res===false)return false;}});const isDisplayed=()=>{if(gestureVariant===\"q5RfML5Vp-hover\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"q5RfML5Vp-hover\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-ZauoS\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-k0ztc7\",className),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q5RfML5Vp\",onTap:onTap1kocmz0,ref:ref,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(66, 119, 78)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(247, 244, 239)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},variants:{\"q5RfML5Vp-hover\":{backgroundColor:\"var(--token-0cd7521d-46de-48a2-96cb-c09b05a58f59, rgb(96, 147, 106))\"}},...addPropertyOverrides({\"q5RfML5Vp-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ehdgwi\",\"data-framer-name\":\"svg\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"HdXW6i6dR\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1659_1922)\">\\n<path d=\"M0.625476 8.34763L13.3826 8.34763C13.5608 8.34763 13.65 8.56306 13.5241 8.68905L8.11857 14.0945V14.0945C8.09102 14.1221 8.09039 14.1666 8.11711 14.1949V14.1949L8.49166 14.5949V14.5949C8.51968 14.6249 8.56736 14.6261 8.59638 14.5971V14.5971L15.1418 8.05163V8.05163C15.1698 8.02326 15.17 7.97726 15.1418 7.94909V7.94909L8.59638 1.40363V1.40363C8.56766 1.37451 8.5201 1.375 8.49238 1.40509V1.40509L8.11711 1.80509V1.80509C8.09039 1.83343 8.09102 1.87791 8.11857 1.90545V1.90545L13.5241 7.31094C13.65 7.43693 13.5608 7.65236 13.3826 7.65236L0.752749 7.65236C0.642292 7.65236 0.552749 7.7419 0.552749 7.85236L0.552749 8.27491C0.552749 8.31507 0.58531 8.34763 0.625476 8.34763V8.34763Z\" fill=\"#42774E\" stroke=\"#42774E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1659_1922\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(16 16) rotate(180)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ww4zlu\",\"data-framer-name\":\"svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YIs74dtBj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(-0 -0)\" id=\"ss2678490984_1\"><path d=\"M 16 0 L 16 16 L 0 16 L 0 0 Z\" fill=\"transparent\"></path><path d=\"M 0.625 8.348 L 13.383 8.348 C 13.561 8.348 13.65 8.563 13.524 8.689 L 8.119 14.095 L 8.119 14.095 C 8.091 14.122 8.09 14.167 8.117 14.195 L 8.117 14.195 L 8.492 14.595 L 8.492 14.595 C 8.52 14.625 8.567 14.626 8.596 14.597 L 8.596 14.597 L 15.142 8.052 L 15.142 8.052 C 15.17 8.023 15.17 7.977 15.142 7.949 L 15.142 7.949 L 8.596 1.404 L 8.596 1.404 C 8.568 1.375 8.52 1.375 8.492 1.405 L 8.492 1.405 L 8.117 1.805 L 8.117 1.805 C 8.09 1.833 8.091 1.878 8.119 1.905 L 8.119 1.905 L 13.524 7.311 C 13.65 7.437 13.561 7.652 13.383 7.652 L 0.753 7.652 C 0.642 7.652 0.553 7.742 0.553 7.852 L 0.553 8.275 C 0.553 8.315 0.585 8.348 0.625 8.348 Z\" fill=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:2678490984,withExternalLayout:true,...addPropertyOverrides({\"q5RfML5Vp-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(-0 -0)\" id=\"ss287687322_1\"><path d=\"M 16 0 L 16 16 L 0 16 L 0 0 Z\" fill=\"transparent\"></path><path d=\"M 0.625 8.348 L 13.383 8.348 C 13.561 8.348 13.65 8.563 13.524 8.689 L 8.119 14.095 L 8.119 14.095 C 8.091 14.122 8.09 14.167 8.117 14.195 L 8.117 14.195 L 8.492 14.595 L 8.492 14.595 C 8.52 14.625 8.567 14.626 8.596 14.597 L 8.596 14.597 L 15.142 8.052 L 15.142 8.052 C 15.17 8.023 15.17 7.977 15.142 7.949 L 15.142 7.949 L 8.596 1.404 L 8.596 1.404 C 8.568 1.375 8.52 1.375 8.492 1.405 L 8.492 1.405 L 8.117 1.805 L 8.117 1.805 C 8.09 1.833 8.091 1.878 8.119 1.905 L 8.119 1.905 L 13.524 7.311 C 13.65 7.437 13.561 7.652 13.383 7.652 L 0.753 7.652 C 0.642 7.652 0.553 7.742 0.553 7.852 L 0.553 8.275 C 0.553 8.315 0.585 8.348 0.625 8.348 Z\" fill=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke=\"var(--token-aafeba53-34a1-456c-b99d-357d7df5f9c6, rgb(247, 244, 240)) /* {&quot;name&quot;:&quot;Creme white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:287687322}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-ZauoS [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZauoS .framer-9dyol2 { display: block; }\",\".framer-ZauoS .framer-k0ztc7 { cursor: pointer; height: 48px; overflow: visible; position: relative; width: 48px; }\",\".framer-ZauoS .framer-1ehdgwi { flex: none; height: 16px; left: 16px; position: absolute; top: 16px; width: 16px; }\",\".framer-ZauoS .framer-zmqwu4, .framer-ZauoS .framer-k1x6mi, .framer-ZauoS .framer-1ruwcn8, .framer-ZauoS .framer-1ww4zlu { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-ZauoS .framer-v-k0ztc7 .framer-k0ztc7 { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"P0cAJsCIj\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerN9fBhGEkJ=withCSS(Component,css,\"framer-ZauoS\");export default FramerN9fBhGEkJ;FramerN9fBhGEkJ.displayName=\"arrow testimonials right\";FramerN9fBhGEkJ.defaultProps={height:48,width:48};addPropertyControls(FramerN9fBhGEkJ,{AnkqU82sE:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerN9fBhGEkJ,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN9fBhGEkJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P0cAJsCIj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N9fBhGEkJ.map", "// Generated by Framer (b75150a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pXseBK7i5rCYqSAE4oF3/EsNjr48wQwvrszUIAWHH/h8imkrbUn.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/n3Ccup9mvxYVywY12gd5/nmdPcT4j4fOfkIXKKVZk/VPi21I9L0.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ybSn1nh0VQhAlhrZWjLi/DG4I9Ew9yBhoIRrLBx6t/zEyzNZoxD.js\";import ArrowHover from\"https://framerusercontent.com/modules/4IxYL5hlTVGFMjYITPfI/zp0TrlghS7P9ndEGXDoi/M06ZG_oTU.js\";import*as localizedValues from\"./Mn_xmDIB7-0.js\";import ArrowTestimonialsRight from\"https://framerusercontent.com/modules/zAQtT8bi9c3jEqlxD9Jg/l0Zy1MLcZKHOgSoMWsks/N9fBhGEkJ.js\";const ArrowHoverFonts=getFonts(ArrowHover);const ArrowTestimonialsRightFonts=getFonts(ArrowTestimonialsRight);const cycleOrder=[\"MCrvyEt9o\",\"qZ3T0ASA1\",\"J0bUkIQUL\",\"Nwmhl91lm\",\"Nbh08vPLJ\",\"l8gChlB1d\"];const serializationHash=\"framer-6TDwZ\";const variantClassNames={J0bUkIQUL:\"framer-v-c76hpz\",l8gChlB1d:\"framer-v-1vcadke\",MCrvyEt9o:\"framer-v-14wnkkg\",Nbh08vPLJ:\"framer-v-36g0su\",Nwmhl91lm:\"framer-v-rhyydr\",qZ3T0ASA1:\"framer-v-klml9r\"};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 valuesByLocaleId={AHTnc3Rhv:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Phine V2\":\"Nbh08vPLJ\",\"phone V1\":\"Nwmhl91lm\",\"Phone v4\":\"l8gChlB1d\",\"Variant 1\":\"MCrvyEt9o\",\"Variant 2\":\"qZ3T0ASA1\",\"Variant 3\":\"J0bUkIQUL\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jlKtLVE5S:(_ref=image!==null&&image!==void 0?image:props.jlKtLVE5S)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/igolB1GciwLFGM2ypRxKwT7pEP0.png\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"MCrvyEt9o\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jlKtLVE5S,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MCrvyEt9o\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap4zbyd6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});});const PJXjzMfx5k7d1lj=activeVariantCallback(async(...args)=>{setVariant(\"J0bUkIQUL\");});const PJXjzMfx5vjk2s4=activeVariantCallback(async(...args)=>{setVariant(\"MCrvyEt9o\");});const PJXjzMfx5nc00sh=activeVariantCallback(async(...args)=>{setVariant(\"qZ3T0ASA1\");});const PJXjzMfx51c2xi43=activeVariantCallback(async(...args)=>{setVariant(\"l8gChlB1d\");});const PJXjzMfx513kkz7b=activeVariantCallback(async(...args)=>{setVariant(\"Nwmhl91lm\");});const PJXjzMfx517umci4=activeVariantCallback(async(...args)=>{setVariant(\"Nbh08vPLJ\");});const AnkqU82sEnc00sh=activeVariantCallback(async(...args)=>{setVariant(\"qZ3T0ASA1\");});const AnkqU82sEk7d1lj=activeVariantCallback(async(...args)=>{setVariant(\"J0bUkIQUL\");});const AnkqU82sEvjk2s4=activeVariantCallback(async(...args)=>{setVariant(\"MCrvyEt9o\");});const AnkqU82sE17umci4=activeVariantCallback(async(...args)=>{setVariant(\"Nbh08vPLJ\");});const AnkqU82sE1c2xi43=activeVariantCallback(async(...args)=>{setVariant(\"l8gChlB1d\");});const AnkqU82sE13kkz7b=activeVariantCallback(async(...args)=>{setVariant(\"Nwmhl91lm\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14wnkkg\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MCrvyEt9o\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap4zbyd6,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({J0bUkIQUL:{\"data-framer-name\":\"Variant 3\"},l8gChlB1d:{\"data-framer-name\":\"Phone v4\"},Nbh08vPLJ:{\"data-framer-name\":\"Phine V2\"},Nwmhl91lm:{\"data-framer-name\":\"phone V1\"},qZ3T0ASA1:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqwua7\",layoutDependency:layoutDependency,layoutId:\"iiC7LIfm9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-19pgv5p\",\"data-styles-preset\":\"zEyzNZoxD\",children:\"Testimonials\"})}),className:\"framer-7088cl\",\"data-framer-name\":\"Testimonials\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nFGOzt3Ba\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sc2uzq\",\"data-framer-name\":\"Frame 240\",layoutDependency:layoutDependency,layoutId:\"mEoDUbU8p\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n0d9fz\",\"data-framer-name\":\"Testimonials\",layoutDependency:layoutDependency,layoutId:\"dIHMc8AlP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(jlKtLVE5S)},className:\"framer-1hb6l68\",\"data-framer-name\":\"image 1\",layoutDependency:layoutDependency,layoutId:\"MwsCVEmAC\",...addPropertyOverrides({J0bUkIQUL:{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",src:\"https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png\",srcSet:\"https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=512 512w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png 2400w\"}},l8gChlB1d:{background:{alt:\"\",fit:\"fill\",sizes:\"130px\",src:\"https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png\",srcSet:\"https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=512 512w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/P5FJ0U3ocPfyhvuVOuJTt91HmI.png 2400w\"}},Nbh08vPLJ:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Qwjm7XRf61CXISU1m8Lr1pERZk.png\"}},Nwmhl91lm:{background:{alt:\"\",fit:\"fill\",sizes:\"130px\",...toResponsiveImage(jlKtLVE5S)}},qZ3T0ASA1:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Qwjm7XRf61CXISU1m8Lr1pERZk.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6973m\",layoutDependency:layoutDependency,layoutId:\"MNS_43l9K\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9qrgg8\",\"data-framer-name\":\"Frame 239\",layoutDependency:layoutDependency,layoutId:\"YTmH3JIhg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-45e615\",layoutDependency:layoutDependency,layoutId:\"k7nPpdUu9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stqsum\",\"data-framer-name\":\"Frame 237\",layoutDependency:layoutDependency,layoutId:\"aXlz20CYI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"\u201CRespyre is unique due to their many solutions on sustainability. Think of the decrease in NOx and CO\u2082, the increase of biodiversity, water absorption, cooling, and much more.\u201D\"})}),className:\"framer-p3ucvx\",\"data-framer-name\":\"\u201CRespyre is unique due to their many solutions on sustainability. Think of the decrease in NOx and CO2, the increase of biodiversity, water absorption, cooling, and much more.\u201D\",fonts:[\"CUSTOM;Satoshi Medium\"],layoutDependency:layoutDependency,layoutId:\"UxsB4XUWm\",style:{\"--extracted-1w1cjl5\":\"var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J0bUkIQUL:{children:(_getLocalizedValue1=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"''Respyre\u2019s product can make our projects more economically efficient with their decreasing of NOx. This, in combination with its cooling effect, water retention, and it reducing maintenance, makes Respyre very interesting.''\"})})},l8gChlB1d:{children:(_getLocalizedValue2=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1rhb41q\",\"data-styles-preset\":\"h8imkrbUn\",children:\"''Respyre\u2019s product can make our projects more economically efficient with their decreasing of NOx. This, in combination with its cooling effect, water retention, and it reducing maintenance, makes Respyre very interesting.''\"})}),fonts:[\"Inter\"]},Nbh08vPLJ:{children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1rhb41q\",\"data-styles-preset\":\"h8imkrbUn\",children:\"''The development of Respyre\u2019s green fa\\xe7ades are an important and beneficial addition to our projects. They open doors to creatively include plants in the design of real estate.''\"})}),fonts:[\"Inter\"]},Nwmhl91lm:{children:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"\u201CRespyre is unique due to their many solutions on sustainability. Think of the decrease in NOx and CO\u2082, the increase of biodiversity, water absorption, cooling, and much more.\u201D\"})})},qZ3T0ASA1:{children:(_getLocalizedValue5=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgTWVkaXVt\",\"--framer-font-family\":'\"Satoshi Medium\", \"Satoshi Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"55px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"''The development of Respyre\u2019s green fa\\xe7ades are an important and beneficial addition to our projects. They open doors to creatively include plants in the design of real estate.''\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5oce3p\",\"data-framer-name\":\"Frame 238\",layoutDependency:layoutDependency,layoutId:\"MRfwvYSka\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a1m755\",\"data-framer-name\":\"Line 181\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"ggw01rDf1\",svg:'<svg width=\"23\" height=\"8\" viewBox=\"-2 -2 23 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.65869 2H16.6587\" stroke=\"#4D4D4D\" stroke-width=\"3\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgQm9sZA==\",\"--framer-font-family\":'\"Satoshi Bold\", \"Satoshi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"Wouter Vreeken, Teyler\"})}),className:\"framer-2stldp\",\"data-framer-name\":\"Wouter Vreeken, Teyler\",fonts:[\"CUSTOM;Satoshi Bold\"],layoutDependency:layoutDependency,layoutId:\"HiIaGOaRy\",style:{\"--extracted-1lwpl3i\":\"var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77))\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({J0bUkIQUL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgQm9sZA==\",\"--framer-font-family\":'\"Satoshi Bold\", \"Satoshi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"Ali Aedaghat Tarigheh, Dura Vermeer\"})})},l8gChlB1d:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-17y2leo\",\"data-styles-preset\":\"VPi21I9L0\",children:\"Ali Aedaghat Tarigheh, Dura Vermeer\"})}),fonts:[\"Inter\"]},Nbh08vPLJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-17y2leo\",\"data-styles-preset\":\"VPi21I9L0\",children:\"Estanislao Lopez Menardi, KAW Architecten\"})}),fonts:[\"Inter\"]},qZ3T0ASA1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO1NhdG9zaGkgQm9sZA==\",\"--framer-font-family\":'\"Satoshi Bold\", \"Satoshi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-be409b5d-128d-4795-b436-9099a86b46ba, rgb(77, 77, 77)))\"},children:\"Estanislao Lopez Menardi, KAW Architecten\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hum5dd\",layoutDependency:layoutDependency,layoutId:\"eZlpHBEwA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iektfn-container\",\"data-framer-name\":\"arrow testimonials left\",layoutDependency:layoutDependency,layoutId:\"r2VGXLivL-container\",name:\"arrow testimonials left\",children:/*#__PURE__*/_jsx(ArrowHover,{height:\"100%\",id:\"r2VGXLivL\",layoutId:\"r2VGXLivL\",name:\"arrow testimonials left\",PJXjzMfx5:PJXjzMfx5k7d1lj,style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({J0bUkIQUL:{PJXjzMfx5:PJXjzMfx5nc00sh},l8gChlB1d:{PJXjzMfx5:PJXjzMfx517umci4},Nbh08vPLJ:{PJXjzMfx5:PJXjzMfx513kkz7b},Nwmhl91lm:{PJXjzMfx5:PJXjzMfx51c2xi43},qZ3T0ASA1:{PJXjzMfx5:PJXjzMfx5vjk2s4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gnu43o-container\",layoutDependency:layoutDependency,layoutId:\"OITxEBI6o-container\",children:/*#__PURE__*/_jsx(ArrowTestimonialsRight,{AnkqU82sE:AnkqU82sEnc00sh,height:\"100%\",id:\"OITxEBI6o\",layoutId:\"OITxEBI6o\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({J0bUkIQUL:{AnkqU82sE:AnkqU82sEvjk2s4},l8gChlB1d:{AnkqU82sE:AnkqU82sE13kkz7b},Nbh08vPLJ:{AnkqU82sE:AnkqU82sE1c2xi43},Nwmhl91lm:{AnkqU82sE:AnkqU82sE17umci4},qZ3T0ASA1:{AnkqU82sE:AnkqU82sEk7d1lj}},baseVariant,gestureVariant)})})})]})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6TDwZ.framer-e5yr12, .framer-6TDwZ .framer-e5yr12 { display: block; }\",\".framer-6TDwZ.framer-14wnkkg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 105px; height: min-content; justify-content: center; max-width: 1512px; overflow: visible; padding: 0px; position: relative; width: 1252px; }\",\".framer-6TDwZ .framer-1hqwua7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-7088cl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6TDwZ .framer-sc2uzq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 130px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-1n0d9fz { flex: none; height: 179px; overflow: visible; position: relative; width: 181px; }\",\".framer-6TDwZ .framer-1hb6l68 { aspect-ratio: 1.0092657504800977 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 149px); left: 0px; position: absolute; top: 0px; width: 150px; }\",\".framer-6TDwZ .framer-t6973m { 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; min-width: 400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6TDwZ .framer-9qrgg8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6TDwZ .framer-45e615 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-1stqsum { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-p3ucvx { flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6TDwZ .framer-5oce3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-1a1m755 { flex: none; height: 8px; position: relative; width: 23px; }\",\".framer-6TDwZ .framer-2stldp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-6TDwZ .framer-1hum5dd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6TDwZ .framer-iektfn-container { flex: none; height: auto; position: relative; width: 50px; }\",\".framer-6TDwZ .framer-gnu43o-container { flex: none; height: 48px; position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6TDwZ.framer-14wnkkg, .framer-6TDwZ .framer-1hqwua7, .framer-6TDwZ .framer-sc2uzq, .framer-6TDwZ .framer-t6973m, .framer-6TDwZ .framer-9qrgg8, .framer-6TDwZ .framer-45e615, .framer-6TDwZ .framer-1stqsum, .framer-6TDwZ .framer-5oce3p, .framer-6TDwZ .framer-1hum5dd { gap: 0px; } .framer-6TDwZ.framer-14wnkkg > * { margin: 0px; margin-bottom: calc(105px / 2); margin-top: calc(105px / 2); } .framer-6TDwZ.framer-14wnkkg > :first-child, .framer-6TDwZ .framer-1hqwua7 > :first-child, .framer-6TDwZ .framer-9qrgg8 > :first-child, .framer-6TDwZ .framer-45e615 > :first-child, .framer-6TDwZ .framer-1stqsum > :first-child { margin-top: 0px; } .framer-6TDwZ.framer-14wnkkg > :last-child, .framer-6TDwZ .framer-1hqwua7 > :last-child, .framer-6TDwZ .framer-9qrgg8 > :last-child, .framer-6TDwZ .framer-45e615 > :last-child, .framer-6TDwZ .framer-1stqsum > :last-child { margin-bottom: 0px; } .framer-6TDwZ .framer-1hqwua7 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-6TDwZ .framer-sc2uzq > * { margin: 0px; margin-left: calc(130px / 2); margin-right: calc(130px / 2); } .framer-6TDwZ .framer-sc2uzq > :first-child, .framer-6TDwZ .framer-t6973m > :first-child, .framer-6TDwZ .framer-5oce3p > :first-child, .framer-6TDwZ .framer-1hum5dd > :first-child { margin-left: 0px; } .framer-6TDwZ .framer-sc2uzq > :last-child, .framer-6TDwZ .framer-t6973m > :last-child, .framer-6TDwZ .framer-5oce3p > :last-child, .framer-6TDwZ .framer-1hum5dd > :last-child { margin-right: 0px; } .framer-6TDwZ .framer-t6973m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6TDwZ .framer-9qrgg8 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-6TDwZ .framer-45e615 > *, .framer-6TDwZ .framer-1stqsum > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6TDwZ .framer-5oce3p > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-6TDwZ .framer-1hum5dd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-6TDwZ.framer-v-c76hpz .framer-1hqwua7 { gap: 80px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6TDwZ.framer-v-c76hpz .framer-1hqwua7 { gap: 0px; } .framer-6TDwZ.framer-v-c76hpz .framer-1hqwua7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-6TDwZ.framer-v-c76hpz .framer-1hqwua7 > :first-child { margin-top: 0px; } .framer-6TDwZ.framer-v-c76hpz .framer-1hqwua7 > :last-child { margin-bottom: 0px; } }\",\".framer-6TDwZ.framer-v-rhyydr.framer-14wnkkg { width: 380px; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-1hqwua7, .framer-6TDwZ.framer-v-36g0su .framer-1hqwua7, .framer-6TDwZ.framer-v-1vcadke .framer-1hqwua7 { gap: 40px; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-sc2uzq, .framer-6TDwZ.framer-v-36g0su .framer-sc2uzq, .framer-6TDwZ.framer-v-1vcadke .framer-sc2uzq { gap: 0px; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-1hb6l68, .framer-6TDwZ.framer-v-36g0su .framer-1hb6l68, .framer-6TDwZ.framer-v-1vcadke .framer-1hb6l68 { height: var(--framer-aspect-ratio-supported, 129px); width: 130px; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-t6973m { flex-direction: column; min-width: 340px; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-9qrgg8 { flex: none; width: 100%; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-iektfn-container { order: 0; }\",\".framer-6TDwZ.framer-v-rhyydr .framer-gnu43o-container { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6TDwZ.framer-v-rhyydr .framer-1hqwua7, .framer-6TDwZ.framer-v-rhyydr .framer-sc2uzq, .framer-6TDwZ.framer-v-rhyydr .framer-t6973m { gap: 0px; } .framer-6TDwZ.framer-v-rhyydr .framer-1hqwua7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6TDwZ.framer-v-rhyydr .framer-1hqwua7 > :first-child, .framer-6TDwZ.framer-v-rhyydr .framer-t6973m > :first-child { margin-top: 0px; } .framer-6TDwZ.framer-v-rhyydr .framer-1hqwua7 > :last-child, .framer-6TDwZ.framer-v-rhyydr .framer-t6973m > :last-child { margin-bottom: 0px; } .framer-6TDwZ.framer-v-rhyydr .framer-sc2uzq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6TDwZ.framer-v-rhyydr .framer-sc2uzq > :first-child { margin-left: 0px; } .framer-6TDwZ.framer-v-rhyydr .framer-sc2uzq > :last-child { margin-right: 0px; } .framer-6TDwZ.framer-v-rhyydr .framer-t6973m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-6TDwZ.framer-v-36g0su .framer-t6973m, .framer-6TDwZ.framer-v-1vcadke .framer-t6973m { min-width: 340px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6TDwZ.framer-v-36g0su .framer-1hqwua7, .framer-6TDwZ.framer-v-36g0su .framer-sc2uzq { gap: 0px; } .framer-6TDwZ.framer-v-36g0su .framer-1hqwua7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6TDwZ.framer-v-36g0su .framer-1hqwua7 > :first-child { margin-top: 0px; } .framer-6TDwZ.framer-v-36g0su .framer-1hqwua7 > :last-child { margin-bottom: 0px; } .framer-6TDwZ.framer-v-36g0su .framer-sc2uzq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6TDwZ.framer-v-36g0su .framer-sc2uzq > :first-child { margin-left: 0px; } .framer-6TDwZ.framer-v-36g0su .framer-sc2uzq > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6TDwZ.framer-v-1vcadke .framer-1hqwua7, .framer-6TDwZ.framer-v-1vcadke .framer-sc2uzq { gap: 0px; } .framer-6TDwZ.framer-v-1vcadke .framer-1hqwua7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6TDwZ.framer-v-1vcadke .framer-1hqwua7 > :first-child { margin-top: 0px; } .framer-6TDwZ.framer-v-1vcadke .framer-1hqwua7 > :last-child { margin-bottom: 0px; } .framer-6TDwZ.framer-v-1vcadke .framer-sc2uzq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6TDwZ.framer-v-1vcadke .framer-sc2uzq > :first-child { margin-left: 0px; } .framer-6TDwZ.framer-v-1vcadke .framer-sc2uzq > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 504\n * @framerIntrinsicWidth 1252\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]},\"qZ3T0ASA1\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]},\"J0bUkIQUL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]},\"Nwmhl91lm\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]},\"Nbh08vPLJ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]},\"l8gChlB1d\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1512px\",null,null]}}}\n * @framerVariables {\"jlKtLVE5S\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMn_xmDIB7=withCSS(Component,css,\"framer-6TDwZ\");export default FramerMn_xmDIB7;FramerMn_xmDIB7.displayName=\"Testimonials\";FramerMn_xmDIB7.defaultProps={height:504,width:1252};addPropertyControls(FramerMn_xmDIB7,{variant:{options:[\"MCrvyEt9o\",\"qZ3T0ASA1\",\"J0bUkIQUL\",\"Nwmhl91lm\",\"Nbh08vPLJ\",\"l8gChlB1d\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"phone V1\",\"Phine V2\",\"Phone v4\"],title:\"Variant\",type:ControlType.Enum},jlKtLVE5S:{__defaultAssetReference:\"data:framer/asset-reference,igolB1GciwLFGM2ypRxKwT7pEP0.png?originalFilename=image+1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerMn_xmDIB7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Satoshi Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/cEsy1GfJcC5FNQtE1q3V5SiQ.otf\"},{family:\"Satoshi Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/V6nhwkmEcIhl99DDGgN3ORL7l18.otf\"}]},...ArrowHoverFonts,...ArrowTestimonialsRightFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMn_xmDIB7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]},\\\"qZ3T0ASA1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]},\\\"J0bUkIQUL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]},\\\"Nwmhl91lm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]},\\\"Nbh08vPLJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]},\\\"l8gChlB1d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1512px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"504\",\"framerIntrinsicWidth\":\"1252\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"jlKtLVE5S\\\":\\\"image\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mn_xmDIB7.map"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "_tap", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "PJXjzMfx5", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr33o3a", "args", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerM06ZG_oTU", "withCSS", "M06ZG_oTU_default", "addPropertyControls", "ControlType", "addFonts", "Mn_xmDIB7_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "_tap", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "AnkqU82sE", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1kocmz0", "args", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerN9fBhGEkJ", "withCSS", "N9fBhGEkJ_default", "addPropertyControls", "ControlType", "addFonts", "ArrowHoverFonts", "getFonts", "M06ZG_oTU_default", "ArrowTestimonialsRightFonts", "N9fBhGEkJ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "Mn_xmDIB7_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jlKtLVE5S", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap4zbyd6", "args", "PJXjzMfx5k7d1lj", "PJXjzMfx5vjk2s4", "PJXjzMfx5nc00sh", "PJXjzMfx51c2xi43", "PJXjzMfx513kkz7b", "PJXjzMfx517umci4", "AnkqU82sEnc00sh", "AnkqU82sEk7d1lj", "AnkqU82sEvjk2s4", "AnkqU82sE17umci4", "AnkqU82sE1c2xi43", "AnkqU82sE13kkz7b", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "LayoutGroup", "cx", "u", "RichText2", "Image2", "SVG", "ComponentViewportProvider", "css", "FramerMn_xmDIB7", "withCSS", "Mn_xmDIB7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
