{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/aDoVW1zT7jDZJBi5VfPk/1R8i6GNjSglx7EtDpT0y/z7lzBScx6.js", "ssg:https://framerusercontent.com/modules/sI6Y9YqhvZitrqAn1EzL/SalE8JvlyXzKkdw5igML/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\",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\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KWPQ5XtJr9jZjGF4mpzp/pgBBgsNtk1YDCJBevzw2/AbI1Lq2Tc.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/gDgecR3bJDTJhTXUtKf3/L3zLhuTEdviZexOZuLga/D673JvkTV.js\";import BTNPrimary from\"https://framerusercontent.com/modules/BabFFXHc3aZvNravnNQ9/0MrZRcbVj51XC1LzvGW0/mcZoD1wIG.js\";const VideoFonts=getFonts(Video);const BTNPrimaryFonts=getFonts(BTNPrimary);const cycleOrder=[\"UH8jKZNOG\",\"Wk76QZl6U\",\"GjE6YqTtY\"];const serializationHash=\"framer-TYV1o\";const variantClassNames={GjE6YqTtY:\"framer-v-agcga\",UH8jKZNOG:\"framer-v-k5whgx\",Wk76QZl6U:\"framer-v-1aoa17n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"Wk76QZl6U\",\"Variant 3\":\"GjE6YqTtY\",Desktop:\"UH8jKZNOG\"};const getProps=({height,id,image,video,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,B1wb8QLTa:image!==null&&image!==void 0?image:props.B1wb8QLTa,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UH8jKZNOG\",vq6FvMOzj:(_ref1=video!==null&&video!==void 0?video:props.vq6FvMOzj)!==null&&_ref1!==void 0?_ref1:true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,B1wb8QLTa,vq6FvMOzj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UH8jKZNOG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();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-k5whgx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UH8jKZNOG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({GjE6YqTtY:{\"data-framer-name\":\"Variant 3\"},Wk76QZl6U:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[vq6FvMOzj&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4upuzu-container\",layoutDependency:layoutDependency,layoutId:\"rOttusZMI-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,controls:false,height:\"100%\",id:\"rOttusZMI\",isMixedBorderRadius:false,layoutId:\"rOttusZMI\",loop:true,muted:true,objectFit:\"none\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/qLKzBohpn71NGwTXxBdBNTFGeg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,volume:25,width:\"100%\"})})}),B1wb8QLTa&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2778,pixelWidth:4160,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.75, 1px)`,src:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp\",srcSet:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp 4160w\"},className:\"framer-v2e37l\",layoutDependency:layoutDependency,layoutId:\"cVLx4HHLX\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GjE6YqTtY:{background:{alt:\"\",fit:\"fill\",pixelHeight:2778,pixelWidth:4160,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.75)`,src:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp\",srcSet:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp 4160w\"}},Wk76QZl6U:{background:{alt:\"\",fit:\"fill\",pixelHeight:2778,pixelWidth:4160,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.75)`,src:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp\",srcSet:\"https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/1zyPvzPi1ltT7BddUhp7rqcVf8.webp 4160w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uzqum\",\"data-framer-name\":\"Frame 320\",layoutDependency:layoutDependency,layoutId:\"pobBoqgTO\",style:{backgroundColor:\"rgb(61, 92, 122)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kteumw\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"YiSaESYjV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qnrfqo\",\"data-framer-name\":\"Frame 317\",layoutDependency:layoutDependency,layoutId:\"Nb4dHWe0Q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-8hdtqw\",\"data-styles-preset\":\"AbI1Lq2Tc\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234)))\"},children:\"D\\xc9 LOCATIE VOOR EVENTS IN DEN HAAG\"})}),className:\"framer-198brf1\",\"data-framer-name\":\"D\\xe9 Locatie voor Events in Den Haag\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VjxCRrJe2\",style:{\"--extracted-gdpscs\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GjE6YqTtY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-8hdtqw\",\"data-styles-preset\":\"AbI1Lq2Tc\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234)))\"},children:[\"D\\xe9 Locatie \",/*#__PURE__*/_jsx(motion.br,{}),\"voor Events in Den Haag\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15stpud\",\"data-styles-preset\":\"D673JvkTV\",children:\"PAARD is al ruim 50 jaar d\\xe9 locatie in Den Haag als het gaat om (pop)muziek. Naast concerten ook ideaal geschikt voor bedrijfsfeesten, borrels, zakelijke bijeenkomsten, conferenties, workshops en meer. Het moderne gebouw met professionele faciliteiten biedt verschillende zalen die samen of afzonderlijk gehuurd kunnen worden. Bij PAARD draait het allemaal om het samenbrengen van mensen voor onvergetelijke ervaringen. Ga op hetzelfde podium staan waar ooit Prince, Editors, Goldband en Radiohead speelden!\"})}),className:\"framer-cgqf18\",\"data-framer-name\":\"PAARD is al ruim 50 jaar d\\xe9 locatie in Den Haag als het gaat om (pop)muziek. Naast concerten is de poptempel ook ideaal geschikt voor bedrijfsfeesten, borrels, zakelijke bijeenkomsten, conferenties, workshops en meer. Het moderne gebouw met professionele faciliteiten biedt verschillende zalen die samen of afzonderlijk gehuurd kunnen worden. Bij PAARD draait het allemaal om het samenbrengen van mensen voor onvergetelijke ervaringen. Ga op hetzelfde podium staan waar ooit Prince, U2 en Pearl Jam speelden!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B3dBVD7PF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nU_mMU5Xw\"},implicitPathVariables:undefined},{href:{webPageId:\"nU_mMU5Xw\"},implicitPathVariables:undefined},{href:{webPageId:\"nU_mMU5Xw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({GjE6YqTtY:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fisox8-container\",layoutDependency:layoutDependency,layoutId:\"C_bGAJTql-container\",children:/*#__PURE__*/_jsx(BTNPrimary,{height:\"100%\",id:\"C_bGAJTql\",layoutId:\"C_bGAJTql\",sgBbKIBum:\"Neem contact op\",style:{height:\"100%\"},TjRdNf5ez:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({GjE6YqTtY:{style:{height:\"100%\",width:\"100%\"},TjRdNf5ez:resolvedLinks[2]},Wk76QZl6U:{TjRdNf5ez:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TYV1o.framer-ep8wp9, .framer-TYV1o .framer-ep8wp9 { display: block; }\",\".framer-TYV1o.framer-k5whgx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1360px; }\",\".framer-TYV1o .framer-4upuzu-container, .framer-TYV1o .framer-v2e37l { align-self: stretch; flex: 0.75 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-TYV1o .framer-uzqum { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 72px 56px 72px 56px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TYV1o .framer-kteumw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TYV1o .framer-qnrfqo { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TYV1o .framer-198brf1, .framer-TYV1o .framer-cgqf18 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TYV1o .framer-1fisox8-container { flex: none; height: 54px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TYV1o.framer-k5whgx, .framer-TYV1o .framer-uzqum, .framer-TYV1o .framer-kteumw, .framer-TYV1o .framer-qnrfqo { gap: 0px; } .framer-TYV1o.framer-k5whgx > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-TYV1o.framer-k5whgx > :first-child { margin-left: 0px; } .framer-TYV1o.framer-k5whgx > :last-child { margin-right: 0px; } .framer-TYV1o .framer-uzqum > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-TYV1o .framer-uzqum > :first-child, .framer-TYV1o .framer-kteumw > :first-child, .framer-TYV1o .framer-qnrfqo > :first-child { margin-top: 0px; } .framer-TYV1o .framer-uzqum > :last-child, .framer-TYV1o .framer-kteumw > :last-child, .framer-TYV1o .framer-qnrfqo > :last-child { margin-bottom: 0px; } .framer-TYV1o .framer-kteumw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-TYV1o .framer-qnrfqo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-TYV1o.framer-v-1aoa17n.framer-k5whgx { flex-direction: column; width: 810px; }\",\".framer-TYV1o.framer-v-1aoa17n .framer-4upuzu-container { align-self: unset; flex: none; height: 480px; width: 100%; }\",\".framer-TYV1o.framer-v-1aoa17n .framer-v2e37l, .framer-TYV1o.framer-v-agcga .framer-v2e37l { align-self: unset; flex: 1 0 0px; height: 1px; width: 75%; }\",\".framer-TYV1o.framer-v-1aoa17n .framer-uzqum { flex: none; padding: 56px 40px 56px 40px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TYV1o.framer-v-1aoa17n.framer-k5whgx { gap: 0px; } .framer-TYV1o.framer-v-1aoa17n.framer-k5whgx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-TYV1o.framer-v-1aoa17n.framer-k5whgx > :first-child { margin-top: 0px; } .framer-TYV1o.framer-v-1aoa17n.framer-k5whgx > :last-child { margin-bottom: 0px; } }\",\".framer-TYV1o.framer-v-agcga.framer-k5whgx { flex-direction: column; gap: 16px; width: 390px; }\",\".framer-TYV1o.framer-v-agcga .framer-4upuzu-container { align-self: unset; flex: none; height: 280px; width: 100%; }\",\".framer-TYV1o.framer-v-agcga .framer-uzqum { flex: none; padding: 32px; width: 100%; }\",\".framer-TYV1o.framer-v-agcga .framer-kteumw { gap: 24px; }\",\".framer-TYV1o.framer-v-agcga .framer-1fisox8-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TYV1o.framer-v-agcga.framer-k5whgx, .framer-TYV1o.framer-v-agcga .framer-kteumw { gap: 0px; } .framer-TYV1o.framer-v-agcga.framer-k5whgx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TYV1o.framer-v-agcga.framer-k5whgx > :first-child, .framer-TYV1o.framer-v-agcga .framer-kteumw > :first-child { margin-top: 0px; } .framer-TYV1o.framer-v-agcga.framer-k5whgx > :last-child, .framer-TYV1o.framer-v-agcga .framer-kteumw > :last-child { margin-bottom: 0px; } .framer-TYV1o.framer-v-agcga .framer-kteumw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 515\n * @framerIntrinsicWidth 1360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Wk76QZl6U\":{\"layout\":[\"fixed\",\"auto\"]},\"GjE6YqTtY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"B1wb8QLTa\":\"image\",\"vq6FvMOzj\":\"video\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz7lzBScx6=withCSS(Component,css,\"framer-TYV1o\");export default Framerz7lzBScx6;Framerz7lzBScx6.displayName=\"HOME - Hero\";Framerz7lzBScx6.defaultProps={height:515,width:1360};addPropertyControls(Framerz7lzBScx6,{variant:{options:[\"UH8jKZNOG\",\"Wk76QZl6U\",\"GjE6YqTtY\"],optionTitles:[\"Desktop\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},B1wb8QLTa:{defaultValue:false,title:\"Image\",type:ControlType.Boolean},vq6FvMOzj:{defaultValue:true,title:\"Video\",type:ControlType.Boolean}});addFonts(Framerz7lzBScx6,[{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\"}]},...VideoFonts,...BTNPrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz7lzBScx6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wk76QZl6U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GjE6YqTtY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"B1wb8QLTa\\\":\\\"image\\\",\\\"vq6FvMOzj\\\":\\\"video\\\"}\",\"framerIntrinsicWidth\":\"1360\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"515\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c163575)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/I0BNwkDq86NkxvMxt7DV/Smooth_Scroll.js\";import STRIPZalen from\"#framer/local/canvasComponent/nuKIAecR0/nuKIAecR0.js\";import BTNSecondary from\"#framer/local/canvasComponent/Ph3Yc4Hs9/Ph3Yc4Hs9.js\";import Navigation from\"#framer/local/canvasComponent/PuYFjDGMG/PuYFjDGMG.js\";import Footer from\"#framer/local/canvasComponent/TRjLZCuVg/TRjLZCuVg.js\";import HOMEHero from\"#framer/local/canvasComponent/z7lzBScx6/z7lzBScx6.js\";import Mogelijkheden from\"#framer/local/collection/hsHDdb7RE/hsHDdb7RE.js\";import News from\"#framer/local/collection/MsuiHZiO_/MsuiHZiO_.js\";import*as sharedStyle from\"#framer/local/css/AbI1Lq2Tc/AbI1Lq2Tc.js\";import*as sharedStyle1 from\"#framer/local/css/vSHCz_o2F/vSHCz_o2F.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const HOMEHeroFonts=getFonts(HOMEHero);const STRIPZalenFonts=getFonts(STRIPZalen);const BTNSecondaryFonts=getFonts(BTNSecondary);const FooterFonts=getFonts(Footer);const breakpoints={ByOu7sc0Y:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",zbXgCx6oV:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2z3hY\";const variantClassNames={ByOu7sc0Y:\"framer-v-zoekcd\",WQLkyLRf1:\"framer-v-72rtr7\",zbXgCx6oV:\"framer-v-1duiwfb\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition1};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ByOu7sc0Y\",Tablet:\"zbXgCx6oV\"};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,edgtkxC9xknGoeObmS,SZNDGKKZxknGoeObmS,nQF87zhr5knGoeObmS,idknGoeObmS,edgtkxC9xkbxgVyvtx,SZNDGKKZxkbxgVyvtx,nQF87zhr5kbxgVyvtx,idkbxgVyvtx,edgtkxC9xxMtheyW5o,SZNDGKKZxxMtheyW5o,nQF87zhr5xMtheyW5o,idxMtheyW5o,edgtkxC9xiM_rQNONM,SZNDGKKZxiM_rQNONM,nQF87zhr5iM_rQNONM,idiM_rQNONM,edgtkxC9xxB3JHVxBy,SZNDGKKZxxB3JHVxBy,nQF87zhr5xB3JHVxBy,idxB3JHVxBy,Dfqs5Z3yROm1DWhwyO,SvUGtZDpQOm1DWhwyO,y6ejN7u1EOm1DWhwyO,lg7U2Xg1ROm1DWhwyO,idOm1DWhwyO,...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-2z3hY`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-2z3hY`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"VHD_QoE47\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ByOu7sc0Y\")return false;return true;};const router=useRouter();const activeLocaleCode=useLocaleCode();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ByOu7sc0Y\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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(\"div\",{className:\"framer-11hfw3p\",\"data-framer-name\":\"Rectangle 38\",id:elementId,name:\"Rectangle 38\",ref:ref2}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwq0ht-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"j05LYi1B5\",intensity:10,layoutId:\"j05LYi1B5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:144,width:\"min(100vw, 1600px)\",y:240,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i8z7sb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{variant:\"QhucK8ZSV\"},zbXgCx6oV:{variant:\"QhucK8ZSV\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"T_4MHyTtF\",layoutId:\"T_4MHyTtF\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"W84hxx1XW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ebcdq4\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{width:\"calc(min(100vw, 1600px) - 32px)\"},zbXgCx6oV:{width:\"calc(min(100vw, 1600px) - 64px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:515,width:\"calc(min(100vw, 1600px) - 80px)\",y:384,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10wjpf4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{variant:\"GjE6YqTtY\"},zbXgCx6oV:{variant:\"Wk76QZl6U\"}},children:/*#__PURE__*/_jsx(HOMEHero,{B1wb8QLTa:false,height:\"100%\",id:\"OaEf8ZCgV\",layoutId:\"OaEf8ZCgV\",style:{width:\"100%\"},variant:\"UH8jKZNOG\",vq6FvMOzj:true,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lxlzx\",\"data-framer-name\":\"De mogelijkheden\",name:\"De mogelijkheden\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8hdtqw\",\"data-styles-preset\":\"AbI1Lq2Tc\",style:{\"--framer-text-color\":\"var(--token-4baac5b4-7868-4f51-9fbb-6aaa7a89e7d9, rgb(61, 92, 122))\"},children:\"De mogelijkheden\"})}),className:\"framer-mt1r7l\",\"data-framer-name\":\"De mogelijkheden\",fonts:[\"Inter\"],name:\"De mogelijkheden\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18n2nzh\",\"data-framer-name\":\"1,2\",name:\"1,2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f6986m\",\"data-framer-name\":\"1\",name:\"1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"knGoeObmS\",data:Mogelijkheden,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"knGoeObmS\",name:\"edgtkxC9x\",type:\"Identifier\"},{collection:\"knGoeObmS\",name:\"SZNDGKKZx\",type:\"Identifier\"},{collection:\"knGoeObmS\",name:\"nQF87zhr5\",type:\"Identifier\"},{collection:\"knGoeObmS\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"edgtkxC9x\":edgtkxC9xknGoeObmS,\"SZNDGKKZx\":SZNDGKKZxknGoeObmS,\"nQF87zhr5\":nQF87zhr5knGoeObmS,\"id\":idknGoeObmS},i)=>{SZNDGKKZxknGoeObmS!==null&&SZNDGKKZxknGoeObmS!==void 0?SZNDGKKZxknGoeObmS:SZNDGKKZxknGoeObmS=\"\";nQF87zhr5knGoeObmS!==null&&nQF87zhr5knGoeObmS!==void 0?nQF87zhr5knGoeObmS:nQF87zhr5knGoeObmS=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`knGoeObmS-${idknGoeObmS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SZNDGKKZx:SZNDGKKZxknGoeObmS},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{SZNDGKKZx:SZNDGKKZxknGoeObmS},webPageId:\"gt_lxdls7\"},nodeId:\"dc0R2HVZs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1065.4),sizes:\"max((min(100vw, 1600px) - 128px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xknGoeObmS)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1081.4),sizes:\"max((max((min(100vw, 1600px) - 80px) / 1.49, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xknGoeObmS)}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1121.4),sizes:\"max((max((min(100vw, 1600px) - 96px) / 1.49, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xknGoeObmS)},className:\"framer-152q1s8 framer-lux5qc\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-87qx9o\",\"data-styles-preset\":\"vSHCz_o2F\",style:{\"--framer-text-color\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\"},children:\"Titel\"})}),className:\"framer-1n9ghqg\",\"data-framer-name\":\"BEDRIJFS- EN SCHOOLFEESTEN\",fonts:[\"Inter\"],name:\"BEDRIJFS- EN SCHOOLFEESTEN\",text:nQF87zhr5knGoeObmS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ibqlu\"})]})})})})},idknGoeObmS);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xv0xrn\",\"data-framer-name\":\"2\",name:\"2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kbxgVyvtx\",data:Mogelijkheden,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"kbxgVyvtx\",name:\"edgtkxC9x\",type:\"Identifier\"},{collection:\"kbxgVyvtx\",name:\"SZNDGKKZx\",type:\"Identifier\"},{collection:\"kbxgVyvtx\",name:\"nQF87zhr5\",type:\"Identifier\"},{collection:\"kbxgVyvtx\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"edgtkxC9x\":edgtkxC9xkbxgVyvtx,\"SZNDGKKZx\":SZNDGKKZxkbxgVyvtx,\"nQF87zhr5\":nQF87zhr5kbxgVyvtx,\"id\":idkbxgVyvtx},i)=>{SZNDGKKZxkbxgVyvtx!==null&&SZNDGKKZxkbxgVyvtx!==void 0?SZNDGKKZxkbxgVyvtx:SZNDGKKZxkbxgVyvtx=\"\";nQF87zhr5kbxgVyvtx!==null&&nQF87zhr5kbxgVyvtx!==void 0?nQF87zhr5kbxgVyvtx:nQF87zhr5kbxgVyvtx=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kbxgVyvtx-${idkbxgVyvtx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SZNDGKKZx:SZNDGKKZxkbxgVyvtx},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{SZNDGKKZx:SZNDGKKZxkbxgVyvtx},webPageId:\"gt_lxdls7\"},nodeId:\"p6q8lTtQa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1361.4),sizes:\"max((min(100vw, 1600px) - 128px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xkbxgVyvtx)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1081.4),sizes:\"max((max((min(100vw, 1600px) - 80px) * 0.3289, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xkbxgVyvtx)}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1121.4),sizes:\"max((max((min(100vw, 1600px) - 96px) * 0.3289, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xkbxgVyvtx)},className:\"framer-1d8u5tt framer-lux5qc\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-87qx9o\",\"data-styles-preset\":\"vSHCz_o2F\",style:{\"--framer-text-color\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\"},children:\"Titel\"})}),className:\"framer-1owpkhc\",\"data-framer-name\":\"BEDRIJFS- EN SCHOOLFEESTEN\",fonts:[\"Inter\"],name:\"BEDRIJFS- EN SCHOOLFEESTEN\",text:nQF87zhr5kbxgVyvtx,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a2gx71\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-246abx\"})]})})})})},idkbxgVyvtx);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4j77xp\",\"data-framer-name\":\"3,4,5\",name:\"3,4,5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xMtheyW5o\",data:Mogelijkheden,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"xMtheyW5o\",name:\"edgtkxC9x\",type:\"Identifier\"},{collection:\"xMtheyW5o\",name:\"SZNDGKKZx\",type:\"Identifier\"},{collection:\"xMtheyW5o\",name:\"nQF87zhr5\",type:\"Identifier\"},{collection:\"xMtheyW5o\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"edgtkxC9x\":edgtkxC9xxMtheyW5o,\"SZNDGKKZx\":SZNDGKKZxxMtheyW5o,\"nQF87zhr5\":nQF87zhr5xMtheyW5o,\"id\":idxMtheyW5o},i)=>{SZNDGKKZxxMtheyW5o!==null&&SZNDGKKZxxMtheyW5o!==void 0?SZNDGKKZxxMtheyW5o:SZNDGKKZxxMtheyW5o=\"\";nQF87zhr5xMtheyW5o!==null&&nQF87zhr5xMtheyW5o!==void 0?nQF87zhr5xMtheyW5o:nQF87zhr5xMtheyW5o=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xMtheyW5o-${idxMtheyW5o}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SZNDGKKZx:SZNDGKKZxxMtheyW5o},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{SZNDGKKZx:SZNDGKKZxxMtheyW5o},webPageId:\"gt_lxdls7\"},nodeId:\"bAATSCA_p\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3441.4),sizes:\"calc(min(100vw, 1600px) - 32px)\",...toResponsiveImage(edgtkxC9xxMtheyW5o)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1541.4),sizes:\"max((min(100vw, 1600px) - 160px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xxMtheyW5o)}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1753.4),sizes:\"max((min(100vw, 1600px) - 176px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xxMtheyW5o)},className:\"framer-w3au6p framer-lux5qc\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-87qx9o\",\"data-styles-preset\":\"vSHCz_o2F\",style:{\"--framer-text-color\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\"},children:\"Titel\"})}),className:\"framer-1xd5wrh\",\"data-framer-name\":\"BEDRIJFS- EN SCHOOLFEESTEN\",fonts:[\"Inter\"],name:\"BEDRIJFS- EN SCHOOLFEESTEN\",text:nQF87zhr5xMtheyW5o,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1685ksr\"})]})})})})},idxMtheyW5o);})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pqtwpa\",\"data-framer-name\":\"6,7\",name:\"6,7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8g7r7t\",\"data-framer-name\":\"6\",name:\"6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iM_rQNONM\",data:Mogelijkheden,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"iM_rQNONM\",name:\"edgtkxC9x\",type:\"Identifier\"},{collection:\"iM_rQNONM\",name:\"SZNDGKKZx\",type:\"Identifier\"},{collection:\"iM_rQNONM\",name:\"nQF87zhr5\",type:\"Identifier\"},{collection:\"iM_rQNONM\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"edgtkxC9x\":edgtkxC9xiM_rQNONM,\"SZNDGKKZx\":SZNDGKKZxiM_rQNONM,\"nQF87zhr5\":nQF87zhr5iM_rQNONM,\"id\":idiM_rQNONM},i)=>{SZNDGKKZxiM_rQNONM!==null&&SZNDGKKZxiM_rQNONM!==void 0?SZNDGKKZxiM_rQNONM:SZNDGKKZxiM_rQNONM=\"\";nQF87zhr5iM_rQNONM!==null&&nQF87zhr5iM_rQNONM!==void 0?nQF87zhr5iM_rQNONM:nQF87zhr5iM_rQNONM=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iM_rQNONM-${idiM_rQNONM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SZNDGKKZx:SZNDGKKZxiM_rQNONM},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{SZNDGKKZx:SZNDGKKZxiM_rQNONM},webPageId:\"gt_lxdls7\"},nodeId:\"sW6EkYp51\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3745.4),sizes:\"max((min(100vw, 1600px) - 128px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xiM_rQNONM)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1877.4),sizes:\"max((max((min(100vw, 1600px) - 80px) * 0.3289, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xiM_rQNONM)}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2089.4),sizes:\"max((max((min(100vw, 1600px) - 96px) * 0.3289, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xiM_rQNONM)},className:\"framer-udpc3x framer-lux5qc\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-87qx9o\",\"data-styles-preset\":\"vSHCz_o2F\",style:{\"--framer-text-color\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\"},children:\"Titel\"})}),className:\"framer-ypbgct\",\"data-framer-name\":\"BEDRIJFS- EN SCHOOLFEESTEN\",fonts:[\"Inter\"],name:\"BEDRIJFS- EN SCHOOLFEESTEN\",text:nQF87zhr5iM_rQNONM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gyxfek\"})]})})})})},idiM_rQNONM);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yv44lk\",\"data-framer-name\":\"7\",name:\"7\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xB3JHVxBy\",data:Mogelijkheden,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:6},select:[{collection:\"xB3JHVxBy\",name:\"edgtkxC9x\",type:\"Identifier\"},{collection:\"xB3JHVxBy\",name:\"SZNDGKKZx\",type:\"Identifier\"},{collection:\"xB3JHVxBy\",name:\"nQF87zhr5\",type:\"Identifier\"},{collection:\"xB3JHVxBy\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"edgtkxC9x\":edgtkxC9xxB3JHVxBy,\"SZNDGKKZx\":SZNDGKKZxxB3JHVxBy,\"nQF87zhr5\":nQF87zhr5xB3JHVxBy,\"id\":idxB3JHVxBy},i)=>{SZNDGKKZxxB3JHVxBy!==null&&SZNDGKKZxxB3JHVxBy!==void 0?SZNDGKKZxxB3JHVxBy:SZNDGKKZxxB3JHVxBy=\"\";nQF87zhr5xB3JHVxBy!==null&&nQF87zhr5xB3JHVxBy!==void 0?nQF87zhr5xB3JHVxBy:nQF87zhr5xB3JHVxBy=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`xB3JHVxBy-${idxB3JHVxBy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SZNDGKKZx:SZNDGKKZxxB3JHVxBy},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{SZNDGKKZx:SZNDGKKZxxB3JHVxBy},webPageId:\"gt_lxdls7\"},nodeId:\"V0YKHLuil\",openInNewTab:false,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4041.4),sizes:\"max((min(100vw, 1600px) - 128px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xxB3JHVxBy)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1877.4),sizes:\"max((max((min(100vw, 1600px) - 80px) / 1.49, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xxB3JHVxBy)}}},children:/*#__PURE__*/_jsxs(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2089.4),sizes:\"max((max((min(100vw, 1600px) - 96px) / 1.49, 1px) - 96px) / 7, 1px)\",...toResponsiveImage(edgtkxC9xxB3JHVxBy)},className:\"framer-1m0fhaj framer-lux5qc\",\"data-framer-name\":\"Frame 7\",name:\"Frame 7\",whileHover:animation,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-87qx9o\",\"data-styles-preset\":\"vSHCz_o2F\",style:{\"--framer-text-color\":\"var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234))\"},children:\"Titel\"})}),className:\"framer-ttbmpo\",\"data-framer-name\":\"BEDRIJFS- EN SCHOOLFEESTEN\",fonts:[\"Inter\"],name:\"BEDRIJFS- EN SCHOOLFEESTEN\",text:nQF87zhr5xB3JHVxBy,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mlu390\"})]})})})})},idxB3JHVxBy);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{width:\"calc(min(100vw, 1600px) - 32px)\",y:4401.4},zbXgCx6oV:{width:\"calc(min(100vw, 1600px) - 64px)\",y:2277.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:182,width:\"calc(min(100vw, 1600px) - 80px)\",y:2604.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17ho4wb-container\",children:/*#__PURE__*/_jsx(STRIPZalen,{b8arXlb99:\"0\",FwBPiJndM:\"ONZE ZALEN\",height:\"100%\",id:\"REc1ZLQbh\",layoutId:\"REc1ZLQbh\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13gcm6w\",\"data-framer-name\":\"Nieuws\",name:\"Nieuws\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16x22kl\",\"data-framer-name\":\"Frame 88\",name:\"Frame 88\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-8hdtqw\",\"data-styles-preset\":\"AbI1Lq2Tc\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nieuws\"})}),className:\"framer-13a6nz8\",\"data-framer-name\":\"Nieuws\",fonts:[\"Inter\"],name:\"Nieuws\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m49mlKIPy\"},implicitPathVariables:undefined},{href:{webPageId:\"m49mlKIPy\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zbXgCx6oV:{y:2623.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:2990.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jlhtaq-container hidden-zoekcd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zbXgCx6oV:{hQuqicwoH:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BTNSecondary,{height:\"100%\",hQuqicwoH:resolvedLinks[0],id:\"F1CRQet5r\",layoutId:\"F1CRQet5r\",style:{height:\"100%\"},TdmFvQ_XY:\"Bekijk meer nieuws\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lvu9bb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Om1DWhwyO\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"Om1DWhwyO\",name:\"Dfqs5Z3yR\",type:\"Identifier\"},{collection:\"Om1DWhwyO\",name:\"SvUGtZDpQ\",type:\"Identifier\"},{collection:\"Om1DWhwyO\",name:\"y6ejN7u1E\",type:\"Identifier\"},{collection:\"Om1DWhwyO\",name:\"lg7U2Xg1R\",type:\"Identifier\"},{collection:\"Om1DWhwyO\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"Dfqs5Z3yR\":Dfqs5Z3yROm1DWhwyO,\"SvUGtZDpQ\":SvUGtZDpQOm1DWhwyO,\"y6ejN7u1E\":y6ejN7u1EOm1DWhwyO,\"lg7U2Xg1R\":lg7U2Xg1ROm1DWhwyO,\"id\":idOm1DWhwyO},i)=>{Dfqs5Z3yROm1DWhwyO!==null&&Dfqs5Z3yROm1DWhwyO!==void 0?Dfqs5Z3yROm1DWhwyO:Dfqs5Z3yROm1DWhwyO=\"\";lg7U2Xg1ROm1DWhwyO!==null&&lg7U2Xg1ROm1DWhwyO!==void 0?lg7U2Xg1ROm1DWhwyO:lg7U2Xg1ROm1DWhwyO=\"\";const textContent=toDateString(y6ejN7u1EOm1DWhwyO,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Om1DWhwyO-${idOm1DWhwyO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Dfqs5Z3yR:Dfqs5Z3yROm1DWhwyO},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Dfqs5Z3yR:Dfqs5Z3yROm1DWhwyO},webPageId:\"ubpASxkHG\"},nodeId:\"XAMRDpWUG\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-gdm1fm framer-lux5qc\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6555.4),sizes:\"min(100vw - 32px, 1600px)\",...toResponsiveImage(SvUGtZDpQOm1DWhwyO)}},zbXgCx6oV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2721.8),sizes:\"max((min(100vw - 80px, 1600px) - 96px) / 5, 1px)\",...toResponsiveImage(SvUGtZDpQOm1DWhwyO)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3088.8),sizes:\"max((min(100vw - 80px, 1600px) - 160px) / 5, 1px)\",...toResponsiveImage(SvUGtZDpQOm1DWhwyO)},className:\"framer-1hbq1wf\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yiccxv\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1BhdHRlcm5CbGFuayBCb2xk\",\"--framer-font-family\":'\"PatternBlank Bold\", \"PatternBlank Bold Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(238, 179, 154)\"},children:\"Content\"})}),className:\"framer-vv27zd\",\"data-framer-name\":\"Date\",fonts:[\"CUSTOM;PatternBlank Bold\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1BhdHRlcm5CbGFuayBCb2xk\",\"--framer-font-family\":'\"PatternBlank Bold\", \"PatternBlank Bold Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(240, 238, 234)\"},children:\"Title\"})}),className:\"framer-15cv61j\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;PatternBlank Bold\"],name:\"Title\",text:lg7U2Xg1ROm1DWhwyO,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idOm1DWhwyO);})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m49mlKIPy\"},implicitPathVariables:undefined},{href:{webPageId:\"m49mlKIPy\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{height:54,width:\"calc(100vw - 32px)\",y:6970.799999999999}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a22y58-container hidden-72rtr7 hidden-1duiwfb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{hQuqicwoH:resolvedLinks1[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(BTNSecondary,{height:\"100%\",hQuqicwoH:resolvedLinks1[0],id:\"J665lH0X_\",layoutId:\"J665lH0X_\",style:{height:\"100%\"},TdmFvQ_XY:\"Bekijk meer nieuws\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{y:7104.799999999999},zbXgCx6oV:{y:3133.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1579,width:\"100vw\",y:3640.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11762v6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ByOu7sc0Y:{variant:\"mzxzLyiA1\"},zbXgCx6oV:{variant:\"o3pNA8jnF\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"v_rfvoab6\",layoutId:\"v_rfvoab6\",OjATcAM7m:true,style:{width:\"100%\"},variant:\"pYrAEeoV8\",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-2z3hY { background: var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234)); }`,\".framer-2z3hY.framer-lux5qc, .framer-2z3hY .framer-lux5qc { display: block; }\",\".framer-2z3hY.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, #f0eeea); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 80px 0px; position: relative; width: 1200px; }\",\".framer-2z3hY .framer-11hfw3p { background-color: var(--token-83d20c26-7c0c-425b-831e-af149a63d730, #eeb39a); flex: none; height: 595px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-2z3hY .framer-1gwq0ht-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2z3hY .framer-1i8z7sb-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 100%; z-index: 1; }\",\".framer-2z3hY .framer-ebcdq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1600px; overflow: hidden; padding: 0px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-10wjpf4-container, .framer-2z3hY .framer-17ho4wb-container, .framer-2z3hY .framer-11762v6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2z3hY .framer-8lxlzx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-mt1r7l, .framer-2z3hY .framer-vv27zd, .framer-2z3hY .framer-15cv61j { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2z3hY .framer-18n2nzh, .framer-2z3hY .framer-pqtwpa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-f6986m, .framer-2z3hY .framer-yv44lk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-2z3hY .framer-152q1s8, .framer-2z3hY .framer-1d8u5tt { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 592px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2z3hY .framer-1n9ghqg, .framer-2z3hY .framer-1owpkhc, .framer-2z3hY .framer-1xd5wrh, .framer-2z3hY .framer-ypbgct, .framer-2z3hY .framer-ttbmpo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-2z3hY .framer-17ibqlu, .framer-2z3hY .framer-1685ksr, .framer-2z3hY .framer-gyxfek, .framer-2z3hY .framer-mlu390 { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-2z3hY .framer-xv0xrn, .framer-2z3hY .framer-8g7r7t { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.49 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-2z3hY .framer-a2gx71 { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.05) 100%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-2z3hY .framer-246abx { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%); flex: none; height: 100%; left: calc(49.862258953168066% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-2z3hY .framer-4j77xp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-w3au6p { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 296px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2z3hY .framer-udpc3x, .framer-2z3hY .framer-1m0fhaj { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 395px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2z3hY .framer-13gcm6w { align-content: center; align-items: center; background-color: #3d5c7a; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-16x22kl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-13a6nz8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2z3hY .framer-jlhtaq-container, .framer-2z3hY .framer-a22y58-container { flex: none; height: 54px; position: relative; width: auto; }\",\".framer-2z3hY .framer-1lvu9bb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1600px; padding: 0px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-gdm1fm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-2z3hY .framer-1hbq1wf { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-2z3hY .framer-yiccxv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2z3hY.framer-72rtr7, .framer-2z3hY .framer-ebcdq4, .framer-2z3hY .framer-8lxlzx, .framer-2z3hY .framer-18n2nzh, .framer-2z3hY .framer-f6986m, .framer-2z3hY .framer-152q1s8, .framer-2z3hY .framer-xv0xrn, .framer-2z3hY .framer-1d8u5tt, .framer-2z3hY .framer-4j77xp, .framer-2z3hY .framer-w3au6p, .framer-2z3hY .framer-pqtwpa, .framer-2z3hY .framer-8g7r7t, .framer-2z3hY .framer-udpc3x, .framer-2z3hY .framer-yv44lk, .framer-2z3hY .framer-1m0fhaj, .framer-2z3hY .framer-13gcm6w, .framer-2z3hY .framer-1lvu9bb, .framer-2z3hY .framer-gdm1fm, .framer-2z3hY .framer-yiccxv { gap: 0px; } .framer-2z3hY.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2z3hY.framer-72rtr7 > :first-child, .framer-2z3hY .framer-ebcdq4 > :first-child, .framer-2z3hY .framer-8lxlzx > :first-child, .framer-2z3hY .framer-152q1s8 > :first-child, .framer-2z3hY .framer-1d8u5tt > :first-child, .framer-2z3hY .framer-w3au6p > :first-child, .framer-2z3hY .framer-udpc3x > :first-child, .framer-2z3hY .framer-1m0fhaj > :first-child, .framer-2z3hY .framer-13gcm6w > :first-child, .framer-2z3hY .framer-gdm1fm > :first-child, .framer-2z3hY .framer-yiccxv > :first-child { margin-top: 0px; } .framer-2z3hY.framer-72rtr7 > :last-child, .framer-2z3hY .framer-ebcdq4 > :last-child, .framer-2z3hY .framer-8lxlzx > :last-child, .framer-2z3hY .framer-152q1s8 > :last-child, .framer-2z3hY .framer-1d8u5tt > :last-child, .framer-2z3hY .framer-w3au6p > :last-child, .framer-2z3hY .framer-udpc3x > :last-child, .framer-2z3hY .framer-1m0fhaj > :last-child, .framer-2z3hY .framer-13gcm6w > :last-child, .framer-2z3hY .framer-gdm1fm > :last-child, .framer-2z3hY .framer-yiccxv > :last-child { margin-bottom: 0px; } .framer-2z3hY .framer-ebcdq4 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-2z3hY .framer-8lxlzx > *, .framer-2z3hY .framer-13gcm6w > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2z3hY .framer-18n2nzh > *, .framer-2z3hY .framer-f6986m > *, .framer-2z3hY .framer-xv0xrn > *, .framer-2z3hY .framer-4j77xp > *, .framer-2z3hY .framer-pqtwpa > *, .framer-2z3hY .framer-8g7r7t > *, .framer-2z3hY .framer-yv44lk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-2z3hY .framer-18n2nzh > :first-child, .framer-2z3hY .framer-f6986m > :first-child, .framer-2z3hY .framer-xv0xrn > :first-child, .framer-2z3hY .framer-4j77xp > :first-child, .framer-2z3hY .framer-pqtwpa > :first-child, .framer-2z3hY .framer-8g7r7t > :first-child, .framer-2z3hY .framer-yv44lk > :first-child, .framer-2z3hY .framer-1lvu9bb > :first-child { margin-left: 0px; } .framer-2z3hY .framer-18n2nzh > :last-child, .framer-2z3hY .framer-f6986m > :last-child, .framer-2z3hY .framer-xv0xrn > :last-child, .framer-2z3hY .framer-4j77xp > :last-child, .framer-2z3hY .framer-pqtwpa > :last-child, .framer-2z3hY .framer-8g7r7t > :last-child, .framer-2z3hY .framer-yv44lk > :last-child, .framer-2z3hY .framer-1lvu9bb > :last-child { margin-right: 0px; } .framer-2z3hY .framer-152q1s8 > *, .framer-2z3hY .framer-1d8u5tt > *, .framer-2z3hY .framer-w3au6p > *, .framer-2z3hY .framer-udpc3x > *, .framer-2z3hY .framer-1m0fhaj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-2z3hY .framer-1lvu9bb > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-2z3hY .framer-gdm1fm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2z3hY .framer-yiccxv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-2z3hY { background: var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234)); } .framer-2z3hY.framer-72rtr7 { width: 810px; } .framer-2z3hY .framer-11hfw3p { height: 882px; } .framer-2z3hY .framer-ebcdq4 { gap: 80px; padding: 0px 32px 80px 32px; } .framer-2z3hY .framer-152q1s8, .framer-2z3hY .framer-1d8u5tt { height: 420px; } .framer-2z3hY .framer-udpc3x, .framer-2z3hY .framer-1m0fhaj { height: 320px; } .framer-2z3hY .framer-1lvu9bb { gap: 24px; } .framer-2z3hY .framer-1hbq1wf { height: 180px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2z3hY .framer-ebcdq4, .framer-2z3hY .framer-1lvu9bb { gap: 0px; } .framer-2z3hY .framer-ebcdq4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2z3hY .framer-ebcdq4 > :first-child { margin-top: 0px; } .framer-2z3hY .framer-ebcdq4 > :last-child { margin-bottom: 0px; } .framer-2z3hY .framer-1lvu9bb > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-2z3hY .framer-1lvu9bb > :first-child { margin-left: 0px; } .framer-2z3hY .framer-1lvu9bb > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-2z3hY { background: var(--token-d5e72f26-f2cc-46eb-bff3-c62dcd0458c6, rgb(240, 238, 234)); } .framer-2z3hY.framer-72rtr7 { width: 390px; } .framer-2z3hY .framer-11hfw3p { height: 621px; order: 0; } .framer-2z3hY .framer-1gwq0ht-container { order: 1; } .framer-2z3hY .framer-1i8z7sb-container { order: 2; } .framer-2z3hY .framer-ebcdq4 { gap: 80px; order: 3; padding: 0px 16px 80px 16px; } .framer-2z3hY .framer-8lxlzx { gap: 24px; } .framer-2z3hY .framer-18n2nzh, .framer-2z3hY .framer-4j77xp, .framer-2z3hY .framer-pqtwpa, .framer-2z3hY .framer-1lvu9bb { flex-direction: column; } .framer-2z3hY .framer-f6986m, .framer-2z3hY .framer-xv0xrn, .framer-2z3hY .framer-8g7r7t, .framer-2z3hY .framer-yv44lk, .framer-2z3hY .framer-gdm1fm { flex: none; width: 100%; } .framer-2z3hY .framer-152q1s8, .framer-2z3hY .framer-1d8u5tt, .framer-2z3hY .framer-udpc3x, .framer-2z3hY .framer-1m0fhaj { height: 280px; padding: 16px; } .framer-2z3hY .framer-w3au6p { flex: none; height: 280px; padding: 16px; width: 100%; } .framer-2z3hY .framer-13gcm6w { gap: 24px; order: 4; padding: 80px 16px 80px 16px; } .framer-2z3hY .framer-16x22kl { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; } .framer-2z3hY .framer-13a6nz8 { order: 0; } .framer-2z3hY .framer-1hbq1wf { height: 240px; } .framer-2z3hY .framer-a22y58-container { width: 100%; } .framer-2z3hY .framer-11762v6-container { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-2z3hY .framer-ebcdq4, .framer-2z3hY .framer-8lxlzx, .framer-2z3hY .framer-18n2nzh, .framer-2z3hY .framer-4j77xp, .framer-2z3hY .framer-pqtwpa, .framer-2z3hY .framer-13gcm6w, .framer-2z3hY .framer-16x22kl, .framer-2z3hY .framer-1lvu9bb { gap: 0px; } .framer-2z3hY .framer-ebcdq4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-2z3hY .framer-ebcdq4 > :first-child, .framer-2z3hY .framer-8lxlzx > :first-child, .framer-2z3hY .framer-18n2nzh > :first-child, .framer-2z3hY .framer-4j77xp > :first-child, .framer-2z3hY .framer-pqtwpa > :first-child, .framer-2z3hY .framer-13gcm6w > :first-child, .framer-2z3hY .framer-16x22kl > :first-child, .framer-2z3hY .framer-1lvu9bb > :first-child { margin-top: 0px; } .framer-2z3hY .framer-ebcdq4 > :last-child, .framer-2z3hY .framer-8lxlzx > :last-child, .framer-2z3hY .framer-18n2nzh > :last-child, .framer-2z3hY .framer-4j77xp > :last-child, .framer-2z3hY .framer-pqtwpa > :last-child, .framer-2z3hY .framer-13gcm6w > :last-child, .framer-2z3hY .framer-16x22kl > :last-child, .framer-2z3hY .framer-1lvu9bb > :last-child { margin-bottom: 0px; } .framer-2z3hY .framer-8lxlzx > *, .framer-2z3hY .framer-13gcm6w > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-2z3hY .framer-18n2nzh > *, .framer-2z3hY .framer-4j77xp > *, .framer-2z3hY .framer-pqtwpa > *, .framer-2z3hY .framer-16x22kl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2z3hY .framer-1lvu9bb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5377\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zbXgCx6oV\":{\"layout\":[\"fixed\",\"auto\"]},\"ByOu7sc0Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2z3hY\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5377,width:1200};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:\"PatternBlank Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/tJSoDGsyDZsDSe4aQYC3yWPn2vA.woff\"}]},...SmoothScrollFonts,...NavigationFonts,...HOMEHeroFonts,...STRIPZalenFonts,...BTNSecondaryFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zbXgCx6oV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ByOu7sc0Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5377\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "BTNPrimaryFonts", "mcZoD1wIG_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "video", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "B1wb8QLTa", "vq6FvMOzj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "css", "Framerz7lzBScx6", "withCSS", "z7lzBScx6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavigationFonts", "PuYFjDGMG_default", "HOMEHeroFonts", "z7lzBScx6_default", "STRIPZalenFonts", "nuKIAecR0_default", "BTNSecondaryFonts", "Ph3Yc4Hs9_default", "FooterFonts", "TRjLZCuVg_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation1", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "edgtkxC9xknGoeObmS", "SZNDGKKZxknGoeObmS", "nQF87zhr5knGoeObmS", "idknGoeObmS", "edgtkxC9xkbxgVyvtx", "SZNDGKKZxkbxgVyvtx", "nQF87zhr5kbxgVyvtx", "idkbxgVyvtx", "edgtkxC9xxMtheyW5o", "SZNDGKKZxxMtheyW5o", "nQF87zhr5xMtheyW5o", "idxMtheyW5o", "edgtkxC9xiM_rQNONM", "SZNDGKKZxiM_rQNONM", "nQF87zhr5iM_rQNONM", "idiM_rQNONM", "edgtkxC9xxB3JHVxBy", "SZNDGKKZxxB3JHVxBy", "nQF87zhr5xB3JHVxBy", "idxB3JHVxBy", "Dfqs5Z3yROm1DWhwyO", "SvUGtZDpQOm1DWhwyO", "y6ejN7u1EOm1DWhwyO", "lg7U2Xg1ROm1DWhwyO", "idOm1DWhwyO", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "ChildrenCanSuspend", "hsHDdb7RE_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "getLoadingLazyAtYPosition", "Image2", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "ResolveLinks", "resolvedLinks", "MsuiHZiO_default", "collection5", "paginationInfo5", "loadMore5", "textContent", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
