{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/wgaMuHeDQE85ycKQKb0H/cly5CsayadYiXYA9r5KX/aCTj2cCa4.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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 isPlayingRef=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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\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??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];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\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,PathVariablesContext,PropertyOverrides,ResolveLinks,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withInfiniteScroll}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Spinner from\"https://framerusercontent.com/modules/omo5LdjL4LRSZXvwvWOk/u3WxIJnBoahCGbEeALvk/O_XoZ3FcZ.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import NavigationFooter from\"#framer/local/canvasComponent/efno_ZMY1/efno_ZMY1.js\";import ComponentFixedContactLinks from\"#framer/local/canvasComponent/goZ0bWzC1/goZ0bWzC1.js\";import ComponentHeading2Content from\"#framer/local/canvasComponent/J_QK6YOxT/J_QK6YOxT.js\";import SectionSectionHeroInnerPage from\"#framer/local/canvasComponent/K1nuq04oF/K1nuq04oF.js\";import NavigationNavigationBar from\"#framer/local/canvasComponent/LDekglqvl/LDekglqvl.js\";import CardFolderImages from\"#framer/local/canvasComponent/OOFQrVj8z/OOFQrVj8z.js\";import Albums from\"#framer/local/collection/Qiwj4Sxj4/Qiwj4Sxj4.js\";import metadataProvider from\"#framer/local/webPageMetadata/aCTj2cCa4/aCTj2cCa4.js\";const NavigationNavigationBarFonts=getFonts(NavigationNavigationBar);const SectionSectionHeroInnerPageFonts=getFonts(SectionSectionHeroInnerPage);const CardFolderImagesFonts=getFonts(CardFolderImages);const SpinnerFonts=getFonts(Spinner);const ContainerWithInfiniteScroll=withInfiniteScroll(Container);const ComponentHeading2ContentFonts=getFonts(ComponentHeading2Content);const VideoFonts=getFonts(Video);const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFooterFonts=getFonts(NavigationFooter);const ComponentFixedContactLinksFonts=getFonts(ComponentFixedContactLinks);const breakpoints={fQTzxciKk:\"(min-width: 810px) and (max-width: 1199px)\",m7fq4lcHp:\"(max-width: 809px)\",udXaoRzYw:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IjXth\";const variantClassNames={fQTzxciKk:\"framer-v-w9q328\",m7fq4lcHp:\"framer-v-nirvtk\",udXaoRzYw:\"framer-v-1snak79\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"iEqvpAMTw\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"udXaoRzYw\",Phone:\"m7fq4lcHp\",Tablet:\"fQTzxciKk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"udXaoRzYw\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vKXD8iKpJiEqvpAMTw,Uc0EKW689iEqvpAMTw,fWJ74q7xriEqvpAMTw,F5JM_atFViEqvpAMTw,abCVizEmiiEqvpAMTw,idiEqvpAMTw,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,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);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const dynamicRef=useDynamicRefs();const elementId=useRouteElementId(\"Uahj4TdFd\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"udXaoRzYw\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 254, 242)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1snak79\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gglg41-container\",layoutScroll:true,nodeId:\"D4e0Uu7Kc\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{variant:\"uI65Kuiar\"},m7fq4lcHp:{variant:\"uI65Kuiar\"}},children:/*#__PURE__*/_jsx(NavigationNavigationBar,{gGSU0bs4G:\"OJ3ybOaAn\",height:\"100%\",id:\"D4e0Uu7Kc\",layoutId:\"D4e0Uu7Kc\",style:{width:\"100%\"},variant:\"Y6Muk5gpv\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1dv33al\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:258,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+86+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hccba-container\",nodeId:\"YVgGtiToR\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m7fq4lcHp:{variant:\"GJCXD7Ixk\"}},children:/*#__PURE__*/_jsx(SectionSectionHeroInnerPage,{cLXCMO386:\"Project Gallery\",height:\"100%\",id:\"YVgGtiToR\",JFliBN9l0:\"A visual collection of our finest work\",layoutId:\"YVgGtiToR\",style:{width:\"100%\"},uL6tar2oS:\"Browse through our gallery of completed projects, showcasing the hard work, attention to detail, and expertise we bring to every task. Let these images speak to the quality of our services!\\n\",variant:\"QnWyiLavM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-zjl54y\",\"data-framer-name\":\"Section - Albums\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9q41a0\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wlokt0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m7fq4lcHp:{pageSize:4,query:{from:{alias:\"iEqvpAMTw\",data:Albums,type:\"Collection\"},select:[{collection:\"iEqvpAMTw\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"Uc0EKW689\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"fWJ74q7xr\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{pageSize:6,query:{from:{alias:\"iEqvpAMTw\",data:Albums,type:\"Collection\"},select:[{collection:\"iEqvpAMTw\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"Uc0EKW689\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"fWJ74q7xr\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"iEqvpAMTw\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({abCVizEmi:abCVizEmiiEqvpAMTw,F5JM_atFV:F5JM_atFViEqvpAMTw,fWJ74q7xr:fWJ74q7xriEqvpAMTw,id:idiEqvpAMTw,Uc0EKW689:Uc0EKW689iEqvpAMTw,vKXD8iKpJ:vKXD8iKpJiEqvpAMTw},index)=>{F5JM_atFViEqvpAMTw??=\"\";abCVizEmiiEqvpAMTw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`iEqvpAMTw-${idiEqvpAMTw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiiEqvpAMTw},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiiEqvpAMTw},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiiEqvpAMTw},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined},{href:{pathVariables:{abCVizEmi:abCVizEmiiEqvpAMTw},webPageId:\"Jl2zKoCF7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{width:`max((max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px), 310px) - 15px) / 2, 240px)`},m7fq4lcHp:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 24px, 1680px), 1px), 310px)`,y:(componentViewport?.y||0)+0+0+86+258+20+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:`max((max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1680px), 1px), 310px) - 40px) / 3, 240px)`,y:(componentViewport?.y||0)+0+0+86+258+30+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18gpq3-container\",nodeId:\"CngIQSVC1\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{s6D2F3fjD:resolvedLinks[1]},m7fq4lcHp:{s6D2F3fjD:resolvedLinks[2],variant:\"wX46O1Dvg\"}},children:/*#__PURE__*/_jsx(CardFolderImages,{bx1dFCUHa:F5JM_atFViEqvpAMTw,gIuaE_Vt3:toResponsiveImage(Uc0EKW689iEqvpAMTw),height:\"100%\",id:\"CngIQSVC1\",layoutId:\"CngIQSVC1\",s6D2F3fjD:resolvedLinks[0],style:{width:\"100%\"},TkmJ66GVM:toResponsiveImage(vKXD8iKpJiEqvpAMTw),v3Sudt9uA:toResponsiveImage(fWJ74q7xriEqvpAMTw),variant:\"mO_evo3C9\",width:\"100%\"})})})})})})})},idiEqvpAMTw);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{y:(componentViewport?.y||0)+0+0+86+258+30+0+0+339-20},m7fq4lcHp:{y:(componentViewport?.y||0)+0+0+86+258+20+0+0+324-20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+86+258+30+0+0+344-20,children:/*#__PURE__*/_jsx(ContainerWithInfiniteScroll,{__loadMore:loadMore,__paginationInfo:paginationInfo,className:\"framer-8sctia-container\",isModuleExternal:true,nodeId:\"Ezh4m6aUt\",ref:dynamicRef(`${abCVizEmiiEqvpAMTw}-8sctia`),scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(Spinner,{height:\"100%\",id:\"Ezh4m6aUt\",layoutId:\"Ezh4m6aUt\",variant:loaderVariants(paginationInfo,{disabled:\"PX1MOnVXY\",loading:\"G47S15YSn\"},\"G47S15YSn\"),width:\"100%\"})})})})]})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1f986xx\",\"data-framer-name\":\"Section - Videos\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-216qlq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1682px), 700px)`,y:(componentViewport?.y||0)+0+0+86+677+50+0+0+0},m7fq4lcHp:{width:`min(min(${componentViewport?.width||\"100vw\"} - 24px, 1682px), 700px)`,y:(componentViewport?.y||0)+0+0+86+642+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`min(min(${componentViewport?.width||\"100vw\"} - 100px, 1682px), 700px)`,y:(componentViewport?.y||0)+0+0+86+682+50+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vtugbk-container\",id:elementId,nodeId:\"Uahj4TdFd\",ref:ref1,scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m7fq4lcHp:{XqJHYsVYi:\"Watch our team transform outdoor spaces with expertly crafted fences and decks. From custom builds to flawless installs \u2014 see the quality for yourself.\"}},children:/*#__PURE__*/_jsx(ComponentHeading2Content,{GdposRDDi:\"Video Gallery\",height:\"100%\",id:\"Uahj4TdFd\",layoutId:\"Uahj4TdFd\",nENkL4KdQ:\"See us in action!\",qqO2D9H65:\"\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"alEK1aIFB\",width:\"100%\",XqJHYsVYi:\"Watch our team in action as we build durable fences and secure commercial spaces with expert craftsmanship, precision, and attention to every detail.\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbso6q\",\"data-framer-name\":\"Videos\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q39f4s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1arb33j-container\",isModuleExternal:true,nodeId:\"kNsfbRO5l\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:true,height:\"100%\",id:\"kNsfbRO5l\",isMixedBorderRadius:false,layoutId:\"kNsfbRO5l\",loop:true,muted:true,objectFit:\"fill\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://storage.googleapis.com/msgsndr/bSyPDHXniVO9teqQ9WaV/media/67d8aff7b2c30717f478872e.mov\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwcbge\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nyfhcn-container\",isModuleExternal:true,nodeId:\"WhorEKWsk\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:true,height:\"100%\",id:\"WhorEKWsk\",isMixedBorderRadius:false,layoutId:\"WhorEKWsk\",loop:true,muted:true,objectFit:\"fill\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://storage.googleapis.com/msgsndr/bSyPDHXniVO9teqQ9WaV/media/67d8afb02782380acab8d725.mov\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4rmbri\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qc81jr-container\",isModuleExternal:true,nodeId:\"Sy8Vbrd1B\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:true,height:\"100%\",id:\"Sy8Vbrd1B\",isMixedBorderRadius:false,layoutId:\"Sy8Vbrd1B\",loop:true,muted:true,objectFit:\"fill\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://storage.googleapis.com/msgsndr/bSyPDHXniVO9teqQ9WaV/media/67d8afd9652cf18a8b83ecb1.mov\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jd80xt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0lo5e-container\",isModuleExternal:true,nodeId:\"xJ3mrgTaz\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:true,height:\"100%\",id:\"xJ3mrgTaz\",isMixedBorderRadius:false,layoutId:\"xJ3mrgTaz\",loop:true,muted:true,objectFit:\"fill\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://storage.googleapis.com/msgsndr/bSyPDHXniVO9teqQ9WaV/media/67d8afa9906521343826918d.mov\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1voaxjw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"Jr6FiYfGC\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Jr6FiYfGC\",intensity:15,layoutId:\"Jr6FiYfGC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{y:(componentViewport?.y||0)+0+3393},m7fq4lcHp:{y:(componentViewport?.y||0)+0+3358}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2066,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2268,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6wmal7-container\",nodeId:\"AaXGNDz1O\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fQTzxciKk:{variant:\"ar3MZbQ90\"},m7fq4lcHp:{variant:\"ZYN9i6l8m\"}},children:/*#__PURE__*/_jsx(NavigationFooter,{height:\"100%\",id:\"AaXGNDz1O\",layoutId:\"AaXGNDz1O\",style:{width:\"100%\"},uYUuuRgw2:5,variant:\"UF4FrNLVh\",width:\"100%\",ZmCj4BX0I:\"auto\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:875,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6avnxl-container\",layoutScroll:true,nodeId:\"GNkkT3FXg\",scopeId:\"aCTj2cCa4\",children:/*#__PURE__*/_jsx(ComponentFixedContactLinks,{height:\"100%\",id:\"GNkkT3FXg\",layoutId:\"GNkkT3FXg\",variant:\"MSQPsSAow\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IjXth.framer-4vd74i, .framer-IjXth .framer-4vd74i { display: block; }\",\".framer-IjXth.framer-1snak79 { align-content: center; align-items: center; background-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #fffef2); 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-IjXth .framer-1gglg41-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-IjXth .framer-1dv33al { 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: visible; padding: 86px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-IjXth .framer-1hccba-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-IjXth .framer-zjl54y { align-content: center; align-items: center; background-color: var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, #fffef2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-IjXth .framer-9q41a0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-IjXth .framer-1wlokt0 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(240px, 1fr)); height: min-content; justify-content: center; min-width: 310px; padding: 0px; position: relative; width: 1px; }\",\".framer-IjXth .framer-18gpq3-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-IjXth .framer-8sctia-container { bottom: -20px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-IjXth .framer-1f986xx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-IjXth .framer-216qlq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1682px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IjXth .framer-1vtugbk-container { flex: none; height: auto; max-width: 700px; position: relative; width: 100%; z-index: 1; }\",\".framer-IjXth .framer-1dbso6q { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IjXth .framer-q39f4s, .framer-IjXth .framer-4rmbri { align-content: center; align-items: center; align-self: center; background-color: #966e6e; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 555px; justify-content: center; justify-self: end; overflow: hidden; padding: 0px; position: relative; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IjXth .framer-1arb33j-container, .framer-IjXth .framer-1nyfhcn-container, .framer-IjXth .framer-1qc81jr-container, .framer-IjXth .framer-i0lo5e-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-IjXth .framer-1uwcbge, .framer-IjXth .framer-1jd80xt { align-content: center; align-items: center; align-self: center; background-color: #966e6e; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 555px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 380px; will-change: var(--framer-will-change-override, transform); }\",\".framer-IjXth .framer-1voaxjw-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\".framer-IjXth .framer-6wmal7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-IjXth .framer-6avnxl-container { bottom: 69px; flex: none; height: auto; position: fixed; right: 19px; width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IjXth.framer-1snak79, .framer-IjXth .framer-1dv33al, .framer-IjXth .framer-zjl54y, .framer-IjXth .framer-9q41a0, .framer-IjXth .framer-1f986xx, .framer-IjXth .framer-216qlq, .framer-IjXth .framer-q39f4s, .framer-IjXth .framer-1uwcbge, .framer-IjXth .framer-4rmbri, .framer-IjXth .framer-1jd80xt { gap: 0px; } .framer-IjXth.framer-1snak79 > *, .framer-IjXth .framer-1dv33al > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IjXth.framer-1snak79 > :first-child, .framer-IjXth .framer-1dv33al > :first-child, .framer-IjXth .framer-zjl54y > :first-child, .framer-IjXth .framer-1f986xx > :first-child, .framer-IjXth .framer-216qlq > :first-child, .framer-IjXth .framer-q39f4s > :first-child, .framer-IjXth .framer-1uwcbge > :first-child, .framer-IjXth .framer-4rmbri > :first-child, .framer-IjXth .framer-1jd80xt > :first-child { margin-top: 0px; } .framer-IjXth.framer-1snak79 > :last-child, .framer-IjXth .framer-1dv33al > :last-child, .framer-IjXth .framer-zjl54y > :last-child, .framer-IjXth .framer-1f986xx > :last-child, .framer-IjXth .framer-216qlq > :last-child, .framer-IjXth .framer-q39f4s > :last-child, .framer-IjXth .framer-1uwcbge > :last-child, .framer-IjXth .framer-4rmbri > :last-child, .framer-IjXth .framer-1jd80xt > :last-child { margin-bottom: 0px; } .framer-IjXth .framer-zjl54y > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-IjXth .framer-9q41a0 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-IjXth .framer-9q41a0 > :first-child { margin-left: 0px; } .framer-IjXth .framer-9q41a0 > :last-child { margin-right: 0px; } .framer-IjXth .framer-1f986xx > *, .framer-IjXth .framer-216qlq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IjXth .framer-q39f4s > *, .framer-IjXth .framer-1uwcbge > *, .framer-IjXth .framer-4rmbri > *, .framer-IjXth .framer-1jd80xt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-IjXth.framer-1snak79 { width: 810px; } .framer-IjXth .framer-1wlokt0 { gap: 15px; grid-template-columns: repeat(2, minmax(240px, 1fr)); } .framer-IjXth .framer-1f986xx { padding: 50px 40px 50px 40px; } .framer-IjXth .framer-1dbso6q { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-IjXth .framer-q39f4s, .framer-IjXth .framer-1uwcbge, .framer-IjXth .framer-4rmbri, .framer-IjXth .framer-1jd80xt { justify-self: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IjXth .framer-1wlokt0 { gap: 0px; } .framer-IjXth .framer-1wlokt0 > *, .framer-IjXth .framer-1wlokt0 > :first-child, .framer-IjXth .framer-1wlokt0 > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-IjXth.framer-1snak79 { width: 390px; } .framer-IjXth .framer-zjl54y { padding: 20px 12px 20px 12px; } .framer-IjXth .framer-1wlokt0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: wrap; gap: 21px; justify-content: flex-start; } .framer-IjXth .framer-18gpq3-container { align-self: unset; } .framer-IjXth .framer-1f986xx { padding: 50px 12px 50px 12px; } .framer-IjXth .framer-1dbso6q { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-IjXth .framer-q39f4s, .framer-IjXth .framer-1uwcbge { align-self: start; justify-self: center; width: 338px; } .framer-IjXth .framer-4rmbri, .framer-IjXth .framer-1jd80xt { justify-self: center; width: 338px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IjXth .framer-1wlokt0 { gap: 0px; } .framer-IjXth .framer-1wlokt0 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-IjXth .framer-1wlokt0 > :first-child { margin-top: 0px; } .framer-IjXth .framer-1wlokt0 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4509.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fQTzxciKk\":{\"layout\":[\"fixed\",\"auto\"]},\"m7fq4lcHp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Uahj4TdFd\":{\"pattern\":\":Uahj4TdFd\",\"name\":\"bg-black-trigger\"}}\n * @framerResponsiveScreen\n */const FrameraCTj2cCa4=withCSS(Component,css,\"framer-IjXth\");export default FrameraCTj2cCa4;FrameraCTj2cCa4.displayName=\"Albums\";FrameraCTj2cCa4.defaultProps={height:4509.5,width:1200};addFonts(FrameraCTj2cCa4,[{explicitInter:true,fonts:[]},...NavigationNavigationBarFonts,...SectionSectionHeroInnerPageFonts,...CardFolderImagesFonts,...SpinnerFonts,...ComponentHeading2ContentFonts,...VideoFonts,...SmoothScrollFonts,...NavigationFooterFonts,...ComponentFixedContactLinksFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraCTj2cCa4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"Uahj4TdFd\\\":{\\\"pattern\\\":\\\":Uahj4TdFd\\\",\\\"name\\\":\\\"bg-black-trigger\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fQTzxciKk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m7fq4lcHp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4509.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavigationNavigationBarFonts", "getFonts", "LDekglqvl_default", "SectionSectionHeroInnerPageFonts", "K1nuq04oF_default", "CardFolderImagesFonts", "OOFQrVj8z_default", "SpinnerFonts", "O_XoZ3FcZ_default", "ContainerWithInfiniteScroll", "withInfiniteScroll", "Container", "ComponentHeading2ContentFonts", "J_QK6YOxT_default", "VideoFonts", "Video", "SmoothScrollFonts", "SmoothScroll", "NavigationFooterFonts", "efno_ZMY1_default", "ComponentFixedContactLinksFonts", "goZ0bWzC1_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "vKXD8iKpJiEqvpAMTw", "Uc0EKW689iEqvpAMTw", "fWJ74q7xriEqvpAMTw", "F5JM_atFViEqvpAMTw", "abCVizEmiiEqvpAMTw", "idiEqvpAMTw", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "dynamicRef", "useDynamicRefs", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "LDekglqvl_default", "K1nuq04oF_default", "ChildrenCanSuspend", "Qiwj4Sxj4_default", "collection", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "OOFQrVj8z_default", "ContainerWithInfiniteScroll", "O_XoZ3FcZ_default", "J_QK6YOxT_default", "Video", "SmoothScroll", "efno_ZMY1_default", "goZ0bWzC1_default", "css", "FrameraCTj2cCa4", "withCSS", "aCTj2cCa4_default", "addFonts", "NavigationNavigationBarFonts", "SectionSectionHeroInnerPageFonts", "CardFolderImagesFonts", "SpinnerFonts", "ComponentHeading2ContentFonts", "VideoFonts", "SmoothScrollFonts", "NavigationFooterFonts", "ComponentFixedContactLinksFonts", "__FramerMetadata__"]
}
