{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/fjeJU9w5NOC1NJMe16D5/nUwNP5ZtFEB61X0845rA/wBPOZRUDl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}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={}));/**\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);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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(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\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};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(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?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 _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=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\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (ee40135)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js\";import Project from\"#framer/local/canvasComponent/B4CrjLIFA/B4CrjLIFA.js\";import Button from\"#framer/local/canvasComponent/cBQAwTefC/cBQAwTefC.js\";import NavigationBar from\"#framer/local/canvasComponent/Kg3jp8xZU/Kg3jp8xZU.js\";import Footer from\"#framer/local/canvasComponent/oGO_MGaZp/oGO_MGaZp.js\";import Heading from\"#framer/local/canvasComponent/QJ12gIOBS/QJ12gIOBS.js\";import Tag from\"#framer/local/canvasComponent/VLQCZcVpG/VLQCZcVpG.js\";import Projecten from\"#framer/local/collection/c4gQFLt_3/c4gQFLt_3.js\";import*as sharedStyle1 from\"#framer/local/css/Kk8d6B9MK/Kk8d6B9MK.js\";import*as sharedStyle from\"#framer/local/css/s2c1M16C7/s2c1M16C7.js\";import metadataProvider from\"#framer/local/webPageMetadata/wBPOZRUDl/wBPOZRUDl.js\";const TagFonts=getFonts(Tag);const MotionSectionWithFX=withFX(motion.section);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const HeadingFonts=getFonts(Heading);const ButtonFonts=getFonts(Button);const ProjectFonts=getFonts(Project);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationBarFonts=getFonts(NavigationBar);const breakpoints={APDIdFrfZ:\"(min-width: 810px) and (max-width: 1199px)\",EM76u23Tj:\"(min-width: 1200px)\",sNkaKYfid:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-euZ3u\";const variantClassNames={APDIdFrfZ:\"framer-v-izbil8\",EM76u23Tj:\"framer-v-jl5hr9\",sNkaKYfid:\"framer-v-1oyv1xf\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:170};const transition1={damping:85,delay:.4,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:170};const enumToDisplayName=value=>value;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition2={damping:80,delay:.1,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromEnum=(value,activeLocale)=>{return undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"EM76u23Tj\",Phone:\"sNkaKYfid\",Tablet:\"APDIdFrfZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EM76u23Tj\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"wBPOZRUDl\",data:Projecten,type:\"Collection\"},select:[{collection:\"wBPOZRUDl\",name:\"y27i2645k\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"HHbGhu6Un\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"p0IqRGBPU\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"GM6k8WU0b\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"PUhnp62mV\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"RM2Sqrl5w\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"UEGXj0lDz\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"aoTbv_POU\",type:\"Identifier\"},{collection:\"wBPOZRUDl\",name:\"dn0LQw9Ig\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"wBPOZRUDl\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,TA3EDeQ5wbcUIOegNe,y27i2645k=getFromCurrentRouteData(\"y27i2645k\")??\"\",p0IqRGBPU=getFromCurrentRouteData(\"p0IqRGBPU\"),HHbGhu6Un=getFromCurrentRouteData(\"HHbGhu6Un\")??\"\",PUhnp62mV=getFromCurrentRouteData(\"PUhnp62mV\"),RM2Sqrl5w=getFromCurrentRouteData(\"RM2Sqrl5w\"),UEGXj0lDz=getFromCurrentRouteData(\"UEGXj0lDz\"),aoTbv_POU=getFromCurrentRouteData(\"aoTbv_POU\"),dn0LQw9Ig=getFromCurrentRouteData(\"dn0LQw9Ig\")??\"\",digy2gtYybcUIOegNe,p0IqRGBPUZaoQ_RWAe,y27i2645kZaoQ_RWAe,UDzOilHVeZaoQ_RWAe,GM6k8WU0bZaoQ_RWAe,idZaoQ_RWAe,GM6k8WU0b=getFromCurrentRouteData(\"GM6k8WU0b\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(PUhnp62mV);const visible1=isSet(RM2Sqrl5w);const visible2=isSet(UEGXj0lDz);const visible3=isSet(aoTbv_POU);const visible4=isSet(dn0LQw9Ig);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"EM76u23Tj\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jl5hr9\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-xo43br\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sNkaKYfid:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jbk4t7\",\"data-framer-name\":\"Hero - Case Study\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ghtp23\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eek1yd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n5vtey\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19mf3hk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{y:(componentViewport?.y||0)+0+0+0+-252+100+0+228.5+0+0+0},sNkaKYfid:{y:(componentViewport?.y||0)+0+0+0+-66.25+110+0+0+0+20+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+-66.25+100+0+228.5+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kmmwle-container\",nodeId:\"Yrj3NpokK\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"Yrj3NpokK\",layoutId:\"Yrj3NpokK\",NNWJ0Hne9:enumToDisplayName(TA3EDeQ5wbcUIOegNe,activeLocale),variant:\"QdaMq0Dkc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a0nroh\",\"data-styles-preset\":\"s2c1M16C7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Content Writing For Video Grapher\"})}),className:\"framer-bz6x96\",fonts:[\"Inter\"],text:y27i2645k,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+-252+100+0),sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 20px) / 2, 1px)`,...toResponsiveImage(p0IqRGBPU)}},sNkaKYfid:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+-66.25+110+0+0+145),sizes:`min(${componentViewport?.width||\"100vw\"} - 24px, 1440px)`,...toResponsiveImage(p0IqRGBPU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+-66.25+100+0),sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 20px) / 2, 1px)`,...toResponsiveImage(p0IqRGBPU)},className:\"framer-1x8cbzy\"})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sNkaKYfid:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-blcyws\",\"data-framer-name\":\"Section - Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uix4or\",\"data-framer-name\":\"Overview Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-czlv7g\",\"data-styles-preset\":\"Kk8d6B9MK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(3, 16, 62))\"},children:\"Stellar Shots Videography is a boutique videography studio specializing in capturing memorable moments through cinematic storytelling. With a team of skilled videographers and editors, Stellar Shots has earned a reputation for delivering high-quality videos for weddings, events, and corporate projects. However, despite its exceptional work, the studio faced challenges in effectively showcasing its portfolio and attracting new clients through its website.\"})}),className:\"framer-vjvjjy\",fonts:[\"Inter\"],text:HHbGhu6Un,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sNkaKYfid:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sjr668\",\"data-framer-name\":\"Additional Image - Case Study\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4j5l2\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+823+10+0+0+-151.5764),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(PUhnp62mV)}},sNkaKYfid:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+731.75+10+0+0+-605),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(PUhnp62mV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+928.75+10+0+0+-605),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(PUhnp62mV)},className:\"framer-1a92pzi\",\"data-framer-name\":\"1\"})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+823+10+0+0+151.5764),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(RM2Sqrl5w)}},sNkaKYfid:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+731.75+10+0+0+605),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(RM2Sqrl5w)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+928.75+10+0+0+605),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(RM2Sqrl5w)},className:\"framer-1gfdjlu\",\"data-framer-name\":\"2\"})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+823+10+0+0+454.7292),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(UEGXj0lDz)}},sNkaKYfid:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+731.75+10+0+0+1815),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(UEGXj0lDz)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+928.75+10+0+0+1815),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(UEGXj0lDz)},className:\"framer-o25eko\",\"data-framer-name\":\"3\"})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+823+10+0+0+757.882),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(aoTbv_POU)}},sNkaKYfid:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+731.75+10+0+0+3025),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(aoTbv_POU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+928.75+10+0+0+3025),sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 20px, 1440px)`,...toResponsiveImage(aoTbv_POU)},className:\"framer-1otlrnw\",\"data-framer-name\":\"4\"})})]})})}),visible4&&/*#__PURE__*/_jsx(\"section\",{className:\"framer-21b5xr\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xvtbny\",\"data-framer-name\":\"Youtube-Player\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t4bn9i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ye70hAcn4\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"Ye70hAcn4\",isMixedBorderRadius:false,isRed:true,layoutId:\"Ye70hAcn4\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:30,topRightRadius:30,url:digy2gtYybcUIOegNe,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sNkaKYfid:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7onoeq\",\"data-framer-name\":\"Other Case Studies\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sNkaKYfid:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ii0ama\",\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5hnnq\",\"data-framer-name\":\"Heading Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`,y:(componentViewport?.y||0)+0+0+0+2246.4584+80+0+0+0+0+0},sNkaKYfid:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1440px)`,y:(componentViewport?.y||0)+0+0+0+4504.25+50+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.7, 1440px)`,y:(componentViewport?.y||0)+0+0+0+4701.25+100+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hapzk-container\",nodeId:\"nqqAPWiWP\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Meer projecten \",GqTmcaQLx:\"Other Projects\",height:\"100%\",id:\"nqqAPWiWP\",kAHPdHlCh:\"Bent u benieuwd naar meer van ons werk? Bekijk hieronder een selectie van eerdere projecten die een goed beeld geven van onze kwaliteit en vakmanschap.\",layoutId:\"nqqAPWiWP\",NlGfzfEF2:true,p1KubWiKz:true,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined},{href:{webPageId:\"Qa5DwD50l\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{y:(componentViewport?.y||0)+0+0+0+2246.4584+80+0+0+0+0+151},sNkaKYfid:{y:(componentViewport?.y||0)+0+0+0+4504.25+50+0+0+0+0+151}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+0+0+4701.25+100+0+0+0+151,children:/*#__PURE__*/_jsx(Container,{className:\"framer-108tmg1-container\",nodeId:\"r_6n5HH0W\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{DEX53qIxg:resolvedLinks[1]},sNkaKYfid:{DEX53qIxg:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{AIYkLNyqb:\"Alle projecten\",DEX53qIxg:resolvedLinks[0],height:\"100%\",id:\"r_6n5HH0W\",layoutId:\"r_6n5HH0W\",variant:\"VYn33lVMS\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hlgnlh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZaoQ_RWAe\",data:Projecten,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"ZaoQ_RWAe\",name:\"p0IqRGBPU\",type:\"Identifier\"},{collection:\"ZaoQ_RWAe\",name:\"y27i2645k\",type:\"Identifier\"},{collection:\"ZaoQ_RWAe\",name:\"UDzOilHVe\",type:\"Identifier\"},{collection:\"ZaoQ_RWAe\",name:\"GM6k8WU0b\",type:\"Identifier\"},{collection:\"ZaoQ_RWAe\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"ZaoQ_RWAe\",name:\"GM6k8WU0b\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:GM6k8WU0b},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({GM6k8WU0b:GM6k8WU0bZaoQ_RWAe,id:idZaoQ_RWAe,p0IqRGBPU:p0IqRGBPUZaoQ_RWAe,UDzOilHVe:UDzOilHVeZaoQ_RWAe,y27i2645k:y27i2645kZaoQ_RWAe},index)=>{y27i2645kZaoQ_RWAe??=\"\";UDzOilHVeZaoQ_RWAe??=\"\";GM6k8WU0bZaoQ_RWAe??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZaoQ_RWAe-${idZaoQ_RWAe}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GM6k8WU0b:GM6k8WU0bZaoQ_RWAe},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GM6k8WU0b:GM6k8WU0bZaoQ_RWAe},webPageId:\"wBPOZRUDl\"},implicitPathVariables:undefined},{href:{pathVariables:{GM6k8WU0b:GM6k8WU0bZaoQ_RWAe},webPageId:\"wBPOZRUDl\"},implicitPathVariables:undefined},{href:{pathVariables:{GM6k8WU0b:GM6k8WU0bZaoQ_RWAe},webPageId:\"wBPOZRUDl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`,y:(componentViewport?.y||0)+0+0+0+2246.4584+80+0+0+261+0+0},sNkaKYfid:{width:`min(${componentViewport?.width||\"100vw\"} - 24px, 1440px)`,y:(componentViewport?.y||0)+0+0+0+4504.25+50+0+0+241+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:533,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px), 1px)`,y:(componentViewport?.y||0)+0+0+0+4701.25+100+0+241+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10fh56x-container\",nodeId:\"mpd0bnJ7k\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{uB3Li49Uz:resolvedLinks1[1],variant:\"U9QyqU4vh\"},sNkaKYfid:{uB3Li49Uz:resolvedLinks1[2],variant:\"JfRnu8SSW\"}},children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"mpd0bnJ7k\",layoutId:\"mpd0bnJ7k\",M_pfzYt58:toResponsiveImage(p0IqRGBPUZaoQ_RWAe),oqirxxS_G:UDzOilHVeZaoQ_RWAe,RhNFJqKE_:true,style:{width:\"100%\"},uB3Li49Uz:resolvedLinks1[0],variant:\"tUOa221_M\",vjce4Tqa7:y27i2645kZaoQ_RWAe,width:\"100%\"})})})})})})})},idZaoQ_RWAe);})})})})})]})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{y:(componentViewport?.y||0)+0+2948.4584},sNkaKYfid:{y:(componentViewport?.y||0)+0+5312}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1471,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5609,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1536n70-container\",nodeId:\"G1dDmYuJc\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{variant:\"mKXCPqfUG\"},sNkaKYfid:{variant:\"BsZlXwif2\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"G1dDmYuJc\",layoutId:\"G1dDmYuJc\",style:{width:\"100%\"},variant:\"zQXPtCkn3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16kslrs-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"IccEgiHcH\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IccEgiHcH\",intensity:12,layoutId:\"IccEgiHcH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gfumfc-container\",layoutScroll:true,nodeId:\"P56XVXC2C\",scopeId:\"wBPOZRUDl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{APDIdFrfZ:{variant:\"qckzdw_18\"},sNkaKYfid:{variant:\"qckzdw_18\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:convertFromEnum(TA3EDeQ5wbcUIOegNe,activeLocale),height:\"100%\",id:\"P56XVXC2C\",layoutId:\"P56XVXC2C\",style:{width:\"100%\"},variant:\"lzTpoNZtf\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-euZ3u.framer-cw2dlv, .framer-euZ3u .framer-cw2dlv { display: block; }\",\".framer-euZ3u.framer-jl5hr9 { align-content: center; align-items: center; background-color: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-euZ3u .framer-xo43br { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-jbk4t7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-ghtp23 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-euZ3u .framer-1eek1yd { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, #03103e); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-euZ3u .framer-n5vtey { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-euZ3u .framer-19mf3hk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-euZ3u .framer-1kmmwle-container, .framer-euZ3u .framer-108tmg1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-euZ3u .framer-bz6x96 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-euZ3u .framer-1x8cbzy { aspect-ratio: 1 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 520px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-euZ3u .framer-blcyws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-uix4or { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1)); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 65px 40px 65px 40px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-vjvjjy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-euZ3u .framer-sjr668 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-t4j5l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-1a92pzi, .framer-euZ3u .framer-1gfdjlu, .framer-euZ3u .framer-o25eko { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 885px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-euZ3u .framer-1otlrnw { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-euZ3u .framer-21b5xr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-1xvtbny { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-euZ3u .framer-1t4bn9i-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-euZ3u .framer-7onoeq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-ii0ama { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-euZ3u .framer-r5hnnq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 100px; width: 70%; z-index: 1; }\",\".framer-euZ3u .framer-14hapzk-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-euZ3u .framer-1hlgnlh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-euZ3u .framer-10fh56x-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-euZ3u .framer-1536n70-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-euZ3u .framer-16kslrs-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\".framer-euZ3u .framer-gfumfc-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-euZ3u.framer-jl5hr9 { width: 810px; } .framer-euZ3u .framer-1x8cbzy { height: var(--framer-aspect-ratio-supported, 325px); } .framer-euZ3u .framer-blcyws { padding: 0px 40px 80px 40px; } .framer-euZ3u .framer-1a92pzi, .framer-euZ3u .framer-o25eko { height: var(--framer-aspect-ratio-supported, 593px); } .framer-euZ3u .framer-1gfdjlu { height: var(--framer-aspect-ratio-supported, 592px); } .framer-euZ3u .framer-21b5xr { height: 504px; } .framer-euZ3u .framer-7onoeq { flex-direction: column; padding: 80px 40px 80px 40px; } .framer-euZ3u .framer-ii0ama { flex: none; gap: 60px; width: 100%; } .framer-euZ3u .framer-r5hnnq { position: relative; top: unset; width: 100%; } .framer-euZ3u .framer-1hlgnlh { flex-direction: column; gap: 40px; } .framer-euZ3u .framer-10fh56x-container { flex: none; width: 100%; }}\",\"@media (max-width: 809px) { .framer-euZ3u.framer-jl5hr9 { width: 390px; } .framer-euZ3u .framer-jbk4t7 { flex-direction: column; gap: 40px; padding: 110px 12px 12px 12px; } .framer-euZ3u .framer-ghtp23 { flex: none; flex-direction: column; gap: 12px; width: 100%; } .framer-euZ3u .framer-1eek1yd { align-self: unset; flex: none; height: min-content; padding: 20px; width: 100%; } .framer-euZ3u .framer-1x8cbzy { flex: none; height: var(--framer-aspect-ratio-supported, 366px); width: 100%; } .framer-euZ3u .framer-blcyws { gap: 40px; padding: 0px 12px 50px 12px; } .framer-euZ3u .framer-uix4or { max-width: unset; padding: 30px 20px 30px 20px; } .framer-euZ3u .framer-1a92pzi, .framer-euZ3u .framer-o25eko { height: var(--framer-aspect-ratio-supported, 277px); } .framer-euZ3u .framer-1gfdjlu { height: var(--framer-aspect-ratio-supported, 278px); } .framer-euZ3u .framer-1xvtbny { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; will-change: unset; } .framer-euZ3u .framer-7onoeq { flex-direction: column; padding: 50px 12px 50px 12px; } .framer-euZ3u .framer-ii0ama, .framer-euZ3u .framer-10fh56x-container { flex: none; width: 100%; } .framer-euZ3u .framer-r5hnnq { position: relative; top: unset; width: 100%; } .framer-euZ3u .framer-1hlgnlh { flex-direction: column; gap: 40px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6874\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"APDIdFrfZ\":{\"layout\":[\"fixed\",\"auto\"]},\"sNkaKYfid\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerwBPOZRUDl=withCSS(Component,css,\"framer-euZ3u\");export default FramerwBPOZRUDl;FramerwBPOZRUDl.displayName=\"Page\";FramerwBPOZRUDl.defaultProps={height:6874,width:1200};addFonts(FramerwBPOZRUDl,[{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\"}]},...TagFonts,...YouTubeFonts,...HeadingFonts,...ButtonFonts,...ProjectFonts,...FooterFonts,...SmoothScrollFonts,...NavigationBarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwBPOZRUDl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6874\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"APDIdFrfZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sNkaKYfid\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "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", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "TagFonts", "getFonts", "VLQCZcVpG_default", "MotionSectionWithFX", "withFX", "motion", "MotionDivWithFX", "YouTubeFonts", "Youtube", "HeadingFonts", "QJ12gIOBS_default", "ButtonFonts", "cBQAwTefC_default", "ProjectFonts", "B4CrjLIFA_default", "FooterFonts", "oGO_MGaZp_default", "SmoothScrollFonts", "SmoothScroll", "NavigationBarFonts", "Kg3jp8xZU_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "enumToDisplayName", "value", "toResponsiveImage", "isSet", "animation2", "transition2", "animation3", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromEnum", "activeLocale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "c4gQFLt_3_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "TA3EDeQ5wbcUIOegNe", "y27i2645k", "p0IqRGBPU", "HHbGhu6Un", "PUhnp62mV", "RM2Sqrl5w", "UEGXj0lDz", "aoTbv_POU", "dn0LQw9Ig", "digy2gtYybcUIOegNe", "p0IqRGBPUZaoQ_RWAe", "y27i2645kZaoQ_RWAe", "UDzOilHVeZaoQ_RWAe", "GM6k8WU0bZaoQ_RWAe", "idZaoQ_RWAe", "GM6k8WU0b", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "MotionSectionWithFX", "ComponentViewportProvider", "Container", "VLQCZcVpG_default", "RichText", "x", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithFX", "Youtube", "QJ12gIOBS_default", "ResolveLinks", "resolvedLinks", "cBQAwTefC_default", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "B4CrjLIFA_default", "oGO_MGaZp_default", "SmoothScroll", "Kg3jp8xZU_default", "css", "FramerwBPOZRUDl", "withCSS", "wBPOZRUDl_default", "addFonts", "TagFonts", "YouTubeFonts", "HeadingFonts", "ButtonFonts", "ProjectFonts", "FooterFonts", "SmoothScrollFonts", "NavigationBarFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
