{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/5iVhojCo17A7sAu0ue9z/C2y0irNf7hRmU1AVIALB/Hover3D_Prod.js", "ssg:https://framerusercontent.com/modules/AAxCMmx0lD0jJ5g7DG9x/Ma2ACLFxlPr5Nev1Rdu4/EJd1sWwqe.js", "ssg:https://framerusercontent.com/modules/bwL9jclZsfA1wLebP50A/b9atb9oXezjev3h0OUlJ/OJV791HzC.js", "ssg:https://framerusercontent.com/modules/ZrwgitdApofPMUtTDOEO/kuP8Gl2meKmmGroDbygf/sAqRQhxgw.js", "ssg:https://framerusercontent.com/modules/77XBtNBB4bElDsh690vb/OhM5aeuVy5ESXKvwT0uS/RoVygG1pE.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useMotionValue}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function Hover3D(props){const ref=React.useRef(null);const rotateX=useMotionValue(0);const rotateY=useMotionValue(0);React.useEffect(()=>{if(ref.current){ref.current.style.transform=`perspective(${props.perspective}px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1)`;}},[props.perspective]);function debounce(func,wait){let timeout;return function executedFunction(...args){const later=()=>{clearTimeout(timeout);func(...args);};clearTimeout(timeout);timeout=setTimeout(later,wait);};}const handleMouseMove=React.useCallback(debounce(e=>{const{width,height,top,left}=ref.current.getBoundingClientRect();const multiplier=props.effect===\"evade\"?-1:1;const tiltX=((e.clientY-top)/height-.5)*(props.tiltLimit*2)*multiplier;const tiltY=((e.clientX-left)/width-.5)*-(props.tiltLimit*2)*multiplier;rotateX.set(tiltX);rotateY.set(tiltY);ref.current.style.transform=`perspective(${props.perspective}px) rotateX(${tiltX}deg) rotateY(${tiltY}deg) scale3d(${props.scale}, ${props.scale}, ${props.scale})`;},2),[props.tiltLimit,props.scale,props.perspective,props.effect]);const handleMouseLeave=()=>{if(ref.current){rotateX.set(0);rotateY.set(0);ref.current.style.transform=`perspective(${props.perspective}px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1)`;}};if(React.Children.count(props.children)===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Connect a frame to the component.\",containerStyle:{...props.style,width:\"400px\",height:\"200px\"}});}return /*#__PURE__*/_jsx(\"div\",{ref:ref,onMouseMove:handleMouseMove,onMouseLeave:handleMouseLeave,style:{width:\"100%\",height:\"100%\",transition:\"transform 0.2s ease-out\",position:\"relative\",overflow:\"visible\",borderRadius:props.borderRadius,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",willChange:\"transform\"},children:props.children});}Hover3D.displayName=\"3D Hover\";Hover3D.defaultProps={tiltLimit:15,effect:\"evade\",scale:1.1,perspective:500,borderRadius:0};addPropertyControls(Hover3D,{children:{type:ControlType.ComponentInstance,title:\"Frame\"},effect:{type:ControlType.Enum,title:\"Effect\",options:[\"gravitate\",\"evade\"],optionTitles:[\"Gravitate\",\"Evade\"],defaultValue:\"evade\",displaySegmentedControl:true},tiltLimit:{type:ControlType.Number,title:\"Tilt Limit\",min:1,max:100,step:1,defaultValue:15,displayStepper:true},scale:{type:ControlType.Number,title:\"Scale\",min:1,max:10,step:.1,defaultValue:1.1,displayStepper:true},perspective:{type:ControlType.Number,title:\"Perspective\",min:500,max:5e3,step:10,defaultValue:500},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:1e3,step:1,defaultValue:0,displayStepper:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Hover3D\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hover3D_Prod.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-YZ4zl\";const variantClassNames={x1oAsJbVR:\"framer-v-at35x7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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 getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"x1oAsJbVR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-at35x7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"x1oAsJbVR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:80,borderBottomRightRadius:80,borderTopLeftRadius:80,borderTopRightRadius:80,WebkitBackdropFilter:\"blur(10px)\",...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.17))\"},children:\"FLIP\"})}),className:\"framer-1owuyu6\",fonts:[\"Inter-Black\"],layoutDependency:layoutDependency,layoutId:\"LSGqEZw8Z\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.17)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YZ4zl.framer-1x1gv9m, .framer-YZ4zl .framer-1x1gv9m { display: block; }\",\".framer-YZ4zl.framer-at35x7 { height: 64px; overflow: hidden; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YZ4zl .framer-1owuyu6 { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 64\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEJd1sWwqe=withCSS(Component,css,\"framer-YZ4zl\");export default FramerEJd1sWwqe;FramerEJd1sWwqe.displayName=\"Mouseeee\";FramerEJd1sWwqe.defaultProps={height:64,width:64};addFonts(FramerEJd1sWwqe,[{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEJd1sWwqe\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerIntrinsicWidth\":\"64\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EJd1sWwqe.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"TS8nN1V3u\",\"g23DJORI_\"];const serializationHash=\"framer-yGt8c\";const variantClassNames={g23DJORI_:\"framer-v-1gxymxx\",TS8nN1V3u:\"framer-v-1k4zwim\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Back:\"g23DJORI_\",Front:\"TS8nN1V3u\"};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:\"TS8nN1V3u\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TS8nN1V3u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapz71li4=activeVariantCallback(async(...args)=>{setVariant(\"g23DJORI_\");});const onTap1e5hvbp=activeVariantCallback(async(...args)=>{setVariant(\"TS8nN1V3u\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"g23DJORI_\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"g23DJORI_\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k4zwim\",className,classNames),\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"TS8nN1V3u\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({g23DJORI_:{\"data-framer-name\":\"Back\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1365,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||330)-0-330)/2)),pixelHeight:2048,pixelWidth:1365,sizes:\"220px\",src:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg\",srcSet:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg 1365w\"},className:\"framer-1i99p61\",\"data-framer-name\":\"Front\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gqTNje8xe\",onTap:onTapz71li4,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1350,pixelHeight:1800,pixelWidth:2700,src:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png 2700w\"},className:\"framer-1gb9jb0\",\"data-framer-name\":\"Back\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Nkzj1zJiT\",onTap:onTap1e5hvbp,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({g23DJORI_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1350,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||220)-0-220)/2)),pixelHeight:1800,pixelWidth:2700,sizes:\"330px\",src:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png 2700w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yGt8c.framer-16jsc1p, .framer-yGt8c .framer-16jsc1p { display: block; }\",\".framer-yGt8c.framer-1k4zwim { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-yGt8c .framer-1i99p61 { aspect-ratio: 0.66650390625 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 330px); overflow: visible; position: relative; width: 220px; }\",\".framer-yGt8c .framer-1gb9jb0 { aspect-ratio: 1.5 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 220px); overflow: visible; position: relative; width: 330px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yGt8c.framer-1k4zwim { gap: 0px; } .framer-yGt8c.framer-1k4zwim > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yGt8c.framer-1k4zwim > :first-child { margin-left: 0px; } .framer-yGt8c.framer-1k4zwim > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 330\n * @framerIntrinsicWidth 220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"g23DJORI_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOJV791HzC=withCSS(Component,css,\"framer-yGt8c\");export default FramerOJV791HzC;FramerOJV791HzC.displayName=\"Small Mobile card\";FramerOJV791HzC.defaultProps={height:330,width:220};addPropertyControls(FramerOJV791HzC,{variant:{options:[\"TS8nN1V3u\",\"g23DJORI_\"],optionTitles:[\"Front\",\"Back\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOJV791HzC,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOJV791HzC\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"330\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g23DJORI_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"220\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OJV791HzC.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"cpoPK4ARl\",\"c4o3hdzk7\",\"eNxiMBis_\",\"LX6LJDha3\"];const serializationHash=\"framer-GgiLk\";const variantClassNames={c4o3hdzk7:\"framer-v-5h6j5b\",cpoPK4ARl:\"framer-v-61em5r\",eNxiMBis_:\"framer-v-vuly1i\",LX6LJDha3:\"framer-v-rddb2e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Card - Back\":\"c4o3hdzk7\",\"Card - Front\":\"cpoPK4ARl\",\"Small - Card Front\":\"eNxiMBis_\",\"Small Card - Back\":\"LX6LJDha3\"};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:\"cpoPK4ARl\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cpoPK4ARl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19zykud=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"c4o3hdzk7\");});const onTapmryten=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"cpoPK4ARl\");});const onTapqy49y4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"eNxiMBis_\");});const onTapStart1cof1qx=activeVariantCallback(async(...args)=>{setVariant(\"LX6LJDha3\");});const onTapjoqjoc=activeVariantCallback(async(...args)=>{setVariant(\"eNxiMBis_\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"c4o3hdzk7\",\"LX6LJDha3\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"c4o3hdzk7\",\"LX6LJDha3\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-61em5r\",className,classNames),\"data-framer-name\":\"Card - Front\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cpoPK4ARl\",onTap:onTap19zykud,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({c4o3hdzk7:{\"data-framer-name\":\"Card - Back\",onTap:onTapmryten},eNxiMBis_:{\"data-framer-name\":\"Small - Card Front\",\"data-highlight\":undefined,onTap:undefined},LX6LJDha3:{\"data-framer-name\":\"Small Card - Back\",onTap:onTapqy49y4}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1365,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||612)-0-613)/2+0+0)),pixelHeight:2048,pixelWidth:1365,sizes:\"407.9439px\",src:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg\",srcSet:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg 1365w\"},className:\"framer-dmcu0m\",\"data-framer-name\":\"Front\",layoutDependency:layoutDependency,layoutId:\"g_YsANPKO\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({eNxiMBis_:{\"data-highlight\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:2048,intrinsicWidth:1365,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||330)-0-330)/2+0+0)),pixelHeight:2048,pixelWidth:1365,sizes:\"220.1308px\",src:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg\",srcSet:\"https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/6lG8MRQGZEu94AcRggXKASbE.jpg 1365w\"},onTapStart:onTapStart1cof1qx}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1350,pixelHeight:1800,pixelWidth:2700,src:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png 2700w\"},className:\"framer-1ikbedn\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"TOdTSm7AP\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{c4o3hdzk7:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({c4o3hdzk7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1350,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||408)-0-408)/2+0+0)),pixelHeight:1800,pixelWidth:2700,sizes:\"612px\",src:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png 2700w\"}},LX6LJDha3:{\"data-highlight\":true,background:{alt:\"\",fit:\"fill\",intrinsicHeight:900,intrinsicWidth:1350,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||220)-0-220)/2+0+0)),pixelHeight:1800,pixelWidth:2700,sizes:\"330px\",src:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YQHG9x6ONchX3RwkORQFECEXmQ.png 2700w\"},onTap:onTapjoqjoc}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GgiLk.framer-1mr0vlw, .framer-GgiLk .framer-1mr0vlw { display: block; }\",\".framer-GgiLk.framer-61em5r { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-GgiLk .framer-dmcu0m { aspect-ratio: 0.66650390625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 612px); overflow: visible; position: relative; width: 408px; }\",\".framer-GgiLk .framer-1ikbedn { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 409px); overflow: visible; position: relative; width: 330px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GgiLk.framer-61em5r { gap: 0px; } .framer-GgiLk.framer-61em5r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GgiLk.framer-61em5r > :first-child { margin-top: 0px; } .framer-GgiLk.framer-61em5r > :last-child { margin-bottom: 0px; } }\",\".framer-GgiLk.framer-v-5h6j5b .framer-1ikbedn { height: var(--framer-aspect-ratio-supported, 408px); order: 0; width: 612px; }\",\".framer-GgiLk.framer-v-vuly1i.framer-61em5r { cursor: unset; }\",\".framer-GgiLk.framer-v-vuly1i .framer-dmcu0m { cursor: pointer; height: var(--framer-aspect-ratio-supported, 330px); order: 0; width: 220px; }\",\".framer-GgiLk.framer-v-rddb2e .framer-1ikbedn { cursor: pointer; height: var(--framer-aspect-ratio-supported, 220px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 612\n * @framerIntrinsicWidth 408\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"c4o3hdzk7\":{\"layout\":[\"auto\",\"auto\"]},\"eNxiMBis_\":{\"layout\":[\"auto\",\"auto\"]},\"LX6LJDha3\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersAqRQhxgw=withCSS(Component,css,\"framer-GgiLk\");export default FramersAqRQhxgw;FramersAqRQhxgw.displayName=\"Christmas Card\";FramersAqRQhxgw.defaultProps={height:612,width:408};addPropertyControls(FramersAqRQhxgw,{variant:{options:[\"cpoPK4ARl\",\"c4o3hdzk7\",\"eNxiMBis_\",\"LX6LJDha3\"],optionTitles:[\"Card - Front\",\"Card - Back\",\"Small - Card Front\",\"Small Card - Back\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersAqRQhxgw,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersAqRQhxgw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"408\",\"framerIntrinsicHeight\":\"612\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c4o3hdzk7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eNxiMBis_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LX6LJDha3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sAqRQhxgw.map", "// Generated by Framer (eca4804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import DHover from\"https://framerusercontent.com/modules/5iVhojCo17A7sAu0ue9z/C2y0irNf7hRmU1AVIALB/Hover3D_Prod.js\";import Mouseeee from\"#framer/local/canvasComponent/EJd1sWwqe/EJd1sWwqe.js\";import Navigation from\"#framer/local/canvasComponent/JgkFZRdeH/JgkFZRdeH.js\";import SmallMobileCard from\"#framer/local/canvasComponent/OJV791HzC/OJV791HzC.js\";import ChristmasCard from\"#framer/local/canvasComponent/sAqRQhxgw/sAqRQhxgw.js\";import Footer from\"#framer/local/canvasComponent/tyCSnmVlj/tyCSnmVlj.js\";import metadataProvider from\"#framer/local/webPageMetadata/RoVygG1pE/RoVygG1pE.js\";const NavigationFonts=getFonts(Navigation);const SmallMobileCardFonts=getFonts(SmallMobileCard);const ContainerWithFX=withFX(Container);const ChristmasCardFonts=getFonts(ChristmasCard);const DHoverFonts=getFonts(DHover);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const MouseeeeFonts=getFonts(Mouseeee);const breakpoints={erjQ2AsxQ:\"(min-width: 1200px)\",flx3mytfA:\"(max-width: 809px)\",yjDbpON50:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7sWm0\";const variantClassNames={erjQ2AsxQ:\"framer-v-e2rcry\",flx3mytfA:\"framer-v-1v270ec\",yjDbpON50:\"framer-v-1e7ebbe\"};const transition1={damping:30,delay:.3,mass:1,stiffness:100,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:100};const transition2={bounce:.25,delay:0,duration:2,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:-11,rotateY:-11,scale:1.01,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"erjQ2AsxQ\",Phone:\"flx3mytfA\",Tablet:\"yjDbpON50\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"erjQ2AsxQ\"};};const cursor={component:Mouseeee,variant:\"x1oAsJbVR\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"flx3mytfA\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"flx3mytfA\")return false;return true;};useCustomCursors({\"1l55b0i\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"erjQ2AsxQ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-e2rcry\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{y:(componentViewport?.y||0)+0+0},yjDbpON50:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8jxvr6-container\",nodeId:\"qNu28zyLb\",scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{style:{width:\"100%\"},variant:\"jLPFCUka5\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"qNu28zyLb\",layoutId:\"qNu28zyLb\",style:{height:\"100%\",width:\"100%\"},variant:\"xLnVE5PVs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-wpmo4w\",\"data-framer-appear-id\":\"wpmo4w\",\"data-framer-name\":\"Archive Section\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gi4q53\",\"data-framer-name\":\"Top Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(50, 50, 50)\"},children:\"archive\"})}),className:\"framer-1hmjdlp\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"some other stuff that I've worked on\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"some other stuff that I've worked on\u2026\"})}),className:\"framer-apr3wd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19tpl27\",\"data-framer-name\":\"Christmas Card\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1jb503m\",\"data-framer-appear-id\":\"1jb503m\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zar04s\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{height:330,y:(componentViewport?.y||0)+0+64+23+148.8+11+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5gsxj8-container hidden-e2rcry hidden-1e7ebbe\",nodeId:\"JBL8kHzEL\",rendersWithMotion:true,scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(SmallMobileCard,{height:\"100%\",id:\"JBL8kHzEL\",layoutId:\"JBL8kHzEL\",variant:\"TS8nN1V3u\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a24orz-container hidden-1v270ec\",\"data-framer-cursor\":\"1l55b0i\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"limdcYZwJ\",scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yjDbpON50:{scale:1.06}},children:/*#__PURE__*/_jsx(DHover,{borderRadius:0,effect:\"evade\",height:\"100%\",id:\"limdcYZwJ\",layoutId:\"limdcYZwJ\",perspective:500,scale:1.08,tiltLimit:7,width:\"100%\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:612,width:\"408px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1du3vg6-container\",inComponentSlot:true,nodeId:\"zFp39fQge\",rendersWithMotion:true,scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(ChristmasCard,{height:\"100%\",id:\"zFp39fQge\",layoutId:\"zFp39fQge\",variant:\"cpoPK4ARl\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s0o7lm\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h61ist\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(50, 50, 50)\"},children:\"Christmas Card 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(50, 50, 50)\"},children:\"Christmas Card 2024\"})}),className:\"framer-6lythr\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ychfh4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Listen to the playlist below\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(107, 107, 107)\"},children:\"Listen to the playlist below\"})}),className:\"framer-1p65qge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-th7zb9\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://music.apple.com/us/playlist/christmas-card-2024-preliminary/pl.u-DdANW1aI0x9WKx\",motionChild:true,nodeId:\"G5VBMKQyl\",scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1hfblqx framer-1sldvs1\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bi4kki\",\"data-framer-name\":\"US UK Apple Music Lockup\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 151 35\"><g transform=\"translate(0.987 0.991)\" id=\"ss12773366174_1\"><g transform=\"translate(40.393 7.986)\" id=\"ss12773366174_2\"><path d=\"M 9.157 10.639 L 3.653 10.639 L 2.332 14.529 L 0 14.529 L 5.215 0.138 L 7.636 0.138 L 12.85 14.529 L 10.479 14.529 Z M 4.224 8.844 L 8.587 8.844 L 6.435 2.532 L 6.376 2.532 Z M 24.098 9.283 C 24.098 12.545 22.347 14.639 19.706 14.639 C 18.34 14.711 17.053 13.999 16.393 12.805 L 16.343 12.805 L 16.343 18 L 14.182 18 L 14.182 4.038 L 16.273 4.038 L 16.273 5.783 L 16.313 5.783 C 17.001 4.596 18.29 3.883 19.665 3.928 C 22.338 3.928 24.098 6.032 24.098 9.284 Z M 21.876 9.283 C 21.876 7.159 20.776 5.763 19.094 5.763 C 17.443 5.763 16.333 7.188 16.333 9.283 C 16.333 11.398 17.443 12.814 19.094 12.814 C 20.776 12.814 21.876 11.428 21.876 9.282 Z M 35.677 9.283 C 35.677 12.545 33.926 14.639 31.285 14.639 C 29.918 14.712 28.631 13.999 27.971 12.805 L 27.921 12.805 L 27.921 18 L 25.759 18 L 25.759 4.038 L 27.851 4.038 L 27.851 5.783 L 27.892 5.783 C 28.58 4.596 29.869 3.883 31.244 3.928 C 33.916 3.928 35.677 6.032 35.677 9.284 Z M 33.455 9.283 C 33.455 7.159 32.355 5.763 30.673 5.763 C 29.022 5.763 27.911 7.188 27.911 9.283 C 27.911 11.398 29.022 12.814 30.673 12.814 C 32.355 12.814 33.455 11.428 33.455 9.282 Z M 37.419 0.138 L 39.58 0.138 L 39.58 14.529 L 37.419 14.529 Z M 50.828 11.448 C 50.537 13.353 48.677 14.659 46.295 14.659 C 43.232 14.659 41.331 12.614 41.331 9.333 C 41.331 6.042 43.242 3.907 46.204 3.907 C 49.117 3.907 50.948 5.903 50.948 9.084 L 50.948 9.822 L 43.512 9.822 L 43.512 9.951 C 43.442 10.733 43.713 11.506 44.255 12.075 C 44.797 12.644 45.558 12.953 46.345 12.924 C 47.394 13.022 48.383 12.421 48.777 11.448 Z M 43.522 8.316 L 48.786 8.316 C 48.825 7.614 48.569 6.928 48.079 6.422 C 47.589 5.917 46.909 5.638 46.204 5.653 C 45.493 5.648 44.81 5.927 44.306 6.427 C 43.803 6.928 43.521 7.608 43.522 8.316 Z M 69.591 14.529 L 69.591 3.936 L 69.521 3.936 L 65.169 14.42 L 63.507 14.42 L 59.144 3.936 L 59.074 3.936 L 59.074 14.529 L 57.032 14.529 L 57.032 0.138 L 59.624 0.138 L 64.298 11.497 L 64.378 11.497 L 69.041 0.137 L 71.644 0.137 L 71.644 14.53 L 69.591 14.53 Z M 83.153 14.529 L 81.083 14.529 L 81.083 12.724 L 81.032 12.724 C 80.462 13.988 79.155 14.758 77.769 14.647 C 76.736 14.707 75.73 14.31 75.019 13.563 C 74.307 12.815 73.963 11.792 74.077 10.768 L 74.077 4.038 L 76.239 4.038 L 76.239 10.352 C 76.127 10.992 76.32 11.647 76.76 12.126 C 77.201 12.605 77.84 12.852 78.489 12.796 C 79.199 12.819 79.884 12.533 80.365 12.011 C 80.846 11.49 81.075 10.786 80.992 10.082 L 80.992 4.037 L 83.153 4.037 Z M 89.3 3.917 C 91.631 3.917 93.303 5.204 93.353 7.06 L 91.322 7.06 C 91.245 6.586 90.983 6.162 90.592 5.882 C 90.202 5.601 89.716 5.487 89.241 5.563 C 88.068 5.563 87.289 6.102 87.289 6.92 C 87.289 7.547 87.808 7.966 88.9 8.236 L 90.671 8.645 C 92.792 9.155 93.592 9.932 93.592 11.467 C 93.592 13.363 91.791 14.659 89.22 14.659 C 86.738 14.659 85.067 13.392 84.907 11.477 L 87.048 11.477 C 87.254 12.525 88.266 13.214 89.321 13.024 C 90.611 13.024 91.422 12.495 91.422 11.657 C 91.422 11.009 91.022 10.659 89.921 10.38 L 88.039 9.921 C 86.138 9.463 85.177 8.496 85.177 7.039 C 85.177 5.185 86.848 3.917 89.3 3.917 Z M 95.277 1.274 C 95.268 0.766 95.568 0.302 96.037 0.102 C 96.505 -0.099 97.049 0.003 97.413 0.36 C 97.776 0.717 97.887 1.257 97.692 1.727 C 97.498 2.197 97.038 2.503 96.528 2.501 C 96.198 2.505 95.881 2.378 95.646 2.147 C 95.411 1.917 95.278 1.602 95.277 1.274 Z M 95.447 4.037 L 97.608 4.037 L 97.608 14.529 L 95.447 14.529 Z M 106.918 7.647 C 106.721 6.457 105.643 5.617 104.437 5.713 C 102.775 5.713 101.675 7.099 101.675 9.283 C 101.675 11.517 102.785 12.864 104.457 12.864 C 105.648 12.983 106.727 12.157 106.919 10.979 L 109 10.979 C 108.73 13.235 106.707 14.866 104.437 14.659 C 101.434 14.659 99.473 12.614 99.473 9.283 C 99.473 6.022 101.434 3.907 104.417 3.907 C 106.704 3.715 108.729 5.374 108.98 7.648 L 106.919 7.648 Z\" fill=\"rgb(0,0,0)\"></path></g><path d=\"M 32.9 4.48 C 32.076 2.527 30.424 1.044 28.393 0.436 C 27.067 0.104 25.702 -0.039 24.336 0.009 L 9.24 0.009 C 7.875 -0.039 6.51 0.105 5.185 0.436 C 3.154 1.043 1.501 2.526 0.677 4.48 C 0.166 6.011 -0.059 7.623 0.013 9.236 L 0.013 24.333 C -0.059 25.945 0.166 27.557 0.677 29.088 C 1.501 31.04 3.153 32.524 5.184 33.131 C 6.509 33.463 7.875 33.606 9.24 33.558 L 24.337 33.558 C 25.702 33.606 27.067 33.463 28.392 33.131 C 30.423 32.524 32.076 31.041 32.9 29.088 C 33.411 27.557 33.636 25.945 33.564 24.333 L 33.564 9.236 C 33.636 7.623 33.411 6.011 32.9 4.48 Z M 24.488 23.085 C 24.405 23.498 24.239 23.889 24 24.236 C 23.758 24.582 23.445 24.871 23.081 25.085 C 22.72 25.291 22.326 25.434 21.916 25.508 C 21.328 25.66 20.716 25.692 20.116 25.6 C 19.664 25.51 19.246 25.297 18.907 24.985 C 18.381 24.512 18.071 23.846 18.046 23.14 C 18.021 22.434 18.283 21.747 18.773 21.238 C 19.079 20.926 19.451 20.687 19.863 20.538 C 20.464 20.331 21.081 20.175 21.708 20.072 L 22.359 19.94 C 22.639 19.911 22.899 19.778 23.087 19.568 C 23.251 19.325 23.323 19.032 23.289 18.741 L 23.289 11.348 C 23.289 10.782 23.036 10.628 22.496 10.732 C 22.109 10.808 13.82 12.478 13.82 12.478 C 13.616 12.49 13.428 12.591 13.306 12.754 C 13.184 12.918 13.141 13.127 13.188 13.325 L 13.188 24.158 C 13.195 24.57 13.158 24.981 13.077 25.385 C 12.994 25.798 12.827 26.189 12.588 26.536 C 12.347 26.881 12.034 27.171 11.671 27.385 C 11.309 27.594 10.915 27.739 10.505 27.816 C 9.918 27.968 9.305 27.999 8.705 27.906 C 8.253 27.814 7.834 27.599 7.496 27.285 C 6.426 26.286 6.367 24.61 7.363 23.538 C 7.669 23.226 8.041 22.988 8.452 22.84 C 9.053 22.633 9.67 22.477 10.297 22.373 L 10.948 22.24 C 11.228 22.211 11.488 22.079 11.676 21.869 C 11.845 21.63 11.923 21.339 11.896 21.048 L 11.896 8.572 C 11.895 8.459 11.902 8.347 11.919 8.236 C 11.946 7.985 12.066 7.754 12.255 7.588 C 12.435 7.444 12.649 7.348 12.876 7.308 L 12.88 7.308 L 22.852 5.294 C 22.939 5.278 23.659 5.15 23.74 5.142 C 23.979 5.112 24.218 5.197 24.384 5.371 C 24.55 5.545 24.623 5.788 24.581 6.025 L 24.581 21.852 C 24.595 22.265 24.563 22.678 24.488 23.085 Z\" fill=\"rgb(252, 60, 68)\"></path></g></svg>',svgContentId:12773366174,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://open.spotify.com/playlist/3V5qjqnA7Kp4QNpttH9Jlj?si=b928b8edaf264fd5\",motionChild:true,nodeId:\"CUKEnmIwT\",scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-avx8rg framer-1sldvs1\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kgsckr\",\"data-framer-name\":\"Spotify Logo\",fill:\"black\",intrinsicHeight:168,intrinsicWidth:559,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"168\" width=\"559\"><path fill=\"#1ED760\" d=\"M83.996.277C37.747.277.253 37.77.253 84.019c0 46.251 37.494 83.741 83.743 83.741 46.254 0 83.744-37.49 83.744-83.741 0-46.246-37.49-83.738-83.745-83.738l.001-.004zm38.404 120.78a5.217 5.217 0 0 1-7.18 1.73c-19.662-12.01-44.414-14.73-73.564-8.07a5.222 5.222 0 0 1-6.249-3.93 5.213 5.213 0 0 1 3.926-6.25c31.9-7.288 59.263-4.15 81.337 9.34 2.46 1.51 3.24 4.72 1.73 7.18zm10.25-22.802c-1.89 3.072-5.91 4.042-8.98 2.152-22.51-13.836-56.823-17.843-83.448-9.761-3.453 1.043-7.1-.903-8.148-4.35a6.538 6.538 0 0 1 4.354-8.143c30.413-9.228 68.222-4.758 94.072 11.127 3.07 1.89 4.04 5.91 2.15 8.976v-.001zm.88-23.744c-26.99-16.031-71.52-17.505-97.289-9.684-4.138 1.255-8.514-1.081-9.768-5.219a7.835 7.835 0 0 1 5.221-9.771c29.581-8.98 78.756-7.245 109.83 11.202a7.823 7.823 0 0 1 2.74 10.733c-2.2 3.722-7.02 4.949-10.73 2.739zm94.56 3.072c-14.46-3.448-17.03-5.868-17.03-10.953 0-4.804 4.52-8.037 11.25-8.037 6.52 0 12.98 2.455 19.76 7.509.2.153.46.214.71.174a.933.933 0 0 0 .63-.386l7.06-9.952a.95.95 0 0 0-.18-1.288c-8.07-6.473-17.15-9.62-27.77-9.62-15.61 0-26.52 9.369-26.52 22.774 0 14.375 9.41 19.465 25.67 23.394 13.83 3.187 16.17 5.857 16.17 10.629 0 5.29-4.72 8.58-12.32 8.58-8.44 0-15.33-2.85-23.03-9.51a.98.98 0 0 0-.69-.23c-.26.02-.49.14-.65.33l-7.92 9.42c-.33.4-.29.98.09 1.32 8.96 8 19.98 12.22 31.88 12.22 16.82 0 27.69-9.19 27.69-23.42.03-12.007-7.16-18.657-24.77-22.941l-.03-.013zm62.86-14.26c-7.29 0-13.27 2.872-18.21 8.757v-6.624a.945.945 0 0 0-.94-.949h-12.95c-.52 0-.94.426-.94.949v73.601c0 .52.42.95.94.95h12.95c.52 0 .94-.43.94-.95v-23.23c4.94 5.53 10.92 8.24 18.21 8.24 13.55 0 27.27-10.43 27.27-30.369.02-19.943-13.7-30.376-27.26-30.376l-.01.001zm12.21 30.375c0 10.149-6.25 17.239-15.21 17.239-8.85 0-15.53-7.41-15.53-17.239 0-9.83 6.68-17.238 15.53-17.238 8.81-.001 15.21 7.247 15.21 17.237v.001zm50.21-30.375c-17.45 0-31.12 13.436-31.12 30.592 0 16.972 13.58 30.262 30.91 30.262 17.51 0 31.22-13.39 31.22-30.479 0-17.031-13.62-30.373-31.01-30.373v-.002zm0 47.714c-9.28 0-16.28-7.46-16.28-17.344 0-9.929 6.76-17.134 16.07-17.134 9.34 0 16.38 7.457 16.38 17.351 0 9.927-6.8 17.127-16.17 17.127zm68.27-46.53h-14.25V49.941a.944.944 0 0 0-.94-.948H393.5c-.52 0-.95.426-.95.948v14.566h-6.22c-.52 0-.94.426-.94.949v11.127c0 .522.42.949.94.949h6.22v28.795c0 11.63 5.79 17.53 17.22 17.53 4.64 0 8.49-.96 12.12-3.02.3-.16.48-.48.48-.82v-10.6c0-.32-.17-.63-.45-.8a.918.918 0 0 0-.92-.04c-2.49 1.25-4.9 1.83-7.6 1.83-4.15 0-6.01-1.89-6.01-6.11v-26.76h14.25c.52 0 .94-.426.94-.949V65.462a.918.918 0 0 0-.93-.949l-.01-.006zm49.64.057v-1.789c0-5.263 2.02-7.61 6.54-7.61 2.7 0 4.87.536 7.3 1.346.3.094.61.047.85-.132a.94.94 0 0 0 .39-.77v-10.91a.937.937 0 0 0-.67-.909c-2.56-.763-5.84-1.546-10.76-1.546-11.95 0-18.28 6.734-18.28 19.467v2.74h-6.22c-.52 0-.95.426-.95.948v11.184c0 .522.43.949.95.949h6.22v44.405c0 .53.43.95.95.95h12.94c.53 0 .95-.42.95-.95V77.535h12.09l18.52 44.402c-2.1 4.66-4.17 5.59-6.99 5.59-2.28 0-4.69-.68-7.14-2.03a1.03 1.03 0 0 0-.75-.07c-.25.09-.46.27-.56.51l-4.39 9.63c-.21.46-.03.99.41 1.23 4.58 2.48 8.71 3.54 13.82 3.54 9.56 0 14.85-4.46 19.5-16.44l22.46-58.037a.925.925 0 0 0-.1-.881.924.924 0 0 0-.77-.412h-13.48c-.41 0-.77.257-.9.636l-13.81 39.434-15.12-39.46a.944.944 0 0 0-.88-.61h-22.12v-.003zm-28.78-.057h-12.95c-.52 0-.95.426-.95.949v56.481c0 .53.43.95.95.95h12.95c.52 0 .95-.42.95-.95V65.46a.947.947 0 0 0-.95-.949v-.004zm-6.4-25.719c-5.13 0-9.29 4.152-9.29 9.281 0 5.132 4.16 9.289 9.29 9.289s9.28-4.157 9.28-9.289c0-5.128-4.16-9.281-9.28-9.281zm113.42 43.88c-5.12 0-9.11-4.115-9.11-9.112s4.04-9.159 9.16-9.159 9.11 4.114 9.11 9.107c0 4.997-4.04 9.164-9.16 9.164zm.05-17.365c-4.67 0-8.2 3.71-8.2 8.253 0 4.541 3.51 8.201 8.15 8.201 4.67 0 8.2-3.707 8.2-8.253 0-4.541-3.51-8.201-8.15-8.201zm2.02 9.138 2.58 3.608h-2.18l-2.32-3.31h-1.99v3.31h-1.82v-9.564h4.26c2.23 0 3.69 1.137 3.69 3.051.01 1.568-.9 2.526-2.21 2.905h-.01zm-1.54-4.315h-2.37v3.025h2.37c1.18 0 1.89-.579 1.89-1.514 0-.984-.71-1.511-1.89-1.511z\"/></svg>',withExternalLayout:true})})})]})]})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1mdc8rp\",\"data-framer-appear-id\":\"1mdc8rp\",\"data-framer-name\":\"Dotted Background\",initial:animation1,optimized:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{y:(componentViewport?.y||0)+919.4-81},yjDbpON50:{y:(componentViewport?.y||0)+887-81}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tmyy9x-container\",nodeId:\"d3tdBKL0Z\",scopeId:\"RoVygG1pE\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{flx3mytfA:{variant:\"iWx8SM387\"},yjDbpON50:{variant:\"U3ekPSLVf\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"d3tdBKL0Z\",layoutId:\"d3tdBKL0Z\",style:{width:\"100%\"},variant:\"Uovday0HM\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7sWm0.framer-1sldvs1, .framer-7sWm0 .framer-1sldvs1 { display: block; }\",\".framer-7sWm0.framer-e2rcry { align-content: center; align-items: center; background-color: #ffffff; 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-7sWm0 .framer-8jxvr6-container { flex: none; height: 64px; position: relative; width: 100%; }\",\".framer-7sWm0 .framer-wpmo4w { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 23px 40px 150px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7sWm0 .framer-1gi4q53 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7sWm0 .framer-1hmjdlp, .framer-7sWm0 .framer-apr3wd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-7sWm0 .framer-19tpl27 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 25px 40px 50px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-7sWm0 .framer-1jb503m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7sWm0 .framer-zar04s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7sWm0 .framer-5gsxj8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7sWm0 .framer-a24orz-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-7sWm0 .framer-1du3vg6-container { height: auto; position: relative; width: auto; }\",\".framer-7sWm0 .framer-1s0o7lm { --border-bottom-width: 4px; --border-color: rgba(125, 125, 125, 0.15); --border-left-width: 4px; --border-right-width: 4px; --border-style: double; --border-top-width: 4px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 0.48174984141951427px 0.48174984141951427px -1.25px rgba(0, 0, 0, 0.14), 0px 1.8308266425947657px 1.8308266425947657px -2.5px rgba(0, 0, 0, 0.13), 0px 8px 8px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: visible; padding: 16px 18px 16px 18px; position: relative; width: min-content; z-index: 0; }\",\".framer-7sWm0 .framer-1h61ist { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7sWm0 .framer-6lythr, .framer-7sWm0 .framer-1p65qge { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7sWm0 .framer-1ychfh4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 5px; position: relative; width: min-content; }\",\".framer-7sWm0 .framer-th7zb9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 5px; position: relative; width: min-content; }\",\".framer-7sWm0 .framer-1hfblqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7sWm0 .framer-1bi4kki { flex: none; height: 35px; position: relative; width: 151px; }\",\".framer-7sWm0 .framer-avx8rg { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-7sWm0 .framer-kgsckr { aspect-ratio: 3.3273809523809526 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 113px; }\",\".framer-7sWm0 .framer-1mdc8rp { align-content: center; align-items: center; bottom: -10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: -1; }\",\".framer-7sWm0 .framer-1tmyy9x-container { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7sWm0.framer-e2rcry, .framer-7sWm0 .framer-wpmo4w, .framer-7sWm0 .framer-1gi4q53, .framer-7sWm0 .framer-19tpl27, .framer-7sWm0 .framer-1jb503m, .framer-7sWm0 .framer-zar04s, .framer-7sWm0 .framer-1s0o7lm, .framer-7sWm0 .framer-1h61ist, .framer-7sWm0 .framer-1ychfh4, .framer-7sWm0 .framer-th7zb9, .framer-7sWm0 .framer-1hfblqx, .framer-7sWm0 .framer-avx8rg, .framer-7sWm0 .framer-1mdc8rp { gap: 0px; } .framer-7sWm0.framer-e2rcry > *, .framer-7sWm0 .framer-1gi4q53 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7sWm0.framer-e2rcry > :first-child, .framer-7sWm0 .framer-wpmo4w > :first-child, .framer-7sWm0 .framer-1gi4q53 > :first-child, .framer-7sWm0 .framer-19tpl27 > :first-child, .framer-7sWm0 .framer-1jb503m > :first-child, .framer-7sWm0 .framer-1s0o7lm > :first-child, .framer-7sWm0 .framer-1h61ist > :first-child, .framer-7sWm0 .framer-1ychfh4 > :first-child { margin-top: 0px; } .framer-7sWm0.framer-e2rcry > :last-child, .framer-7sWm0 .framer-wpmo4w > :last-child, .framer-7sWm0 .framer-1gi4q53 > :last-child, .framer-7sWm0 .framer-19tpl27 > :last-child, .framer-7sWm0 .framer-1jb503m > :last-child, .framer-7sWm0 .framer-1s0o7lm > :last-child, .framer-7sWm0 .framer-1h61ist > :last-child, .framer-7sWm0 .framer-1ychfh4 > :last-child { margin-bottom: 0px; } .framer-7sWm0 .framer-wpmo4w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7sWm0 .framer-19tpl27 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-7sWm0 .framer-1jb503m > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-7sWm0 .framer-zar04s > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-7sWm0 .framer-zar04s > :first-child, .framer-7sWm0 .framer-th7zb9 > :first-child, .framer-7sWm0 .framer-1hfblqx > :first-child, .framer-7sWm0 .framer-avx8rg > :first-child, .framer-7sWm0 .framer-1mdc8rp > :first-child { margin-left: 0px; } .framer-7sWm0 .framer-zar04s > :last-child, .framer-7sWm0 .framer-th7zb9 > :last-child, .framer-7sWm0 .framer-1hfblqx > :last-child, .framer-7sWm0 .framer-avx8rg > :last-child, .framer-7sWm0 .framer-1mdc8rp > :last-child { margin-right: 0px; } .framer-7sWm0 .framer-1s0o7lm > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-7sWm0 .framer-1h61ist > *, .framer-7sWm0 .framer-1ychfh4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7sWm0 .framer-th7zb9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-7sWm0 .framer-1hfblqx > *, .framer-7sWm0 .framer-avx8rg > *, .framer-7sWm0 .framer-1mdc8rp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",'.framer-7sWm0[data-border=\"true\"]::after, .framer-7sWm0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-7sWm0.framer-e2rcry { width: 810px; } .framer-7sWm0 .framer-1jb503m { width: 100%; } .framer-7sWm0 .framer-zar04s { flex-direction: column; width: min-content; } .framer-7sWm0 .framer-a24orz-container { order: 1; } .framer-7sWm0 .framer-1s0o7lm { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7sWm0 .framer-zar04s { gap: 0px; } .framer-7sWm0 .framer-zar04s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7sWm0 .framer-zar04s > :first-child { margin-top: 0px; } .framer-7sWm0 .framer-zar04s > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-7sWm0.framer-e2rcry { width: 390px; } .framer-7sWm0 .framer-8jxvr6-container { height: auto; } .framer-7sWm0 .framer-wpmo4w { padding: 23px 40px 122px 40px; } .framer-7sWm0 .framer-apr3wd { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7sWm0 .framer-19tpl27 { gap: 0px; padding: 11px 0px 46px 0px; } .framer-7sWm0 .framer-1jb503m { gap: 0px; width: 100%; } .framer-7sWm0 .framer-zar04s { flex-direction: column; justify-content: flex-start; } .framer-7sWm0 .framer-5gsxj8-container { order: 0; } .framer-7sWm0 .framer-1s0o7lm { gap: 9px; order: 2; padding: 18px; width: 307px; } .framer-7sWm0 .framer-th7zb9 { align-content: center; align-items: center; } .framer-7sWm0 .framer-kgsckr { height: var(--framer-aspect-ratio-supported, 26px); width: 85px; } .framer-7sWm0 .framer-1mdc8rp { align-content: flex-start; align-items: flex-start; bottom: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7sWm0 .framer-19tpl27, .framer-7sWm0 .framer-1jb503m, .framer-7sWm0 .framer-zar04s, .framer-7sWm0 .framer-1s0o7lm { gap: 0px; } .framer-7sWm0 .framer-19tpl27 > *, .framer-7sWm0 .framer-1jb503m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7sWm0 .framer-19tpl27 > :first-child, .framer-7sWm0 .framer-1jb503m > :first-child, .framer-7sWm0 .framer-zar04s > :first-child, .framer-7sWm0 .framer-1s0o7lm > :first-child { margin-top: 0px; } .framer-7sWm0 .framer-19tpl27 > :last-child, .framer-7sWm0 .framer-1jb503m > :last-child, .framer-7sWm0 .framer-zar04s > :last-child, .framer-7sWm0 .framer-1s0o7lm > :last-child { margin-bottom: 0px; } .framer-7sWm0 .framer-zar04s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7sWm0 .framer-1s0o7lm > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1086\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yjDbpON50\":{\"layout\":[\"fixed\",\"auto\"]},\"flx3mytfA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerRoVygG1pE=withCSS(Component,css,\"framer-7sWm0\");export default FramerRoVygG1pE;FramerRoVygG1pE.displayName=\"Contact\";FramerRoVygG1pE.defaultProps={height:1086,width:1200};addFonts(FramerRoVygG1pE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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\"}]},...NavigationFonts,...SmallMobileCardFonts,...ChristmasCardFonts,...DHoverFonts,...FooterFonts,...MouseeeeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRoVygG1pE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1086\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yjDbpON50\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"flx3mytfA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "SettingsMessage", "title", "description", "containerStyle", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "Hover3D", "props", "ref", "pe", "rotateX", "useMotionValue", "rotateY", "ue", "debounce", "func", "wait", "timeout", "args", "later", "handleMouseMove", "te", "e", "width", "height", "top", "left", "multiplier", "tiltX", "tiltY", "handleMouseLeave", "j", "p", "SettingsMessage", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerEJd1sWwqe", "withCSS", "EJd1sWwqe_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapz71li4", "args", "onTap1e5hvbp", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerOJV791HzC", "withCSS", "OJV791HzC_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19zykud", "args", "onTapmryten", "onTapqy49y4", "onTapStart1cof1qx", "onTapjoqjoc", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramersAqRQhxgw", "withCSS", "sAqRQhxgw_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "JgkFZRdeH_default", "SmallMobileCardFonts", "OJV791HzC_default", "ContainerWithFX", "withFX", "Container", "ChristmasCardFonts", "sAqRQhxgw_default", "DHoverFonts", "Hover3D", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "FooterFonts", "tyCSnmVlj_default", "MouseeeeFonts", "EJd1sWwqe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "transition3", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "RichText2", "x", "Link", "SVG", "css", "FramerRoVygG1pE", "withCSS", "RoVygG1pE_default", "addFonts", "__FramerMetadata__"]
}
