{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/lOLU5N3BjaocXiohNsYh/GhXQAloOcR5eKExr77wo/GXgYMiHhG.js", "ssg:https://framerusercontent.com/modules/ttxYYou8pLVxykodLt4f/mHQqw9SLeBQJNvUPN5JB/LcENvMshl-0.js", "ssg:https://framerusercontent.com/modules/ttxYYou8pLVxykodLt4f/mHQqw9SLeBQJNvUPN5JB/LcENvMshl.js", "ssg:https://framerusercontent.com/modules/1G2QIplO7yHhefmo8Opg/pBAipkYTiex0BCitmS0K/Ho3QkS5Lr.js", "ssg:https://framerusercontent.com/modules/sLxd91P9EuLNBetrPcWA/Ht8hIHFSUgmRAZdODMXc/Ho3QkS5Lr.js"],
  "sourcesContent": ["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 (63c002f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-LY3RD .framer-styles-preset-kcalzm {  }\"];export const className=\"framer-LY3RD\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"kwiatowy podkre\u015Blenie\";export const v1=\"Moje portfolio\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/mIe6HosvfU6Gq3EjGxMs/MfrarkyF1SCRRI8ZfClj/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/nBw1XYKlgrN0rujaIm6V/YgrTULj6RPhsli05C5VW/Ci8zYtGGE.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/lOLU5N3BjaocXiohNsYh/GhXQAloOcR5eKExr77wo/GXgYMiHhG.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/eYR3orcSZo7X8QZ67NAN/dJOj10dqoOMDs1KxPz0M/hGCr5Q6ka.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xP3gIXI8LJbP98c09Deg/3ruPXnSwEbqXeEbitEt0/jaztviBNQ.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/hKkU0SWcpnXm4fCpaPgs/b9JSW6fjE65Y3xz03tCs/KeQf64BhG.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uND2pzqrHr787sms8yI1/iIZRGtOYnxoD5wUxDpif/sV3EasWdh.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/v8nmraN8rR3T4jpuONtO/wNJpcBSiJZx7g203oXEp/W8UfETycG.js\";import*as localizedValues from\"./LcENvMshl-0.js\";import ButtonMain from\"https://framerusercontent.com/modules/nrTckfBLX5YzRWE0rLjq/Momtf0miBkPCyKEEdPAL/Sr9QmKfcV.js\";const ImageWithFX=withFX(Image);const ButtonMainFonts=getFonts(ButtonMain);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"sqsPTqQIJ\",\"QUuHWARYD\",\"jAtDM9OBf\"];const serializationHash=\"framer-WtVTZ\";const variantClassNames={jAtDM9OBf:\"framer-v-1tvxp5i\",QUuHWARYD:\"framer-v-a3vqmi\",sqsPTqQIJ:\"framer-v-id1ex3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={AG4WL3wqO:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const transition3={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"sqsPTqQIJ\",Phone:\"jAtDM9OBf\",Tablet:\"QUuHWARYD\"};const getProps=({authorBio,authorName,bioImage,height,id,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,A8nXoA2uo:(_ref=authorName!==null&&authorName!==void 0?authorName:props.A8nXoA2uo)!==null&&_ref!==void 0?_ref:\"Tom L.\",gs6WrSkhT:(_ref1=bioImage!==null&&bioImage!==void 0?bioImage:props.gs6WrSkhT)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/XKuJuLZmxZpCAaEZcWaLRs5gqgU.jpeg\",srcSet:\"https://framerusercontent.com/images/XKuJuLZmxZpCAaEZcWaLRs5gqgU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/XKuJuLZmxZpCAaEZcWaLRs5gqgU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XKuJuLZmxZpCAaEZcWaLRs5gqgU.jpeg 1590w\"},tEj344kWC:(_ref2=authorBio!==null&&authorBio!==void 0?authorBio:props.tEj344kWC)!==null&&_ref2!==void 0?_ref2:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"From the first initial meeting right through to when you settle onto the sofa to relive your day in pictures, my goal is first and foremost to document your story from start to finish. I want to create memories that you and your families can look back on for years to come, and allow your personalities and your emotions to shine from those album pages. I want you to be able to remember exactly what you were laughing about, the feeling of your first kiss as a married couple, that surge of love during your first dance. I don\u2019t just take pictures; I capture the memory.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"My approach to wedding photography is all about capturing authentic, candid moments with an artistic touch. Making people feel comfortable in front of the camera is one of my strengths, and it's something my clients appreciate, often returning with glowing testimonials.\"})]}),variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"sqsPTqQIJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gs6WrSkhT,A8nXoA2uo,tEj344kWC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sqsPTqQIJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"jAtDM9OBf\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-id1ex3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sqsPTqQIJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(250, 250, 250)\",...style},...addPropertyOverrides({jAtDM9OBf:{\"data-framer-name\":\"Phone\"},QUuHWARYD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+76),pixelHeight:1280,pixelWidth:1920,sizes:\"710px\",...toResponsiveImage(gs6WrSkhT)},className:\"framer-k079bd\",\"data-framer-name\":\"Bio LHS Photo\",layoutDependency:layoutDependency,layoutId:\"ynjL2ekIk\",...addPropertyOverrides({jAtDM9OBf:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-399)/1)*1+384+15))/2+0+0)),pixelHeight:1280,pixelWidth:1920,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(gs6WrSkhT)}},QUuHWARYD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1629.5)-76-981)/2+0+0)),pixelHeight:1280,pixelWidth:1920,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(gs6WrSkhT)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ldr4cx\",\"data-framer-name\":\"Bio RHS Text Wrapper\",layoutDependency:layoutDependency,layoutId:\"RedOHRpw8\",style:{backgroundColor:\"rgb(250, 250, 250)\"},children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"xBus4l0Zp\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"RR9wIoYu8\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:tEj344kWC,className:\"framer-bvkrz6\",\"data-framer-name\":\"Bio RHS Text 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AXthsf5Ds\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1o935t0\",code:\"framer-styles-preset-1t2btvj\",h1:\"framer-styles-preset-10xhj9s\",h2:\"framer-styles-preset-1vxawys\",h3:\"framer-styles-preset-1clh3v0\",h4:\"framer-styles-preset-1ylybmx\",img:\"framer-styles-preset-kcalzm\",p:\"framer-styles-preset-1kuo55a\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"floral underline\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+76+40+58.4),pixelHeight:42,pixelWidth:300,src:\"https://framerusercontent.com/images/5EYmvO26yJ12258fkzOqHOZomc8.svg\"},className:\"framer-lr6xil\",layoutDependency:layoutDependency,layoutId:\"JzvreZn3k\",...addPropertyOverrides({jAtDM9OBf:{background:{alt:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"floral underline\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-399)/1)*1+384+15))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-399)/1)*1+15)+0+87.4),pixelHeight:42,pixelWidth:300,src:\"https://framerusercontent.com/images/5EYmvO26yJ12258fkzOqHOZomc8.svg\"}},QUuHWARYD:{background:{alt:(_getLocalizedValue2=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"floral underline\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1629.5)-76-981)/2+600+15)+40+58.4),pixelHeight:42,pixelWidth:300,src:\"https://framerusercontent.com/images/5EYmvO26yJ12258fkzOqHOZomc8.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TXIgRGUgSGF2aWxhbmQtcmVndWxhcg==\",\"--framer-font-family\":'\"Mr De Haviland\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 31, 31))\"},children:\"Tessa M.\"})}),className:\"framer-ard56d\",fonts:[\"GF;Mr De Haviland-regular\"],layoutDependency:layoutDependency,layoutId:\"fuKdlc55r\",style:{\"--extracted-r6o4lv\":\"rgb(31, 31, 31)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:A8nXoA2uo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rdaKun_x_\"},implicitPathVariables:undefined},{href:{webPageId:\"rdaKun_x_\"},implicitPathVariables:undefined},{href:{webPageId:\"rdaKun_x_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:79,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+76+40+188,...addPropertyOverrides({jAtDM9OBf:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-399)/1)*1+384+15))/2+Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1566.5)-0-399)/1)*1+15)+0+143.4},QUuHWARYD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1629.5)-76-981)/2+600+15)+40+207}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tfq0mm-container\",layoutDependency:layoutDependency,layoutId:\"y94pMwR1I-container\",children:/*#__PURE__*/_jsx(ButtonMain,{height:\"100%\",id:\"y94pMwR1I\",layoutId:\"y94pMwR1I\",width:\"100%\",WsqqEKnU5:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"My Portfolio\",ZYIxNwPfq:resolvedLinks[0],...addPropertyOverrides({jAtDM9OBf:{ZYIxNwPfq:resolvedLinks[2]},QUuHWARYD:{ZYIxNwPfq:resolvedLinks[1]}},baseVariant,gestureVariant)})})});}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j7r8wc\",\"data-framer-name\":\"Space Mobile\",layoutDependency:layoutDependency,layoutId:\"WuIlR_UeP\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WtVTZ.framer-z34fzg, .framer-WtVTZ .framer-z34fzg { display: block; }\",\".framer-WtVTZ.framer-id1ex3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 76px 0px 76px 0px; position: relative; width: min-content; }\",\".framer-WtVTZ .framer-k079bd { align-self: stretch; flex: none; height: auto; max-height: 100%; overflow: hidden; position: relative; width: 710px; }\",\".framer-WtVTZ .framer-1ldr4cx { 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: 40px; position: relative; width: 540px; }\",\".framer-WtVTZ .framer-bvkrz6 { flex: none; height: auto; max-width: 600.01px; position: relative; width: auto; }\",\".framer-WtVTZ .framer-lr6xil { aspect-ratio: 7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 225px; }\",\".framer-WtVTZ .framer-ard56d { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-WtVTZ .framer-1tfq0mm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WtVTZ .framer-j7r8wc { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WtVTZ.framer-id1ex3, .framer-WtVTZ .framer-1ldr4cx { gap: 0px; } .framer-WtVTZ.framer-id1ex3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-WtVTZ.framer-id1ex3 > :first-child { margin-left: 0px; } .framer-WtVTZ.framer-id1ex3 > :last-child { margin-right: 0px; } .framer-WtVTZ .framer-1ldr4cx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WtVTZ .framer-1ldr4cx > :first-child { margin-top: 0px; } .framer-WtVTZ .framer-1ldr4cx > :last-child { margin-bottom: 0px; } }\",\".framer-WtVTZ.framer-v-a3vqmi.framer-id1ex3 { flex-direction: column; padding: 0px 0px 76px 0px; width: 730px; }\",\".framer-WtVTZ.framer-v-a3vqmi .framer-k079bd { align-self: unset; height: 600px; width: 100%; }\",\".framer-WtVTZ.framer-v-a3vqmi .framer-1ldr4cx { width: 100%; }\",\".framer-WtVTZ.framer-v-a3vqmi .framer-bvkrz6 { max-width: 611.01px; }\",\".framer-WtVTZ.framer-v-a3vqmi .framer-lr6xil { height: var(--framer-aspect-ratio-supported, 51px); width: 358px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WtVTZ.framer-v-a3vqmi.framer-id1ex3 { gap: 0px; } .framer-WtVTZ.framer-v-a3vqmi.framer-id1ex3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-WtVTZ.framer-v-a3vqmi.framer-id1ex3 > :first-child { margin-top: 0px; } .framer-WtVTZ.framer-v-a3vqmi.framer-id1ex3 > :last-child { margin-bottom: 0px; } }\",\".framer-WtVTZ.framer-v-1tvxp5i.framer-id1ex3 { flex-direction: column; padding: 0px; width: 366px; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-k079bd { align-self: unset; flex: 1 0 0px; height: 1px; width: 100%; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-1ldr4cx { gap: 24px; padding: 0px 24px 80px 24px; width: 100%; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-bvkrz6 { order: 1; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-lr6xil { order: 2; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-ard56d { order: 4; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-1tfq0mm-container { order: 3; }\",\".framer-WtVTZ.framer-v-1tvxp5i .framer-j7r8wc { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WtVTZ.framer-v-1tvxp5i.framer-id1ex3, .framer-WtVTZ.framer-v-1tvxp5i .framer-1ldr4cx { gap: 0px; } .framer-WtVTZ.framer-v-1tvxp5i.framer-id1ex3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-WtVTZ.framer-v-1tvxp5i.framer-id1ex3 > :first-child, .framer-WtVTZ.framer-v-1tvxp5i .framer-1ldr4cx > :first-child { margin-top: 0px; } .framer-WtVTZ.framer-v-1tvxp5i.framer-id1ex3 > :last-child, .framer-WtVTZ.framer-v-1tvxp5i .framer-1ldr4cx > :last-child { margin-bottom: 0px; } .framer-WtVTZ.framer-v-1tvxp5i .framer-1ldr4cx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1246.5\n * @framerIntrinsicWidth 1265\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"QUuHWARYD\":{\"layout\":[\"fixed\",\"auto\"]},\"jAtDM9OBf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gs6WrSkhT\":\"bioImage\",\"A8nXoA2uo\":\"authorName\",\"tEj344kWC\":\"authorBio\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLcENvMshl=withCSS(Component,css,\"framer-WtVTZ\");export default FramerLcENvMshl;FramerLcENvMshl.displayName=\"Author Bio\";FramerLcENvMshl.defaultProps={height:1246.5,width:1265};addPropertyControls(FramerLcENvMshl,{variant:{options:[\"sqsPTqQIJ\",\"QUuHWARYD\",\"jAtDM9OBf\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},gs6WrSkhT:{__defaultAssetReference:\"data:framer/asset-reference,XKuJuLZmxZpCAaEZcWaLRs5gqgU.jpeg?originalFilename=_TJL9608.jpeg&preferredSize=auto\",title:\"Bio Image \",type:ControlType.ResponsiveImage},A8nXoA2uo:{defaultValue:\"Tom L.\",displayTextArea:true,title:\"Author Name\",type:ControlType.String},tEj344kWC:{defaultValue:\"<p>From the first initial meeting right through to when you settle onto the sofa to relive your day in pictures, my goal is first and foremost to document your story from start to finish. I want to create memories that you and your families can look back on for years to come, and allow your personalities and your emotions to shine from those album pages. I want you to be able to remember exactly what you were laughing about, the feeling of your first kiss as a married couple, that surge of love during your first dance. I don\u2019t just take pictures; I capture the memory.</p><p>My approach to wedding photography is all about capturing authentic, candid moments with an artistic touch. Making people feel comfortable in front of the camera is one of my strengths, and it's something my clients appreciate, often returning with glowing testimonials.</p>\",title:\"Author Bio\",type:ControlType.RichText}});addFonts(FramerLcENvMshl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Mr De Haviland\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3H4ULVNTlB.woff2\",weight:\"400\"}]},...ButtonMainFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"RR9wIoYu8\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"RR9wIoYu8\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"xBus4l0Zp\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"xBus4l0Zp\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLcENvMshl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1246.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QUuHWARYD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jAtDM9OBf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gs6WrSkhT\\\":\\\"bioImage\\\",\\\"A8nXoA2uo\\\":\\\"authorName\\\",\\\"tEj344kWC\\\":\\\"authorBio\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1265\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={AG4WL3wqO:new LazyValue(()=>import(\"./Ho3QkS5Lr-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import DotLottiePlayer from\"https://framerusercontent.com/modules/smu5EVUYoHvicydS1jnz/DK5hreN5IVnhnNgvSXC6/DotLottieFramer.js\";import Navigation from\"#framer/local/canvasComponent/AmUIvkevf/AmUIvkevf.js\";import AuthorBio from\"#framer/local/canvasComponent/LcENvMshl/LcENvMshl.js\";import ButtonMain from\"#framer/local/canvasComponent/Sr9QmKfcV/Sr9QmKfcV.js\";import Footer from\"#framer/local/canvasComponent/vU96AJKvF/vU96AJKvF.js\";import*as sharedStyle from\"#framer/local/css/Ci8zYtGGE/Ci8zYtGGE.js\";import*as sharedStyle2 from\"#framer/local/css/jaztviBNQ/jaztviBNQ.js\";import*as sharedStyle4 from\"#framer/local/css/KeQf64BhG/KeQf64BhG.js\";import*as sharedStyle1 from\"#framer/local/css/sV3EasWdh/sV3EasWdh.js\";import*as sharedStyle3 from\"#framer/local/css/W8UfETycG/W8UfETycG.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/Ho3QkS5Lr/Ho3QkS5Lr.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ho3QkS5Lr/Ho3QkS5Lr.js\";const NavigationFonts=getFonts(Navigation);const AuthorBioFonts=getFonts(AuthorBio);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const DotLottiePlayerFonts=getFonts(DotLottiePlayer);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ButtonMainFonts=getFonts(ButtonMain);const FooterFonts=getFonts(Footer);const breakpoints={HvHvQFjwy:\"(min-width: 810px) and (max-width: 1199px)\",Pe1_G1ZqA:\"(max-width: 809px)\",vUi3J71Ck:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gSxnV\";const variantClassNames={HvHvQFjwy:\"framer-v-1l93p49\",Pe1_G1ZqA:\"framer-v-1y5sii4\",vUi3J71Ck:\"framer-v-1h0gra1\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition1={delay:.1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transition2={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const transition3={delay:.3,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={delay:.4,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:20};const transition5={delay:.5,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:20};const transition6={delay:.6,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:20};const transition7={delay:.7,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:20};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"vUi3J71Ck\",Phone:\"Pe1_G1ZqA\",Tablet:\"HvHvQFjwy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"vUi3J71Ck\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-gSxnV`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-gSxnV`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"HvHvQFjwy\",\"Pe1_G1ZqA\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Pe1_G1ZqA\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HvHvQFjwy\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vUi3J71Ck\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1h0gra1\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{width:\"846px\"},Pe1_G1ZqA:{height:85,width:\"calc(100vw + 30px)\",y:-.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nf0tkv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{variant:\"PJhVv9rM9\"},Pe1_G1ZqA:{style:{width:\"100%\"},variant:\"A0tIYTO2t\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"tsYpLbNtH\",layoutId:\"tsYpLbNtH\",style:{height:\"100%\",width:\"100%\"},variant:\"rKZBRkmZu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-t2qodr\",\"data-framer-name\":\"Title wrapper\",name:\"Title wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5nmzrt\",\"data-framer-name\":\"Title Wrapper\",name:\"Title Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ylybmx\",\"data-styles-preset\":\"Ci8zYtGGE\",children:\"ABOUT\"})}),className:\"framer-ukfklq\",\"data-framer-name\":\"Title 1\",fonts:[\"Inter\"],name:\"Title 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-10xhj9s\",\"data-styles-preset\":\"sV3EasWdh\",children:\"my story\"})}),className:\"framer-1xts9jo\",\"data-framer-name\":\"Title 2\",fonts:[\"Inter\"],name:\"Title 2\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pe1_G1ZqA:{height:1334,y:292.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1246,width:\"100vw\",y:326.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u8wdry-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{variant:\"QUuHWARYD\"},Pe1_G1ZqA:{style:{height:\"100%\",width:\"100%\"},variant:\"jAtDM9OBf\"}},children:/*#__PURE__*/_jsx(AuthorBio,{A8nXoA2uo:\"Tom L\",height:\"100%\",id:\"t5z9BXTIY\",layoutId:\"t5z9BXTIY\",style:{width:\"100%\"},tEj344kWC:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"From the first initial meeting right through to when you settle onto the sofa to relive your day in pictures, my goal is first and foremost to document your story from start to finish. I want to create memories that you and your families can look back on for years to come, and allow your personalities and your emotions to shine from those album pages. I want you to be able to remember exactly what you were laughing about, the feeling of your first kiss as a married couple, that surge of love during your first dance. I don\u2019t just take pictures; I capture the memory.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"My approach to wedding photography is all about capturing authentic, candid moments with an artistic touch. Making people feel comfortable in front of the camera is one of my strengths, and it's something my clients appreciate, often returning with glowing testimonials.\"})]}),variant:\"sqsPTqQIJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-tynxw1\",\"data-framer-name\":\"Slideshow Decor\",name:\"Slideshow Decor\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lrlqi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}},Pe1_G1ZqA:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:12,height:\"100%\",hoverFactor:.5,id:\"Li_8hJ2vz\",layoutId:\"Li_8hJ2vz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"married couple inside\",fit:\"fill\",pixelHeight:1520,pixelWidth:2279,sizes:\"409px\",src:\"https://framerusercontent.com/images/99YMh4bbdcuy625WSAvkpz4mLE.webp\",srcSet:\"https://framerusercontent.com/images/99YMh4bbdcuy625WSAvkpz4mLE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/99YMh4bbdcuy625WSAvkpz4mLE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/99YMh4bbdcuy625WSAvkpz4mLE.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/99YMh4bbdcuy625WSAvkpz4mLE.webp 2279w\"},className:\"framer-1cb8sqs\",\"data-framer-name\":\"F1\",name:\"F1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"married couple outdoor kissing\",fit:\"fill\",pixelHeight:1799,pixelWidth:1200,sizes:\"400px\",src:\"https://framerusercontent.com/images/PyXA0s4knsIHQVrMJzCRca04s.webp\",srcSet:\"https://framerusercontent.com/images/PyXA0s4knsIHQVrMJzCRca04s.webp?scale-down-to=1024 683w,https://framerusercontent.com/images/PyXA0s4knsIHQVrMJzCRca04s.webp 1200w\"},className:\"framer-88ezfc\",\"data-framer-name\":\"F2\",name:\"F2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"couple on beach\",fit:\"fill\",pixelHeight:1061,pixelWidth:1591,sizes:\"400px\",src:\"https://framerusercontent.com/images/PuiBEovBICCCZHI0lQSdwKfkEg.webp\",srcSet:\"https://framerusercontent.com/images/PuiBEovBICCCZHI0lQSdwKfkEg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PuiBEovBICCCZHI0lQSdwKfkEg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PuiBEovBICCCZHI0lQSdwKfkEg.webp 1591w\"},className:\"framer-1wfl1d2\",\"data-framer-name\":\"F4\",name:\"F4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"wedding ceremony couple smiling\",fit:\"fill\",pixelHeight:2545,pixelWidth:1697,sizes:\"400px\",src:\"https://framerusercontent.com/images/19nCDbjrPtfUsW5DrtKwFTCZtGs.webp\",srcSet:\"https://framerusercontent.com/images/19nCDbjrPtfUsW5DrtKwFTCZtGs.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/19nCDbjrPtfUsW5DrtKwFTCZtGs.webp?scale-down-to=2048 1365w,https://framerusercontent.com/images/19nCDbjrPtfUsW5DrtKwFTCZtGs.webp 1697w\"},className:\"framer-icc4pc\",\"data-framer-name\":\"F5\",name:\"F5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"married couple outdoor horse and guitar\",fit:\"fill\",pixelHeight:2783,pixelWidth:1856,positionX:\"56.4%\",positionY:\"74.9%\",sizes:\"400px\",src:\"https://framerusercontent.com/images/VRWddjADzdkkxfQLgV0vd0aj1o.webp\",srcSet:\"https://framerusercontent.com/images/VRWddjADzdkkxfQLgV0vd0aj1o.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/VRWddjADzdkkxfQLgV0vd0aj1o.webp?scale-down-to=2048 1365w,https://framerusercontent.com/images/VRWddjADzdkkxfQLgV0vd0aj1o.webp 1856w\"},className:\"framer-mwx47v\",\"data-framer-name\":\"F6\",name:\"F6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"bride groom kissing stairs\",fit:\"fill\",pixelHeight:5304,pixelWidth:7952,positionX:\"53.6%\",positionY:\"49.8%\",sizes:\"400px\",src:\"https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp\",srcSet:\"https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/Ad50qiHL509t2TW3iSnF2iaDQfc.webp 7952w\"},className:\"framer-1yplcch\",\"data-framer-name\":\"F3\",name:\"F3\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-10f5sw5\",\"data-framer-name\":\"Know me\",name:\"Know me\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxoz3l\",\"data-framer-name\":\"Know me Title Wrapper\",name:\"Know me Title Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pe1_G1ZqA:{children:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlYXQgVmliZXMtcmVndWxhcg==\",\"--framer-font-family\":'\"Great Vibes\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"A few more things\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue4=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlYXQgVmliZXMtcmVndWxhcg==\",\"--framer-font-family\":'\"Great Vibes\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"A few more things\"})}),className:\"framer-1f5egeq\",\"data-framer-name\":\"Title\",fonts:[\"GF;Great Vibes-regular\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qt7ywj-container\",children:/*#__PURE__*/_jsx(DotLottiePlayer,{autoplay:true,autoResizeCanvas:false,background:\"rgba(0, 0, 0, 0)\",devicePixelRatio:1,dprToggle:true,height:\"100%\",hover:false,id:\"XcN4Lri8v\",layoutId:\"XcN4Lri8v\",loop:true,marker:\"\",playMode:\"forward\",poster:0,posterToggle:true,progress:0,speed:1,srcTypeToggle:true,srcUrl:\"https://framerusercontent.com/assets/bDNypMt5znaZtIUCtd8A0vrSY.json\",style:{height:\"100%\",width:\"100%\"},useFrameInterpolation:true,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjuuvs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"lady outdoor with tattoo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3367.6),pixelHeight:956,pixelWidth:960,positionX:\"49.2%\",positionY:\"36.4%\",sizes:\"calc(max((100vw - 80px) / 2, 200px) * 2)\",src:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg\",srcSet:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg 960w\"}},Pe1_G1ZqA:{background:{alt:\"lady drinking wine\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3171.6),pixelHeight:956,pixelWidth:960,sizes:\"max(100vw - 48px, 193px)\",src:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg\",srcSet:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg 960w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"lady drinking wine\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2856.6),pixelHeight:956,pixelWidth:960,sizes:\"max((100vw - 140px) / 2, 200px)\",src:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg\",srcSet:\"https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GDCyo8XYkx8cradp5uC4z1xA.jpg 960w\"},className:\"framer-hvlme8\",\"data-framer-name\":\"C1R1\",name:\"C1R1\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pdv1xo\",\"data-framer-name\":\"C2R2\",name:\"C2R2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{children:(_getLocalizedValue5=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"One\"})})},Pe1_G1ZqA:{children:(_getLocalizedValue6=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"One\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"One\"})}),className:\"framer-yq5sem\",fonts:[\"GF;Cormorant SC-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w85shb\",\"data-framer-name\":\"Underline\",name:\"Underline\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xlmwx\",\"data-framer-name\":\"C2R2 Text Wrapper\",name:\"C2R2 Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pe1_G1ZqA:{children:(_getLocalizedValue8=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"I\u2019m Tom Lally, a creative soul with a passion for capturing the beauty of life\u2019s fleeting moments. I live with my fianc\\xe9e, Rachel, and our ginger cat, Pumpkin. Rachel has been my biggest supporter and occasional collaborator in my photography business. She\u2019s incredibly creative herself, recently launching her YouTube channel \u201CLofi Lounge & Caf\\xe9,\u201D where she combines her original music and spooky-cute animations. Our home is filled with laughter, love, and a shared passion for creativity, and I carry that energy into every wedding I photograph.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"I\u2019m Tom Lally, a creative soul with a passion for capturing the beauty of life\u2019s fleeting moments. I live with my fianc\\xe9e, Rachel, and our ginger cat, Pumpkin. Rachel has been my biggest supporter and occasional collaborator in my photography business. She\u2019s incredibly creative herself, recently launching her YouTube channel \u201CLofi Lounge & Caf\\xe9,\u201D where she combines her original music and spooky-cute animations. Our home is filled with laughter, love, and a shared passion for creativity, and I carry that energy into every wedding I photograph.\"})}),className:\"framer-gwmxxb\",fonts:[\"GF;Cormorant Garamond-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"tessa morgan lady on laptop\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4288.6),pixelHeight:4771,pixelWidth:3182,positionX:\"49.8%\",positionY:\"26.9%\",sizes:\"calc(max((100vw - 80px) / 2, 200px) * 2)\",src:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg\",srcSet:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=4096 2731w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg 3182w\"}},Pe1_G1ZqA:{background:{alt:\"cat in the box\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3885.6),pixelHeight:4771,pixelWidth:3182,positionX:\"49.3%\",positionY:\"31%\",sizes:\"max(100vw - 48px, 193px)\",src:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg\",srcSet:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=4096 2731w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg 3182w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"cat in the box\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3466.6),pixelHeight:4771,pixelWidth:3182,positionX:\"49.3%\",positionY:\"31%\",sizes:\"max((100vw - 140px) / 2, 200px)\",src:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg\",srcSet:\"https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg?scale-down-to=4096 2731w,https://framerusercontent.com/images/z25wFuAZe8l6UaKZnJljzFYAh0A.jpg 3182w\"},className:\"framer-16rx00e\",\"data-framer-name\":\"C1R2\",name:\"C1R2\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xka25z\",\"data-framer-name\":\"C2R2\",name:\"C2R2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{children:(_getLocalizedValue10=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Two\"})})},Pe1_G1ZqA:{children:(_getLocalizedValue11=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Two\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Two\"})}),className:\"framer-ijwbbq\",fonts:[\"GF;Cormorant SC-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8lae8f\",\"data-framer-name\":\"Underline\",name:\"Underline\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-57bknx\",\"data-framer-name\":\"C2R2 Text Wrapper\",name:\"C2R2 Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pe1_G1ZqA:{children:(_getLocalizedValue13=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"When I\u2019m not behind the camera, I enjoy soaking up knowledge, learning new things, and staying active. I have ADHD, which keeps me driven and curious. I spend a lot of time reading self-help and business books (or audiobooks) to better myself and my business. I also love to unwind by playing video games\u2014especially Nintendo classics like Mario\u2014or dancing to let loose. Fitness is important to me, so I\u2019m often at the gym or enjoying walks in nature, both of which keep my mind fresh and inspire my creativity.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue14=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"When I\u2019m not behind the camera, I enjoy soaking up knowledge, learning new things, and staying active. I have ADHD, which keeps me driven and curious. I spend a lot of time reading self-help and business books (or audiobooks) to better myself and my business. I also love to unwind by playing video games\u2014especially Nintendo classics like Mario\u2014or dancing to let loose. Fitness is important to me, so I\u2019m often at the gym or enjoying walks in nature, both of which keep my mind fresh and inspire my creativity.\"})}),className:\"framer-jf1thq\",fonts:[\"GF;Cormorant Garamond-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"photographer taking photos\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5165.6),pixelHeight:4789,pixelWidth:2911,positionX:\"49.8%\",positionY:\"26.9%\",sizes:\"calc(max((100vw - 80px) / 2, 200px) * 2)\",src:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg\",srcSet:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=1024 622w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=2048 1244w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=4096 2489w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg 2911w\"}},Pe1_G1ZqA:{background:{alt:\"photographer still\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4550.6),pixelHeight:4789,pixelWidth:2911,positionX:\"48.4%\",positionY:\"29.6%\",sizes:\"max(100vw - 48px, 193px)\",src:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg\",srcSet:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=1024 622w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=2048 1244w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=4096 2489w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg 2911w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"photographer still\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4076.6),pixelHeight:4789,pixelWidth:2911,positionX:\"48.4%\",positionY:\"29.6%\",sizes:\"max((100vw - 140px) / 2, 200px)\",src:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg\",srcSet:\"https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=1024 622w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=2048 1244w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg?scale-down-to=4096 2489w,https://framerusercontent.com/images/ydFpRPrKlgKMqOttkL18NeLLs.jpg 2911w\"},className:\"framer-1r1uqjj\",\"data-framer-name\":\"C2R2\",name:\"C2R2\"})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1be736n\",\"data-framer-name\":\"C2R2\",name:\"C2R2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{children:(_getLocalizedValue15=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Three\"})})},Pe1_G1ZqA:{children:(_getLocalizedValue16=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Three\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IFNDLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant SC\", \"Cormorant SC Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(187, 160, 133)\"},children:\"Three\"})}),className:\"framer-1l5go13\",fonts:[\"GF;Cormorant SC-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yv5wr9\",\"data-framer-name\":\"Underline\",name:\"Underline\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4zyyya\",\"data-framer-name\":\"C2R2 Text Wrapper\",name:\"C2R2 Text Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{children:(_getLocalizedValue18=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"Much like Rachel\u2019s love for creating, I find joy in the process of exploring new ideas and experimenting with my craft. My photography is influenced by everything I do, from the games I play to the new skills I pick up through reading and life experience. I strive to bring a fresh perspective and personal touch to every wedding I capture, always seeking to make each couple\u2019s special day uniquely their own. My creative flow doesn\u2019t stop when I\u2019m off duty\u2014whether I\u2019m gaming, reading, or simply spending time with Pumpkin and Rachel, my mind is always working on the next beautiful moment to capture.\"})})},Pe1_G1ZqA:{children:(_getLocalizedValue19=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"Much like Rachel\u2019s love for creating, I find joy in the process of exploring new ideas and experimenting with my craft. My photography is influenced by everything I do, from the games I play to the new skills I pick up through reading and life experience. I strive to bring a fresh perspective and personal touch to every wedding I capture, always seeking to make each couple\u2019s special day uniquely their own. My creative flow doesn\u2019t stop when I\u2019m off duty\u2014whether I\u2019m gaming, reading, or simply spending time with Pumpkin and Rachel, my mind is always working on the next beautiful moment to capture.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q29ybW9yYW50IEdhcmFtb25kLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cormorant Garamond\", \"Cormorant Garamond Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(31, 31, 31)\"},children:\"Much like Rachel\u2019s love for creating, I find joy in the process of exploring new ideas and experimenting with my craft. My photography is influenced by everything I do, from the games I play to the new skills I pick up through reading and life experience. I strive to bring a fresh perspective and personal touch to every wedding I capture, always seeking to make each couple\u2019s special day uniquely their own. My creative flow doesn\u2019t stop when I\u2019m off duty\u2014whether I\u2019m gaming, reading, or simply spending time with Pumpkin and Rachel, my mind is always working on the next beautiful moment to capture.\"})}),className:\"framer-cbi14\",fonts:[\"GF;Cormorant Garamond-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1h1djja\",\"data-framer-name\":\"Marketing message\",name:\"Marketing message\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"flower decor\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5741.6),pixelHeight:120,pixelWidth:300,src:\"https://framerusercontent.com/images/34DZhOrYtU2P1Yx2xuXW3z8xUQ.svg\"}},Pe1_G1ZqA:{background:{alt:\"flower decor\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5004.6),pixelHeight:120,pixelWidth:300,src:\"https://framerusercontent.com/images/34DZhOrYtU2P1Yx2xuXW3z8xUQ.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"flower decor\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4865.200000000001),pixelHeight:120,pixelWidth:300,src:\"https://framerusercontent.com/images/34DZhOrYtU2P1Yx2xuXW3z8xUQ.svg\"},className:\"framer-xdxo3h\",\"data-framer-name\":\"Marketing section decor\",name:\"Marketing section decor\",style:{rotate:-8}})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue21=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1clh3v0\",\"data-styles-preset\":\"jaztviBNQ\",children:'\"I\u2019m dedicated to capturing every unforgettable moment of your big day with stunning, high-quality wedding photos that you\u2019ll cherish for a lifetime.\"'})}),className:\"framer-1ogf0ic\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9ngcvk\",\"data-framer-name\":\"Marketing\",name:\"Marketing\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c9gsms\",\"data-framer-name\":\"Marketing LHS \",name:\"Marketing LHS \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue22=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ylybmx\",\"data-styles-preset\":\"Ci8zYtGGE\",style:{\"--framer-text-alignment\":\"left\"},children:\"CRAFTING MEMORIES\"})}),className:\"framer-1anxyb6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue23=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vxawys\",\"data-styles-preset\":\"W8UfETycG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Your Story, My Lens\"})}),className:\"framer-14qzgzw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue24=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kuo55a\",\"data-styles-preset\":\"KeQf64BhG\",style:{\"--framer-text-alignment\":\"left\"},children:\"From the first glance to the final dance, my goal is to encapsulate the essence of your love story in every shot, ensuring that your wedding album is a beautiful reflection of your unique journey together. Let\u2019s work together to make your dream wedding an everlasting legacy. \"})}),className:\"framer-1uiwp8y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WDjXRmTo9\"},implicitPathVariables:undefined},{href:{webPageId:\"WDjXRmTo9\"},implicitPathVariables:undefined},{href:{webPageId:\"WDjXRmTo9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{y:6430.300000000001},Pe1_G1ZqA:{y:5535.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,y:5634.500000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mqzkzp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{ZYIxNwPfq:resolvedLinks[1]},Pe1_G1ZqA:{ZYIxNwPfq:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonMain,{height:\"100%\",id:\"U_ds0Huf4\",layoutId:\"U_ds0Huf4\",width:\"100%\",WsqqEKnU5:(_getLocalizedValue=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"View Services\",ZYIxNwPfq:resolvedLinks[0]})})})})});}})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7ep9o hidden-1l93p49 hidden-1y5sii4\",\"data-framer-name\":\"Fill\",name:\"Fill\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13uyi15 hidden-1l93p49 hidden-1y5sii4\",\"data-framer-name\":\"Space\",name:\"Space\"}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\"},className:\"framer-cnlvmu hidden-1y5sii4\",\"data-framer-name\":\"RHS Photo Wrapper 1\",name:\"RHS Photo Wrapper 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"couple kissing\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6110.400000000001),pixelHeight:3086,pixelWidth:2059,sizes:\"max(((100vw - 80px) * 0.6 - 48px) / 2, 1px)\",src:\"https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg\",srcSet:\"https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg 2059w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"couple kissing\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5181.6),pixelHeight:3086,pixelWidth:2059,sizes:\"calc((100vw - 80px) * 0.24)\",src:\"https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg\",srcSet:\"https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/j9WELRTZVOY6WXz0eeTHdT0mw.jpg 2059w\"},className:\"framer-bzvtvh\",\"data-framer-name\":\"RHS Photo 1\",name:\"RHS Photo 1\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1czoire hidden-1y5sii4\",\"data-framer-name\":\"Fill\",name:\"Fill\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qm9mph hidden-1h0gra1 hidden-1y5sii4\",\"data-framer-name\":\"Fill\",name:\"Fill\"}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fg5jl4 hidden-1y5sii4\",\"data-framer-name\":\"RHS Photo Wrapper 2\",name:\"RHS Photo Wrapper 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{background:{alt:\"couple kissing on stairs\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6227.400000000001),pixelHeight:1600,pixelWidth:1067,sizes:\"189px\",src:\"https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg\",srcSet:\"https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg 1067w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"couple kissing on stairs\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5368.6),pixelHeight:1600,pixelWidth:1067,sizes:\"calc((100vw - 80px) * 0.24)\",src:\"https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg\",srcSet:\"https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/QirZYqOEO48BXaLLNSHwEoKv2Sg.jpg 1067w\"},className:\"framer-19hp8sa\",\"data-framer-name\":\"RHS Photo 2\",name:\"RHS Photo 2\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{y:6744.400000000001},Pe1_G1ZqA:{y:5694.200000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:380,width:\"100vw\",y:5948.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hbu6x5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HvHvQFjwy:{variant:\"t1EHIByfI\"},Pe1_G1ZqA:{variant:\"GK9Is4waJ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KH7SnPs4M\",layoutId:\"KH7SnPs4M\",style:{width:\"100%\"},variant:\"voysCStbF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-gSxnV { background: rgb(242, 242, 242); }`,\".framer-gSxnV.framer-c1mc66, .framer-gSxnV .framer-c1mc66 { display: block; }\",\".framer-gSxnV.framer-1h0gra1 { align-content: center; align-items: center; background-color: #f2f2f2; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gSxnV .framer-nf0tkv-container { flex: none; height: 90px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-gSxnV .framer-t2qodr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-5nmzrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-ukfklq, .framer-gSxnV .framer-yq5sem, .framer-gSxnV .framer-ijwbbq, .framer-gSxnV .framer-1l5go13 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gSxnV .framer-1xts9jo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gSxnV .framer-1u8wdry-container, .framer-gSxnV .framer-hbu6x5-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gSxnV .framer-tynxw1 { align-content: center; align-items: center; background-color: #f0ede6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-1lrlqi-container { flex: none; height: 440px; position: relative; width: 100%; z-index: 1; }\",\".framer-gSxnV .framer-1cb8sqs { height: 600px; position: relative; width: 409px; }\",\".framer-gSxnV .framer-88ezfc, .framer-gSxnV .framer-1wfl1d2, .framer-gSxnV .framer-icc4pc, .framer-gSxnV .framer-mwx47v, .framer-gSxnV .framer-1yplcch { height: 600px; position: relative; width: 400px; }\",\".framer-gSxnV .framer-10f5sw5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 70px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-1hxoz3l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-1f5egeq, .framer-gSxnV .framer-1anxyb6, .framer-gSxnV .framer-14qzgzw, .framer-gSxnV .framer-1uiwp8y { --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-gSxnV .framer-1qt7ywj-container { flex: none; height: 146px; position: relative; width: 431px; }\",\".framer-gSxnV .framer-1xjuuvs { display: grid; flex: none; gap: 60px; grid-auto-rows: 245px; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, 245px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-hvlme8, .framer-gSxnV .framer-16rx00e, .framer-gSxnV .framer-1r1uqjj { align-self: start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; grid-row: auto / span 2; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gSxnV .framer-pdv1xo, .framer-gSxnV .framer-1be736n { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; grid-row: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-1w85shb, .framer-gSxnV .framer-8lae8f, .framer-gSxnV .framer-1yv5wr9 { background-color: #bba085; flex: none; height: 1px; overflow: hidden; position: relative; width: 160px; }\",\".framer-gSxnV .framer-xlmwx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-gwmxxb, .framer-gSxnV .framer-jf1thq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gSxnV .framer-1xka25z { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; grid-row: auto / span 2; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-57bknx, .framer-gSxnV .framer-4zyyya { 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; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-cbi14 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 506px; word-break: break-word; word-wrap: break-word; }\",\".framer-gSxnV .framer-1h1djja { align-content: center; align-items: center; background-color: #f0ede6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 375px; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-xdxo3h { aspect-ratio: 2.679525222551929 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: hidden; position: relative; width: 119px; }\",\".framer-gSxnV .framer-1ogf0ic { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gSxnV .framer-9ngcvk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-gSxnV .framer-1c9gsms { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-gSxnV .framer-mqzkzp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gSxnV .framer-1f7ep9o, .framer-gSxnV .framer-1czoire, .framer-gSxnV .framer-qm9mph { flex: none; height: 687px; overflow: hidden; position: relative; width: 24px; }\",\".framer-gSxnV .framer-13uyi15 { flex: 1 0 0px; height: 687px; overflow: hidden; position: relative; width: 1px; }\",\".framer-gSxnV .framer-cnlvmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 687px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 24%; }\",\".framer-gSxnV .framer-bzvtvh, .framer-gSxnV .framer-19hp8sa { flex: none; height: 500px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gSxnV .framer-fg5jl4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 687px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 24%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gSxnV.framer-1h0gra1, .framer-gSxnV .framer-t2qodr, .framer-gSxnV .framer-5nmzrt, .framer-gSxnV .framer-tynxw1, .framer-gSxnV .framer-10f5sw5, .framer-gSxnV .framer-1hxoz3l, .framer-gSxnV .framer-pdv1xo, .framer-gSxnV .framer-xlmwx, .framer-gSxnV .framer-1xka25z, .framer-gSxnV .framer-57bknx, .framer-gSxnV .framer-1be736n, .framer-gSxnV .framer-4zyyya, .framer-gSxnV .framer-1h1djja, .framer-gSxnV .framer-9ngcvk, .framer-gSxnV .framer-1c9gsms, .framer-gSxnV .framer-cnlvmu, .framer-gSxnV .framer-fg5jl4 { gap: 0px; } .framer-gSxnV.framer-1h0gra1 > *, .framer-gSxnV .framer-t2qodr > *, .framer-gSxnV .framer-5nmzrt > *, .framer-gSxnV .framer-tynxw1 > *, .framer-gSxnV .framer-1hxoz3l > *, .framer-gSxnV .framer-cnlvmu > *, .framer-gSxnV .framer-fg5jl4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gSxnV.framer-1h0gra1 > :first-child, .framer-gSxnV .framer-t2qodr > :first-child, .framer-gSxnV .framer-5nmzrt > :first-child, .framer-gSxnV .framer-tynxw1 > :first-child, .framer-gSxnV .framer-10f5sw5 > :first-child, .framer-gSxnV .framer-1hxoz3l > :first-child, .framer-gSxnV .framer-pdv1xo > :first-child, .framer-gSxnV .framer-1xka25z > :first-child, .framer-gSxnV .framer-1be736n > :first-child, .framer-gSxnV .framer-1h1djja > :first-child, .framer-gSxnV .framer-1c9gsms > :first-child, .framer-gSxnV .framer-cnlvmu > :first-child, .framer-gSxnV .framer-fg5jl4 > :first-child { margin-top: 0px; } .framer-gSxnV.framer-1h0gra1 > :last-child, .framer-gSxnV .framer-t2qodr > :last-child, .framer-gSxnV .framer-5nmzrt > :last-child, .framer-gSxnV .framer-tynxw1 > :last-child, .framer-gSxnV .framer-10f5sw5 > :last-child, .framer-gSxnV .framer-1hxoz3l > :last-child, .framer-gSxnV .framer-pdv1xo > :last-child, .framer-gSxnV .framer-1xka25z > :last-child, .framer-gSxnV .framer-1be736n > :last-child, .framer-gSxnV .framer-1h1djja > :last-child, .framer-gSxnV .framer-1c9gsms > :last-child, .framer-gSxnV .framer-cnlvmu > :last-child, .framer-gSxnV .framer-fg5jl4 > :last-child { margin-bottom: 0px; } .framer-gSxnV .framer-10f5sw5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-gSxnV .framer-pdv1xo > *, .framer-gSxnV .framer-1xka25z > *, .framer-gSxnV .framer-1be736n > *, .framer-gSxnV .framer-1h1djja > *, .framer-gSxnV .framer-1c9gsms > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-gSxnV .framer-xlmwx > *, .framer-gSxnV .framer-9ngcvk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gSxnV .framer-xlmwx > :first-child, .framer-gSxnV .framer-57bknx > :first-child, .framer-gSxnV .framer-4zyyya > :first-child, .framer-gSxnV .framer-9ngcvk > :first-child { margin-left: 0px; } .framer-gSxnV .framer-xlmwx > :last-child, .framer-gSxnV .framer-57bknx > :last-child, .framer-gSxnV .framer-4zyyya > :last-child, .framer-gSxnV .framer-9ngcvk > :last-child { margin-right: 0px; } .framer-gSxnV .framer-57bknx > *, .framer-gSxnV .framer-4zyyya > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-gSxnV { background: rgb(242, 242, 242); } .framer-gSxnV.framer-1h0gra1 { width: 810px; } .framer-gSxnV .framer-nf0tkv-container { order: 0; width: 846px; } .framer-gSxnV .framer-t2qodr, .framer-gSxnV .framer-1yv5wr9, .framer-gSxnV .framer-qm9mph { order: 1; } .framer-gSxnV .framer-1u8wdry-container { order: 2; } .framer-gSxnV .framer-tynxw1 { max-width: 1440px; order: 3; } .framer-gSxnV .framer-1lrlqi-container { max-width: 1440px; } .framer-gSxnV .framer-10f5sw5 { flex-wrap: wrap; gap: 0px; order: 4; padding: 80px 40px 130px 40px; } .framer-gSxnV .framer-1hxoz3l { order: 0; padding: 0px; } .framer-gSxnV .framer-1xjuuvs { gap: 0px; grid-auto-rows: min-content; grid-template-rows: repeat(3, min-content); order: 1; } .framer-gSxnV .framer-hvlme8 { grid-column: auto / span 2; height: 366px; order: 1; } .framer-gSxnV .framer-pdv1xo { align-content: center; align-items: center; grid-column: auto / span 2; height: min-content; justify-self: center; order: 0; padding: 40px 0px 40px 0px; } .framer-gSxnV .framer-yq5sem, .framer-gSxnV .framer-ijwbbq { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gSxnV .framer-xlmwx { justify-content: center; } .framer-gSxnV .framer-16rx00e { grid-column: auto / span 2; height: 366px; order: 3; } .framer-gSxnV .framer-1xka25z { align-content: center; align-items: center; grid-column: auto / span 2; justify-self: center; order: 2; padding: 37px 0px 37px 0px; } .framer-gSxnV .framer-1r1uqjj { grid-column: auto / span 2; height: 366px; order: 5; } .framer-gSxnV .framer-1be736n { align-content: center; align-items: center; align-self: center; gap: 0px; grid-column: auto / span 2; height: min-content; justify-self: center; order: 4; } .framer-gSxnV .framer-1l5go13 { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gSxnV .framer-4zyyya { order: 2; padding: 34px 12px 34px 12px; } .framer-gSxnV .framer-cbi14 { flex: 1 0 0px; width: 1px; } .framer-gSxnV .framer-1h1djja { gap: 0px; height: min-content; max-width: 1440px; order: 5; padding: 80px 40px 80px 40px; } .framer-gSxnV .framer-xdxo3h { height: var(--framer-aspect-ratio-supported, 35px); width: 95px; } .framer-gSxnV .framer-1ogf0ic { max-width: 600px; } .framer-gSxnV .framer-9ngcvk { order: 6; } .framer-gSxnV .framer-1c9gsms { order: 0; width: 40%; } .framer-gSxnV .framer-1anxyb6, .framer-gSxnV .framer-14qzgzw { white-space: pre; width: auto; } .framer-gSxnV .framer-1uiwp8y { max-width: 480px; } .framer-gSxnV .framer-cnlvmu { flex: 1 0 0px; height: 421px; justify-content: center; order: 2; width: 1px; } .framer-gSxnV .framer-bzvtvh { flex: 1 0 0px; height: 1px; } .framer-gSxnV .framer-1czoire { order: 5; } .framer-gSxnV .framer-fg5jl4 { align-self: stretch; display: block; flex: 1 0 0px; height: auto; order: 7; padding: unset; width: 1px; } .framer-gSxnV .framer-19hp8sa { bottom: 0px; height: 437px; left: calc(49.735449735449755% - 189px / 2); position: absolute; width: 189px; } .framer-gSxnV .framer-hbu6x5-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gSxnV .framer-10f5sw5, .framer-gSxnV .framer-1xjuuvs, .framer-gSxnV .framer-1be736n, .framer-gSxnV .framer-1h1djja, .framer-gSxnV .framer-fg5jl4 { gap: 0px; } .framer-gSxnV .framer-10f5sw5 > *, .framer-gSxnV .framer-1be736n > *, .framer-gSxnV .framer-1h1djja > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gSxnV .framer-10f5sw5 > :first-child, .framer-gSxnV .framer-1be736n > :first-child, .framer-gSxnV .framer-1h1djja > :first-child { margin-top: 0px; } .framer-gSxnV .framer-10f5sw5 > :last-child, .framer-gSxnV .framer-1be736n > :last-child, .framer-gSxnV .framer-1h1djja > :last-child { margin-bottom: 0px; } .framer-gSxnV .framer-1xjuuvs > *, .framer-gSxnV .framer-1xjuuvs > :first-child, .framer-gSxnV .framer-1xjuuvs > :last-child, .framer-gSxnV .framer-fg5jl4 > *, .framer-gSxnV .framer-fg5jl4 > :first-child, .framer-gSxnV .framer-fg5jl4 > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-gSxnV { background: rgb(255, 255, 255); } .framer-gSxnV.framer-1h0gra1 { background-color: #ffffff; padding: 72px 0px 0px 0px; width: 390px; } .framer-gSxnV .framer-nf0tkv-container { height: auto; left: -15px; position: absolute; right: -15px; top: 0px; width: unset; } .framer-gSxnV .framer-t2qodr, .framer-gSxnV .framer-1hxoz3l { padding: 0px; } .framer-gSxnV .framer-5nmzrt { padding: 84px 24px 40px 24px; } .framer-gSxnV .framer-1xts9jo { width: auto; } .framer-gSxnV .framer-1u8wdry-container { height: 1334px; } .framer-gSxnV .framer-tynxw1 { flex-direction: row; } .framer-gSxnV .framer-1lrlqi-container { flex: 1 0 0px; height: 560px; width: 1px; } .framer-gSxnV .framer-10f5sw5 { padding: 70px 24px 100px 24px; } .framer-gSxnV .framer-1qt7ywj-container { height: 104px; width: 321px; } .framer-gSxnV .framer-1xjuuvs { gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(193px, 1fr)); grid-template-rows: repeat(6, min-content); } .framer-gSxnV .framer-hvlme8 { align-self: center; height: 329px; justify-self: center; order: 1; } .framer-gSxnV .framer-pdv1xo { grid-column: auto / span 1; height: min-content; justify-self: center; order: 0; padding: 0px 12px 12px 12px; } .framer-gSxnV .framer-yq5sem { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gSxnV .framer-1w85shb, .framer-gSxnV .framer-14qzgzw { order: 1; } .framer-gSxnV .framer-xlmwx { order: 2; padding: 0px 0px 12px 0px; } .framer-gSxnV .framer-16rx00e { align-self: center; height: 280px; justify-self: center; order: 3; } .framer-gSxnV .framer-1xka25z { order: 2; padding: 12px; } .framer-gSxnV .framer-ijwbbq, .framer-gSxnV .framer-1l5go13 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gSxnV .framer-57bknx, .framer-gSxnV .framer-4zyyya { padding: 0px 0px 12px 0px; } .framer-gSxnV .framer-1r1uqjj { align-self: center; height: 274px; justify-self: center; order: 5; } .framer-gSxnV .framer-1be736n { height: min-content; justify-self: center; order: 4; padding: 12px; } .framer-gSxnV .framer-cbi14 { flex: 1 0 0px; width: 1px; } .framer-gSxnV .framer-1h1djja { gap: 0px; height: min-content; padding: 80px 24px 80px 24px; } .framer-gSxnV .framer-xdxo3h { height: var(--framer-aspect-ratio-supported, 32px); width: 86px; } .framer-gSxnV .framer-9ngcvk { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; padding: 80px 24px 80px 24px; } .framer-gSxnV .framer-1c9gsms { order: 0; width: 100%; } .framer-gSxnV .framer-1anxyb6 { order: 0; } .framer-gSxnV .framer-1uiwp8y { order: 2; } .framer-gSxnV .framer-mqzkzp-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gSxnV .framer-tynxw1, .framer-gSxnV .framer-1xjuuvs, .framer-gSxnV .framer-1h1djja, .framer-gSxnV .framer-9ngcvk { gap: 0px; } .framer-gSxnV .framer-tynxw1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gSxnV .framer-tynxw1 > :first-child { margin-left: 0px; } .framer-gSxnV .framer-tynxw1 > :last-child { margin-right: 0px; } .framer-gSxnV .framer-1xjuuvs > *, .framer-gSxnV .framer-1xjuuvs > :first-child, .framer-gSxnV .framer-1xjuuvs > :last-child { margin: 0px; } .framer-gSxnV .framer-1h1djja > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gSxnV .framer-1h1djja > :first-child, .framer-gSxnV .framer-9ngcvk > :first-child { margin-top: 0px; } .framer-gSxnV .framer-1h1djja > :last-child, .framer-gSxnV .framer-9ngcvk > :last-child { margin-bottom: 0px; } .framer-gSxnV .framer-9ngcvk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6003\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HvHvQFjwy\":{\"layout\":[\"fixed\",\"auto\"]},\"Pe1_G1ZqA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerHo3QkS5Lr=withCSS(Component,css,\"framer-gSxnV\");export default FramerHo3QkS5Lr;FramerHo3QkS5Lr.displayName=\"Page\";FramerHo3QkS5Lr.defaultProps={height:6003,width:1200};addFonts(FramerHo3QkS5Lr,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Great Vibes\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/greatvibes/v19/RWmMoKWR9v4ksMfaWd_JN-XHg6UKDXlq.woff2\",weight:\"400\"},{family:\"Cormorant SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwseqTow9Tbu-Q.woff2\",weight:\"400\"},{family:\"Cormorant Garamond\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjoq3FLsS6V7w.woff2\",weight:\"400\"}]},...NavigationFonts,...AuthorBioFonts,...TickerFonts,...DotLottiePlayerFonts,...ButtonMainFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHo3QkS5Lr\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6003\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HvHvQFjwy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pe1_G1ZqA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "fontStore", "fonts", "css", "className", "LcENvMshl_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "v1", "__FramerMetadata__", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "ImageWithFX", "withFX", "Image2", "ButtonMainFonts", "getFonts", "Sr9QmKfcV_default", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "LcENvMshl_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "authorBio", "authorName", "bioImage", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "u", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gs6WrSkhT", "A8nXoA2uo", "tEj344kWC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "LayoutGroup", "cx", "getLoadingLazyAtYPosition", "ComponentPresetsProvider", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerLcENvMshl", "withCSS", "LcENvMshl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "AmUIvkevf_default", "AuthorBioFonts", "LcENvMshl_default", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "RichText2", "DotLottiePlayerFonts", "DotLottiePlayer", "ImageWithFX", "Image2", "MotionDivWithFX", "motion", "ButtonMainFonts", "Sr9QmKfcV_default", "FooterFonts", "vU96AJKvF_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLocalizedValue", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "css", "FramerHo3QkS5Lr", "withCSS", "Ho3QkS5Lr_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
