{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/w6SszGonW5OUqVbwQygY/moCXix17vAsnaxs7AyWs/V_IzExq2E.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * Responsive Image\n * By Benjamin\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n *\n */export default function Image(props){const{image,alt,radius,padding,link,newTab,style,borderOptions,shadowOptions}=props;const wrapperStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",width:\"100%\",height:\"100%\",padding:padding};const borderAndShadow=(borderOptions,shadowOptions)=>{if(!shadowOptions&&!borderOptions)return undefined;if(shadowOptions&&!borderOptions){return`${shadowOptions.shadowX}px ${shadowOptions.shadowY}px ${shadowOptions.shadowBlur}px ${shadowOptions.shadowColor}`;}if(!shadowOptions&&borderOptions){return`inset 0 0 0 ${borderOptions.borderWidth}px ${borderOptions.borderColor}`;}if(shadowOptions&&borderOptions){return`inset 0 0 0 ${borderOptions.borderWidth}px ${borderOptions.borderColor}, ${shadowOptions.shadowX}px ${shadowOptions.shadowY}px ${shadowOptions.shadowBlur}px ${shadowOptions.shadowColor}`;}};const imageStyle={maxWidth:\"100%\",maxHeight:\"100%\",borderRadius:radius,webkitUserDrag:\"none\",userDrag:\"none\",userSelect:\"none\"};const shadowStyle={position:\"absolute\",inset:0,pointerEvents:\"none\",borderRadius:radius,boxShadow:borderAndShadow(borderOptions,shadowOptions)};const imageSource=(image===null||image===void 0?void 0:image.src)||\"https://framerusercontent.com/images/64n4wnVJKDJspLlFZ6DarCP0M4.jpg\";return link?/*#__PURE__*/_jsxs(\"a\",{href:link,title:alt,target:newTab?\"_blank\":\"_self\",style:wrapperStyle,children:[/*#__PURE__*/_jsx(\"img\",{style:imageStyle,src:imageSource,srcSet:image===null||image===void 0?void 0:image.srcSet,alt:alt}),/*#__PURE__*/_jsx(\"div\",{style:shadowStyle})]}):/*#__PURE__*/_jsxs(\"div\",{style:wrapperStyle,children:[/*#__PURE__*/_jsx(\"img\",{style:imageStyle,src:imageSource,srcSet:image===null||image===void 0?void 0:image.srcSet,alt:alt}),/*#__PURE__*/_jsx(\"div\",{style:shadowStyle})]});}addPropertyControls(Image,{image:{title:\"Image\",type:ControlType.ResponsiveImage},alt:{type:ControlType.String,title:\"Alt\",placeholder:\"Alt Text\"},radius:{title:\"Radius\",type:ControlType.Number,min:0,max:100,step:1,displayStepper:true},padding:{title:\"Padding\",type:ControlType.Number,min:0,max:100,step:1,displayStepper:true},link:{type:ControlType.Link,title:\"Link\"},newTab:{type:ControlType.Boolean,title:\"New Tab\",hidden:props=>!props.link},borderOptions:{type:ControlType.Object,optional:true,title:\"Border\",icon:\"effect\",controls:{borderColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"rgba(0,0,0,0.2)\"},borderWidth:{type:ControlType.Number,title:\"Width\",min:0,displayStepper:true,defaultValue:1}}},shadowOptions:{type:ControlType.Object,title:\"Shadow\",optional:true,icon:\"effect\",controls:{shadowX:{type:ControlType.Number,title:\"X\",min:0,defaultValue:0},shadowY:{type:ControlType.Number,title:\"Y\",min:0,defaultValue:2},shadowBlur:{type:ControlType.Number,title:\"Blur\",min:0,defaultValue:4},shadowColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"rgba(0,0,0,0.2)\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Image\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Image.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.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,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Image1 from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{EnableRotation}from\"https://framerusercontent.com/modules/oZ9rvXMXmkDCj3c8mPIJ/kOi0zNYyp7waZBTSfAO4/LogoRotate.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Button2 from\"#framer/local/canvasComponent/CFsFv2jqC/CFsFv2jqC.js\";import Project from\"#framer/local/canvasComponent/cKTb96ynm/cKTb96ynm.js\";import PageHeadingNav from\"#framer/local/canvasComponent/GWwuDqzky/GWwuDqzky.js\";import Footer from\"#framer/local/canvasComponent/ZJhCIRymm/ZJhCIRymm.js\";import Albums from\"#framer/local/collection/Qiwj4Sxj4/Qiwj4Sxj4.js\";import metadataProvider from\"#framer/local/webPageMetadata/V_IzExq2E/V_IzExq2E.js\";const PageHeadingNavFonts=getFonts(PageHeadingNav);const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Image1Fonts=getFonts(Image1);const ContainerWithFX=withFX(Container);const ProjectFonts=getFonts(Project);const TickerFonts=getFonts(Ticker);const Button2Fonts=getFonts(Button2);const MotionSectionWithFX=withFX(motion.section);const MotionAEnableRotationo5vrjx=withCodeBoundaryForOverrides(motion.a,{nodeId:\"u8w6ys19X\",override:EnableRotation,scopeId:\"V_IzExq2E\"});const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={KTrif2JN6:\"(max-width: 809px)\",s9ewSr55D:\"(min-width: 810px) and (max-width: 1199px)\",ymg46CVxk:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IeZO7\";const variantClassNames={KTrif2JN6:\"framer-v-142rit8\",s9ewSr55D:\"framer-v-5jqge\",ymg46CVxk:\"framer-v-qzh55x\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:37,delay:0,mass:1,stiffness:59,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const transition2={damping:100,delay:0,mass:1,stiffness:362,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:170};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ymg46CVxk\",Phone:\"KTrif2JN6\",Tablet:\"s9ewSr55D\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ymg46CVxk\"};};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:\"V_IzExq2E\",data:Albums,type:\"Collection\"},select:[{collection:\"V_IzExq2E\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"PgZemHVUn\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"vKXD8iKpJ\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"Uc0EKW689\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"fWJ74q7xr\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"o54wwUXoX\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"aTI9KHriu\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"b_X5KNYN7\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"oHTkeZJ15\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"Ak_tmyHDL\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"ILkpQcNvi\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"gBkoe0Lt_\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"i8axNsxJW\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"OzGGYAMO7\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"DTdUoV3vO\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"NOK98R40_\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"x3QduU9gk\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"OnX0sZkMW\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"PP4i7ZJUK\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"SQP2GMQE0\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"i2shV2MAl\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"BAh5FEar5\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"vWDqyGrGO\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"PWvdzUrSK\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"oHL_DtpG4\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"Yo7F0zmFA\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"qNep4MmIJ\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"mUUUXGvmZ\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"KCkQISNME\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"jNzGgxYh6\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"KvjmYBoW5\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"HwWB59P3e\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"PNe1gb8v6\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"pDa3jhqx3\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"IO5mVrHU8\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"FzvQNxBUi\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"OiDawfl5x\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"JLxxyL2UT\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"jhOLsO_6L\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"QCHKkH_mR\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"GYPeGzzDu\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"vdyMYjvZP\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"sVNjqrXsm\",type:\"Identifier\"},{collection:\"V_IzExq2E\",name:\"EntWUGhsO\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"V_IzExq2E\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,PgZemHVUn=getFromCurrentRouteData(\"PgZemHVUn\"),F5JM_atFV=getFromCurrentRouteData(\"F5JM_atFV\")??\"\",vKXD8iKpJ=getFromCurrentRouteData(\"vKXD8iKpJ\"),fWJ74q7xr=getFromCurrentRouteData(\"fWJ74q7xr\"),aTI9KHriu=getFromCurrentRouteData(\"aTI9KHriu\"),oHTkeZJ15=getFromCurrentRouteData(\"oHTkeZJ15\"),ILkpQcNvi=getFromCurrentRouteData(\"ILkpQcNvi\"),i8axNsxJW=getFromCurrentRouteData(\"i8axNsxJW\"),DTdUoV3vO=getFromCurrentRouteData(\"DTdUoV3vO\"),x3QduU9gk=getFromCurrentRouteData(\"x3QduU9gk\"),PP4i7ZJUK=getFromCurrentRouteData(\"PP4i7ZJUK\"),i2shV2MAl=getFromCurrentRouteData(\"i2shV2MAl\"),vWDqyGrGO=getFromCurrentRouteData(\"vWDqyGrGO\"),oHL_DtpG4=getFromCurrentRouteData(\"oHL_DtpG4\"),qNep4MmIJ=getFromCurrentRouteData(\"qNep4MmIJ\"),KCkQISNME=getFromCurrentRouteData(\"KCkQISNME\"),KvjmYBoW5=getFromCurrentRouteData(\"KvjmYBoW5\"),PNe1gb8v6=getFromCurrentRouteData(\"PNe1gb8v6\"),IO5mVrHU8=getFromCurrentRouteData(\"IO5mVrHU8\"),OiDawfl5x=getFromCurrentRouteData(\"OiDawfl5x\"),jhOLsO_6L=getFromCurrentRouteData(\"jhOLsO_6L\"),GYPeGzzDu=getFromCurrentRouteData(\"GYPeGzzDu\"),sVNjqrXsm=getFromCurrentRouteData(\"sVNjqrXsm\"),Uc0EKW689=getFromCurrentRouteData(\"Uc0EKW689\"),o54wwUXoX=getFromCurrentRouteData(\"o54wwUXoX\"),b_X5KNYN7=getFromCurrentRouteData(\"b_X5KNYN7\"),Ak_tmyHDL=getFromCurrentRouteData(\"Ak_tmyHDL\"),gBkoe0Lt_=getFromCurrentRouteData(\"gBkoe0Lt_\"),OzGGYAMO7=getFromCurrentRouteData(\"OzGGYAMO7\"),NOK98R40_=getFromCurrentRouteData(\"NOK98R40_\"),OnX0sZkMW=getFromCurrentRouteData(\"OnX0sZkMW\"),SQP2GMQE0=getFromCurrentRouteData(\"SQP2GMQE0\"),BAh5FEar5=getFromCurrentRouteData(\"BAh5FEar5\"),PWvdzUrSK=getFromCurrentRouteData(\"PWvdzUrSK\"),Yo7F0zmFA=getFromCurrentRouteData(\"Yo7F0zmFA\"),mUUUXGvmZ=getFromCurrentRouteData(\"mUUUXGvmZ\"),jNzGgxYh6=getFromCurrentRouteData(\"jNzGgxYh6\"),HwWB59P3e=getFromCurrentRouteData(\"HwWB59P3e\"),pDa3jhqx3=getFromCurrentRouteData(\"pDa3jhqx3\"),FzvQNxBUi=getFromCurrentRouteData(\"FzvQNxBUi\"),JLxxyL2UT=getFromCurrentRouteData(\"JLxxyL2UT\"),QCHKkH_mR=getFromCurrentRouteData(\"QCHKkH_mR\"),vdyMYjvZP=getFromCurrentRouteData(\"vdyMYjvZP\"),EntWUGhsO=getFromCurrentRouteData(\"EntWUGhsO\"),F5JM_atFVY5K6RILuI,PgZemHVUnY5K6RILuI,abCVizEmiY5K6RILuI,idY5K6RILuI,...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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(vKXD8iKpJ);const visible1=isSet(fWJ74q7xr);const visible2=isSet(aTI9KHriu);const visible3=isSet(oHTkeZJ15);const visible4=isSet(ILkpQcNvi);const visible5=isSet(i8axNsxJW);const visible6=isSet(DTdUoV3vO);const visible7=isSet(x3QduU9gk);const visible8=isSet(PP4i7ZJUK);const visible9=isSet(i2shV2MAl);const visible10=isSet(vWDqyGrGO);const visible11=isSet(oHL_DtpG4);const visible12=isSet(qNep4MmIJ);const visible13=isSet(KCkQISNME);const visible14=isSet(KvjmYBoW5);const visible15=isSet(PNe1gb8v6);const visible16=isSet(IO5mVrHU8);const visible17=isSet(OiDawfl5x);const visible18=isSet(jhOLsO_6L);const visible19=isSet(GYPeGzzDu);const visible20=isSet(sVNjqrXsm);const visible21=isSet(Uc0EKW689);const visible22=isSet(o54wwUXoX);const visible23=isSet(b_X5KNYN7);const visible24=isSet(Ak_tmyHDL);const visible25=isSet(gBkoe0Lt_);const visible26=isSet(OzGGYAMO7);const visible27=isSet(NOK98R40_);const visible28=isSet(OnX0sZkMW);const visible29=isSet(SQP2GMQE0);const visible30=isSet(BAh5FEar5);const visible31=isSet(PWvdzUrSK);const visible32=isSet(Yo7F0zmFA);const visible33=isSet(mUUUXGvmZ);const visible34=isSet(jNzGgxYh6);const visible35=isSet(HwWB59P3e);const visible36=isSet(pDa3jhqx3);const visible37=isSet(FzvQNxBUi);const visible38=isSet(JLxxyL2UT);const visible39=isSet(QCHKkH_mR);const visible40=isSet(vdyMYjvZP);const visible41=isSet(EntWUGhsO);const elementId=useRouteElementId(\"j2RFX0tE5\");const ref1=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ymg46CVxk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c9be38ad-ac6f-4717-9d13-9cba99882769, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-qzh55x\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{height:100}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1slfa6z-container\",nodeId:\"TOYzcmavg\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{style:{height:\"100%\",width:\"100%\"},variant:\"ODT5WFMl0\"},s9ewSr55D:{variant:\"ODT5WFMl0\"}},children:/*#__PURE__*/_jsx(PageHeadingNav,{height:\"100%\",id:\"TOYzcmavg\",layoutId:\"TOYzcmavg\",style:{width:\"100%\"},variant:\"ohjmDaWou\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-brou8o\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t084fh\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+100+0+0+80+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(PgZemHVUn)}},s9ewSr55D:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+187+0+0+80+0),sizes:\"670px\",...toResponsiveImage(PgZemHVUn)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:60,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+187+0+0+80+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...toResponsiveImage(PgZemHVUn)},className:\"framer-kqouqd\",\"data-framer-name\":\"Background Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"66px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"STONE\"})})},s9ewSr55D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"100px\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"STONE\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50aWMgRGlkb25lLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Antic Didone\", \"Antic Didone Placeholder\", serif',\"--framer-font-size\":\"157px\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"STONE\"})}),className:\"framer-1ynvsu4\",\"data-framer-appear-id\":\"1ynvsu4\",fonts:[\"GF;Antic Didone-regular\"],initial:animation1,optimized:true,text:F5JM_atFV,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-98yyhr\",\"data-framer-name\":\"Overview\"}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4i1lrs\",\"data-framer-name\":\"Images\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k41dsr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7pfr8\",\"data-framer-name\":\"Column 1\",children:[visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1ftw8fq-container\",\"data-framer-name\":\"1\",isAuthoredByUser:true,isModuleExternal:true,name:\"1\",nodeId:\"JJ9VZRIJm\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"JJ9VZRIJm\",image:toResponsiveImage(vKXD8iKpJ),layoutId:\"JJ9VZRIJm\",name:\"1\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-v7yedm-container\",\"data-framer-name\":\"3\",isAuthoredByUser:true,isModuleExternal:true,name:\"3\",nodeId:\"f56woQmr0\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"f56woQmr0\",image:toResponsiveImage(fWJ74q7xr),layoutId:\"f56woQmr0\",name:\"3\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-wmpu3a-container\",\"data-framer-name\":\"5\",isAuthoredByUser:true,isModuleExternal:true,name:\"5\",nodeId:\"aGDssHBIh\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"aGDssHBIh\",image:toResponsiveImage(aTI9KHriu),layoutId:\"aGDssHBIh\",name:\"5\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-ej5zfv-container\",\"data-framer-name\":\"7\",isAuthoredByUser:true,isModuleExternal:true,name:\"7\",nodeId:\"SkJA92k1H\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"SkJA92k1H\",image:toResponsiveImage(oHTkeZJ15),layoutId:\"SkJA92k1H\",name:\"7\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-86idmm-container\",\"data-framer-name\":\"9\",isAuthoredByUser:true,isModuleExternal:true,name:\"9\",nodeId:\"g8t2O5CaJ\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"g8t2O5CaJ\",image:toResponsiveImage(ILkpQcNvi),layoutId:\"g8t2O5CaJ\",name:\"9\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1jizwlo-container\",\"data-framer-name\":\"11\",isAuthoredByUser:true,isModuleExternal:true,name:\"11\",nodeId:\"P9YtXbxAK\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"P9YtXbxAK\",image:toResponsiveImage(i8axNsxJW),layoutId:\"P9YtXbxAK\",name:\"11\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-6jvhbl-container\",\"data-framer-name\":\"13\",isAuthoredByUser:true,isModuleExternal:true,name:\"13\",nodeId:\"oIzVWszAQ\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"oIzVWszAQ\",image:toResponsiveImage(DTdUoV3vO),layoutId:\"oIzVWszAQ\",name:\"13\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1gi9iym-container\",\"data-framer-name\":\"15\",isAuthoredByUser:true,isModuleExternal:true,name:\"15\",nodeId:\"HlsEqk__J\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"HlsEqk__J\",image:toResponsiveImage(x3QduU9gk),layoutId:\"HlsEqk__J\",name:\"15\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-c83ypf-container\",\"data-framer-name\":\"17\",isAuthoredByUser:true,isModuleExternal:true,name:\"17\",nodeId:\"Xrd2ZRQdv\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"Xrd2ZRQdv\",image:toResponsiveImage(PP4i7ZJUK),layoutId:\"Xrd2ZRQdv\",name:\"17\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-5z0ccl-container\",\"data-framer-name\":\"19\",isAuthoredByUser:true,isModuleExternal:true,name:\"19\",nodeId:\"td1QzM5nr\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"td1QzM5nr\",image:toResponsiveImage(i2shV2MAl),layoutId:\"td1QzM5nr\",name:\"19\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1psxoo-container\",\"data-framer-name\":\"21\",isAuthoredByUser:true,isModuleExternal:true,name:\"21\",nodeId:\"t2_ZOycVX\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"t2_ZOycVX\",image:toResponsiveImage(vWDqyGrGO),layoutId:\"t2_ZOycVX\",name:\"21\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-uyvptw-container\",\"data-framer-name\":\"23\",isAuthoredByUser:true,isModuleExternal:true,name:\"23\",nodeId:\"St74CLSay\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"St74CLSay\",image:toResponsiveImage(oHL_DtpG4),layoutId:\"St74CLSay\",name:\"23\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible12&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-10dgnmb-container\",\"data-framer-name\":\"25\",isAuthoredByUser:true,isModuleExternal:true,name:\"25\",nodeId:\"ic5qhCnuj\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"ic5qhCnuj\",image:toResponsiveImage(qNep4MmIJ),layoutId:\"ic5qhCnuj\",name:\"25\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible13&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-cs9bfk-container\",\"data-framer-name\":\"27\",isAuthoredByUser:true,isModuleExternal:true,name:\"27\",nodeId:\"PwCirbKfe\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"PwCirbKfe\",image:toResponsiveImage(KCkQISNME),layoutId:\"PwCirbKfe\",name:\"27\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible14&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-q10suy-container\",\"data-framer-name\":\"29\",isAuthoredByUser:true,isModuleExternal:true,name:\"29\",nodeId:\"pQ5U8Ztix\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"pQ5U8Ztix\",image:toResponsiveImage(KvjmYBoW5),layoutId:\"pQ5U8Ztix\",name:\"29\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible15&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1i4361m-container\",\"data-framer-name\":\"31\",isAuthoredByUser:true,isModuleExternal:true,name:\"31\",nodeId:\"LKCkNsoeT\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"LKCkNsoeT\",image:toResponsiveImage(PNe1gb8v6),layoutId:\"LKCkNsoeT\",name:\"31\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible16&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1q493a4-container\",\"data-framer-name\":\"33\",isAuthoredByUser:true,isModuleExternal:true,name:\"33\",nodeId:\"JJbOoy6kV\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"JJbOoy6kV\",image:toResponsiveImage(IO5mVrHU8),layoutId:\"JJbOoy6kV\",name:\"33\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible17&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-19juyus-container\",\"data-framer-name\":\"35\",isAuthoredByUser:true,isModuleExternal:true,name:\"35\",nodeId:\"LrBcTfy2p\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"LrBcTfy2p\",image:toResponsiveImage(OiDawfl5x),layoutId:\"LrBcTfy2p\",name:\"35\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible18&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-m87t5j-container\",\"data-framer-name\":\"37\",isAuthoredByUser:true,isModuleExternal:true,name:\"37\",nodeId:\"brIbCch0n\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"brIbCch0n\",image:toResponsiveImage(jhOLsO_6L),layoutId:\"brIbCch0n\",name:\"37\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible19&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-q1ejus-container\",\"data-framer-name\":\"39\",isAuthoredByUser:true,isModuleExternal:true,name:\"39\",nodeId:\"p2qJK1KKl\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"p2qJK1KKl\",image:toResponsiveImage(GYPeGzzDu),layoutId:\"p2qJK1KKl\",name:\"39\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible20&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1y43x26-container\",\"data-framer-name\":\"41\",isAuthoredByUser:true,isModuleExternal:true,name:\"41\",nodeId:\"khjfhnj2W\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"khjfhnj2W\",image:toResponsiveImage(sVNjqrXsm),layoutId:\"khjfhnj2W\",name:\"41\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8gb9qb\",\"data-framer-name\":\"Column 2\",children:[visible21&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1l6838e-container\",\"data-framer-name\":\"2\",isAuthoredByUser:true,isModuleExternal:true,name:\"2\",nodeId:\"LREU8KhFe\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"LREU8KhFe\",image:toResponsiveImage(Uc0EKW689),layoutId:\"LREU8KhFe\",name:\"2\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible22&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-vnowcu-container\",\"data-framer-name\":\"4\",isAuthoredByUser:true,isModuleExternal:true,name:\"4\",nodeId:\"qcPqp0xsp\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"qcPqp0xsp\",image:toResponsiveImage(o54wwUXoX),layoutId:\"qcPqp0xsp\",name:\"4\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible23&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-vlxhh9-container\",\"data-framer-name\":\"6\",isAuthoredByUser:true,isModuleExternal:true,name:\"6\",nodeId:\"P8G_Xt518\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"P8G_Xt518\",image:toResponsiveImage(b_X5KNYN7),layoutId:\"P8G_Xt518\",name:\"6\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible24&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-cemjuy-container\",\"data-framer-name\":\"8\",isAuthoredByUser:true,isModuleExternal:true,name:\"8\",nodeId:\"sTKrG910O\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"sTKrG910O\",image:toResponsiveImage(Ak_tmyHDL),layoutId:\"sTKrG910O\",name:\"8\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible25&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-93lvpv-container\",\"data-framer-name\":\"10\",isAuthoredByUser:true,isModuleExternal:true,name:\"10\",nodeId:\"xOizT4e07\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"xOizT4e07\",image:toResponsiveImage(gBkoe0Lt_),layoutId:\"xOizT4e07\",name:\"10\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible26&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-dvlyfn-container\",\"data-framer-name\":\"12\",isAuthoredByUser:true,isModuleExternal:true,name:\"12\",nodeId:\"qWEpP14AA\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"qWEpP14AA\",image:toResponsiveImage(OzGGYAMO7),layoutId:\"qWEpP14AA\",name:\"12\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible27&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-dji3gv-container\",\"data-framer-name\":\"14\",isAuthoredByUser:true,isModuleExternal:true,name:\"14\",nodeId:\"wEpicEW2F\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"wEpicEW2F\",image:toResponsiveImage(NOK98R40_),layoutId:\"wEpicEW2F\",name:\"14\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible28&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-17notc4-container\",\"data-framer-name\":\"16\",isAuthoredByUser:true,isModuleExternal:true,name:\"16\",nodeId:\"idMMKaKAR\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"text\",height:\"100%\",id:\"idMMKaKAR\",image:toResponsiveImage(OnX0sZkMW),layoutId:\"idMMKaKAR\",name:\"16\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible29&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-98b07p-container\",\"data-framer-name\":\"18\",isAuthoredByUser:true,isModuleExternal:true,name:\"18\",nodeId:\"YGCRizQbF\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"YGCRizQbF\",image:toResponsiveImage(SQP2GMQE0),layoutId:\"YGCRizQbF\",name:\"18\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible30&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-16nndsu-container\",\"data-framer-name\":\"20\",isAuthoredByUser:true,isModuleExternal:true,name:\"20\",nodeId:\"SkWPvfRI0\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"SkWPvfRI0\",image:toResponsiveImage(BAh5FEar5),layoutId:\"SkWPvfRI0\",name:\"20\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible31&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1a7kz11-container\",\"data-framer-name\":\"22\",isAuthoredByUser:true,isModuleExternal:true,name:\"22\",nodeId:\"L5Jt8UNa_\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"L5Jt8UNa_\",image:toResponsiveImage(PWvdzUrSK),layoutId:\"L5Jt8UNa_\",name:\"22\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible32&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-y85vwp-container\",\"data-framer-name\":\"24\",isAuthoredByUser:true,isModuleExternal:true,name:\"24\",nodeId:\"iAAUY4UBn\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"iAAUY4UBn\",image:toResponsiveImage(Yo7F0zmFA),layoutId:\"iAAUY4UBn\",name:\"24\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible33&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1r4imbu-container\",\"data-framer-name\":\"26\",isAuthoredByUser:true,isModuleExternal:true,name:\"26\",nodeId:\"e62LtTfLf\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"e62LtTfLf\",image:toResponsiveImage(mUUUXGvmZ),layoutId:\"e62LtTfLf\",name:\"26\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible34&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-195qns3-container\",\"data-framer-name\":\"28\",isAuthoredByUser:true,isModuleExternal:true,name:\"28\",nodeId:\"U4TMwa9et\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"U4TMwa9et\",image:toResponsiveImage(jNzGgxYh6),layoutId:\"U4TMwa9et\",name:\"28\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible35&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-474ihh-container\",\"data-framer-name\":\"30\",isAuthoredByUser:true,isModuleExternal:true,name:\"30\",nodeId:\"d7yrKsdyh\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"d7yrKsdyh\",image:toResponsiveImage(HwWB59P3e),layoutId:\"d7yrKsdyh\",name:\"30\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible36&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-qbf2wq-container\",\"data-framer-name\":\"32\",isAuthoredByUser:true,isModuleExternal:true,name:\"32\",nodeId:\"rNp2Ax8w1\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"rNp2Ax8w1\",image:toResponsiveImage(pDa3jhqx3),layoutId:\"rNp2Ax8w1\",name:\"32\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible37&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-pylnv3-container\",\"data-framer-name\":\"34\",isAuthoredByUser:true,isModuleExternal:true,name:\"34\",nodeId:\"msefVxuQY\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"msefVxuQY\",image:toResponsiveImage(FzvQNxBUi),layoutId:\"msefVxuQY\",name:\"34\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible38&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-1qhg0g9-container\",\"data-framer-name\":\"36\",isAuthoredByUser:true,isModuleExternal:true,name:\"36\",nodeId:\"CVIeA2otI\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"CVIeA2otI\",image:toResponsiveImage(JLxxyL2UT),layoutId:\"CVIeA2otI\",name:\"36\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible39&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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-x4dn02-container\",\"data-framer-name\":\"38\",isAuthoredByUser:true,isModuleExternal:true,name:\"38\",nodeId:\"fvcaBv4MF\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"fvcaBv4MF\",image:toResponsiveImage(QCHKkH_mR),layoutId:\"fvcaBv4MF\",name:\"38\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible40&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-16tm5vu-container\",\"data-framer-name\":\"40\",isAuthoredByUser:true,isModuleExternal:true,name:\"40\",nodeId:\"Lu5IiE2MI\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"Lu5IiE2MI\",image:toResponsiveImage(vdyMYjvZP),layoutId:\"Lu5IiE2MI\",name:\"40\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})}),visible41&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.4,className:\"framer-1w36xgb-container\",\"data-framer-name\":\"42\",isAuthoredByUser:true,isModuleExternal:true,name:\"42\",nodeId:\"jgo1wJiEc\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Image1,{alt:\"\",height:\"100%\",id:\"jgo1wJiEc\",image:toResponsiveImage(EntWUGhsO),layoutId:\"jgo1wJiEc\",name:\"42\",newTab:true,padding:0,radius:5,style:{width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__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-l0zs30\",\"data-framer-name\":\"Other Albums\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Ftb3J5IE1vaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Amory Moist Regular\", \"Amory Moist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"More MATERIALS\"})})},s9ewSr55D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Ftb3J5IE1vaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Amory Moist Regular\", \"Amory Moist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"More MATERIALS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Ftb3J5IE1vaXN0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Amory Moist Regular\", \"Amory Moist Regular Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32))\",\"--framer-text-transform\":\"uppercase\"},children:\"More MATERIALS\"})}),className:\"framer-gxw1x3\",fonts:[\"CUSTOM;Amory Moist Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b60u05\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fs706t-container\",isModuleExternal:true,nodeId:\"ds_oe4jGc\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ds_oe4jGc\",layoutId:\"ds_oe4jGc\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ck90wu\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Y5K6RILuI\",data:Albums,type:\"Collection\"},select:[{collection:\"Y5K6RILuI\",name:\"F5JM_atFV\",type:\"Identifier\"},{collection:\"Y5K6RILuI\",name:\"PgZemHVUn\",type:\"Identifier\"},{collection:\"Y5K6RILuI\",name:\"abCVizEmi\",type:\"Identifier\"},{collection:\"Y5K6RILuI\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({abCVizEmi:abCVizEmiY5K6RILuI,F5JM_atFV:F5JM_atFVY5K6RILuI,id:idY5K6RILuI,PgZemHVUn:PgZemHVUnY5K6RILuI},index)=>{F5JM_atFVY5K6RILuI??=\"\";abCVizEmiY5K6RILuI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Y5K6RILuI-${idY5K6RILuI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{abCVizEmi:abCVizEmiY5K6RILuI},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{abCVizEmi:abCVizEmiY5K6RILuI},webPageId:\"V_IzExq2E\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"370px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-50s81n-container\",inComponentSlot:true,nodeId:\"UhxYs0Ahv\",rendersWithMotion:true,scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(Project,{height:\"100%\",id:\"UhxYs0Ahv\",layoutId:\"UhxYs0Ahv\",qqNc2XiOL:F5JM_atFVY5K6RILuI,style:{width:\"100%\"},Te9bphHet:toResponsiveImage(PgZemHVUnY5K6RILuI),width:\"100%\",ZSDiebDov:resolvedLinks[0]})})})})})},idY5K6RILuI);})})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fywelbkji\"},implicitPathVariables:undefined},{href:{webPageId:\"fywelbkji\"},implicitPathVariables:undefined},{href:{webPageId:\"fywelbkji\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{y:(componentViewport?.y||0)+0+100+0+9149+30+605},s9ewSr55D:{y:(componentViewport?.y||0)+0+187+0+5102+100+627}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+187+0+5232+150+651,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17gd2rh-container\",nodeId:\"n249J5Jn3\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{NLlZJSJLM:resolvedLinks1[2]},s9ewSr55D:{NLlZJSJLM:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"n249J5Jn3\",layoutId:\"n249J5Jn3\",NLlZJSJLM:resolvedLinks1[0],oivUlbumQ:\"VIEW ALL SCULPTURES\",PG3TKDJPA:\"VIEW ALL SCULPTURES\",variant:\"OnJ04UuOv\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"u8w6ys19X\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(MotionAEnableRotationo5vrjx,{\"aria-label\":\"Spinning logo container\",background:{alt:\"\",fit:\"fill\"},className:\"framer-o5vrjx framer-1xpcr6o\",\"data-framer-name\":\"Spinning Logo Container\",children:/*#__PURE__*/_jsx(SVG,{background:{alt:\"\",fit:\"fill\"},className:\"framer-75fi5k\",\"data-framer-name\":\"Logo\",description:\"A vector logo of the Artfolio website in black color with four rounded lines to form a square.\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 51\"><path d=\"M 46.583 26 C 46.6 25.983 30.65 9.95 30.65 9.95 C 30.267 9.567 30.383 8.933 30.867 8.7 C 34.033 7.15 37.933 7.6 40.6 10.15 C 42.367 11.85 43.25 14.133 43.233 16.4 C 43.233 16.817 43.4 17.217 43.7 17.517 L 47.867 21.683 C 48.267 22.083 48.967 21.933 49.15 21.4 C 51.017 16.017 49.817 9.783 45.517 5.483 C 39.917 -0.117 31.017 -0.467 25 4.417 C 24.983 4.4 8.95 20.35 8.95 20.35 C 8.567 20.733 7.933 20.617 7.7 20.133 C 6.15 16.967 6.6 13.067 9.15 10.4 C 10.85 8.633 13.133 7.75 15.4 7.767 C 15.817 7.767 16.217 7.6 16.517 7.3 L 20.683 3.133 C 21.083 2.733 20.933 2.033 20.4 1.85 C 15.017 -0.017 8.783 1.183 4.483 5.483 C -1.117 11.083 -1.467 19.983 3.417 26 C 3.4 26.017 19.35 42.05 19.35 42.05 C 19.733 42.433 19.617 43.067 19.133 43.3 C 15.967 44.85 12.067 44.4 9.4 41.85 C 7.633 40.15 6.75 37.867 6.767 35.6 C 6.767 35.183 6.6 34.783 6.3 34.483 L 2.133 30.317 C 1.733 29.917 1.033 30.067 0.85 30.6 C -1.017 35.983 0.183 42.217 4.483 46.517 C 10.083 52.117 18.983 52.467 25 47.583 C 25.017 47.6 41.05 31.65 41.05 31.65 C 41.433 31.267 42.067 31.383 42.3 31.867 C 43.85 35.033 43.4 38.933 40.85 41.6 C 39.15 43.367 36.867 44.25 34.6 44.233 C 34.183 44.233 33.783 44.4 33.483 44.7 L 29.317 48.867 C 28.917 49.267 29.067 49.967 29.6 50.15 C 34.983 52.017 41.217 50.817 45.517 46.517 C 51.117 40.917 51.467 32.017 46.583 26 Z M 39.367 29.05 C 37.017 28.267 34.3 28.8 32.433 30.683 L 22.567 40.55 C 22.35 40.767 21.983 40.55 22.083 40.25 C 22.783 37.933 22.217 35.317 20.4 33.483 C 20.4 33.483 13.25 26.333 10.35 23.417 C 10.133 23.2 10.367 22.833 10.65 22.933 C 13 23.717 15.717 23.183 17.583 21.3 C 17.583 21.3 24.65 14.233 27.7 11.2 C 27.917 10.983 28.3 11.217 28.183 11.5 C 27.317 13.9 27.833 16.683 29.767 18.617 C 29.767 18.617 36.8 25.65 39.683 28.55 C 39.9 28.783 39.667 29.15 39.367 29.05 Z\" fill=\"var(--token-375b0708-a5c7-4e30-977a-1caba63fdd50, rgb(32, 32, 32)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></svg>',svgContentId:12470393426,title:\"Artfolio logo\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{y:(componentViewport?.y||0)+0+100+0+9990},s9ewSr55D:{y:(componentViewport?.y||0)+0+187+0+6075}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+187+0+6329,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14cmaw-container\",nodeId:\"k8n0kHtsD\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KTrif2JN6:{variant:\"rgSO0x5V5\"},s9ewSr55D:{variant:\"rgSO0x5V5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"k8n0kHtsD\",layoutId:\"k8n0kHtsD\",style:{width:\"100%\"},variant:\"U2jmU3b0F\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3iow5s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AE3liXt5F\",scopeId:\"V_IzExq2E\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"AE3liXt5F\",intensity:15,layoutId:\"AE3liXt5F\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IeZO7.framer-1xpcr6o, .framer-IeZO7 .framer-1xpcr6o { display: block; }\",\".framer-IeZO7.framer-qzh55x { align-content: center; align-items: center; background-color: var(--token-c9be38ad-ac6f-4717-9d13-9cba99882769, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-IeZO7 .framer-1slfa6z-container, .framer-IeZO7 .framer-14cmaw-container { -webkit-filter: invert(0); filter: invert(0); flex: none; height: auto; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-brou8o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-1t084fh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 50px 80px 50px; position: relative; width: 100%; z-index: 1; }\",\".framer-IeZO7 .framer-kqouqd { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 500px; mix-blend-mode: lighten; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-IeZO7 .framer-1ynvsu4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: auto; left: 50%; max-width: 1120px; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 1120px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-IeZO7 .framer-98yyhr { align-content: center; align-items: center; background-color: var(--token-c9be38ad-ac6f-4717-9d13-9cba99882769, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: 300px; justify-content: center; overflow: hidden; padding: 120px 40px 120px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-IeZO7 .framer-4i1lrs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 62px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 10px 10px; position: relative; width: 100%; z-index: 1; }\",\".framer-IeZO7 .framer-k41dsr { 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: flex-start; max-width: 1900px; overflow: visible; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-IeZO7 .framer-1f7pfr8, .framer-IeZO7 .framer-8gb9qb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 10px; width: 1px; z-index: 1; }\",\".framer-IeZO7 .framer-1ftw8fq-container, .framer-IeZO7 .framer-v7yedm-container, .framer-IeZO7 .framer-wmpu3a-container, .framer-IeZO7 .framer-ej5zfv-container, .framer-IeZO7 .framer-86idmm-container, .framer-IeZO7 .framer-1jizwlo-container, .framer-IeZO7 .framer-6jvhbl-container, .framer-IeZO7 .framer-1gi9iym-container, .framer-IeZO7 .framer-c83ypf-container, .framer-IeZO7 .framer-5z0ccl-container, .framer-IeZO7 .framer-1psxoo-container, .framer-IeZO7 .framer-uyvptw-container, .framer-IeZO7 .framer-10dgnmb-container, .framer-IeZO7 .framer-cs9bfk-container, .framer-IeZO7 .framer-q10suy-container, .framer-IeZO7 .framer-1i4361m-container, .framer-IeZO7 .framer-1q493a4-container, .framer-IeZO7 .framer-19juyus-container, .framer-IeZO7 .framer-m87t5j-container, .framer-IeZO7 .framer-q1ejus-container, .framer-IeZO7 .framer-1y43x26-container, .framer-IeZO7 .framer-1l6838e-container, .framer-IeZO7 .framer-vnowcu-container, .framer-IeZO7 .framer-vlxhh9-container, .framer-IeZO7 .framer-cemjuy-container, .framer-IeZO7 .framer-93lvpv-container, .framer-IeZO7 .framer-dvlyfn-container, .framer-IeZO7 .framer-dji3gv-container, .framer-IeZO7 .framer-17notc4-container, .framer-IeZO7 .framer-98b07p-container, .framer-IeZO7 .framer-16nndsu-container, .framer-IeZO7 .framer-1a7kz11-container, .framer-IeZO7 .framer-y85vwp-container, .framer-IeZO7 .framer-1r4imbu-container, .framer-IeZO7 .framer-195qns3-container, .framer-IeZO7 .framer-474ihh-container, .framer-IeZO7 .framer-qbf2wq-container, .framer-IeZO7 .framer-pylnv3-container, .framer-IeZO7 .framer-1qhg0g9-container, .framer-IeZO7 .framer-x4dn02-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-16tm5vu-container, .framer-IeZO7 .framer-1w36xgb-container { flex: none; height: auto; opacity: 0.4; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-l0zs30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 150px 10px 150px 10px; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-gxw1x3 { --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-IeZO7 .framer-b60u05 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1680%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-1fs706t-container { flex: none; height: 485px; position: relative; width: 100%; }\",\".framer-IeZO7 .framer-ck90wu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 40px; position: relative; width: min-content; }\",\".framer-IeZO7 .framer-50s81n-container { flex: none; height: auto; position: relative; width: 370px; }\",\".framer-IeZO7 .framer-17gd2rh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-IeZO7 .framer-o5vrjx { -webkit-filter: invert(0); aspect-ratio: 1 / 1; filter: invert(0); flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; text-decoration: none; width: 50px; }\",\".framer-IeZO7 .framer-75fi5k { flex: none; height: 51px; left: calc(50.00000000000002% - 50px / 2); position: absolute; top: calc(48.00000000000002% - 51px / 2); width: 50px; }\",\".framer-IeZO7 .framer-3iow5s-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IeZO7.framer-qzh55x, .framer-IeZO7 .framer-brou8o, .framer-IeZO7 .framer-1t084fh, .framer-IeZO7 .framer-98yyhr, .framer-IeZO7 .framer-4i1lrs, .framer-IeZO7 .framer-k41dsr, .framer-IeZO7 .framer-1f7pfr8, .framer-IeZO7 .framer-8gb9qb, .framer-IeZO7 .framer-l0zs30, .framer-IeZO7 .framer-b60u05, .framer-IeZO7 .framer-ck90wu { gap: 0px; } .framer-IeZO7.framer-qzh55x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IeZO7.framer-qzh55x > :first-child, .framer-IeZO7 .framer-brou8o > :first-child, .framer-IeZO7 .framer-1t084fh > :first-child, .framer-IeZO7 .framer-98yyhr > :first-child, .framer-IeZO7 .framer-4i1lrs > :first-child, .framer-IeZO7 .framer-1f7pfr8 > :first-child, .framer-IeZO7 .framer-8gb9qb > :first-child, .framer-IeZO7 .framer-l0zs30 > :first-child, .framer-IeZO7 .framer-b60u05 > :first-child { margin-top: 0px; } .framer-IeZO7.framer-qzh55x > :last-child, .framer-IeZO7 .framer-brou8o > :last-child, .framer-IeZO7 .framer-1t084fh > :last-child, .framer-IeZO7 .framer-98yyhr > :last-child, .framer-IeZO7 .framer-4i1lrs > :last-child, .framer-IeZO7 .framer-1f7pfr8 > :last-child, .framer-IeZO7 .framer-8gb9qb > :last-child, .framer-IeZO7 .framer-l0zs30 > :last-child, .framer-IeZO7 .framer-b60u05 > :last-child { margin-bottom: 0px; } .framer-IeZO7 .framer-brou8o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-IeZO7 .framer-1t084fh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IeZO7 .framer-98yyhr > *, .framer-IeZO7 .framer-4i1lrs > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-IeZO7 .framer-k41dsr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-IeZO7 .framer-k41dsr > :first-child, .framer-IeZO7 .framer-ck90wu > :first-child { margin-left: 0px; } .framer-IeZO7 .framer-k41dsr > :last-child, .framer-IeZO7 .framer-ck90wu > :last-child { margin-right: 0px; } .framer-IeZO7 .framer-1f7pfr8 > *, .framer-IeZO7 .framer-8gb9qb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IeZO7 .framer-l0zs30 > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-IeZO7 .framer-b60u05 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-IeZO7 .framer-ck90wu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-IeZO7.framer-qzh55x { width: 810px; } .framer-IeZO7 .framer-1t084fh { padding: 80px 50px 50px 50px; } .framer-IeZO7 .framer-kqouqd { width: 670px; } .framer-IeZO7 .framer-1ynvsu4 { max-width: 600px; width: 600px; } .framer-IeZO7 .framer-98yyhr { height: min-content; min-height: 443px; padding: 100px 40px 100px 40px; } .framer-IeZO7 .framer-l0zs30 { padding: 100px 10px 100px 10px; }}\",\"@media (max-width: 809px) { .framer-IeZO7.framer-qzh55x { width: 390px; } .framer-IeZO7 .framer-1slfa6z-container { height: 100px; } .framer-IeZO7 .framer-1t084fh { padding: 80px 20px 20px 20px; } .framer-IeZO7 .framer-kqouqd { height: 277px; } .framer-IeZO7 .framer-1ynvsu4 { max-width: 400px; width: 400px; } .framer-IeZO7 .framer-98yyhr { padding: 50px 20px 50px 20px; } .framer-IeZO7 .framer-4i1lrs { gap: 10px; } .framer-IeZO7 .framer-k41dsr { flex-direction: column; } .framer-IeZO7 .framer-1f7pfr8, .framer-IeZO7 .framer-8gb9qb { flex: none; position: relative; top: unset; width: 100%; } .framer-IeZO7 .framer-l0zs30 { padding: 30px 10px 60px 10px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IeZO7 .framer-4i1lrs, .framer-IeZO7 .framer-k41dsr { gap: 0px; } .framer-IeZO7 .framer-4i1lrs > *, .framer-IeZO7 .framer-k41dsr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IeZO7 .framer-4i1lrs > :first-child, .framer-IeZO7 .framer-k41dsr > :first-child { margin-top: 0px; } .framer-IeZO7 .framer-4i1lrs > :last-child, .framer-IeZO7 .framer-k41dsr > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17747.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"s9ewSr55D\":{\"layout\":[\"fixed\",\"auto\"]},\"KTrif2JN6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"j2RFX0tE5\":{\"pattern\":\":j2RFX0tE5\",\"name\":\"video \"}}\n * @framerResponsiveScreen\n */const FramerV_IzExq2E=withCSS(Component,css,\"framer-IeZO7\");export default FramerV_IzExq2E;FramerV_IzExq2E.displayName=\"Albums\";FramerV_IzExq2E.defaultProps={height:17747.5,width:1200};addFonts(FramerV_IzExq2E,[{explicitInter:true,fonts:[{family:\"Antic Didone\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDirIsGBGBzCw.woff2\",weight:\"400\"},{family:\"Amory Moist Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/WfsK2BrhSiJpkEGAqgj6arErwaM.woff2\"}]},...PageHeadingNavFonts,...Image1Fonts,...ProjectFonts,...TickerFonts,...Button2Fonts,...FooterFonts,...SmoothScrollFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV_IzExq2E\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s9ewSr55D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KTrif2JN6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"j2RFX0tE5\\\":{\\\"pattern\\\":\\\":j2RFX0tE5\\\",\\\"name\\\":\\\"video \\\"}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"17747.5\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Image", "props", "image", "alt", "radius", "padding", "link", "newTab", "style", "borderOptions", "shadowOptions", "wrapperStyle", "borderAndShadow", "imageStyle", "shadowStyle", "imageSource", "u", "p", "addPropertyControls", "ControlType", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PageHeadingNavFonts", "getFonts", "GWwuDqzky_default", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "Image1Fonts", "Image", "ContainerWithFX", "Container", "ProjectFonts", "cKTb96ynm_default", "TickerFonts", "Ticker", "Button2Fonts", "CFsFv2jqC_default", "MotionSectionWithFX", "motion", "MotionAEnableRotationo5vrjx", "withCodeBoundaryForOverrides", "EnableRotation", "FooterFonts", "ZJhCIRymm_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "isSet", "animation2", "transition2", "animation3", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "Qiwj4Sxj4_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "PgZemHVUn", "F5JM_atFV", "vKXD8iKpJ", "fWJ74q7xr", "aTI9KHriu", "oHTkeZJ15", "ILkpQcNvi", "i8axNsxJW", "DTdUoV3vO", "x3QduU9gk", "PP4i7ZJUK", "i2shV2MAl", "vWDqyGrGO", "oHL_DtpG4", "qNep4MmIJ", "KCkQISNME", "KvjmYBoW5", "PNe1gb8v6", "IO5mVrHU8", "OiDawfl5x", "jhOLsO_6L", "GYPeGzzDu", "sVNjqrXsm", "Uc0EKW689", "o54wwUXoX", "b_X5KNYN7", "Ak_tmyHDL", "gBkoe0Lt_", "OzGGYAMO7", "NOK98R40_", "OnX0sZkMW", "SQP2GMQE0", "BAh5FEar5", "PWvdzUrSK", "Yo7F0zmFA", "mUUUXGvmZ", "jNzGgxYh6", "HwWB59P3e", "pDa3jhqx3", "FzvQNxBUi", "JLxxyL2UT", "QCHKkH_mR", "vdyMYjvZP", "EntWUGhsO", "F5JM_atFVY5K6RILuI", "PgZemHVUnY5K6RILuI", "abCVizEmiY5K6RILuI", "idY5K6RILuI", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "visible12", "visible13", "visible14", "visible15", "visible16", "visible17", "visible18", "visible19", "visible20", "visible21", "visible22", "visible23", "visible24", "visible25", "visible26", "visible27", "visible28", "visible29", "visible30", "visible31", "visible32", "visible33", "visible34", "visible35", "visible36", "visible37", "visible38", "visible39", "visible40", "visible41", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "GWwuDqzky_default", "getLoadingLazyAtYPosition", "ImageWithFX", "x", "RichTextWithOptimizedAppearEffect", "ContainerWithFX", "Image", "MotionSectionWithFX", "RichText2", "Ticker", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "cKTb96ynm_default", "resolvedLinks1", "CFsFv2jqC_default", "Link", "MotionAEnableRotationo5vrjx", "SVG", "ZJhCIRymm_default", "SmoothScroll", "css", "FramerV_IzExq2E", "withCSS", "V_IzExq2E_default", "addFonts", "PageHeadingNavFonts", "Image1Fonts", "ProjectFonts", "TickerFonts", "Button2Fonts", "FooterFonts", "SmoothScrollFonts", "__FramerMetadata__"]
}
