{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/cLIkRxj7uSsl8U6Yz6KW/CX5k92DMlvvC9sqPxybY/C5yy89f_b.js", "ssg:https://framerusercontent.com/modules/7a1UogTYTrrbAm6HFJV7/6aDt4fAull2xPG0xVfVr/cGMSeGk1x.js", "ssg:https://framerusercontent.com/modules/ELpKCacehvewLzxTBPso/z2gBOBN551iy4rXzwc8V/CYHcqD7pb.js", "ssg:https://framerusercontent.com/modules/qgcGLMGpGrOpKd8L3qQd/WqML8sxLLzERBOnMBvIF/BGhlw29zJ.js", "ssg:https://framerusercontent.com/modules/wInvhFvO9YPDgi2q76u9/3f4rlpUmt8wbErDU5HUO/C5yy89f_b.js", "ssg:https://framerusercontent.com/modules/oV0iXLOuKoFgAGyUBLvO/MZz4mDLtltPVpOXYfoec/Gl33TJkGi.js", "ssg:https://framerusercontent.com/modules/prjTqW3qBM7hkRHOt5xa/Oe3AENueY0ntyKa7Su5f/L75al3MkC.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js", "ssg:https://framerusercontent.com/modules/oituq8VbjctVPpTbE7Uq/y0EDMkumYvPQuJZkmebk/bggwXjXKT.js", "ssg:https://framerusercontent.com/modules/fJgS0dLbL13yGsvYscmJ/ZjbKScAbazLiYJXdaOXI/zHQ8vDSDy.js", "ssg:https://framerusercontent.com/modules/jQWRFYjmSQ1S2NyD2703/OkeCrOF3cyOerztBPhNq/BVjSwE6wL.js", "ssg:https://framerusercontent.com/modules/hUtp4l6GbIi9AWNTGvVm/zy0hnIVLt7mZ6utgFG9e/augiA20Il.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", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (63c002f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"QoaNUxFX1\"];const serializationHash=\"framer-a7ahm\";const variantClassNames={QoaNUxFX1:\"framer-v-1apuh2b\"};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 equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};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 humanReadableEnumMap={Upload:\"ZNKzRDlZD\",Youtube:\"X69Ow95Dw\"};const getProps=({height,id,videoOption,vIDeoUpload,width,youtubeLink,...props})=>{var _humanReadableEnumMap_videoOption,_ref,_ref1,_ref2;return{...props,bgynmosJn:(_ref1=(_ref=(_humanReadableEnumMap_videoOption=humanReadableEnumMap[videoOption])!==null&&_humanReadableEnumMap_videoOption!==void 0?_humanReadableEnumMap_videoOption:videoOption)!==null&&_ref!==void 0?_ref:props.bgynmosJn)!==null&&_ref1!==void 0?_ref1:\"X69Ow95Dw\",degXAWMiR:vIDeoUpload!==null&&vIDeoUpload!==void 0?vIDeoUpload:props.degXAWMiR,WSnegLgvc:(_ref2=youtubeLink!==null&&youtubeLink!==void 0?youtubeLink:props.WSnegLgvc)!==null&&_ref2!==void 0?_ref2:\"https://youtu.be/smPos0mJvh8\"};};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,bgynmosJn,degXAWMiR,WSnegLgvc,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QoaNUxFX1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=equals(bgynmosJn,\"X69Ow95Dw\");const visible1=equals(bgynmosJn,\"ZNKzRDlZD\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1apuh2b\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QoaNUxFX1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vmc5ek-container\",layoutDependency:layoutDependency,layoutId:\"lSp2142jI-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"lSp2142jI\",isMixedBorderRadius:false,isRed:false,layoutId:\"lSp2142jI\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:WSnegLgvc,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wyu7fr-container\",layoutDependency:layoutDependency,layoutId:\"I4iyIEDz7-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"I4iyIEDz7\",isMixedBorderRadius:false,layoutId:\"I4iyIEDz7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:degXAWMiR,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:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a7ahm.framer-aoznj3, .framer-a7ahm .framer-aoznj3 { display: block; }\",\".framer-a7ahm.framer-1apuh2b { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 734px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1432px; }\",\".framer-a7ahm .framer-1vmc5ek-container, .framer-a7ahm .framer-1wyu7fr-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a7ahm.framer-1apuh2b { gap: 0px; } .framer-a7ahm.framer-1apuh2b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-a7ahm.framer-1apuh2b > :first-child { margin-left: 0px; } .framer-a7ahm.framer-1apuh2b > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 734\n * @framerIntrinsicWidth 1432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bgynmosJn\":\"videoOption\",\"degXAWMiR\":\"vIDeoUpload\",\"WSnegLgvc\":\"youtubeLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC5yy89f_b=withCSS(Component,css,\"framer-a7ahm\");export default FramerC5yy89f_b;FramerC5yy89f_b.displayName=\"Hero Video\";FramerC5yy89f_b.defaultProps={height:734,width:1432};addPropertyControls(FramerC5yy89f_b,{bgynmosJn:{defaultValue:\"X69Ow95Dw\",options:[\"X69Ow95Dw\",\"ZNKzRDlZD\"],optionTitles:[\"Youtube\",\"Upload\"],title:\"Video Option\",type:ControlType.Enum},degXAWMiR:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"VIdeo Upload\"},WSnegLgvc:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Youtube Link\",type:ControlType.String}});addFonts(FramerC5yy89f_b,[{explicitInter:true,fonts:[]},...YouTubeFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC5yy89f_b\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"bgynmosJn\\\":\\\"videoOption\\\",\\\"degXAWMiR\\\":\\\"vIDeoUpload\\\",\\\"WSnegLgvc\\\":\\\"youtubeLink\\\"}\",\"framerIntrinsicWidth\":\"1432\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"734\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C5yy89f_b.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,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/vqU0dHgTleET5ffpQPQr/ZDskkhQ7A5Kwk0wESntV/iMijT7oVt.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hHcbPDgxlJlpaKWdxlxI/QpObNyBYIxweGvKqbaYw/n1TDyqbME.js\";import Button from\"https://framerusercontent.com/modules/xxsgSljsWMGeia9h2iQC/vfs0mAaG8VCa0sSIJzAq/Cx9XY6IZP.js\";const ButtonFonts=getFonts(Button);const serializationHash=\"framer-xwKJR\";const variantClassNames={I7oPUli2t:\"framer-v-1hymihn\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({cardLink,height,id,image,text,title,width,...props})=>{var _ref,_ref1;return{...props,c_HPUcYBZ:image!==null&&image!==void 0?image:props.c_HPUcYBZ,dFS1qTHzR:(_ref=title!==null&&title!==void 0?title:props.dFS1qTHzR)!==null&&_ref!==void 0?_ref:\"Influencer marketing\",kfyOJ49Oz:cardLink!==null&&cardLink!==void 0?cardLink:props.kfyOJ49Oz,QW60zCcEN:(_ref1=text!==null&&text!==void 0?text:props.QW60zCcEN)!==null&&_ref1!==void 0?_ref1:\"Ik wil met Duitse influencers mijn Duitse doelgroep bereiken.\"};};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,dFS1qTHzR,QW60zCcEN,c_HPUcYBZ,kfyOJ49Oz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"I7oPUli2t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hymihn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"I7oPUli2t\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(56, 56, 56))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05)\",...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||446.5)-0-507.5)/2+0+0)),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(c_HPUcYBZ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-119m2uz\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ej31seNh3\",style:{borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qqqr78\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"OyIw4EtkT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1toqe2o\",\"data-styles-preset\":\"n1TDyqbME\",children:\"Influencer marketing\"})}),className:\"framer-5mveav\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LvnFfZEtG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:dFS1qTHzR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9ny3hq\",\"data-styles-preset\":\"iMijT7oVt\",children:\"Ik wil met Duitse influencers mijn Duitse doelgroep bereiken.\"})}),className:\"framer-c7ssmg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ANM6UcdIn\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:QW60zCcEN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||446.5)-0-507.5)/2+240+0)+30+157.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i6lzm-container\",layoutDependency:layoutDependency,layoutId:\"rrUHLQ4xn-container\",children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Dit wil ik\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"rrUHLQ4xn\",khVKZIZMp:18,layoutId:\"rrUHLQ4xn\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:kfyOJ49Oz,variant:\"xZBg_B9lZ\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xwKJR.framer-u4ymtf, .framer-xwKJR .framer-u4ymtf { display: block; }\",\".framer-xwKJR.framer-1hymihn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xwKJR .framer-119m2uz { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-xwKJR .framer-1qqqr78 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-xwKJR .framer-5mveav, .framer-xwKJR .framer-c7ssmg { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xwKJR .framer-1i6lzm-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwKJR.framer-1hymihn, .framer-xwKJR .framer-1qqqr78 { gap: 0px; } .framer-xwKJR.framer-1hymihn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xwKJR.framer-1hymihn > :first-child, .framer-xwKJR .framer-1qqqr78 > :first-child { margin-top: 0px; } .framer-xwKJR.framer-1hymihn > :last-child, .framer-xwKJR .framer-1qqqr78 > :last-child { margin-bottom: 0px; } .framer-xwKJR .framer-1qqqr78 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-xwKJR[data-border=\"true\"]::after, .framer-xwKJR [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 446.5\n * @framerIntrinsicWidth 320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"100px\",null,null,null]}}}\n * @framerVariables {\"dFS1qTHzR\":\"title\",\"QW60zCcEN\":\"text\",\"c_HPUcYBZ\":\"image\",\"kfyOJ49Oz\":\"cardLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercGMSeGk1x=withCSS(Component,css,\"framer-xwKJR\");export default FramercGMSeGk1x;FramercGMSeGk1x.displayName=\"Card\";FramercGMSeGk1x.defaultProps={height:446.5,width:320};addPropertyControls(FramercGMSeGk1x,{dFS1qTHzR:{defaultValue:\"Influencer marketing\",displayTextArea:false,title:\"Title\",type:ControlType.String},QW60zCcEN:{defaultValue:\"Ik wil met Duitse influencers mijn Duitse doelgroep bereiken.\",displayTextArea:false,title:\"Text\",type:ControlType.String},c_HPUcYBZ:{title:\"Image\",type:ControlType.ResponsiveImage},kfyOJ49Oz:{title:\"CardLink\",type:ControlType.Link}});addFonts(FramercGMSeGk1x,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercGMSeGk1x\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"320\",\"framerVariables\":\"{\\\"dFS1qTHzR\\\":\\\"title\\\",\\\"QW60zCcEN\\\":\\\"text\\\",\\\"c_HPUcYBZ\\\":\\\"image\\\",\\\"kfyOJ49Oz\\\":\\\"cardLink\\\"}\",\"framerIntrinsicHeight\":\"446.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"100px\\\",null,null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Card from\"https://framerusercontent.com/modules/7a1UogTYTrrbAm6HFJV7/6aDt4fAull2xPG0xVfVr/cGMSeGk1x.js\";const CardFonts=getFonts(Card);const cycleOrder=[\"Y7ftiyPLU\",\"f7nlIEA1b\",\"uuqCaoR4E\",\"SEWCJKF43\"];const serializationHash=\"framer-YK01L\";const variantClassNames={f7nlIEA1b:\"framer-v-1g32v3g\",SEWCJKF43:\"framer-v-if2fs4\",uuqCaoR4E:\"framer-v-6gpgt1\",Y7ftiyPLU:\"framer-v-fzaj21\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={\"Landscape Mobile\":\"uuqCaoR4E\",Desktop:\"Y7ftiyPLU\",Mobile:\"SEWCJKF43\",Tablet:\"f7nlIEA1b\"};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:\"Y7ftiyPLU\"};};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:\"Y7ftiyPLU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();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-fzaj21\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Y7ftiyPLU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(248, 244, 242)\",...style},...addPropertyOverrides({f7nlIEA1b:{\"data-framer-name\":\"Tablet\"},SEWCJKF43:{\"data-framer-name\":\"Mobile\"},uuqCaoR4E:{\"data-framer-name\":\"Landscape Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bmqxsw\",layoutDependency:layoutDependency,layoutId:\"GDIhgGToE\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yaylJ3tXJ\"},implicitPathVariables:undefined},{href:{webPageId:\"yaylJ3tXJ\"},implicitPathVariables:undefined},{href:{webPageId:\"yaylJ3tXJ\"},implicitPathVariables:undefined},{href:{webPageId:\"yaylJ3tXJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"320px\",...addPropertyOverrides({f7nlIEA1b:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-plm4o1-container\",layoutDependency:layoutDependency,layoutId:\"zEgPTutgE-container\",children:/*#__PURE__*/_jsx(Card,{c_HPUcYBZ:addImageAlt({src:\"https://framerusercontent.com/images/G4pXQ9Qh7sB9MuyvobHXXTp5kM.jpg\",srcSet:\"https://framerusercontent.com/images/G4pXQ9Qh7sB9MuyvobHXXTp5kM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G4pXQ9Qh7sB9MuyvobHXXTp5kM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G4pXQ9Qh7sB9MuyvobHXXTp5kM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G4pXQ9Qh7sB9MuyvobHXXTp5kM.jpg 3996w\"},\"\"),dFS1qTHzR:\"Influencer marketing\",height:\"100%\",id:\"zEgPTutgE\",kfyOJ49Oz:resolvedLinks[0],layoutId:\"zEgPTutgE\",QW60zCcEN:\"Ik wil met Duitse influencers mijn Duitse doelgroep bereiken.\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({f7nlIEA1b:{kfyOJ49Oz:resolvedLinks[1]},SEWCJKF43:{kfyOJ49Oz:resolvedLinks[3]},uuqCaoR4E:{kfyOJ49Oz:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m5Ixx9n76\"},implicitPathVariables:undefined},{href:{webPageId:\"m5Ixx9n76\"},implicitPathVariables:undefined},{href:{webPageId:\"m5Ixx9n76\"},implicitPathVariables:undefined},{href:{webPageId:\"m5Ixx9n76\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"320px\",...addPropertyOverrides({f7nlIEA1b:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11l7tns-container\",layoutDependency:layoutDependency,layoutId:\"rJlFrTR1y-container\",children:/*#__PURE__*/_jsx(Card,{c_HPUcYBZ:addImageAlt({src:\"https://framerusercontent.com/images/cGq8lPiZfZ9VfpkIldThdFpdxI.jpg\",srcSet:\"https://framerusercontent.com/images/cGq8lPiZfZ9VfpkIldThdFpdxI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cGq8lPiZfZ9VfpkIldThdFpdxI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cGq8lPiZfZ9VfpkIldThdFpdxI.jpg 1080w\"},\"\"),dFS1qTHzR:\"Content Creation\",height:\"100%\",id:\"rJlFrTR1y\",kfyOJ49Oz:resolvedLinks1[0],layoutId:\"rJlFrTR1y\",QW60zCcEN:\"Ik wil met Duitstalige content mijn Duitse doelgroep te bereiken\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({f7nlIEA1b:{kfyOJ49Oz:resolvedLinks1[1]},SEWCJKF43:{kfyOJ49Oz:resolvedLinks1[3]},uuqCaoR4E:{kfyOJ49Oz:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jKsxdFeJB\"},implicitPathVariables:undefined},{href:{webPageId:\"jKsxdFeJB\"},implicitPathVariables:undefined},{href:{webPageId:\"jKsxdFeJB\"},implicitPathVariables:undefined},{href:{webPageId:\"jKsxdFeJB\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"320px\",...addPropertyOverrides({f7nlIEA1b:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ob234-container\",layoutDependency:layoutDependency,layoutId:\"JyfxKy5Ov-container\",children:/*#__PURE__*/_jsx(Card,{c_HPUcYBZ:addImageAlt({src:\"https://framerusercontent.com/images/LysO1ocBWMhACkmCzDW2FpwBQx8.jpg\",srcSet:\"https://framerusercontent.com/images/LysO1ocBWMhACkmCzDW2FpwBQx8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LysO1ocBWMhACkmCzDW2FpwBQx8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LysO1ocBWMhACkmCzDW2FpwBQx8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LysO1ocBWMhACkmCzDW2FpwBQx8.jpg 3456w\"},\"\"),dFS1qTHzR:\"Workshops\",height:\"100%\",id:\"JyfxKy5Ov\",kfyOJ49Oz:resolvedLinks2[0],layoutId:\"JyfxKy5Ov\",QW60zCcEN:\"Il wil een workshop en concrete roadmap voor de Duitse markt\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({f7nlIEA1b:{kfyOJ49Oz:resolvedLinks2[1]},SEWCJKF43:{kfyOJ49Oz:resolvedLinks2[3]},uuqCaoR4E:{kfyOJ49Oz:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YK01L.framer-en5jj2, .framer-YK01L .framer-en5jj2 { display: block; }\",\".framer-YK01L.framer-fzaj21 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 1400px; }\",\".framer-YK01L .framer-bmqxsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YK01L .framer-plm4o1-container, .framer-YK01L .framer-11l7tns-container, .framer-YK01L .framer-3ob234-container { flex: none; height: auto; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YK01L.framer-fzaj21, .framer-YK01L .framer-bmqxsw { gap: 0px; } .framer-YK01L.framer-fzaj21 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-YK01L.framer-fzaj21 > :first-child { margin-top: 0px; } .framer-YK01L.framer-fzaj21 > :last-child { margin-bottom: 0px; } .framer-YK01L .framer-bmqxsw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YK01L .framer-bmqxsw > :first-child { margin-left: 0px; } .framer-YK01L .framer-bmqxsw > :last-child { margin-right: 0px; } }\",\".framer-YK01L.framer-v-1g32v3g.framer-fzaj21 { padding: 80px 40px 80px 40px; width: 991px; }\",\".framer-YK01L.framer-v-1g32v3g .framer-plm4o1-container, .framer-YK01L.framer-v-1g32v3g .framer-11l7tns-container, .framer-YK01L.framer-v-1g32v3g .framer-3ob234-container { flex: 1 0 0px; width: 1px; }\",\".framer-YK01L.framer-v-6gpgt1.framer-fzaj21 { width: 767px; }\",\".framer-YK01L.framer-v-if2fs4.framer-fzaj21 { width: 479px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 646.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"f7nlIEA1b\":{\"layout\":[\"fixed\",\"auto\"]},\"uuqCaoR4E\":{\"layout\":[\"fixed\",\"auto\"]},\"SEWCJKF43\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCYHcqD7pb=withCSS(Component,css,\"framer-YK01L\");export default FramerCYHcqD7pb;FramerCYHcqD7pb.displayName=\"Diensten\";FramerCYHcqD7pb.defaultProps={height:646.5,width:1400};addPropertyControls(FramerCYHcqD7pb,{variant:{options:[\"Y7ftiyPLU\",\"f7nlIEA1b\",\"uuqCaoR4E\",\"SEWCJKF43\"],optionTitles:[\"Desktop\",\"Tablet\",\"Landscape Mobile\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCYHcqD7pb,[{explicitInter:true,fonts:[]},...CardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCYHcqD7pb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f7nlIEA1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uuqCaoR4E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SEWCJKF43\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"646.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a387266)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"kydPJQOad\"];const serializationHash=\"framer-kB0l6\";const variantClassNames={kydPJQOad:\"framer-v-srz2pk\"};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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kydPJQOad\",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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-srz2pk\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Play\",layoutDependency:layoutDependency,layoutId:\"kydPJQOad\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(0, 0, 0))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nk610y\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"vWInCFiEr\",svg:'<svg width=\"44\" height=\"44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12.66 8.318a1.1 1.1 0 0 0-1.66.946v25.472a1.1 1.1 0 0 0 1.66.947l21.493-12.737a1.1 1.1 0 0 0 0-1.892L12.661 8.318Z\" fill=\"#FFFEF5\" stroke=\"#FFFEF5\" stroke-width=\"2.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kB0l6.framer-19nliqr, .framer-kB0l6 .framer-19nliqr { display: block; }\",\".framer-kB0l6.framer-srz2pk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 120px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-kB0l6 .framer-1nk610y { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 37%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kB0l6.framer-srz2pk { gap: 0px; } .framer-kB0l6.framer-srz2pk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kB0l6.framer-srz2pk > :first-child { margin-left: 0px; } .framer-kB0l6.framer-srz2pk > :last-child { margin-right: 0px; } }\",'.framer-kB0l6[data-border=\"true\"]::after, .framer-kB0l6 [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 120\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBGhlw29zJ=withCSS(Component,css,\"framer-kB0l6\");export default FramerBGhlw29zJ;FramerBGhlw29zJ.displayName=\"Play Button\";FramerBGhlw29zJ.defaultProps={height:120,width:120};addFonts(FramerBGhlw29zJ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBGhlw29zJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"120\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"120\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BGhlw29zJ.map", "// Generated by Framer (63c002f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"QoaNUxFX1\"];const serializationHash=\"framer-a7ahm\";const variantClassNames={QoaNUxFX1:\"framer-v-1apuh2b\"};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 equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};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 humanReadableEnumMap={Upload:\"ZNKzRDlZD\",Youtube:\"X69Ow95Dw\"};const getProps=({height,id,videoOption,vIDeoUpload,width,youtubeLink,...props})=>{var _humanReadableEnumMap_videoOption,_ref,_ref1,_ref2;return{...props,bgynmosJn:(_ref1=(_ref=(_humanReadableEnumMap_videoOption=humanReadableEnumMap[videoOption])!==null&&_humanReadableEnumMap_videoOption!==void 0?_humanReadableEnumMap_videoOption:videoOption)!==null&&_ref!==void 0?_ref:props.bgynmosJn)!==null&&_ref1!==void 0?_ref1:\"X69Ow95Dw\",degXAWMiR:vIDeoUpload!==null&&vIDeoUpload!==void 0?vIDeoUpload:props.degXAWMiR,WSnegLgvc:(_ref2=youtubeLink!==null&&youtubeLink!==void 0?youtubeLink:props.WSnegLgvc)!==null&&_ref2!==void 0?_ref2:\"https://youtu.be/smPos0mJvh8\"};};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,bgynmosJn,degXAWMiR,WSnegLgvc,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QoaNUxFX1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=equals(bgynmosJn,\"X69Ow95Dw\");const visible1=equals(bgynmosJn,\"ZNKzRDlZD\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1apuh2b\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QoaNUxFX1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vmc5ek-container\",layoutDependency:layoutDependency,layoutId:\"lSp2142jI-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"lSp2142jI\",isMixedBorderRadius:false,isRed:false,layoutId:\"lSp2142jI\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:WSnegLgvc,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wyu7fr-container\",layoutDependency:layoutDependency,layoutId:\"I4iyIEDz7-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"I4iyIEDz7\",isMixedBorderRadius:false,layoutId:\"I4iyIEDz7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:degXAWMiR,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:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a7ahm.framer-aoznj3, .framer-a7ahm .framer-aoznj3 { display: block; }\",\".framer-a7ahm.framer-1apuh2b { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 734px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1432px; }\",\".framer-a7ahm .framer-1vmc5ek-container, .framer-a7ahm .framer-1wyu7fr-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a7ahm.framer-1apuh2b { gap: 0px; } .framer-a7ahm.framer-1apuh2b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-a7ahm.framer-1apuh2b > :first-child { margin-left: 0px; } .framer-a7ahm.framer-1apuh2b > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 734\n * @framerIntrinsicWidth 1432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"bgynmosJn\":\"videoOption\",\"degXAWMiR\":\"vIDeoUpload\",\"WSnegLgvc\":\"youtubeLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerC5yy89f_b=withCSS(Component,css,\"framer-a7ahm\");export default FramerC5yy89f_b;FramerC5yy89f_b.displayName=\"Hero Video\";FramerC5yy89f_b.defaultProps={height:734,width:1432};addPropertyControls(FramerC5yy89f_b,{bgynmosJn:{defaultValue:\"X69Ow95Dw\",options:[\"X69Ow95Dw\",\"ZNKzRDlZD\"],optionTitles:[\"Youtube\",\"Upload\"],title:\"Video Option\",type:ControlType.Enum},degXAWMiR:(VideoControls===null||VideoControls===void 0?void 0:VideoControls[\"srcFile\"])&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"VIdeo Upload\"},WSnegLgvc:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Youtube Link\",type:ControlType.String}});addFonts(FramerC5yy89f_b,[{explicitInter:true,fonts:[]},...YouTubeFonts,...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC5yy89f_b\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"bgynmosJn\\\":\\\"videoOption\\\",\\\"degXAWMiR\\\":\\\"vIDeoUpload\\\",\\\"WSnegLgvc\\\":\\\"youtubeLink\\\"}\",\"framerIntrinsicWidth\":\"1432\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"734\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C5yy89f_b.map", "// Generated by Framer (a387266)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PlayButton from\"https://framerusercontent.com/modules/qgcGLMGpGrOpKd8L3qQd/WqML8sxLLzERBOnMBvIF/BGhlw29zJ.js\";import HeroVideo from\"https://framerusercontent.com/modules/wInvhFvO9YPDgi2q76u9/3f4rlpUmt8wbErDU5HUO/C5yy89f_b.js\";const HeroVideoFonts=getFonts(HeroVideo);const PlayButtonFonts=getFonts(PlayButton);const HeroVideoControls=getPropertyControls(HeroVideo);const enabledGestures={pZTqaeuGZ:{hover:true}};const cycleOrder=[\"pZTqaeuGZ\",\"uAEAADjH5\",\"BKLHaNw_M\"];const serializationHash=\"framer-kKi3Y\";const variantClassNames={BKLHaNw_M:\"framer-v-1mb9kbe\",pZTqaeuGZ:\"framer-v-zffhkq\",uAEAADjH5:\"framer-v-1dnsvk4\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 humanReadableEnumMap={Upload:\"ZNKzRDlZD\",Youtube:\"X69Ow95Dw\"};const humanReadableVariantMap={\"Mobile with play button\":\"BKLHaNw_M\",Mobile:\"uAEAADjH5\",Video:\"pZTqaeuGZ\"};const getProps=({height,id,tap,videoOption,videoUploadFile,width,youtubeLink,...props})=>{var _humanReadableEnumMap_videoOption,_ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,Kr2RiJZm7:videoUploadFile!==null&&videoUploadFile!==void 0?videoUploadFile:props.Kr2RiJZm7,L2mugY6BD:(_ref1=(_ref=(_humanReadableEnumMap_videoOption=humanReadableEnumMap[videoOption])!==null&&_humanReadableEnumMap_videoOption!==void 0?_humanReadableEnumMap_videoOption:videoOption)!==null&&_ref!==void 0?_ref:props.L2mugY6BD)!==null&&_ref1!==void 0?_ref1:\"X69Ow95Dw\",qoYqabT7V:(_ref2=youtubeLink!==null&&youtubeLink!==void 0?youtubeLink:props.qoYqabT7V)!==null&&_ref2!==void 0?_ref2:\"https://youtu.be/smPos0mJvh8\",uh0k8QU5E:tap!==null&&tap!==void 0?tap:props.uh0k8QU5E,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"pZTqaeuGZ\"};};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,uh0k8QU5E,L2mugY6BD,Kr2RiJZm7,qoYqabT7V,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pZTqaeuGZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapz39s1a=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uh0k8QU5E){const res=await uh0k8QU5E(...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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zffhkq\",className,classNames),\"data-framer-name\":\"Video\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pZTqaeuGZ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapz39s1a,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"pZTqaeuGZ-hover\":{\"data-framer-name\":undefined},BKLHaNw_M:{\"data-framer-name\":\"Mobile with play button\"},uAEAADjH5:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14qvmd8-container\",layoutDependency:layoutDependency,layoutId:\"rrs_kSJw5-container\",children:/*#__PURE__*/_jsx(HeroVideo,{bgynmosJn:L2mugY6BD,degXAWMiR:Kr2RiJZm7,height:\"100%\",id:\"rrs_kSJw5\",layoutId:\"rrs_kSJw5\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",WSnegLgvc:qoYqabT7V})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"120px\",...addPropertyOverrides({BKLHaNw_M:{width:\"48px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rca0p1-container\",layoutDependency:layoutDependency,layoutId:\"iGvJnbZab-container\",style:{opacity:0,scale:0},variants:{\"pZTqaeuGZ-hover\":{opacity:1,scale:1},BKLHaNw_M:{opacity:1,scale:1}},...addPropertyOverrides({\"pZTqaeuGZ-hover\":{transformTemplate:transformTemplate1},BKLHaNw_M:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(PlayButton,{height:\"100%\",id:\"iGvJnbZab\",layoutId:\"iGvJnbZab\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kKi3Y.framer-xv2sbj, .framer-kKi3Y .framer-xv2sbj { display: block; }\",\".framer-kKi3Y.framer-zffhkq { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 734px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1432px; }\",\".framer-kKi3Y .framer-14qvmd8-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-kKi3Y .framer-rca0p1-container { flex: none; height: 120px; left: calc(50.00000000000002% - 120px / 2); position: absolute; top: calc(50.00000000000002% - 120px / 2); width: 120px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kKi3Y.framer-zffhkq { gap: 0px; } .framer-kKi3Y.framer-zffhkq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kKi3Y.framer-zffhkq > :first-child { margin-left: 0px; } .framer-kKi3Y.framer-zffhkq > :last-child { margin-right: 0px; } }\",\".framer-kKi3Y.framer-v-1dnsvk4.framer-zffhkq, .framer-kKi3Y.framer-v-zffhkq.hover.framer-zffhkq { aspect-ratio: 1.9509536784741144 / 1; height: var(--framer-aspect-ratio-supported, 734px); }\",\".framer-kKi3Y.framer-v-1mb9kbe.framer-zffhkq { aspect-ratio: 1.9509536784741144 / 1; height: var(--framer-aspect-ratio-supported, 246px); width: 479px; }\",\".framer-kKi3Y.framer-v-1mb9kbe .framer-14qvmd8-container { order: 0; }\",\".framer-kKi3Y.framer-v-1mb9kbe .framer-rca0p1-container { aspect-ratio: 1 / 1; height: 20%; left: 50%; order: 1; top: 50%; width: var(--framer-aspect-ratio-supported, 48px); }\",\".framer-kKi3Y.framer-v-zffhkq.hover .framer-rca0p1-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 120px); left: 50%; top: 50%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 734\n * @framerIntrinsicWidth 1432\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uAEAADjH5\":{\"layout\":[\"fixed\",\"fixed\"]},\"BKLHaNw_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"xlVObuHwN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uh0k8QU5E\":\"tap\",\"L2mugY6BD\":\"videoOption\",\"Kr2RiJZm7\":\"videoUploadFile\",\"qoYqabT7V\":\"youtubeLink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGl33TJkGi=withCSS(Component,css,\"framer-kKi3Y\");export default FramerGl33TJkGi;FramerGl33TJkGi.displayName=\"Video\";FramerGl33TJkGi.defaultProps={height:734,width:1432};addPropertyControls(FramerGl33TJkGi,{variant:{options:[\"pZTqaeuGZ\",\"uAEAADjH5\",\"BKLHaNw_M\"],optionTitles:[\"Video\",\"Mobile\",\"Mobile with play button\"],title:\"Variant\",type:ControlType.Enum},uh0k8QU5E:{title:\"Tap\",type:ControlType.EventHandler},L2mugY6BD:(HeroVideoControls===null||HeroVideoControls===void 0?void 0:HeroVideoControls[\"bgynmosJn\"])&&{...HeroVideoControls[\"bgynmosJn\"],defaultValue:\"X69Ow95Dw\",description:undefined,hidden:undefined,title:\"Video Option\"},Kr2RiJZm7:(HeroVideoControls===null||HeroVideoControls===void 0?void 0:HeroVideoControls[\"degXAWMiR\"])&&{...HeroVideoControls[\"degXAWMiR\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Video Upload File\"},qoYqabT7V:{defaultValue:\"https://youtu.be/smPos0mJvh8\",title:\"Youtube Link\",type:ControlType.String}});addFonts(FramerGl33TJkGi,[{explicitInter:true,fonts:[]},...HeroVideoFonts,...PlayButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGl33TJkGi\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uAEAADjH5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BKLHaNw_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xlVObuHwN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"734\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"uh0k8QU5E\\\":\\\"tap\\\",\\\"L2mugY6BD\\\":\\\"videoOption\\\",\\\"Kr2RiJZm7\\\":\\\"videoUploadFile\\\",\\\"qoYqabT7V\\\":\\\"youtubeLink\\\"}\",\"framerIntrinsicWidth\":\"1432\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (63c002f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"FlNnsFfHj\"];const serializationHash=\"framer-fjDGl\";const variantClassNames={FlNnsFfHj:\"framer-v-1t02j6u\"};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 getProps=({height,id,label,link,width,...props})=>{var _ref;return{...props,IHYyNwOpo:(_ref=label!==null&&label!==void 0?label:props.IHYyNwOpo)!==null&&_ref!==void 0?_ref:\"TW\",Oux8uouC_:link!==null&&link!==void 0?link:props.Oux8uouC_};};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,IHYyNwOpo,Oux8uouC_,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FlNnsFfHj\",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(Link,{href:Oux8uouC_,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1t02j6u\",className,classNames)} framer-78ys3e`,\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"FlNnsFfHj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wk9o5t\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NpKITl69Q\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(0, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\"},children:\"TW\"})}),className:\"framer-gjpnxi\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"DhDGWh7wj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IHYyNwOpo,verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fjDGl.framer-78ys3e, .framer-fjDGl .framer-78ys3e { display: block; }\",\".framer-fjDGl.framer-1t02j6u { 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; position: relative; text-decoration: none; width: min-content; }\",\".framer-fjDGl .framer-wk9o5t { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 48px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fjDGl .framer-gjpnxi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fjDGl.framer-1t02j6u, .framer-fjDGl .framer-wk9o5t { gap: 0px; } .framer-fjDGl.framer-1t02j6u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fjDGl.framer-1t02j6u > :first-child { margin-left: 0px; } .framer-fjDGl.framer-1t02j6u > :last-child { margin-right: 0px; } .framer-fjDGl .framer-wk9o5t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fjDGl .framer-wk9o5t > :first-child { margin-top: 0px; } .framer-fjDGl .framer-wk9o5t > :last-child { margin-bottom: 0px; } }\",'.framer-fjDGl[data-border=\"true\"]::after, .framer-fjDGl [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 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"IHYyNwOpo\":\"label\",\"Oux8uouC_\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerL75al3MkC=withCSS(Component,css,\"framer-fjDGl\");export default FramerL75al3MkC;FramerL75al3MkC.displayName=\"Social Button\";FramerL75al3MkC.defaultProps={height:48,width:48};addPropertyControls(FramerL75al3MkC,{IHYyNwOpo:{defaultValue:\"TW\",displayTextArea:false,title:\"Label\",type:ControlType.String},Oux8uouC_:{title:\"Link\",type:ControlType.Link}});addFonts(FramerL75al3MkC,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerL75al3MkC\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"IHYyNwOpo\\\":\\\"label\\\",\\\"Oux8uouC_\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./L75al3MkC.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nCO2EzKMckVSe5IgcP6H/CZ0RcmGJ0dDaFQCRI3XP/drQlqu_7b.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/AqJZXUoyssw27QGGjRf3/QWUG8lOYHRa5nzm84sRV/WE1ryOMQl.js\";const cycleOrder=[\"WnTGMpNKW\",\"Haj4ro4b0\",\"D0n_pkEkj\",\"nyRSJqGCL\"];const serializationHash=\"framer-e4gVH\";const variantClassNames={D0n_pkEkj:\"framer-v-p5gwpv\",Haj4ro4b0:\"framer-v-1w6zh80\",nyRSJqGCL:\"framer-v-15tb4vd\",WnTGMpNKW:\"framer-v-wom48s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1512\":\"WnTGMpNKW\",\"479\":\"nyRSJqGCL\",\"767\":\"D0n_pkEkj\",\"991\":\"Haj4ro4b0\"};const getProps=({feedback,height,id,jobPosition,nameSurname,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,hQ59k7tk1:(_ref=feedback!==null&&feedback!==void 0?feedback:props.hQ59k7tk1)!==null&&_ref!==void 0?_ref:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\",t07r7zrwg:(_ref1=jobPosition!==null&&jobPosition!==void 0?jobPosition:props.t07r7zrwg)!==null&&_ref1!==void 0?_ref1:\"Marketing Director\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"WnTGMpNKW\",VjdVZSWg2:(_ref3=nameSurname!==null&&nameSurname!==void 0?nameSurname:props.VjdVZSWg2)!==null&&_ref3!==void 0?_ref3:\"Clark String\"};};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,hQ59k7tk1,VjdVZSWg2,t07r7zrwg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WnTGMpNKW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wom48s\",className,classNames),\"data-border\":true,\"data-framer-name\":\"1512\",layoutDependency:layoutDependency,layoutId:\"WnTGMpNKW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(0, 0, 0))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},...addPropertyOverrides({D0n_pkEkj:{\"data-framer-name\":\"767\"},Haj4ro4b0:{\"data-framer-name\":\"991\"},nyRSJqGCL:{\"data-framer-name\":\"479\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3kyjaw\",layoutDependency:layoutDependency,layoutId:\"RulJJL3c7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7jy03e\",\"data-styles-preset\":\"drQlqu_7b\",children:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\"})}),className:\"framer-1k7waov\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D4x4tW2rL\",text:hQ59k7tk1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D0n_pkEkj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\"},children:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\"})}),fonts:[\"GF;Outfit-300\"]},Haj4ro4b0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\"},children:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\"})}),fonts:[\"GF;Outfit-300\"]},nyRSJqGCL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\"},children:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\"})}),fonts:[\"GF;Outfit-300\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qwfqui\",layoutDependency:layoutDependency,layoutId:\"r04bsLl_x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ux1836\",\"data-styles-preset\":\"WE1ryOMQl\",children:\"Clark String\"})}),className:\"framer-whvs24\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U2MeMkWlr\",text:VjdVZSWg2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\"},children:\"Marketing Director\"})}),className:\"framer-qi0emn\",fonts:[\"GF;Outfit-300\"],layoutDependency:layoutDependency,layoutId:\"fIuoNTsF0\",style:{opacity:.8},text:t07r7zrwg,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e4gVH.framer-fwdrg2, .framer-e4gVH .framer-fwdrg2 { display: block; }\",\".framer-e4gVH.framer-wom48s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 356px; justify-content: center; overflow: visible; padding: 82px; position: relative; width: 1036px; }\",\".framer-e4gVH .framer-3kyjaw { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-e4gVH .framer-1k7waov, .framer-e4gVH .framer-whvs24, .framer-e4gVH .framer-qi0emn { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e4gVH .framer-1qwfqui { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-e4gVH.framer-wom48s, .framer-e4gVH .framer-3kyjaw, .framer-e4gVH .framer-1qwfqui { gap: 0px; } .framer-e4gVH.framer-wom48s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-e4gVH.framer-wom48s > :first-child, .framer-e4gVH .framer-3kyjaw > :first-child, .framer-e4gVH .framer-1qwfqui > :first-child { margin-top: 0px; } .framer-e4gVH.framer-wom48s > :last-child, .framer-e4gVH .framer-3kyjaw > :last-child, .framer-e4gVH .framer-1qwfqui > :last-child { margin-bottom: 0px; } .framer-e4gVH .framer-3kyjaw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-e4gVH .framer-1qwfqui > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-e4gVH.framer-v-1w6zh80.framer-wom48s, .framer-e4gVH.framer-v-p5gwpv.framer-wom48s { padding: 52px; }\",\".framer-e4gVH.framer-v-15tb4vd.framer-wom48s { height: 363px; padding: 32px 24px 32px 24px; width: 447px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-e4gVH[data-border=\"true\"]::after, .framer-e4gVH [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 356\n * @framerIntrinsicWidth 1036\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Haj4ro4b0\":{\"layout\":[\"fixed\",\"fixed\"]},\"D0n_pkEkj\":{\"layout\":[\"fixed\",\"fixed\"]},\"nyRSJqGCL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hQ59k7tk1\":\"feedback\",\"VjdVZSWg2\":\"nameSurname\",\"t07r7zrwg\":\"jobPosition\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbggwXjXKT=withCSS(Component,css,\"framer-e4gVH\");export default FramerbggwXjXKT;FramerbggwXjXKT.displayName=\"Feedback Card\";FramerbggwXjXKT.defaultProps={height:356,width:1036};addPropertyControls(FramerbggwXjXKT,{variant:{options:[\"WnTGMpNKW\",\"Haj4ro4b0\",\"D0n_pkEkj\",\"nyRSJqGCL\"],optionTitles:[\"1512\",\"991\",\"767\",\"479\"],title:\"Variant\",type:ControlType.Enum},hQ59k7tk1:{defaultValue:\"\u201CWorking with Bonnie is a dream come true. Great communication, clear vision and one of a kind quality. We couldn\u2019t be more happy with a results.\",displayTextArea:false,title:\"Feedback\",type:ControlType.String},VjdVZSWg2:{defaultValue:\"Clark String\",displayTextArea:false,title:\"Name & Surname\",type:ControlType.String},t07r7zrwg:{defaultValue:\"Marketing Director\",displayTextArea:false,title:\"Job Position\",type:ControlType.String}});addFonts(FramerbggwXjXKT,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbggwXjXKT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Haj4ro4b0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D0n_pkEkj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nyRSJqGCL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hQ59k7tk1\\\":\\\"feedback\\\",\\\"VjdVZSWg2\\\":\\\"nameSurname\\\",\\\"t07r7zrwg\\\":\\\"jobPosition\\\"}\",\"framerIntrinsicHeight\":\"356\",\"framerIntrinsicWidth\":\"1036\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bggwXjXKT.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js\";import FeedbackCard from\"https://framerusercontent.com/modules/oituq8VbjctVPpTbE7Uq/y0EDMkumYvPQuJZkmebk/bggwXjXKT.js\";const FeedbackCardFonts=getFonts(FeedbackCard);const SlideshowFonts=getFonts(Slideshow);const FeedbackCardControls=getPropertyControls(FeedbackCard);const serializationHash=\"framer-hzk52\";const variantClassNames={UafFBJCFD:\"framer-v-1pjdovy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"1512\":\"WnTGMpNKW\",\"479\":\"nyRSJqGCL\",\"767\":\"D0n_pkEkj\",\"991\":\"Haj4ro4b0\"};const getProps=({height,id,variant1,width,...props})=>{var _humanReadableEnumMap_variant1,_ref,_ref1;return{...props,za4FHQ6yM:(_ref1=(_ref=(_humanReadableEnumMap_variant1=humanReadableEnumMap[variant1])!==null&&_humanReadableEnumMap_variant1!==void 0?_humanReadableEnumMap_variant1:variant1)!==null&&_ref!==void 0?_ref:props.za4FHQ6yM)!==null&&_ref1!==void 0?_ref1:\"WnTGMpNKW\"};};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,za4FHQ6yM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UafFBJCFD\",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-1pjdovy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UafFBJCFD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-64a1rf-container\",\"data-framer-name\":\"SLideshow Animation\",layoutDependency:layoutDependency,layoutId:\"ZkiPWu5Em-container\",name:\"SLideshow Animation\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:12,arrowPadding:20,arrowPaddingBottom:-90,arrowPaddingLeft:6,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:0,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:52,leftArrow:\"https://framerusercontent.com/images/jAFWWzlpdY7xMaPQidJ11d3XYPU.svg\",rightArrow:\"https://framerusercontent.com/images/RGdUyM2Fh0FcBrS0cVF7pTexVuc.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:false,effectsOpacity:.3,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",id:\"ZkiPWu5Em\",intervalControl:4,itemAmount:1,layoutId:\"ZkiPWu5Em\",name:\"SLideshow Animation\",padding:0,paddingBottom:0,paddingLeft:16,paddingPerSide:true,paddingRight:16,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:356,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9zasaq-container\",\"data-framer-name\":\"Review 2\",layoutDependency:layoutDependency,layoutId:\"h3rPLCujP-container\",name:\"Review 2\",children:/*#__PURE__*/_jsx(FeedbackCard,{height:\"100%\",hQ59k7tk1:'\"Lea has helped to manage and grow the entire social media presence for my  e-commerce business in Germany\u2026 and my experience so far has been AMAZING!   Not only has she done an amazing job with copywriting and social media management, but she has helped me to understand the German culture towards online shopping and communication, which has been crucial in connecting with our German customer base.  I can not recommend Lea\u2019s services enough, she is extremely talented, always professional and I simply don\u2019t know what I would do without her!\"',id:\"h3rPLCujP\",layoutId:\"h3rPLCujP\",name:\"Review 2\",t07r7zrwg:\"\",variant:za4FHQ6yM,VjdVZSWg2:\"Alvie O'Brien\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:356,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vefkb3-container\",\"data-framer-name\":\"Review 1\",layoutDependency:layoutDependency,layoutId:\"CNeYOW0rI-container\",name:\"Review 1\",children:/*#__PURE__*/_jsx(FeedbackCard,{height:\"100%\",hQ59k7tk1:\"Met Lea Pelzer is het altijd erg fijn samenwerken.  Ze heeft veel idee\\xebn, houdt zich aan afspraken en is bereid om buiten de kaders te denken.  Ze is erg creatief en inspireert. Zeker een aanrader!\",id:\"CNeYOW0rI\",layoutId:\"CNeYOW0rI\",name:\"Review 1\",t07r7zrwg:\"\",variant:za4FHQ6yM,VjdVZSWg2:\"Emy Wijnholds\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:356,width:\"984px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qkq8kv-container\",\"data-framer-name\":\"Review 3\",layoutDependency:layoutDependency,layoutId:\"n9MgZwxNN-container\",name:\"Review 3\",children:/*#__PURE__*/_jsx(FeedbackCard,{height:\"100%\",hQ59k7tk1:\"Lea haar advies is duidelijk. Ze vertelt je meteen hoe het zit en wat je beter of anders kan doen.   Door een kleine aanpassing hadden wij meteen succes in onze webshop. Als je wilt uitbreiden naar Duitsland heb je daar advies bij nodig, je kan dit niet \u2018even\u2019 doen.   Daarom zou ik iedereen die wil uitbreiden naar Duitsland even een gesprek met Lea in te plannen!\",id:\"n9MgZwxNN\",layoutId:\"n9MgZwxNN\",name:\"Review 3\",t07r7zrwg:\"\",variant:\"WnTGMpNKW\",VjdVZSWg2:\"Tjerk Pieter de Vries\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hzk52.framer-1t16znw, .framer-hzk52 .framer-1t16znw { display: block; }\",\".framer-hzk52.framer-1pjdovy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 525px; justify-content: center; max-width: 1068px; overflow: visible; padding: 0px; position: relative; width: 1068px; }\",\".framer-hzk52 .framer-64a1rf-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-hzk52 .framer-9zasaq-container, .framer-hzk52 .framer-1vefkb3-container, .framer-hzk52 .framer-qkq8kv-container { height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hzk52.framer-1pjdovy { gap: 0px; } .framer-hzk52.framer-1pjdovy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hzk52.framer-1pjdovy > :first-child { margin-left: 0px; } .framer-hzk52.framer-1pjdovy > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 525\n * @framerIntrinsicWidth 1068\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,\"1068px\",null,null]}}}\n * @framerVariables {\"za4FHQ6yM\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzHQ8vDSDy=withCSS(Component,css,\"framer-hzk52\");export default FramerzHQ8vDSDy;FramerzHQ8vDSDy.displayName=\"Slideshow - Feedback\";FramerzHQ8vDSDy.defaultProps={height:525,width:1068};addPropertyControls(FramerzHQ8vDSDy,{za4FHQ6yM:(FeedbackCardControls===null||FeedbackCardControls===void 0?void 0:FeedbackCardControls[\"variant\"])&&{...FeedbackCardControls[\"variant\"],defaultValue:\"WnTGMpNKW\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FramerzHQ8vDSDy,[{explicitInter:true,fonts:[]},...FeedbackCardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzHQ8vDSDy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"za4FHQ6yM\\\":\\\"variant1\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,\\\"1068px\\\",null,null]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"525\",\"framerIntrinsicWidth\":\"1068\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zHQ8vDSDy.map", "// Generated by Framer (83b8097)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;League Spartan-300\",\"GF;League Spartan-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpAcdcFguczA.woff2\",weight:\"300\"},{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpAcdcFguczA.woff2\",weight:\"400\"}]}];export const css=['.framer-fyrbZ .framer-styles-preset-1p7irck:not(.rich-text-wrapper), .framer-fyrbZ .framer-styles-preset-1p7irck.rich-text-wrapper h3 { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1511px) and (min-width: 991px) { .framer-fyrbZ .framer-styles-preset-1p7irck:not(.rich-text-wrapper), .framer-fyrbZ .framer-styles-preset-1p7irck.rich-text-wrapper h3 { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 990px) and (min-width: 767px) { .framer-fyrbZ .framer-styles-preset-1p7irck:not(.rich-text-wrapper), .framer-fyrbZ .framer-styles-preset-1p7irck.rich-text-wrapper h3 { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 766px) and (min-width: 0px) { .framer-fyrbZ .framer-styles-preset-1p7irck:not(.rich-text-wrapper), .framer-fyrbZ .framer-styles-preset-1p7irck.rich-text-wrapper h3 { --framer-font-family: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-family-bold: \"League Spartan\", \"League Spartan Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-fyrbZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import HeroVideo from\"#framer/local/canvasComponent/C5yy89f_b/C5yy89f_b.js\";import Button from\"#framer/local/canvasComponent/Cx9XY6IZP/Cx9XY6IZP.js\";import Diensten from\"#framer/local/canvasComponent/CYHcqD7pb/CYHcqD7pb.js\";import Footer from\"#framer/local/canvasComponent/e2OLXvzs7/e2OLXvzs7.js\";import Video from\"#framer/local/canvasComponent/Gl33TJkGi/Gl33TJkGi.js\";import SocialButton from\"#framer/local/canvasComponent/L75al3MkC/L75al3MkC.js\";import Menu from\"#framer/local/canvasComponent/MBRICVGqi/MBRICVGqi.js\";import Navbar from\"#framer/local/canvasComponent/Mv4gG8nUa/Mv4gG8nUa.js\";import LineAnimation from\"#framer/local/canvasComponent/SevmM1ZPX/SevmM1ZPX.js\";import SlideshowFeedback from\"#framer/local/canvasComponent/zHQ8vDSDy/zHQ8vDSDy.js\";import*as sharedStyle from\"#framer/local/css/AJxgnHG3T/AJxgnHG3T.js\";import*as sharedStyle2 from\"#framer/local/css/BVjSwE6wL/BVjSwE6wL.js\";import*as sharedStyle3 from\"#framer/local/css/drQlqu_7b/drQlqu_7b.js\";import*as sharedStyle1 from\"#framer/local/css/vjChp2hi3/vjChp2hi3.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const MenuFonts=getFonts(Menu);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const HeroVideoFonts=getFonts(HeroVideo);const MaterialFonts=getFonts(Material);const DienstenFonts=getFonts(Diensten);const MotionDivWithFX=withFX(motion.div);const SlideshowFeedbackFonts=getFonts(SlideshowFeedback);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const SocialButtonFonts=getFonts(SocialButton);const ContainerWithFX=withFX(Container);const LineAnimationFonts=getFonts(LineAnimation);const LineAnimationWithVariantAppearEffect=withVariantAppearEffect(LineAnimation);const FooterFonts=getFonts(Footer);const breakpoints={ehXxjkd9F:\"(min-width: 991px) and (max-width: 1399px)\",UOOmXyyO7:\"(min-width: 767px) and (max-width: 990px)\",vwZY40x5t:\"(max-width: 766px)\",WQLkyLRf1:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LSaQA\";const variantClassNames={ehXxjkd9F:\"framer-v-h295jb\",UOOmXyyO7:\"framer-v-1mw2d86\",vwZY40x5t:\"framer-v-8hihce\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:.4,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-90};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 transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition3={delay:.1,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.6,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition5={delay:0,duration:.6,ease:[.44,0,.41,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:80,scale:1,skewX:0,skewY:0,x:0,y:0};const transition6={damping:30,delay:0,mass:1,stiffness:220,type:\"spring\"};const transition7={damping:60,delay:.1,mass:1,stiffness:220,type:\"spring\"};const transition8={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition9={damping:30,delay:.1,mass:1,stiffness:200,type:\"spring\"};const transition10={delay:0,duration:.2,ease:[0,0,1,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition10};const metadata=metadataProvider();const humanReadableVariantMap={\"Landscape Mobile\":\"UOOmXyyO7\",Desktop:\"WQLkyLRf1\",Mobile:\"vwZY40x5t\",Tablet:\"ehXxjkd9F\"};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:\"WQLkyLRf1\"};};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-LSaQA`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-LSaQA`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const XqChoUVti3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const W6gE2PQAE1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const uh0k8QU5E3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"UOOmXyyO7\",\"vwZY40x5t\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"MS5WYkxMM\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId1=useRouteElementId(\"NxWfQCI97\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"OlOq6wxVk\");const elementId3=useRouteElementId(\"csKIeGgkV\");const ref5=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ehXxjkd9F\",\"UOOmXyyO7\",\"vwZY40x5t\"].includes(baseVariant))return false;return true;};const elementId4=useRouteElementId(\"nP1gJ4ZO3\");const ref6=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"vwZY40x5t\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"ehXxjkd9F\",\"UOOmXyyO7\"].includes(baseVariant))return false;return true;};const elementId5=useRouteElementId(\"L89MaTrWn\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"min(100vw, 1512px)\",y:0,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1ndt0o1-container\",\"data-framer-appear-id\":\"1ndt0o1\",id:\"1ndt0o1\",initial:animation1,layoutScroll:true,optimized:true,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{variant:\"KQi6Y38mb\"},UOOmXyyO7:{variant:\"KQi6Y38mb\"},vwZY40x5t:{variant:\"KQi6Y38mb\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"kfiUFMdkO\",layoutId:\"kfiUFMdkO\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"UsHodW4Ci\",width:\"100%\",XqChoUVti:XqChoUVti3bnx0g({overlay})})}),/*#__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:[0,0,1,1],type:\"tween\"}},className:\"framer-opt069\",\"data-framer-portal-id\":\"1ndt0o1\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ONduCQJyi\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b5nz6b-container\",\"data-framer-portal-id\":\"1ndt0o1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{variant:\"u4cTc3hsK\"},UOOmXyyO7:{variant:\"FsDbIyJGy\"},vwZY40x5t:{variant:\"pBvlPK_no\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"septlg5Uo\",layoutId:\"septlg5Uo\",style:{height:\"100%\",width:\"100%\"},variant:\"FgWEmN9UW\",W6gE2PQAE:W6gE2PQAE1wnntms({overlay}),width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u2nb40\",\"data-framer-name\":\"Navbar Backgroud\",name:\"Navbar Backgroud\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f20qlq\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19k460u\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-10borr4\",\"data-framer-appear-id\":\"10borr4\",\"data-framer-name\":\"Header\",initial:animation3,name:\"Header\",optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:796,intrinsicWidth:3768,pixelHeight:828,pixelWidth:3158,sizes:\"min((min(min(100vw, 1512px) - 48px, 1512px) - 188px) * 0.396, 1200px)\",src:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png\",srcSet:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png 3158w\"}},UOOmXyyO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:796,intrinsicWidth:3768,pixelHeight:828,pixelWidth:3158,sizes:\"min((min(min(100vw, 1512px) - 48px, 1512px) - 48px) * 0.396, 1200px)\",src:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png\",srcSet:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png 3158w\"}},vwZY40x5t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:796,intrinsicWidth:3768,pixelHeight:828,pixelWidth:3158,sizes:\"min((min(min(100vw, 1512px) - 32px, 1512px) - 100px) * 0.95, 1200px)\",src:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png\",srcSet:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png 3158w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:796,intrinsicWidth:3768,pixelHeight:828,pixelWidth:3158,sizes:\"min((min(min(100vw, 1512px) - 80px, 1512px) - 80px) * 0.396, 1200px)\",src:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png\",srcSet:\"https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=512 512w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9tVDPq30A2NyGFj4AcTHGOCcoDo.png 3158w\"},className:\"framer-1lfkn9o\",\"data-framer-name\":\"$64da103c1fc66ad7ce411b2c_Logo_Light_1\",name:\"$64da103c1fc66ad7ce411b2c_Logo_Light_1\"})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"jouw groei op de Duitse markt.\"})}),className:\"framer-1s6u7y2\",\"data-framer-appear-id\":\"1s6u7y2\",fonts:[\"Inter\"],initial:animation4,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-4cvas6\",\"data-framer-appear-id\":\"4cvas6\",\"data-framer-name\":\"Buttons\",initial:animation4,name:\"Buttons\",optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ijzfl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Diensten\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"dliyn5uL4\",khVKZIZMp:22,layoutId:\"dliyn5uL4\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks[0],variant:\"bvnPKpi0R\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5a459-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks1[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks1[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Neem contact op\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"hGBZlgdit\",khVKZIZMp:22,layoutId:\"hGBZlgdit\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks1[0],variant:\"xZBg_B9lZ\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fi0294\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"DEZE MERKEN VERTROUWEN OP ONZE \",/*#__PURE__*/_jsx(\"br\",{}),\"EXPERTISE\"]})})},UOOmXyyO7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"DEZE MERKEN VERTROUWEN OP \",/*#__PURE__*/_jsx(\"br\",{}),\"ONZE EXPERTISE\"]})})},vwZY40x5t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"DEZE MERKEN VERTROUWEN \",/*#__PURE__*/_jsx(\"br\",{}),\"OP ONZE EXPERTISE\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"deze merken vertrouwen op onze expertise\"})}),className:\"framer-1qlkok4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1zrrw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwZY40x5t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:1350,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"147.8261px\",src:\"https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:1350,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:\"248.3478px\",src:\"https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png?scale-down-to=1024 819w,https://framerusercontent.com/images/CBaKu7l12oiKo8hpUa1DhnOwk.png 1080w\"},className:\"framer-1rnurjv\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:200,pixelWidth:500,src:\"https://framerusercontent.com/images/7mAqeknWi693PB1Jp6fZCBjrRY.png\"},className:\"framer-1o2r9hz\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwZY40x5t:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:708,pixelWidth:1293,positionX:\"center\",positionY:\"center\",sizes:\"147.8261px\",src:\"https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png 1293w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:92,intrinsicWidth:272,pixelHeight:708,pixelWidth:1293,positionX:\"center\",positionY:\"center\",sizes:\"266.087px\",src:\"https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u9GLz6QgmXqZOoOTRKXf2Hmw9TQ.png 1293w\"},className:\"framer-r5qvpj\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})]})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1ma4kpt\",\"data-framer-appear-id\":\"1ma4kpt\",\"data-framer-name\":\"Video\",initial:animation4,name:\"Video\",optimized:true,children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{height:600,width:\"max(min(100vw, 1512px) - 48px, 1px)\"},UOOmXyyO7:{height:600,width:\"max(min(100vw, 1512px) - 48px, 1px)\"},vwZY40x5t:{height:287,width:\"max(min(100vw, 1512px) - 32px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:950,width:\"max(min(100vw, 1512px) - 80px, 1px)\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-po5obq-container\",id:\"po5obq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwZY40x5t:{variant:\"uAEAADjH5\"}},children:/*#__PURE__*/_jsx(Video,{height:\"100%\",id:\"OuZp8sdAv\",Kr2RiJZm7:\"https://framerusercontent.com/assets/MHVGOWrSae4UcCwTmlo7MXi81CU.webm\",L2mugY6BD:\"ZNKzRDlZD\",layoutId:\"OuZp8sdAv\",qoYqabT7V:\"https://www.youtube.com/watch?v=saGyMi-SN5A\",style:{height:\"100%\",width:\"100%\"},uh0k8QU5E:uh0k8QU5E3bnx0g({overlay:overlay1}),variant:\"pZTqaeuGZ\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.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-jdmzpj\",\"data-framer-portal-id\":\"po5obq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"Y4u33oKXP\"),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l0pugn\",\"data-framer-portal-id\":\"po5obq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{width:\"max(90vw, 1px)\"},vwZY40x5t:{width:\"max(95vw, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(85vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-100wjrx-container\",children:/*#__PURE__*/_jsx(HeroVideo,{bgynmosJn:\"X69Ow95Dw\",height:\"100%\",id:\"i_hKK1mtk\",layoutId:\"i_hKK1mtk\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",WSnegLgvc:\"https://www.youtube.com/watch?v=saGyMi-SN5A\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jkgr4h-container\",\"data-framer-portal-id\":\"po5obq\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"close\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"MZ7Z9XnDN\",layoutId:\"MZ7Z9XnDN\",mirrored:false,onClick:onClick1wnntms({overlay:overlay1}),selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-13hgc0x hidden-1mw2d86 hidden-8hihce\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1e2mpi7\",\"data-framer-name\":\"Diensten Header\",id:elementId,name:\"Diensten Header\",ref:ref2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"JOUW DOELEN OP DE DUITSE MARKT?\"})}),className:\"framer-lhjm8s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:646,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjkvl3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{variant:\"f7nlIEA1b\"},UOOmXyyO7:{variant:\"uuqCaoR4E\"},vwZY40x5t:{variant:\"SEWCJKF43\"}},children:/*#__PURE__*/_jsx(Diensten,{height:\"100%\",id:\"how4j79IP\",layoutId:\"how4j79IP\",style:{width:\"100%\"},variant:\"Y7ftiyPLU\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ey2w2v\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(56, 56, 56))\"},children:\"JOUW DOELGROEP BEREIKEN IN DUITSLAND?\"})}),className:\"framer-1vy4sez\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1p7irck\",\"data-styles-preset\":\"BVjSwE6wL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Neem nu contact met ons op voor een gratis kennismaking.\"})}),className:\"framer-1vj259m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-row2fl\",\"data-framer-appear-id\":\"row2fl\",\"data-framer-name\":\"Buttons\",initial:animation4,name:\"Buttons\",optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nestj0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks2[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks2[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Neem contact op\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"rkLJUD4NQ\",khVKZIZMp:22,layoutId:\"rkLJUD4NQ\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks2[0],variant:\"xZBg_B9lZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dyvnil-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks3[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks3[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Diensten\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"nOG9GBKRH\",khVKZIZMp:22,layoutId:\"nOG9GBKRH\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks3[0],variant:\"bvnPKpi0R\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1le44am\",\"data-border\":true,\"data-framer-name\":\"Moving Text\",name:\"Moving Text\",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:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2e3,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-196ovg6\",\"data-framer-name\":\"Effect Container\",name:\"Effect Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{viewBox:\"0 0 6167 144\"},UOOmXyyO7:{viewBox:\"0 0 6167 144\"},vwZY40x5t:{viewBox:\"0 0 6167 144\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGVhZ3VlIFNwYXJ0YW4tNzAw\",\"--framer-font-family\":'\"League Spartan\", \"League Spartan Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\"},children:\" LASTING BOLD IMPACT CONNECTION LASTING BOLD IMPACT CONNECTION LASTING BOLD IMPACT CONNECTION \"})}),className:\"framer-13n77vb\",fonts:[\"GF;League Spartan-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16v4vfr\",\"data-framer-name\":\"Animation Trigger (DO NOT DELETE)\",id:elementId1,name:\"Animation Trigger (DO NOT DELETE)\",ref:ref3})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o8e18o\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pz4qkg\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fuf8b2\",\"data-framer-name\":\"Header\",name:\"Header\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOOmXyyO7:{height:464,width:\"calc(min(max(100vw, 1px), 1270px) - 48px)\"},vwZY40x5t:{height:500,width:\"calc(min(max(100vw, 1px), 1270px) - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:525,width:\"calc(min(max(100vw, 1px), 1270px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ukty8n-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOOmXyyO7:{za4FHQ6yM:\"D0n_pkEkj\"},vwZY40x5t:{za4FHQ6yM:\"nyRSJqGCL\"}},children:/*#__PURE__*/_jsx(SlideshowFeedback,{height:\"100%\",id:\"PLTIS_cFB\",layoutId:\"PLTIS_cFB\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",za4FHQ6yM:\"WnTGMpNKW\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1af9k2i\",\"data-framer-name\":\"Image Section\",name:\"Image Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1622,intrinsicWidth:3024,pixelHeight:3908,pixelWidth:3996,positionX:\"left\",positionY:\"center\",sizes:\"calc(100vw + 953px)\",src:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg\",srcSet:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg 3996w\"}},UOOmXyyO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1622,intrinsicWidth:3024,pixelHeight:3908,pixelWidth:3996,positionX:\"left\",positionY:\"center\",sizes:\"calc(100vw + 821px)\",src:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg\",srcSet:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg 3996w\"}},vwZY40x5t:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1622,intrinsicWidth:3024,pixelHeight:3908,pixelWidth:3996,positionX:\"left\",positionY:\"center\",sizes:\"calc(100vw + 486px)\",src:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg\",srcSet:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg 3996w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:460,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:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:180}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1622,intrinsicWidth:3024,pixelHeight:3908,pixelWidth:3996,positionX:\"left\",positionY:\"center\",sizes:\"133.9286vw\",src:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg\",srcSet:\"https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zsz90da0iRTCGcdP5bKF4fd9Kh4.jpg 3996w\"},className:\"framer-4cobsm\",\"data-border\":true,\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvk0ec\",\"data-framer-name\":\"Effect Trigger (Do not delete)\",id:elementId2,name:\"Effect Trigger (Do not delete)\",ref:ref4})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ji1pmg\",\"data-framer-name\":\"About\",id:elementId3,name:\"About\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yy6lye\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{\"data-border\":true},UOOmXyyO7:{\"data-border\":true},vwZY40x5t:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8gpxe7\",\"data-framer-name\":\"Left About Home\",name:\"Left About Home\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gwf8vc\",\"data-framer-name\":\"Headed & Link\",name:\"Headed & Link\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(56, 56, 56))\"},children:\"OVER \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, rgb(56, 56, 56))\"},children:\"LEA PELZER\"})]})}),className:\"framer-1vvry8t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhbbw6\",\"data-framer-name\":\"Social Links\",name:\"Social Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ikiz5u-container\",children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"V7nS0JuPf\",IHYyNwOpo:\"LI\",layoutId:\"V7nS0JuPf\",Oux8uouC_:\"https://www.linkedin.com/in/lea-pelzer/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rnaugl-container\",children:/*#__PURE__*/_jsx(SocialButton,{height:\"100%\",id:\"vZXP2GLRa\",IHYyNwOpo:\"IG\",layoutId:\"vZXP2GLRa\",Oux8uouC_:\"https://www.instagram.com/leapelzertheagency/\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:781,width:\"2px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cko2cu-container hidden-h295jb hidden-1mw2d86 hidden-8hihce\",children:/*#__PURE__*/_jsx(LineAnimationWithVariantAppearEffect,{__framer__animateOnce:true,__framer__targets:[{ref:ref5,target:\"eoNVZLbfP\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"vDNZgxjo3\",iWIjd7pVN:\"rgb(0, 0, 0)\",layoutId:\"vDNZgxjo3\",style:{height:\"100%\",width:\"100%\"},variant:\"B_bKdNFpL\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kavwnf\",\"data-framer-name\":\"Right About Home\",name:\"Right About Home\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bij Lea Pelzer bouwen we echte partnerships tussen Nederlandse merken en jouw Duitse doelgroep. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Met een moderne, gedurfde en creatieve aanpak, specialiseren we ons in influencer marketing en content creatie, op maat gemaakte strategie\\xebn en naadloze uitvoering. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wij zijn jouw go-to voor het veroveren van de Duitse markt\u2014eerlijk, efficient en altijd gericht op echte connecties en blijvende impact.\"})})]})},UOOmXyyO7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bij Lea Pelzer bouwen we echte partnerships tussen Nederlandse merken en jouw Duitse doelgroep. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Met een moderne, gedurfde en creatieve aanpak, specialiseren we ons in influencer marketing en content creatie, op maat gemaakte strategie\\xebn en naadloze uitvoering. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wij zijn jouw go-to voor het veroveren van de Duitse markt\u2014eerlijk, efficient en altijd gericht op echte connecties en blijvende impact.\"})})]})},vwZY40x5t:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Bij Lea Pelzer bouwen we echte partnerships tussen Nederlandse merken en jouw Duitse doelgroep. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Met een moderne, gedurfde en creatieve aanpak, specialiseren we ons in influencer marketing en content creatie, op maat gemaakte strategie\\xebn en naadloze uitvoering. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wij zijn jouw go-to voor het veroveren van de Duitse markt\u2014eerlijk, efficient en altijd gericht op echte connecties en blijvende impact.\"})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",children:\"Bij Lea Pelzer bouwen we echte partnerships tussen Nederlandse merken en jouw Duitse doelgroep. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",children:\"Met een moderne, gedurfde en creatieve aanpak, specialiseren we ons in influencer marketing en content creatie, op maat gemaakte strategie\\xebn en naadloze uitvoering. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wij zijn jouw go-to voor het veroveren van de Duitse markt\u2014eerlijk, efficient en altijd gericht op echte connecties en blijvende impact.\"})})]}),className:\"framer-s9ydhx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wtqedl\",\"data-framer-name\":\"Process\",name:\"Process\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOOmXyyO7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:\"ONS EVENTS\"})})},vwZY40x5t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:\"ONS EVENTS\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",children:\"ONS EVENTS\"})}),className:\"framer-wehzjl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uaypev\",\"data-styles-preset\":\"AJxgnHG3T\",style:{\"--framer-text-alignment\":\"center\"},children:\"Verbinding - online \\xe9n offline! Bekijk nu ons laatste event:\"})}),className:\"framer-16jg682\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1vt1z71\",\"data-framer-appear-id\":\"1vt1z71\",\"data-framer-name\":\"Buttons\",initial:animation4,name:\"Buttons\",optimized:true,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qp7CGcymt\"},implicitPathVariables:undefined},{href:{webPageId:\"qp7CGcymt\"},implicitPathVariables:undefined},{href:{webPageId:\"qp7CGcymt\"},implicitPathVariables:undefined},{href:{webPageId:\"qp7CGcymt\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-126v88-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks4[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks4[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Event bekijken\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"dp1YsLAk1\",khVKZIZMp:22,layoutId:\"dp1YsLAk1\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks4[0],variant:\"xZBg_B9lZ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-roqcge\",\"data-framer-name\":\"Images Container\",name:\"Images Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e0wztr\",\"data-framer-name\":\"animation trigger (DO NOT DELETE)\",id:elementId4,name:\"animation trigger (DO NOT DELETE)\",ref:ref6}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbo0h6\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[isDisplayed2()&&/*#__PURE__*/_jsxs(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:0,x:0,y:-20}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-260}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6v68tn hidden-8hihce\",\"data-framer-name\":\"Left\",name:\"Left\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"y7ilFjq3u\"},nodeId:\"S3Vf_rqRO\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2088,intrinsicWidth:1512,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/SfG2iqA9a6YVO1dooDYdZSs3XmA.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/SfG2iqA9a6YVO1dooDYdZSs3XmA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/SfG2iqA9a6YVO1dooDYdZSs3XmA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/SfG2iqA9a6YVO1dooDYdZSs3XmA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/SfG2iqA9a6YVO1dooDYdZSs3XmA.jpg 4672w\"},className:\"framer-v6sam9 framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"BnXqz44nP\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1922,intrinsicWidth:3024,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/nf2loPhBWUFN9Ki6uJVZCopVxc.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/nf2loPhBWUFN9Ki6uJVZCopVxc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/nf2loPhBWUFN9Ki6uJVZCopVxc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/nf2loPhBWUFN9Ki6uJVZCopVxc.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/nf2loPhBWUFN9Ki6uJVZCopVxc.jpg 4672w\"},className:\"framer-nuywrr framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"lsN1UTI5j\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3206,intrinsicWidth:3024,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/BknGvFeDIybgE0OPhGPhu633rIc.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/BknGvFeDIybgE0OPhGPhu633rIc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/BknGvFeDIybgE0OPhGPhu633rIc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/BknGvFeDIybgE0OPhGPhu633rIc.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/BknGvFeDIybgE0OPhGPhu633rIc.jpg 4672w\"},className:\"framer-1osvgpo framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(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:0,x:0,y:0}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:260}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ewzvyl hidden-8hihce\",\"data-framer-name\":\"Middle\",name:\"Middle\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gupsjrc2W\"},nodeId:\"M8NE1Qh92\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2504,intrinsicWidth:3024,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/BdlmVupld9CcMfzLPjZRSt1cmWc.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/BdlmVupld9CcMfzLPjZRSt1cmWc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/BdlmVupld9CcMfzLPjZRSt1cmWc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/BdlmVupld9CcMfzLPjZRSt1cmWc.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/BdlmVupld9CcMfzLPjZRSt1cmWc.jpg 4672w\"},className:\"framer-qr7qod framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"BvDlZD73z\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2231,intrinsicWidth:1512,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/L5Kr8SIDddul7IFBZF4DFOvHo88.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/L5Kr8SIDddul7IFBZF4DFOvHo88.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/L5Kr8SIDddul7IFBZF4DFOvHo88.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/L5Kr8SIDddul7IFBZF4DFOvHo88.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/L5Kr8SIDddul7IFBZF4DFOvHo88.jpg 4672w\"},className:\"framer-h8nuo0 framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vQDCxV2Ko\"},nodeId:\"Xf4Nme2fO\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2098,intrinsicWidth:3024,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/EZFDxRUMw9VMb2pbrf110UdoHw.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/EZFDxRUMw9VMb2pbrf110UdoHw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/EZFDxRUMw9VMb2pbrf110UdoHw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/EZFDxRUMw9VMb2pbrf110UdoHw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/EZFDxRUMw9VMb2pbrf110UdoHw.jpg 4672w\"},className:\"framer-3k6mlk framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(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:0,x:0,y:-20}},{ref:ref6,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-260}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u7eojm hidden-h295jb hidden-1mw2d86\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"NzKRcdOLA\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1922,intrinsicWidth:3024,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/2Bw3KIo7mVA8NJUM1FxpsyVWa1M.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/2Bw3KIo7mVA8NJUM1FxpsyVWa1M.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/2Bw3KIo7mVA8NJUM1FxpsyVWa1M.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/2Bw3KIo7mVA8NJUM1FxpsyVWa1M.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/2Bw3KIo7mVA8NJUM1FxpsyVWa1M.jpg 4672w\"},className:\"framer-fq8ibc framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwZY40x5t:{href:undefined,openInNewTab:false}},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{iJqSVacK0:\"champion-project\"},unresolvedPathSlugs:{iJqSVacK0:{collectionId:\"pWCcAlXr_\",collectionItemId:\"BYSWdmClY\"}},webPageId:\"NfPVrql2d\"},nodeId:\"pccssX27n\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:3078,intrinsicWidth:2246,pixelHeight:7008,pixelWidth:4672,sizes:\"364px\",src:\"https://framerusercontent.com/images/S5rU2Ptzdtc7tll0DkU7AjnKc4.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/S5rU2Ptzdtc7tll0DkU7AjnKc4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/S5rU2Ptzdtc7tll0DkU7AjnKc4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/S5rU2Ptzdtc7tll0DkU7AjnKc4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/S5rU2Ptzdtc7tll0DkU7AjnKc4.jpg 4672w\"},className:\"framer-xt3snw framer-lux5qc\",\"data-framer-name\":\"image_3\",name:\"image_3\",whileHover:animation10})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Gupsjrc2W\"},nodeId:\"pM09PgORN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:2504,intrinsicWidth:3024,pixelHeight:6950,pixelWidth:4633,sizes:\"364px\",src:\"https://framerusercontent.com/images/l9tyzIHgJ4d3MRAEjiZJdWolLc.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/l9tyzIHgJ4d3MRAEjiZJdWolLc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/l9tyzIHgJ4d3MRAEjiZJdWolLc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/l9tyzIHgJ4d3MRAEjiZJdWolLc.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/l9tyzIHgJ4d3MRAEjiZJdWolLc.jpg 4633w\"},className:\"framer-1xergyy framer-lux5qc\",\"data-framer-name\":\"image\",name:\"image\",whileHover:animation10})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-p8vqph\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1f5mr84\",\"data-styles-preset\":\"vjChp2hi3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"JOUW DOELGROEP \",/*#__PURE__*/_jsx(\"br\",{}),\"BEREIKEN IN DUITSLAND?\"]})}),className:\"framer-1knrapb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7jy03e\",\"data-styles-preset\":\"drQlqu_7b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Neem nu contact met ons op voor een gratis kennismaking.\"})}),className:\"framer-rb9bx3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1samcrn\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1rozpzm\",\"data-framer-appear-id\":\"1rozpzm\",\"data-framer-name\":\"Buttons\",initial:animation4,name:\"Buttons\",optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined},{href:{webPageId:\"Gupsjrc2W\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m046wg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks5[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks5[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks5[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Neem contact op\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"hr6eulEIt\",khVKZIZMp:22,layoutId:\"hr6eulEIt\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks5[0],variant:\"xZBg_B9lZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":MS5WYkxMM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-107o7ta-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ehXxjkd9F:{ONHBlAsS6:resolvedLinks6[1]},UOOmXyyO7:{ONHBlAsS6:resolvedLinks6[2]},vwZY40x5t:{ONHBlAsS6:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(Button,{Dqcq6hGw1:\"rgb(245, 243, 236)\",eZTsMb0Fn:\"Diensten\",gJ9xUEp24:\"rgb(0, 0, 0)\",height:\"100%\",id:\"lBq7jKV5Y\",khVKZIZMp:22,layoutId:\"lBq7jKV5Y\",LGovYZO28:\"var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245))\",ONHBlAsS6:resolvedLinks6[0],variant:\"bvnPKpi0R\",width:\"100%\"})})})})})]})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:804,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xsc05i-container\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOOmXyyO7:{variant:\"mPjX4hulK\"},vwZY40x5t:{variant:\"MIrALGi7f\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"L89MaTrWn\",layoutId:\"L89MaTrWn\",style:{width:\"100%\"},variant:\"UYovD7Lm5\",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-LSaQA { background: var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245)) /* {\"name\":\"Light\"} */; }`,\".framer-LSaQA.framer-lux5qc, .framer-LSaQA .framer-lux5qc { display: block; }\",\".framer-LSaQA.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-77583a62-8085-45bc-a9a2-283700a7631b, #fffdf5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-LSaQA .framer-1ndt0o1-container { flex: none; height: auto; left: 50%; max-width: 1512px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-LSaQA .framer-opt069 { inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-LSaQA .framer-b5nz6b-container { flex: none; height: 100%; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-LSaQA .framer-u2nb40 { background-color: rgba(255, 253, 244, 0.16); flex: none; height: 90px; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-LSaQA .framer-1f20qlq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1512px; overflow: visible; padding: 180px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-19k460u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1512px; overflow: visible; padding: 180px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-10borr4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1lfkn9o { aspect-ratio: 4.725888324873097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 104px); max-width: 1200px; overflow: visible; position: relative; width: 40%; }\",\".framer-LSaQA .framer-1s6u7y2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 830px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LSaQA .framer-4cvas6, .framer-LSaQA .framer-row2fl, .framer-LSaQA .framer-1vt1z71, .framer-LSaQA .framer-1rozpzm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-LSaQA .framer-4ijzfl-container, .framer-LSaQA .framer-x5a459-container, .framer-LSaQA .framer-1nestj0-container, .framer-LSaQA .framer-1dyvnil-container, .framer-LSaQA .framer-ikiz5u-container, .framer-LSaQA .framer-rnaugl-container, .framer-LSaQA .framer-126v88-container, .framer-LSaQA .framer-1m046wg-container, .framer-LSaQA .framer-107o7ta-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LSaQA .framer-fi0294 { align-content: center; align-items: center; background-color: #f8f4f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1qlkok4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-LSaQA .framer-s1zrrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1rnurjv { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); overflow: hidden; position: relative; width: 248px; }\",\".framer-LSaQA .framer-1o2r9hz, .framer-LSaQA .framer-r5qvpj { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: hidden; position: relative; width: 266px; }\",\".framer-LSaQA .framer-1ma4kpt { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95vh; justify-content: center; max-height: 1100px; min-height: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSaQA .framer-po5obq-container, .framer-LSaQA .framer-100wjrx-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-LSaQA .framer-jdmzpj { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-LSaQA .framer-l0pugn { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 85%; z-index: 10; }\",\".framer-LSaQA .framer-1jkgr4h-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: fixed; right: 24px; top: 24px; width: 32px; z-index: 10; }\",\".framer-LSaQA .framer-13hgc0x { align-content: center; align-items: center; background-color: #f8f4f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 163px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1e2mpi7 { align-content: center; align-items: center; background-color: #f8f4f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-lhjm8s, .framer-LSaQA .framer-1vy4sez, .framer-LSaQA .framer-1knrapb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --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-LSaQA .framer-sjkvl3-container, .framer-LSaQA .framer-1xsc05i-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-LSaQA .framer-ey2w2v { align-content: center; align-items: center; background-color: #f8f4f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 502px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1vj259m { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 686px; word-break: break-word; word-wrap: break-word; }\",\".framer-LSaQA .framer-1le44am { --border-bottom-width: 2px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-196ovg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LSaQA .framer-13n77vb, .framer-LSaQA .framer-1vvry8t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LSaQA .framer-16v4vfr { background-color: #ffffff; flex: none; height: 120vh; left: 0px; opacity: 0; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-LSaQA .framer-o8e18o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-pz4qkg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1270px; overflow: visible; padding: 80px 40px 160px 40px; position: relative; width: 1px; }\",\".framer-LSaQA .framer-1fuf8b2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 63px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1ukty8n-container { flex: none; height: 525px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1af9k2i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-4cobsm { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 115%; justify-content: center; left: calc(50.928571428571445% - 133.92857142857142% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(52.09163346613548% - 114.74103585657372% / 2); width: 134%; z-index: 1; }\",\".framer-LSaQA .framer-rvk0ec { flex: none; height: 200vh; left: 0px; opacity: 0; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-LSaQA .framer-ji1pmg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1512px; overflow: hidden; padding: 64px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-1yy6lye { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LSaQA .framer-8gpxe7 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 133px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LSaQA .framer-1gwf8vc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LSaQA .framer-1dhbbw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LSaQA .framer-cko2cu-container { flex: none; height: 100%; position: relative; width: 2px; }\",\".framer-LSaQA .framer-kavwnf { 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-end; overflow: hidden; padding: 0px 0px 0px 120px; position: relative; width: 1px; }\",\".framer-LSaQA .framer-s9ydhx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 728px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LSaQA .framer-wtqedl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; max-width: 1512px; overflow: hidden; padding: 80px 54px 80px 54px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-wehzjl { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-LSaQA .framer-16jg682 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 728px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LSaQA .framer-roqcge { align-content: center; align-items: center; background-color: var(--token-e797e7f9-0aac-48cd-abd9-96a3b2e41a07, #000000); border-bottom-left-radius: 39px; border-bottom-right-radius: 39px; border-top-left-radius: 39px; border-top-right-radius: 39px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 89.64143426294821vh; justify-content: center; max-height: 900px; min-height: 600px; overflow: hidden; padding: 0px 56px 0px 56px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSaQA .framer-1e0wztr { flex: none; height: 200vh; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-LSaQA .framer-1hbo0h6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: 100%; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-LSaQA .framer-6v68tn, .framer-LSaQA .framer-1u7eojm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 364px; }\",\".framer-LSaQA .framer-v6sam9 { aspect-ratio: 0.7241379310344828 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 503px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-nuywrr, .framer-LSaQA .framer-fq8ibc { aspect-ratio: 1.5733610822060353 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 232px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-1osvgpo { aspect-ratio: 0.9432314410480349 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 386px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-1ewzvyl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 364px; }\",\".framer-LSaQA .framer-qr7qod, .framer-LSaQA .framer-1xergyy { aspect-ratio: 1.207667731629393 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 302px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-h8nuo0 { aspect-ratio: 0.6777229941730166 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 537px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-3k6mlk { aspect-ratio: 1.4413727359389896 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 253px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-xt3snw { aspect-ratio: 0.7296946068875894 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 499px); overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-LSaQA .framer-p8vqph { align-content: center; align-items: center; background-color: #f8f4f2; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 570px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-LSaQA .framer-rb9bx3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 614px; word-break: break-word; word-wrap: break-word; }\",\".framer-LSaQA .framer-1samcrn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LSaQA.framer-72rtr7, .framer-LSaQA .framer-1f20qlq, .framer-LSaQA .framer-19k460u, .framer-LSaQA .framer-10borr4, .framer-LSaQA .framer-4cvas6, .framer-LSaQA .framer-fi0294, .framer-LSaQA .framer-s1zrrw, .framer-LSaQA .framer-1ma4kpt, .framer-LSaQA .framer-l0pugn, .framer-LSaQA .framer-13hgc0x, .framer-LSaQA .framer-1e2mpi7, .framer-LSaQA .framer-ey2w2v, .framer-LSaQA .framer-row2fl, .framer-LSaQA .framer-1le44am, .framer-LSaQA .framer-196ovg6, .framer-LSaQA .framer-o8e18o, .framer-LSaQA .framer-pz4qkg, .framer-LSaQA .framer-1fuf8b2, .framer-LSaQA .framer-1af9k2i, .framer-LSaQA .framer-4cobsm, .framer-LSaQA .framer-ji1pmg, .framer-LSaQA .framer-8gpxe7, .framer-LSaQA .framer-1dhbbw6, .framer-LSaQA .framer-kavwnf, .framer-LSaQA .framer-wtqedl, .framer-LSaQA .framer-1vt1z71, .framer-LSaQA .framer-roqcge, .framer-LSaQA .framer-1hbo0h6, .framer-LSaQA .framer-6v68tn, .framer-LSaQA .framer-1ewzvyl, .framer-LSaQA .framer-1u7eojm, .framer-LSaQA .framer-p8vqph, .framer-LSaQA .framer-1samcrn, .framer-LSaQA .framer-1rozpzm { gap: 0px; } .framer-LSaQA.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LSaQA.framer-72rtr7 > :first-child, .framer-LSaQA .framer-1f20qlq > :first-child, .framer-LSaQA .framer-19k460u > :first-child, .framer-LSaQA .framer-fi0294 > :first-child, .framer-LSaQA .framer-13hgc0x > :first-child, .framer-LSaQA .framer-1e2mpi7 > :first-child, .framer-LSaQA .framer-ey2w2v > :first-child, .framer-LSaQA .framer-pz4qkg > :first-child, .framer-LSaQA .framer-wtqedl > :first-child, .framer-LSaQA .framer-6v68tn > :first-child, .framer-LSaQA .framer-1ewzvyl > :first-child, .framer-LSaQA .framer-1u7eojm > :first-child, .framer-LSaQA .framer-p8vqph > :first-child { margin-top: 0px; } .framer-LSaQA.framer-72rtr7 > :last-child, .framer-LSaQA .framer-1f20qlq > :last-child, .framer-LSaQA .framer-19k460u > :last-child, .framer-LSaQA .framer-fi0294 > :last-child, .framer-LSaQA .framer-13hgc0x > :last-child, .framer-LSaQA .framer-1e2mpi7 > :last-child, .framer-LSaQA .framer-ey2w2v > :last-child, .framer-LSaQA .framer-pz4qkg > :last-child, .framer-LSaQA .framer-wtqedl > :last-child, .framer-LSaQA .framer-6v68tn > :last-child, .framer-LSaQA .framer-1ewzvyl > :last-child, .framer-LSaQA .framer-1u7eojm > :last-child, .framer-LSaQA .framer-p8vqph > :last-child { margin-bottom: 0px; } .framer-LSaQA .framer-1f20qlq > *, .framer-LSaQA .framer-pz4qkg > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-LSaQA .framer-19k460u > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-LSaQA .framer-10borr4 > *, .framer-LSaQA .framer-1ma4kpt > *, .framer-LSaQA .framer-l0pugn > *, .framer-LSaQA .framer-o8e18o > *, .framer-LSaQA .framer-1fuf8b2 > *, .framer-LSaQA .framer-1af9k2i > *, .framer-LSaQA .framer-4cobsm > *, .framer-LSaQA .framer-ji1pmg > *, .framer-LSaQA .framer-1dhbbw6 > *, .framer-LSaQA .framer-kavwnf > *, .framer-LSaQA .framer-roqcge > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LSaQA .framer-10borr4 > :first-child, .framer-LSaQA .framer-4cvas6 > :first-child, .framer-LSaQA .framer-s1zrrw > :first-child, .framer-LSaQA .framer-1ma4kpt > :first-child, .framer-LSaQA .framer-l0pugn > :first-child, .framer-LSaQA .framer-row2fl > :first-child, .framer-LSaQA .framer-1le44am > :first-child, .framer-LSaQA .framer-196ovg6 > :first-child, .framer-LSaQA .framer-o8e18o > :first-child, .framer-LSaQA .framer-1fuf8b2 > :first-child, .framer-LSaQA .framer-1af9k2i > :first-child, .framer-LSaQA .framer-4cobsm > :first-child, .framer-LSaQA .framer-ji1pmg > :first-child, .framer-LSaQA .framer-8gpxe7 > :first-child, .framer-LSaQA .framer-1dhbbw6 > :first-child, .framer-LSaQA .framer-kavwnf > :first-child, .framer-LSaQA .framer-1vt1z71 > :first-child, .framer-LSaQA .framer-roqcge > :first-child, .framer-LSaQA .framer-1hbo0h6 > :first-child, .framer-LSaQA .framer-1samcrn > :first-child, .framer-LSaQA .framer-1rozpzm > :first-child { margin-left: 0px; } .framer-LSaQA .framer-10borr4 > :last-child, .framer-LSaQA .framer-4cvas6 > :last-child, .framer-LSaQA .framer-s1zrrw > :last-child, .framer-LSaQA .framer-1ma4kpt > :last-child, .framer-LSaQA .framer-l0pugn > :last-child, .framer-LSaQA .framer-row2fl > :last-child, .framer-LSaQA .framer-1le44am > :last-child, .framer-LSaQA .framer-196ovg6 > :last-child, .framer-LSaQA .framer-o8e18o > :last-child, .framer-LSaQA .framer-1fuf8b2 > :last-child, .framer-LSaQA .framer-1af9k2i > :last-child, .framer-LSaQA .framer-4cobsm > :last-child, .framer-LSaQA .framer-ji1pmg > :last-child, .framer-LSaQA .framer-8gpxe7 > :last-child, .framer-LSaQA .framer-1dhbbw6 > :last-child, .framer-LSaQA .framer-kavwnf > :last-child, .framer-LSaQA .framer-1vt1z71 > :last-child, .framer-LSaQA .framer-roqcge > :last-child, .framer-LSaQA .framer-1hbo0h6 > :last-child, .framer-LSaQA .framer-1samcrn > :last-child, .framer-LSaQA .framer-1rozpzm > :last-child { margin-right: 0px; } .framer-LSaQA .framer-4cvas6 > *, .framer-LSaQA .framer-row2fl > *, .framer-LSaQA .framer-1vt1z71 > *, .framer-LSaQA .framer-1rozpzm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-LSaQA .framer-fi0294 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-LSaQA .framer-s1zrrw > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-LSaQA .framer-13hgc0x > *, .framer-LSaQA .framer-1e2mpi7 > *, .framer-LSaQA .framer-ey2w2v > *, .framer-LSaQA .framer-6v68tn > *, .framer-LSaQA .framer-1ewzvyl > *, .framer-LSaQA .framer-1u7eojm > *, .framer-LSaQA .framer-p8vqph > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LSaQA .framer-1le44am > *, .framer-LSaQA .framer-196ovg6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-LSaQA .framer-8gpxe7 > * { margin: 0px; margin-left: calc(133px / 2); margin-right: calc(133px / 2); } .framer-LSaQA .framer-wtqedl > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-LSaQA .framer-1hbo0h6 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-LSaQA .framer-1samcrn > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-LSaQA[data-border=\"true\"]::after, .framer-LSaQA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 991px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-LSaQA { background: var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245)) /* {\"name\":\"Light\"} */; } .framer-LSaQA.framer-72rtr7 { width: 991px; } .framer-LSaQA .framer-1f20qlq { padding: 160px 24px 0px 24px; } .framer-LSaQA .framer-19k460u { padding: 180px 24px 120px 24px; } .framer-LSaQA .framer-10borr4 { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: flex-start; padding: 0px 70px 0px 70px; } .framer-LSaQA .framer-1lfkn9o { height: var(--framer-aspect-ratio-supported, 64px); } .framer-LSaQA .framer-fi0294 { gap: 64px; } .framer-LSaQA .framer-1ma4kpt { height: 60vh; max-height: unset; min-height: unset; } .framer-LSaQA .framer-l0pugn { width: 90%; } .framer-LSaQA .framer-13hgc0x { height: 136px; } .framer-LSaQA .framer-ey2w2v { height: 600px; } .framer-LSaQA .framer-1le44am { padding: 64px 0px 64px 0px; } .framer-LSaQA .framer-196ovg6 { width: 339%; } .framer-LSaQA .framer-13n77vb { flex: 1 0 0px; width: 1px; } .framer-LSaQA .framer-4cobsm { bottom: -10px; height: 103.98406374501991vh; left: -54px; right: -899px; top: unset; width: unset; } .framer-LSaQA .framer-ji1pmg { padding: 64px 24px 200px 24px; } .framer-LSaQA .framer-1yy6lye { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-LSaQA .framer-8gpxe7 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-self: unset; gap: 48px; height: min-content; justify-content: center; padding: 0px 0px 48px 0px; } .framer-LSaQA .framer-1gwf8vc { align-content: center; align-items: center; gap: 48px; height: min-content; justify-content: center; } .framer-LSaQA .framer-kavwnf { flex: none; justify-content: center; padding: 0px; width: 100%; } .framer-LSaQA .framer-roqcge { padding: 0px; } .framer-LSaQA .framer-nuywrr { height: var(--framer-aspect-ratio-supported, 231px); } .framer-LSaQA .framer-p8vqph { height: 503px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LSaQA .framer-10borr4, .framer-LSaQA .framer-fi0294, .framer-LSaQA .framer-1yy6lye, .framer-LSaQA .framer-8gpxe7, .framer-LSaQA .framer-1gwf8vc { gap: 0px; } .framer-LSaQA .framer-10borr4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-LSaQA .framer-10borr4 > :first-child, .framer-LSaQA .framer-fi0294 > :first-child, .framer-LSaQA .framer-1yy6lye > :first-child, .framer-LSaQA .framer-1gwf8vc > :first-child { margin-top: 0px; } .framer-LSaQA .framer-10borr4 > :last-child, .framer-LSaQA .framer-fi0294 > :last-child, .framer-LSaQA .framer-1yy6lye > :last-child, .framer-LSaQA .framer-1gwf8vc > :last-child { margin-bottom: 0px; } .framer-LSaQA .framer-fi0294 > *, .framer-LSaQA .framer-1yy6lye > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-LSaQA .framer-8gpxe7 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-LSaQA .framer-8gpxe7 > :first-child { margin-left: 0px; } .framer-LSaQA .framer-8gpxe7 > :last-child { margin-right: 0px; } .framer-LSaQA .framer-1gwf8vc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`,`@media (min-width: 767px) and (max-width: 990px) { .${metadata.bodyClassName}-framer-LSaQA { background: var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245)) /* {\"name\":\"Light\"} */; } .framer-LSaQA.framer-72rtr7 { width: 767px; } .framer-LSaQA .framer-1f20qlq { padding: 160px 24px 0px 24px; } .framer-LSaQA .framer-19k460u { padding: 180px 24px 120px 24px; } .framer-LSaQA .framer-10borr4 { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-LSaQA .framer-1lfkn9o { height: var(--framer-aspect-ratio-supported, 56px); } .framer-LSaQA .framer-fi0294 { gap: 32px; } .framer-LSaQA .framer-1ma4kpt { height: 60vh; max-height: unset; min-height: unset; } .framer-LSaQA .framer-1e2mpi7 { height: 211px; } .framer-LSaQA .framer-ey2w2v { height: 489px; } .framer-LSaQA .framer-1le44am { padding: 64px 0px 64px 0px; } .framer-LSaQA .framer-196ovg6 { width: 339%; } .framer-LSaQA .framer-13n77vb { flex: 1 0 0px; width: 1px; } .framer-LSaQA .framer-pz4qkg { padding: 80px 24px 160px 24px; } .framer-LSaQA .framer-1fuf8b2 { padding: 0px; width: 101%; } .framer-LSaQA .framer-1ukty8n-container { height: 464px; } .framer-LSaQA .framer-1af9k2i { height: 80vh; } .framer-LSaQA .framer-4cobsm { height: 84.86055776892431vh; left: -67px; order: 0; right: -754px; top: calc(42.34122042341223% - 84.86055776892431vh / 2); width: unset; } .framer-LSaQA .framer-rvk0ec { order: 1; } .framer-LSaQA .framer-ji1pmg { padding: 64px 24px 260px 24px; } .framer-LSaQA .framer-1yy6lye { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-LSaQA .framer-8gpxe7 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-self: unset; gap: 48px; height: min-content; justify-content: center; padding: 0px 0px 48px 0px; } .framer-LSaQA .framer-1gwf8vc { align-content: center; align-items: center; gap: 48px; height: min-content; justify-content: center; } .framer-LSaQA .framer-kavwnf { flex: none; justify-content: center; padding: 0px; width: 100%; } .framer-LSaQA .framer-wtqedl { gap: 80px; padding: 80px 24px 160px 24px; } .framer-LSaQA .framer-wehzjl { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-LSaQA .framer-roqcge { padding: 0px; } .framer-LSaQA .framer-p8vqph { height: 600px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LSaQA .framer-10borr4, .framer-LSaQA .framer-fi0294, .framer-LSaQA .framer-1yy6lye, .framer-LSaQA .framer-8gpxe7, .framer-LSaQA .framer-1gwf8vc, .framer-LSaQA .framer-wtqedl { gap: 0px; } .framer-LSaQA .framer-10borr4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-LSaQA .framer-10borr4 > :first-child, .framer-LSaQA .framer-fi0294 > :first-child, .framer-LSaQA .framer-1yy6lye > :first-child, .framer-LSaQA .framer-1gwf8vc > :first-child, .framer-LSaQA .framer-wtqedl > :first-child { margin-top: 0px; } .framer-LSaQA .framer-10borr4 > :last-child, .framer-LSaQA .framer-fi0294 > :last-child, .framer-LSaQA .framer-1yy6lye > :last-child, .framer-LSaQA .framer-1gwf8vc > :last-child, .framer-LSaQA .framer-wtqedl > :last-child { margin-bottom: 0px; } .framer-LSaQA .framer-fi0294 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-LSaQA .framer-1yy6lye > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-LSaQA .framer-8gpxe7 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-LSaQA .framer-8gpxe7 > :first-child { margin-left: 0px; } .framer-LSaQA .framer-8gpxe7 > :last-child { margin-right: 0px; } .framer-LSaQA .framer-1gwf8vc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-LSaQA .framer-wtqedl > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`,`@media (max-width: 766px) { .${metadata.bodyClassName}-framer-LSaQA { background: var(--token-77583a62-8085-45bc-a9a2-283700a7631b, rgb(255, 253, 245)) /* {\"name\":\"Light\"} */; } .framer-LSaQA.framer-72rtr7 { width: 479px; } .framer-LSaQA .framer-1f20qlq { padding: 140px 16px 0px 16px; } .framer-LSaQA .framer-19k460u { padding: 180px 16px 120px 16px; } .framer-LSaQA .framer-10borr4 { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: flex-start; padding: 0px 34px 0px 34px; } .framer-LSaQA .framer-1lfkn9o { height: var(--framer-aspect-ratio-supported, 70px); width: 95%; } .framer-LSaQA .framer-4cvas6, .framer-LSaQA .framer-row2fl, .framer-LSaQA .framer-1vt1z71, .framer-LSaQA .framer-1rozpzm { flex-direction: column; } .framer-LSaQA .framer-fi0294 { gap: 32px; } .framer-LSaQA .framer-1rnurjv, .framer-LSaQA .framer-1o2r9hz, .framer-LSaQA .framer-r5qvpj { height: var(--framer-aspect-ratio-supported, 50px); width: 148px; } .framer-LSaQA .framer-1ma4kpt { aspect-ratio: 1.5574912891986064 / 1; height: var(--framer-aspect-ratio-supported, 287px); max-height: unset; min-height: unset; } .framer-LSaQA .framer-l0pugn { width: 95%; } .framer-LSaQA .framer-1e2mpi7 { height: 190px; } .framer-LSaQA .framer-ey2w2v, .framer-LSaQA .framer-p8vqph { height: 600px; } .framer-LSaQA .framer-1le44am { padding: 64px 0px 64px 0px; } .framer-LSaQA .framer-196ovg6 { width: 339%; } .framer-LSaQA .framer-13n77vb { flex: 1 0 0px; width: 1px; } .framer-LSaQA .framer-pz4qkg { height: 892px; padding: 80px 16px 160px 16px; } .framer-LSaQA .framer-1fuf8b2 { padding: 0px; width: 101%; } .framer-LSaQA .framer-1ukty8n-container { height: 77%; } .framer-LSaQA .framer-1af9k2i { height: 80vh; max-height: 383px; } .framer-LSaQA .framer-4cobsm { height: 46.91235059760957vh; left: 0px; order: 0; right: -486px; top: calc(46.47519582245433% - 46.91235059760957vh / 2); width: unset; } .framer-LSaQA .framer-rvk0ec { order: 1; } .framer-LSaQA .framer-ji1pmg { padding: 64px 24px 120px 24px; } .framer-LSaQA .framer-1yy6lye { flex-direction: column; gap: 64px; justify-content: flex-start; } .framer-LSaQA .framer-8gpxe7 { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-self: unset; gap: 48px; height: min-content; justify-content: center; padding: 0px 0px 48px 0px; } .framer-LSaQA .framer-1gwf8vc { align-content: center; align-items: center; gap: 48px; height: min-content; justify-content: center; } .framer-LSaQA .framer-kavwnf { flex: none; justify-content: center; padding: 0px; width: 100%; } .framer-LSaQA .framer-wtqedl { gap: 80px; padding: 244px 16px 160px 16px; } .framer-LSaQA .framer-wehzjl { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-LSaQA .framer-roqcge { max-height: 800px; padding: 0px; } .framer-LSaQA .framer-1hbo0h6 { padding: 0px 16px 0px 16px; } .framer-LSaQA .framer-fq8ibc { height: var(--framer-aspect-ratio-supported, 231px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LSaQA .framer-10borr4, .framer-LSaQA .framer-4cvas6, .framer-LSaQA .framer-fi0294, .framer-LSaQA .framer-row2fl, .framer-LSaQA .framer-1yy6lye, .framer-LSaQA .framer-8gpxe7, .framer-LSaQA .framer-1gwf8vc, .framer-LSaQA .framer-wtqedl, .framer-LSaQA .framer-1vt1z71, .framer-LSaQA .framer-1rozpzm { gap: 0px; } .framer-LSaQA .framer-10borr4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-LSaQA .framer-10borr4 > :first-child, .framer-LSaQA .framer-4cvas6 > :first-child, .framer-LSaQA .framer-fi0294 > :first-child, .framer-LSaQA .framer-row2fl > :first-child, .framer-LSaQA .framer-1yy6lye > :first-child, .framer-LSaQA .framer-1gwf8vc > :first-child, .framer-LSaQA .framer-wtqedl > :first-child, .framer-LSaQA .framer-1vt1z71 > :first-child, .framer-LSaQA .framer-1rozpzm > :first-child { margin-top: 0px; } .framer-LSaQA .framer-10borr4 > :last-child, .framer-LSaQA .framer-4cvas6 > :last-child, .framer-LSaQA .framer-fi0294 > :last-child, .framer-LSaQA .framer-row2fl > :last-child, .framer-LSaQA .framer-1yy6lye > :last-child, .framer-LSaQA .framer-1gwf8vc > :last-child, .framer-LSaQA .framer-wtqedl > :last-child, .framer-LSaQA .framer-1vt1z71 > :last-child, .framer-LSaQA .framer-1rozpzm > :last-child { margin-bottom: 0px; } .framer-LSaQA .framer-4cvas6 > *, .framer-LSaQA .framer-row2fl > *, .framer-LSaQA .framer-1vt1z71 > *, .framer-LSaQA .framer-1rozpzm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-LSaQA .framer-fi0294 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-LSaQA .framer-1yy6lye > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-LSaQA .framer-8gpxe7 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-LSaQA .framer-8gpxe7 > :first-child { margin-left: 0px; } .framer-LSaQA .framer-8gpxe7 > :last-child { margin-right: 0px; } .framer-LSaQA .framer-1gwf8vc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-LSaQA .framer-wtqedl > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9634.5\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ehXxjkd9F\":{\"layout\":[\"fixed\",\"auto\"]},\"UOOmXyyO7\":{\"layout\":[\"fixed\",\"auto\"]},\"vwZY40x5t\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-LSaQA\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9634.5,width:1400};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"League Spartan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/leaguespartan/v11/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpAcdcFguczA.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarFonts,...MenuFonts,...ButtonFonts,...VideoFonts,...HeroVideoFonts,...MaterialFonts,...DienstenFonts,...SlideshowFeedbackFonts,...SocialButtonFonts,...LineAnimationFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1400\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9634.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ehXxjkd9F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UOOmXyyO7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vwZY40x5t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__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", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "YouTubeFonts", "getFonts", "Youtube", "VideoFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "equals", "a", "b", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "id", "videoOption", "vIDeoUpload", "width", "youtubeLink", "props", "_humanReadableEnumMap_videoOption", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bgynmosJn", "degXAWMiR", "WSnegLgvc", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "visible1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Youtube", "Video", "css", "FramerC5yy89f_b", "withCSS", "C5yy89f_b_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "YouTubeFonts", "VideoFonts", "ButtonFonts", "getFonts", "Cx9XY6IZP_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "cardLink", "height", "id", "image", "text", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "dFS1qTHzR", "QW60zCcEN", "c_HPUcYBZ", "kfyOJ49Oz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "Cx9XY6IZP_default", "css", "FramercGMSeGk1x", "withCSS", "cGMSeGk1x_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFontsFromSharedStyle", "fonts", "CardFonts", "getFonts", "cGMSeGk1x_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", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "css", "FramerCYHcqD7pb", "withCSS", "CYHcqD7pb_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerBGhlw29zJ", "withCSS", "BGhlw29zJ_default", "addFonts", "YouTubeFonts", "getFonts", "Youtube", "VideoFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "equals", "a", "b", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "id", "videoOption", "vIDeoUpload", "width", "youtubeLink", "props", "_humanReadableEnumMap_videoOption", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bgynmosJn", "degXAWMiR", "WSnegLgvc", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "visible1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Youtube", "Video", "css", "FramerC5yy89f_b", "withCSS", "C5yy89f_b_default", "addPropertyControls", "ControlType", "VideoControls", "addFonts", "YouTubeFonts", "VideoFonts", "HeroVideoFonts", "getFonts", "C5yy89f_b_default", "PlayButtonFonts", "BGhlw29zJ_default", "HeroVideoControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "tap", "videoOption", "videoUploadFile", "width", "youtubeLink", "props", "_humanReadableEnumMap_videoOption", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uh0k8QU5E", "L2mugY6BD", "Kr2RiJZm7", "qoYqabT7V", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapz39s1a", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerGl33TJkGi", "withCSS", "Gl33TJkGi_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "label", "link", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "IHYyNwOpo", "Oux8uouC_", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerL75al3MkC", "withCSS", "L75al3MkC_default", "addPropertyControls", "ControlType", "addFonts", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "feedback", "height", "id", "jobPosition", "nameSurname", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hQ59k7tk1", "VjdVZSWg2", "t07r7zrwg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerbggwXjXKT", "withCSS", "bggwXjXKT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FeedbackCardFonts", "getFonts", "bggwXjXKT_default", "SlideshowFonts", "Slideshow", "FeedbackCardControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "id", "variant1", "width", "props", "_humanReadableEnumMap_variant1", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "za4FHQ6yM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Slideshow", "bggwXjXKT_default", "css", "FramerzHQ8vDSDy", "withCSS", "zHQ8vDSDy_default", "addPropertyControls", "FeedbackCardControls", "addFonts", "FeedbackCardFonts", "SlideshowFonts", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "Mv4gG8nUa_default", "MenuFonts", "MBRICVGqi_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonFonts", "Cx9XY6IZP_default", "VideoFonts", "Gl33TJkGi_default", "HeroVideoFonts", "C5yy89f_b_default", "MaterialFonts", "Icon", "DienstenFonts", "CYHcqD7pb_default", "MotionDivWithFX", "withFX", "SlideshowFeedbackFonts", "zHQ8vDSDy_default", "ImageWithFX", "Image2", "RichTextWithFX", "SocialButtonFonts", "L75al3MkC_default", "ContainerWithFX", "LineAnimationFonts", "SevmM1ZPX_default", "LineAnimationWithVariantAppearEffect", "withVariantAppearEffect", "FooterFonts", "e2OLXvzs7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "transition6", "transition7", "transition8", "animation9", "transition9", "transition10", "animation10", "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", "XqChoUVti3bnx0g", "overlay", "loadMore", "args", "W6gE2PQAE1wnntms", "uh0k8QU5E3bnx0g", "onClick1wnntms", "ref1", "pe", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref2", "ref3", "elementId1", "ref4", "elementId2", "elementId3", "ref5", "isDisplayed1", "elementId4", "ref6", "isDisplayed2", "isDisplayed3", "elementId5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "LayoutGroup", "cx", "l", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "overlay1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "Link", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
