{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/YaFGScRuHdZRcCeObrod/kPx3sasvBxNPyOiyKyuR/BKbrqEQ_u.js", "ssg:https://framerusercontent.com/modules/KqqzflsmarQac635sWEO/yIPGn6DwgeA3Hpccpngp/BpNNGdnNc.js", "ssg:https://framerusercontent.com/modules/6PfGMZbH8pL3S6WmdmID/ls88Utb4SiGzeCdQHDf6/DsvPpblyP.js", "ssg:https://framerusercontent.com/modules/vzwgGZQgldqj32BVR1oa/0O3wG8WbjNfsr7K3fSek/H5bhlqKmj.js", "ssg:https://framerusercontent.com/modules/7ISK9oocZgy2D834JMuy/lUeEE2osGgxiiDUHxoyu/IRYXYK26d.js", "ssg:https://framerusercontent.com/modules/4hjJAQOYAW8FvOefgprK/SNzjMY7yyVK6NHe2ywCa/QX6vzOHJ3.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bakbak One-regular\"]);export const fonts=[{family:\"Bakbak One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bakbakone/v8/zOL54pXAl6RI-p_ardnuycFuv-hHkOs.woff2\",weight:\"400\"}];export const css=['.framer-zaCQs .framer-styles-preset-1hb6hsh:not(.rich-text-wrapper), .framer-zaCQs .framer-styles-preset-1hb6hsh.rich-text-wrapper h1 { --framer-font-family: \"Bakbak One\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-zaCQs .framer-styles-preset-1hb6hsh:not(.rich-text-wrapper), .framer-zaCQs .framer-styles-preset-1hb6hsh.rich-text-wrapper h1 { --framer-font-family: \"Bakbak One\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-zaCQs .framer-styles-preset-1hb6hsh:not(.rich-text-wrapper), .framer-zaCQs .framer-styles-preset-1hb6hsh.rich-text-wrapper h1 { --framer-font-family: \"Bakbak One\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-zaCQs\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-wW8xV .framer-styles-preset-1hctnav:not(.rich-text-wrapper), .framer-wW8xV .framer-styles-preset-1hctnav.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, #ff0087) /* {\"name\":\"Light Pink\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; }'];export const className=\"framer-wW8xV\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bakbak One-regular\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Bakbak One\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bakbakone/v8/zOL54pXAl6RI-p_ardnuycFuv-hHkOs.woff2\",weight:\"400\"}];export const css=['.framer-tfuxL .framer-styles-preset-ygpjhp:not(.rich-text-wrapper), .framer-tfuxL .framer-styles-preset-ygpjhp.rich-text-wrapper h6 { --framer-font-family: \"Bakbak One\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0.05em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-tfuxL\";\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\"}}}", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,SVG,useActiveVariantCallback,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/YaFGScRuHdZRcCeObrod/kPx3sasvBxNPyOiyKyuR/BKbrqEQ_u.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/KqqzflsmarQac635sWEO/yIPGn6DwgeA3Hpccpngp/BpNNGdnNc.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/6PfGMZbH8pL3S6WmdmID/ls88Utb4SiGzeCdQHDf6/DsvPpblyP.js\";const IconoirFonts=getFonts(Iconoir);const cycleOrder=[\"wT290rRRY\",\"YF2xGab4o\",\"XbvmE0qdM\",\"U48Oi58NH\"];const serializationHash=\"framer-wNhJk\";const variantClassNames={U48Oi58NH:\"framer-v-1nweoxp\",wT290rRRY:\"framer-v-1hinfuw\",XbvmE0qdM:\"framer-v-ogx1eo\",YF2xGab4o:\"framer-v-sk8snj\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,scale:1.1,transition:transition1};const transition2={damping:30,delay:0,mass:1,stiffness:135,type:\"spring\"};const animation1={opacity:1,rotate:0,scale:1.1,transition:transition2};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 humanReadableVariantMap={\"Variant 1\":\"wT290rRRY\",\"Variant 2\":\"YF2xGab4o\",\"Variant 3\":\"U48Oi58NH\"};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:\"wT290rRRY\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"wT290rRRY\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClickynhhlb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"U48Oi58NH\"),100);});const onClick1he5e9k=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"XbvmE0qdM\"),100);});const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"U48Oi58NH\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"XbvmE0qdM\")return true;return false;};const isDisplayed2=()=>{if([\"XbvmE0qdM\",\"U48Oi58NH\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"XbvmE0qdM\",\"U48Oi58NH\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hinfuw\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"wT290rRRY\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9cbb861e-0a06-4927-a3e7-d674d55cdc87, rgb(20, 186, 204))\",...style},...addPropertyOverrides({U48Oi58NH:{\"data-framer-name\":\"Variant 3\"},XbvmE0qdM:{\"data-framer-name\":\"Variant 3\"},YF2xGab4o:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i526gs\",layoutDependency:layoutDependency,layoutId:\"hYGSxooQk\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4444.444562182018,intrinsicWidth:4444.444562182018,pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png\",srcSet:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=512 512w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png 4000w\"},className:\"framer-18fo6g1\",\"data-framer-name\":\"CustomKickslogo\",layoutDependency:layoutDependency,layoutId:\"jDm1si6rV\",...addPropertyOverrides({U48Oi58NH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4444.444562182018,intrinsicWidth:4444.444562182018,pixelHeight:4e3,pixelWidth:4e3,sizes:\"67px\",src:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png\",srcSet:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=512 512w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png 4000w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4444.444562182018,intrinsicWidth:4444.444562182018,pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png\",srcSet:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=512 512w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png 4000w\"},className:\"framer-1l4pm2q\",\"data-framer-name\":\"CustomKickslogo\",layoutDependency:layoutDependency,layoutId:\"j7vhkOYXv\",...addPropertyOverrides({XbvmE0qdM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4444.444562182018,intrinsicWidth:4444.444562182018,pixelHeight:4e3,pixelWidth:4e3,sizes:\"67px\",src:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png\",srcSet:\"https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=512 512w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/hwMc9ATK7hINpxa5FybDLwr52g.png 4000w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jpmfm9-container\",layoutDependency:layoutDependency,layoutId:\"kYHs5fryh-container\",style:{rotate:0},variants:{U48Oi58NH:{rotate:90}},children:/*#__PURE__*/_jsx(Iconoir,{color:'var(--token-38d2c735-820c-47c0-a045-ef5f238a6325, rgb(255, 224, 10)) /* {\"name\":\"Yellow\"} */',height:\"100%\",iconSearch:\"menu\",iconSelection:\"Home\",id:\"kYHs5fryh\",layoutId:\"kYHs5fryh\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({U48Oi58NH:{onClick:onClick1he5e9k},XbvmE0qdM:{onClick:onClickynhhlb}},baseVariant,gestureVariant)})}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dzgr8h\",\"data-framer-name\":\"CustomKickslogo\",fill:\"black\",intrinsicHeight:4e3,intrinsicWidth:4e3,layoutDependency:layoutDependency,layoutId:\"QKCZpBoZh\",svg:'<svg id=\"Logo\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 4000 4000\"><defs><style>.cls-2{font-family:There-Brat,&apos;There Brat&apos;;fill:#fff;font-size:888.98px}</style></defs><text transform=\"translate(1957.24 3166.94)\" style=\"font-size:854.1px;stroke-width:466px;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Lab</tspan></text><path d=\"M3034.48 617.92s483.2 306.25 530.84 530.84c47.64 224.59-265.42 558.06-265.42 558.06l-741.82-149.72 476.4-939.18Z\" style=\"stroke-width:0\"/><text transform=\"translate(1830.44 2446.37)\" style=\"stroke-width:400px;font-size:718.66px;fill:#fff;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Kicks</tspan></text><text transform=\"translate(1539.57 1813.93)\" style=\"stroke-width:419px;font-size:718.66px;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Custom</tspan></text><text transform=\"translate(377.82 1387.16)\" style=\"stroke-width:419px;font-size:888.98px;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Custom</tspan></text><text transform=\"translate(737.63 2169.48)\" style=\"stroke-width:400px;font-size:888.98px;fill:#fff;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Kicks</tspan></text><text transform=\"translate(894.47 3060.83)\" style=\"stroke-width:466px;font-size:1056.52px;stroke:#000;stroke-linecap:round;stroke-linejoin:round;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Lab</tspan></text><text transform=\"translate(894.47 3060.83)\" style=\"fill:#fff;font-size:1056.52px;font-family:There-Brat,\\'There Brat\\'\"><tspan x=\"0\" y=\"0\">Lab</tspan></text><text class=\"cls-2\" transform=\"translate(737.63 2169.48)\"><tspan x=\"0\" y=\"0\">Kicks</tspan></text><text class=\"cls-2\" transform=\"translate(377.82 1387.16)\"><tspan x=\"0\" y=\"0\">Custom</tspan></text></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q1igm6\",layoutDependency:layoutDependency,layoutId:\"owQmaWIst\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1hb6hsh\",\"data-styles-preset\":\"BKbrqEQ_u\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"HOME\"})})})}),className:\"framer-nhcv92\",layoutDependency:layoutDependency,layoutId:\"ZeIs4QFHF\",verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1hb6hsh\",\"data-styles-preset\":\"BKbrqEQ_u\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EaVGU8q_5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"ACERCA DE NOSOTROS\"})})})}),className:\"framer-yuvzci\",layoutDependency:layoutDependency,layoutId:\"wSKw1yQwx\",verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1hb6hsh\",\"data-styles-preset\":\"BKbrqEQ_u\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vSH_U7qiE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"CONTACTO\"})})})}),className:\"framer-tzowa0\",layoutDependency:layoutDependency,layoutId:\"WQCjgTHnM\",verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/17873448755?text=Saludos%20estoy%20interesado%20en%20tenis%20CKL\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eemspe framer-1ukn8bt\",layoutDependency:layoutDependency,layoutId:\"J0yR3mjnm\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1hb6hsh\",\"data-styles-preset\":\"BKbrqEQ_u\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-38d2c735-820c-47c0-a045-ef5f238a6325, rgb(255, 224, 10)))\"},children:\"ORDENA TUS KICKS\"})}),className:\"framer-1s15zyl\",layoutDependency:layoutDependency,layoutId:\"QYxivB4zi\",style:{\"--extracted-gdpscs\":\"var(--token-38d2c735-820c-47c0-a045-ef5f238a6325, rgb(255, 224, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r36elx\",layoutDependency:layoutDependency,layoutId:\"JG5PaJdpH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ygpjhp\",\"data-styles-preset\":\"DsvPpblyP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"HOME\"})})})}),className:\"framer-leq4qh\",layoutDependency:layoutDependency,layoutId:\"Tce_LU5HP\",verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ygpjhp\",\"data-styles-preset\":\"DsvPpblyP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EaVGU8q_5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"ACERCA DE NOSOTROS\"})})})}),className:\"framer-igf010\",layoutDependency:layoutDependency,layoutId:\"sP2xMvMrc\",verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ygpjhp\",\"data-styles-preset\":\"DsvPpblyP\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vSH_U7qiE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1hctnav\",\"data-styles-preset\":\"BpNNGdnNc\",children:\"CONTACTO\"})})})}),className:\"framer-1ypyzq8\",layoutDependency:layoutDependency,layoutId:\"GqVAlfGln\",verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/17873448755?text=Saludos%20estoy%20interesado%20en%20tenis%20CKL\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-d86nl3 framer-1ukn8bt\",layoutDependency:layoutDependency,layoutId:\"emfGM0Wd6\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ygpjhp\",\"data-styles-preset\":\"DsvPpblyP\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-38d2c735-820c-47c0-a045-ef5f238a6325, rgb(255, 224, 10)))\"},children:\"ORDENA TUS KICKS\"})}),className:\"framer-11ayb0f\",layoutDependency:layoutDependency,layoutId:\"i4XnOl4xR\",style:{\"--extracted-1w1cjl5\":\"var(--token-38d2c735-820c-47c0-a045-ef5f238a6325, rgb(255, 224, 10))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",whileHover:animation1,withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12m20re\",layoutDependency:layoutDependency,layoutId:\"itXa73SpY\",style:{backgroundColor:\"var(--token-cd85992b-ffee-49e5-a897-834fbd2f5548, rgb(9, 161, 179))\",opacity:.5}})]})})});});const css=['.framer-wNhJk[data-border=\"true\"]::after, .framer-wNhJk [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wNhJk.framer-1ukn8bt, .framer-wNhJk .framer-1ukn8bt { display: block; }\",\".framer-wNhJk.framer-1hinfuw { height: 75px; position: relative; width: 1440px; }\",\".framer-wNhJk .framer-1i526gs { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(50.34722222222224% - 1229px / 2); overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 0px; width: 1229px; }\",\".framer-wNhJk .framer-18fo6g1, .framer-wNhJk .framer-1l4pm2q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; width: 67px; }\",\".framer-wNhJk .framer-jpmfm9-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-wNhJk .framer-dzgr8h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; width: 75px; }\",\".framer-wNhJk .framer-1q1igm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 75px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1165px; }\",\".framer-wNhJk .framer-nhcv92, .framer-wNhJk .framer-yuvzci, .framer-wNhJk .framer-tzowa0, .framer-wNhJk .framer-leq4qh, .framer-wNhJk .framer-igf010, .framer-wNhJk .framer-1ypyzq8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wNhJk .framer-1eemspe { flex: none; height: 35px; overflow: hidden; position: relative; text-decoration: none; width: 209px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wNhJk .framer-1s15zyl, .framer-wNhJk .framer-11ayb0f { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-wNhJk .framer-1r36elx { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 71px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; }\",\".framer-wNhJk .framer-d86nl3 { flex: none; height: 27px; overflow: hidden; position: relative; text-decoration: none; width: 116px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wNhJk .framer-12m20re { flex: none; height: 4px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(53.48837209302327% - 4px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wNhJk .framer-1i526gs, .framer-wNhJk .framer-1q1igm6, .framer-wNhJk .framer-1r36elx { gap: 0px; } .framer-wNhJk .framer-1i526gs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wNhJk .framer-1i526gs > :first-child, .framer-wNhJk .framer-1q1igm6 > :first-child, .framer-wNhJk .framer-1r36elx > :first-child { margin-left: 0px; } .framer-wNhJk .framer-1i526gs > :last-child, .framer-wNhJk .framer-1q1igm6 > :last-child, .framer-wNhJk .framer-1r36elx > :last-child { margin-right: 0px; } .framer-wNhJk .framer-1q1igm6 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-wNhJk .framer-1r36elx > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } }\",\".framer-wNhJk.framer-v-sk8snj.framer-1hinfuw { width: 810px; }\",\".framer-wNhJk.framer-v-sk8snj .framer-1i526gs { gap: 4px; left: 0px; right: 0px; width: unset; }\",\".framer-wNhJk.framer-v-sk8snj .framer-dzgr8h { order: 3; }\",\".framer-wNhJk.framer-v-sk8snj .framer-1q1igm6 { gap: 31px; order: 4; width: 707px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wNhJk.framer-v-sk8snj .framer-1i526gs, .framer-wNhJk.framer-v-sk8snj .framer-1q1igm6 { gap: 0px; } .framer-wNhJk.framer-v-sk8snj .framer-1i526gs > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-wNhJk.framer-v-sk8snj .framer-1i526gs > :first-child, .framer-wNhJk.framer-v-sk8snj .framer-1q1igm6 > :first-child { margin-left: 0px; } .framer-wNhJk.framer-v-sk8snj .framer-1i526gs > :last-child, .framer-wNhJk.framer-v-sk8snj .framer-1q1igm6 > :last-child { margin-right: 0px; } .framer-wNhJk.framer-v-sk8snj .framer-1q1igm6 > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } }\",\".framer-wNhJk.framer-v-ogx1eo.framer-1hinfuw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; width: 390px; }\",\".framer-wNhJk.framer-v-ogx1eo .framer-1i526gs { bottom: unset; gap: 232px; height: 77px; left: unset; position: relative; top: unset; width: 390px; }\",\".framer-wNhJk.framer-v-ogx1eo .framer-1l4pm2q, .framer-wNhJk.framer-v-1nweoxp .framer-igf010 { order: 1; }\",\".framer-wNhJk.framer-v-ogx1eo .framer-jpmfm9-container { height: 47px; order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wNhJk.framer-v-ogx1eo.framer-1hinfuw, .framer-wNhJk.framer-v-ogx1eo .framer-1i526gs { gap: 0px; } .framer-wNhJk.framer-v-ogx1eo.framer-1hinfuw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wNhJk.framer-v-ogx1eo.framer-1hinfuw > :first-child, .framer-wNhJk.framer-v-ogx1eo .framer-1i526gs > :first-child { margin-left: 0px; } .framer-wNhJk.framer-v-ogx1eo.framer-1hinfuw > :last-child, .framer-wNhJk.framer-v-ogx1eo .framer-1i526gs > :last-child { margin-right: 0px; } .framer-wNhJk.framer-v-ogx1eo .framer-1i526gs > * { margin: 0px; margin-left: calc(232px / 2); margin-right: calc(232px / 2); } }\",\".framer-wNhJk.framer-v-1nweoxp.framer-1hinfuw { height: 148px; width: 390px; }\",\".framer-wNhJk.framer-v-1nweoxp .framer-1i526gs { bottom: unset; gap: 232px; height: 77px; left: 0px; right: 0px; width: unset; }\",\".framer-wNhJk.framer-v-1nweoxp .framer-18fo6g1, .framer-wNhJk.framer-v-1nweoxp .framer-leq4qh { order: 0; }\",\".framer-wNhJk.framer-v-1nweoxp .framer-jpmfm9-container { height: 49px; order: 2; width: 49px; }\",\".framer-wNhJk.framer-v-1nweoxp .framer-1ypyzq8 { order: 2; }\",\".framer-wNhJk.framer-v-1nweoxp .framer-d86nl3 { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wNhJk.framer-v-1nweoxp .framer-1i526gs { gap: 0px; } .framer-wNhJk.framer-v-1nweoxp .framer-1i526gs > * { margin: 0px; margin-left: calc(232px / 2); margin-right: calc(232px / 2); } .framer-wNhJk.framer-v-1nweoxp .framer-1i526gs > :first-child { margin-left: 0px; } .framer-wNhJk.framer-v-1nweoxp .framer-1i526gs > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 75\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YF2xGab4o\":{\"layout\":[\"fixed\",\"fixed\"]},\"XbvmE0qdM\":{\"layout\":[\"fixed\",\"auto\"]},\"U48Oi58NH\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerH5bhlqKmj=withCSS(Component,css,\"framer-wNhJk\");export default FramerH5bhlqKmj;FramerH5bhlqKmj.displayName=\"navigator\";FramerH5bhlqKmj.defaultProps={height:75,width:1440};addPropertyControls(FramerH5bhlqKmj,{variant:{options:[\"wT290rRRY\",\"YF2xGab4o\",\"XbvmE0qdM\",\"U48Oi58NH\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerH5bhlqKmj,[...IconoirFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH5bhlqKmj\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"75\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YF2xGab4o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XbvmE0qdM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U48Oi58NH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H5bhlqKmj.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=['.framer-HjlKw .framer-styles-preset-11tg4kk:not(.rich-text-wrapper), .framer-HjlKw .framer-styles-preset-11tg4kk.rich-text-wrapper a { --framer-link-current-text-color: #000000; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, #ff0087) /* {\"name\":\"Light Pink\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #000000; --framer-link-text-decoration: none; }'];export const className=\"framer-HjlKw\";\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\"}}}", "// Generated by Framer (1a6990e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,RichText,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7ISK9oocZgy2D834JMuy/lUeEE2osGgxiiDUHxoyu/IRYXYK26d.js\";const IconoirFonts=getFonts(Iconoir);const MotionAWithFX=withFX(motion.a);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ZUsXlOXBc\",\"hXznQUsAX\",\"ZZ3Az8hif\"];const serializationHash=\"framer-Yshqy\";const variantClassNames={hXznQUsAX:\"framer-v-1wqb59w\",ZUsXlOXBc:\"framer-v-1btr96f\",ZZ3Az8hif:\"framer-v-1clmnm5\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:155,type:\"spring\"};const animation={opacity:0,rotate:0,scale:1,transition:transition1,x:-150,y:0};const transformTemplate2=(_,t)=>`perspective(1200px) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,scale:1,x:-150,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:212,type:\"spring\"};const animation3={opacity:0,rotate:0,scale:.5,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={boxShadow:\"0px 2px 4px 0px rgba(0,0,0,0.25)\",opacity:1,rotate:0,scale:1.1,transition:transition3};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition2,x:0,y:0};const animation6={opacity:.001,rotate:0,scale:.5,x:0,y:0};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 humanReadableVariantMap={\"Variant 2\":\"hXznQUsAX\",\"Variant 3\":\"ZZ3Az8hif\",Footer_base:\"ZUsXlOXBc\"};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:\"ZUsXlOXBc\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ZUsXlOXBc\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1btr96f\",className,classNames),\"data-framer-name\":\"Footer_base\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"ZUsXlOXBc\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-9cbb861e-0a06-4927-a3e7-d674d55cdc87, rgb(20, 186, 204))\",...style},...addPropertyOverrides({hXznQUsAX:{\"data-framer-name\":\"Variant 2\"},ZZ3Az8hif:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oy5fn0\",\"data-framer-name\":\"Lower_footer\",layoutDependency:layoutDependency,layoutId:\"tv3THOTN5\",style:{backgroundColor:\"var(--token-cd85992b-ffee-49e5-a897-834fbd2f5548, rgb(9, 161, 179))\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS1yZWd1bGFy\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.05em\"},children:\"\\xa9 2024 Custom Kicks Lab LLC\"})}),className:\"framer-pal16e\",fonts:[\"GF;Alexandria-regular\"],layoutDependency:layoutDependency,layoutId:\"YTZcjLHGr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.65},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ds53v2\",\"data-framer-name\":\"Section\",layoutDependency:layoutDependency,layoutId:\"jkY4CE97k\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wkyv63\",\"data-framer-name\":\"Footer_Safezone\",layoutDependency:layoutDependency,layoutId:\"eLjZmVf7i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gabt33\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"q37xBg9Zh\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6477,intrinsicWidth:7769,pixelHeight:6477,pixelWidth:7769,sizes:\"297px\",src:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png\",srcSet:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=512 512w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png 7769w\"},className:\"framer-4j2b6g\",\"data-framer-name\":\"Header Image\",layoutDependency:layoutDependency,layoutId:\"MjQqW7lmj\",...addPropertyOverrides({hXznQUsAX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6477,intrinsicWidth:7769,pixelHeight:6477,pixelWidth:7769,sizes:\"202px\",src:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png\",srcSet:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=512 512w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png 7769w\"}},ZZ3Az8hif:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6477,intrinsicWidth:7769,pixelHeight:6477,pixelWidth:7769,sizes:\"131px\",src:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png\",srcSet:\"https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=512 512w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/o8BOYbcFt2BZaVXKE8QUdH1glhc.png 7769w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"19arysv\",animation1,\"1btr96f\"),className:\"framer-19arysv\",\"data-framer-appear-id\":\"19arysv\",\"data-framer-name\":\"Social Media\",exit:animation,initial:optimizeAppear(\"initial\",\"19arysv\",animation2,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"jmevCmCnH\",transformTemplate:optimizeAppearTransformTemplate(\"19arysv\",transformTemplate2),...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"1v2uya1\",animate:optimizeAppear(\"animate\",\"1v2uya1\",animation1,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"1v2uya1\",animation2,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"1v2uya1\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"ktkyn7\",animate:optimizeAppear(\"animate\",\"ktkyn7\",animation1,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"ktkyn7\",animation2,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"ktkyn7\",transformTemplate2)}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/profile.php?viewas=100000686899395&id=61555853259056\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1b8ql78\",animation5,\"1btr96f\"),className:\"framer-1b8ql78 framer-wflsmv\",\"data-framer-appear-id\":\"1b8ql78\",exit:animation3,initial:optimizeAppear(\"initial\",\"1b8ql78\",animation6,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"vH90WpkKk\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,boxShadow:\"0px 4px 2px 0px rgba(0,0,0,0.25)\"},transformTemplate:optimizeAppearTransformTemplate(\"1b8ql78\",transformTemplate2),whileHover:animation4,...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"1a05h0h\",animate:optimizeAppear(\"animate\",\"1a05h0h\",animation5,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"1a05h0h\",animation6,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"1a05h0h\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"10yvwev\",animate:optimizeAppear(\"animate\",\"10yvwev\",animation5,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"10yvwev\",animation6,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"10yvwev\",transformTemplate2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8nfbtt-container\",\"data-framer-name\":\"facebook\",layoutDependency:layoutDependency,layoutId:\"MHzJwRKr6-container\",name:\"facebook\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"facebook\",iconSelection:\"Home\",id:\"MHzJwRKr6\",layoutId:\"MHzJwRKr6\",mirrored:false,name:\"facebook\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/customkickslabpr/\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"h3s4zr\",animation5,\"1btr96f\"),className:\"framer-h3s4zr framer-wflsmv\",\"data-framer-appear-id\":\"h3s4zr\",exit:animation3,initial:optimizeAppear(\"initial\",\"h3s4zr\",animation6,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"R2J4xeP18\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,boxShadow:\"0px 4px 2px 0px rgba(0,0,0,0.25)\"},transformTemplate:optimizeAppearTransformTemplate(\"h3s4zr\",transformTemplate2),whileHover:animation4,...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"5kzgzi\",animate:optimizeAppear(\"animate\",\"5kzgzi\",animation5,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"5kzgzi\",animation6,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"5kzgzi\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"1wpacnp\",animate:optimizeAppear(\"animate\",\"1wpacnp\",animation5,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"1wpacnp\",animation6,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"1wpacnp\",transformTemplate2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2nxnma-container\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"dpM90C8fI-container\",name:\"Instagram\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Instagram\",iconSelection:\"Home\",id:\"dpM90C8fI\",layoutId:\"dpM90C8fI\",mirrored:false,name:\"Instagram\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/channel/UCkw8YZuwKneYSG-gK7DMO6Q\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"10sj906\",animation5,\"1btr96f\"),className:\"framer-10sj906 framer-wflsmv\",\"data-framer-appear-id\":\"10sj906\",exit:animation3,initial:optimizeAppear(\"initial\",\"10sj906\",animation6,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"nlEIX_PEn\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,boxShadow:\"0px 4px 2px 0px rgba(0,0,0,0.25)\"},transformTemplate:optimizeAppearTransformTemplate(\"10sj906\",transformTemplate2),whileHover:animation4,...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"1rlald7\",animate:optimizeAppear(\"animate\",\"1rlald7\",animation5,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"1rlald7\",animation6,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"1rlald7\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"1b76rp2\",animate:optimizeAppear(\"animate\",\"1b76rp2\",animation5,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"1b76rp2\",animation6,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"1b76rp2\",transformTemplate2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e60a16-container\",\"data-framer-name\":\"youtube\",layoutDependency:layoutDependency,layoutId:\"Lf0cWIcEw-container\",name:\"youtube\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"youtube\",iconSelection:\"Home\",id:\"Lf0cWIcEw\",layoutId:\"Lf0cWIcEw\",mirrored:false,name:\"youtube\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@customkickslab\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1p1g25s\",animation5,\"1btr96f\"),className:\"framer-1p1g25s framer-wflsmv\",\"data-framer-appear-id\":\"1p1g25s\",exit:animation3,initial:optimizeAppear(\"initial\",\"1p1g25s\",animation6,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"He7xXC1Tk\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,boxShadow:\"0px 4px 2px 0px rgba(0,0,0,0.25)\"},transformTemplate:optimizeAppearTransformTemplate(\"1p1g25s\",transformTemplate2),whileHover:animation4,...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"o6voe2\",animate:optimizeAppear(\"animate\",\"o6voe2\",animation5,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"o6voe2\",animation6,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"o6voe2\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"6qrjpb\",animate:optimizeAppear(\"animate\",\"6qrjpb\",animation5,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"6qrjpb\",animation6,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"6qrjpb\",transformTemplate2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p87pk0-container\",\"data-framer-name\":\"youtube\",layoutDependency:layoutDependency,layoutId:\"vYGte5Kqr-container\",name:\"youtube\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"tiktok\",iconSelection:\"Home\",id:\"vYGte5Kqr\",layoutId:\"vYGte5Kqr\",mirrored:false,name:\"youtube\",selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/CustomKicksLab\",openInNewTab:false,children:/*#__PURE__*/_jsx(MotionAWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1f9m5mb\",animation5,\"1btr96f\"),className:\"framer-1f9m5mb framer-wflsmv\",\"data-framer-appear-id\":\"1f9m5mb\",exit:animation3,initial:optimizeAppear(\"initial\",\"1f9m5mb\",animation6,\"1btr96f\"),layoutDependency:layoutDependency,layoutId:\"YXJFjjow7\",style:{backgroundColor:\"var(--token-da74e6f8-9bae-4fef-8d0b-64942c6eb424, rgb(255, 0, 135))\",borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,boxShadow:\"0px 4px 2px 0px rgba(0,0,0,0.25)\"},transformTemplate:optimizeAppearTransformTemplate(\"1f9m5mb\",transformTemplate2),whileHover:animation4,...addPropertyOverrides({hXznQUsAX:{\"data-framer-appear-id\":\"12enqde\",animate:optimizeAppear(\"animate\",\"12enqde\",animation5,\"1wqb59w\"),initial:optimizeAppear(\"initial\",\"12enqde\",animation6,\"1wqb59w\"),transformTemplate:optimizeAppearTransformTemplate(\"12enqde\",transformTemplate2)},ZZ3Az8hif:{\"data-framer-appear-id\":\"xo9oxm\",animate:optimizeAppear(\"animate\",\"xo9oxm\",animation5,\"1clmnm5\"),initial:optimizeAppear(\"initial\",\"xo9oxm\",animation6,\"1clmnm5\"),transformTemplate:optimizeAppearTransformTemplate(\"xo9oxm\",transformTemplate2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1023,intrinsicWidth:1023,pixelHeight:1023,pixelWidth:1023,sizes:\"35px\",src:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png\",srcSet:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png?scale-down-to=512 512w, https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png 1023w\"},className:\"framer-uu8bi4\",\"data-framer-name\":\"Twitter\",layoutDependency:layoutDependency,layoutId:\"E3UIubgOu\",...addPropertyOverrides({hXznQUsAX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1023,intrinsicWidth:1023,pixelHeight:1023,pixelWidth:1023,sizes:\"25px\",src:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png\",srcSet:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png?scale-down-to=512 512w, https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png 1023w\"}},ZZ3Az8hif:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1023,intrinsicWidth:1023,pixelHeight:1023,pixelWidth:1023,sizes:\"15px\",src:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png\",srcSet:\"https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png?scale-down-to=512 512w, https://framerusercontent.com/images/b0mzWMwnU3IfPCwyjxLvYeGczvU.png 1023w\"}}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8fpz02\",\"data-framer-name\":\"Footer_Tab_info\",layoutDependency:layoutDependency,layoutId:\"NusDJZSFJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1difaj8\",\"data-framer-name\":\"Acerca de CKL\",layoutDependency:layoutDependency,layoutId:\"YniVKbaDQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Acerca de CKL\"})}),className:\"framer-p7yl1z\",fonts:[\"GF;Alexandria-700\"],layoutDependency:layoutDependency,layoutId:\"EnRL3k2RX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"Acerca de CKL\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EaVGU8q_5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Conoce al artista\"})})})}),className:\"framer-1su6i9a\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"R5Jag0eBm\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EaVGU8q_5\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Conoce al artista\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ik_JOTcPC\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"T\\xe9rminos de Uso\"})})})}),className:\"framer-1ib85xm\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"kXoEAovtp\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ik_JOTcPC\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"T\\xe9rminos de Uso\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DQYfZ6pvo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Pol\\xedtica de privacidad\"})})})}),className:\"framer-206z8f\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"XStETMiTK\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DQYfZ6pvo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Pol\\xedtica de privacidad\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Blog (Pronto) \"})}),className:\"framer-1u1qr6\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"Fm0Tcrked\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Blog (Pronto) \"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dcljqm\",\"data-framer-name\":\"Servicio al Cliente\",layoutDependency:layoutDependency,layoutId:\"Y62zVO1LE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Servicio al Cliente\"})}),className:\"framer-1bei1ps\",fonts:[\"GF;Alexandria-700\"],layoutDependency:layoutDependency,layoutId:\"yu5gzxtm3\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"Servicio al Cliente\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vSH_U7qiE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Comunicate con nosotros\"})})})}),className:\"framer-iggiz8\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"kAqfuwBIB\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vSH_U7qiE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Comunicate con nosotros\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Como limpiar tus Kicks (Pronto)\"})}),className:\"framer-9uqmxk\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"DUHYE8ZBv\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Como limpiar tus Kicks (Pronto)\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hr0fwt\",\"data-framer-name\":\"Tienda\",layoutDependency:layoutDependency,layoutId:\"uEPVM53q5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Tienda\"})}),className:\"framer-17gat4u\",fonts:[\"GF;Alexandria-700\"],layoutDependency:layoutDependency,layoutId:\"DZF2Gnx2y\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS03MDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\"},children:\"Tienda\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/17873448755?text=Saludos%20estoy%20interesado%20en%20tenis%20CKL\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Separa tus Custom Kicks\"})})})}),className:\"framer-pi1cp4\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"Ki6dwUSO5\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/17873448755?text=Saludos%20estoy%20interesado%20en%20tenis%20CKL\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-11tg4kk\",\"data-styles-preset\":\"IRYXYK26d\",children:\"Separa tus Custom Kicks\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Kick Shop ( Pronto )\"})}),className:\"framer-wwuv1h\",fonts:[\"GF;Alexandria-300\"],layoutDependency:layoutDependency,layoutId:\"i6SLH3_NF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ZZ3Az8hif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QWxleGFuZHJpYS0zMDA=\",\"--framer-font-family\":'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.05em\"},children:\"Kick Shop ( Pronto )\"})})}},baseVariant,gestureVariant)})]})]})]})})]})})});});const css=['.framer-Yshqy[data-border=\"true\"]::after, .framer-Yshqy [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yshqy.framer-wflsmv, .framer-Yshqy .framer-wflsmv { display: block; }\",\".framer-Yshqy.framer-1btr96f { height: 499px; position: relative; width: 2510px; }\",\".framer-Yshqy .framer-1oy5fn0 { bottom: 0px; flex: none; height: 51px; left: 0px; overflow: hidden; position: absolute; right: 0px; }\",\".framer-Yshqy .framer-pal16e { flex: none; height: auto; left: 50%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\".framer-Yshqy .framer-1ds53v2 { flex: none; height: 400px; left: calc(50.00000000000002% - 2300px / 2); overflow: visible; position: absolute; top: calc(49.498997995992006% - 400px / 2); width: 2300px; }\",\".framer-Yshqy .framer-1wkyv63 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 400px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: calc(49.89979959919842% - 400px / 2); }\",\".framer-Yshqy .framer-gabt33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: 400px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 372px; }\",\".framer-Yshqy .framer-4j2b6g { aspect-ratio: 1.1994750656167978 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 247px); overflow: visible; position: relative; width: 297px; }\",\".framer-Yshqy .framer-19arysv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 132px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Yshqy .framer-1b8ql78, .framer-Yshqy .framer-h3s4zr, .framer-Yshqy .framer-10sj906, .framer-Yshqy .framer-1p1g25s, .framer-Yshqy .framer-1f9m5mb { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 55px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 55px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Yshqy .framer-8nfbtt-container, .framer-Yshqy .framer-2nxnma-container, .framer-Yshqy .framer-1e60a16-container, .framer-Yshqy .framer-1p87pk0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 35px; }\",\".framer-Yshqy .framer-uu8bi4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 35px; }\",\".framer-Yshqy .framer-8fpz02 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: 398px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 701px; }\",\".framer-Yshqy .framer-1difaj8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 149px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 150px; }\",\".framer-Yshqy .framer-p7yl1z, .framer-Yshqy .framer-1su6i9a, .framer-Yshqy .framer-1ib85xm, .framer-Yshqy .framer-206z8f, .framer-Yshqy .framer-1u1qr6, .framer-Yshqy .framer-1bei1ps, .framer-Yshqy .framer-iggiz8, .framer-Yshqy .framer-9uqmxk, .framer-Yshqy .framer-17gat4u, .framer-Yshqy .framer-pi1cp4, .framer-Yshqy .framer-wwuv1h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Yshqy .framer-1dcljqm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 101px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 186px; }\",\".framer-Yshqy .framer-hr0fwt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 74px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 169px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yshqy .framer-1wkyv63, .framer-Yshqy .framer-gabt33, .framer-Yshqy .framer-19arysv, .framer-Yshqy .framer-1b8ql78, .framer-Yshqy .framer-h3s4zr, .framer-Yshqy .framer-10sj906, .framer-Yshqy .framer-1p1g25s, .framer-Yshqy .framer-1f9m5mb, .framer-Yshqy .framer-8fpz02, .framer-Yshqy .framer-1difaj8, .framer-Yshqy .framer-1dcljqm, .framer-Yshqy .framer-hr0fwt { gap: 0px; } .framer-Yshqy .framer-1wkyv63 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Yshqy .framer-1wkyv63 > :first-child, .framer-Yshqy .framer-19arysv > :first-child, .framer-Yshqy .framer-1b8ql78 > :first-child, .framer-Yshqy .framer-h3s4zr > :first-child, .framer-Yshqy .framer-10sj906 > :first-child, .framer-Yshqy .framer-1p1g25s > :first-child, .framer-Yshqy .framer-1f9m5mb > :first-child, .framer-Yshqy .framer-8fpz02 > :first-child { margin-left: 0px; } .framer-Yshqy .framer-1wkyv63 > :last-child, .framer-Yshqy .framer-19arysv > :last-child, .framer-Yshqy .framer-1b8ql78 > :last-child, .framer-Yshqy .framer-h3s4zr > :last-child, .framer-Yshqy .framer-10sj906 > :last-child, .framer-Yshqy .framer-1p1g25s > :last-child, .framer-Yshqy .framer-1f9m5mb > :last-child, .framer-Yshqy .framer-8fpz02 > :last-child { margin-right: 0px; } .framer-Yshqy .framer-gabt33 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Yshqy .framer-gabt33 > :first-child, .framer-Yshqy .framer-1difaj8 > :first-child, .framer-Yshqy .framer-1dcljqm > :first-child, .framer-Yshqy .framer-hr0fwt > :first-child { margin-top: 0px; } .framer-Yshqy .framer-gabt33 > :last-child, .framer-Yshqy .framer-1difaj8 > :last-child, .framer-Yshqy .framer-1dcljqm > :last-child, .framer-Yshqy .framer-hr0fwt > :last-child { margin-bottom: 0px; } .framer-Yshqy .framer-19arysv > *, .framer-Yshqy .framer-1b8ql78 > *, .framer-Yshqy .framer-h3s4zr > *, .framer-Yshqy .framer-10sj906 > *, .framer-Yshqy .framer-1p1g25s > *, .framer-Yshqy .framer-1f9m5mb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Yshqy .framer-8fpz02 > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } .framer-Yshqy .framer-1difaj8 > *, .framer-Yshqy .framer-1dcljqm > *, .framer-Yshqy .framer-hr0fwt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-Yshqy.framer-v-1wqb59w.framer-1btr96f { width: 810px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-1ds53v2, .framer-Yshqy.framer-v-1clmnm5 .framer-1ds53v2 { height: 450px; left: 0px; right: 0px; top: 0px; width: unset; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-1wkyv63 { gap: 0px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-gabt33 { order: 0; width: 286px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-4j2b6g { height: var(--framer-aspect-ratio-supported, 169px); order: 0; width: 202px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-19arysv, .framer-Yshqy.framer-v-1clmnm5 .framer-19arysv { height: 44px; order: 1; width: 79%; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-1b8ql78, .framer-Yshqy.framer-v-1wqb59w .framer-h3s4zr, .framer-Yshqy.framer-v-1wqb59w .framer-10sj906, .framer-Yshqy.framer-v-1wqb59w .framer-1p1g25s, .framer-Yshqy.framer-v-1wqb59w .framer-1f9m5mb { height: var(--framer-aspect-ratio-supported, 35px); width: 35px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-8nfbtt-container, .framer-Yshqy.framer-v-1wqb59w .framer-2nxnma-container, .framer-Yshqy.framer-v-1wqb59w .framer-1e60a16-container, .framer-Yshqy.framer-v-1wqb59w .framer-1p87pk0-container { height: var(--framer-aspect-ratio-supported, 27px); width: 25px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-uu8bi4 { height: var(--framer-aspect-ratio-supported, 25px); width: 25px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-8fpz02 { gap: 12px; order: 1; width: 524px; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-1difaj8 { left: 25px; order: 0; position: absolute; top: 27px; z-index: 1; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-1dcljqm { bottom: 121px; left: 131px; order: 1; position: absolute; z-index: 1; }\",\".framer-Yshqy.framer-v-1wqb59w .framer-hr0fwt { bottom: 34px; order: 2; position: absolute; right: 38px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yshqy.framer-v-1wqb59w .framer-1wkyv63, .framer-Yshqy.framer-v-1wqb59w .framer-8fpz02 { gap: 0px; } .framer-Yshqy.framer-v-1wqb59w .framer-1wkyv63 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Yshqy.framer-v-1wqb59w .framer-1wkyv63 > :first-child, .framer-Yshqy.framer-v-1wqb59w .framer-8fpz02 > :first-child { margin-left: 0px; } .framer-Yshqy.framer-v-1wqb59w .framer-1wkyv63 > :last-child, .framer-Yshqy.framer-v-1wqb59w .framer-8fpz02 > :last-child { margin-right: 0px; } .framer-Yshqy.framer-v-1wqb59w .framer-8fpz02 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-Yshqy.framer-v-1clmnm5.framer-1btr96f { width: 390px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-1wkyv63 { gap: 0px; height: 385px; top: calc(51.33333333333335% - 385px / 2); }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-gabt33 { height: 386px; order: 1; width: 214px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-4j2b6g { height: var(--framer-aspect-ratio-supported, 109px); order: 0; width: 131px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-1b8ql78, .framer-Yshqy.framer-v-1clmnm5 .framer-h3s4zr, .framer-Yshqy.framer-v-1clmnm5 .framer-10sj906, .framer-Yshqy.framer-v-1clmnm5 .framer-1p1g25s, .framer-Yshqy.framer-v-1clmnm5 .framer-1f9m5mb { height: var(--framer-aspect-ratio-supported, 26px); width: 26px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-8nfbtt-container { height: var(--framer-aspect-ratio-supported, 18px); order: 0; width: 15px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-2nxnma-container, .framer-Yshqy.framer-v-1clmnm5 .framer-1e60a16-container, .framer-Yshqy.framer-v-1clmnm5 .framer-1p87pk0-container { height: var(--framer-aspect-ratio-supported, 18px); width: 15px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-uu8bi4 { height: var(--framer-aspect-ratio-supported, 15px); width: 15px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-8fpz02 { gap: 12px; height: 399px; order: 0; width: 194px; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-1difaj8 { order: 0; position: absolute; right: -3px; top: 9px; width: 161px; z-index: 1; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-1dcljqm { order: 1; position: absolute; right: 0px; top: calc(52.63157894736844% - 101px / 2); width: 161px; z-index: 1; }\",\".framer-Yshqy.framer-v-1clmnm5 .framer-hr0fwt { bottom: 50px; order: 2; position: absolute; right: -2px; width: 161px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yshqy.framer-v-1clmnm5 .framer-1wkyv63, .framer-Yshqy.framer-v-1clmnm5 .framer-8fpz02 { gap: 0px; } .framer-Yshqy.framer-v-1clmnm5 .framer-1wkyv63 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Yshqy.framer-v-1clmnm5 .framer-1wkyv63 > :first-child, .framer-Yshqy.framer-v-1clmnm5 .framer-8fpz02 > :first-child { margin-left: 0px; } .framer-Yshqy.framer-v-1clmnm5 .framer-1wkyv63 > :last-child, .framer-Yshqy.framer-v-1clmnm5 .framer-8fpz02 > :last-child { margin-right: 0px; } .framer-Yshqy.framer-v-1clmnm5 .framer-8fpz02 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 499\n * @framerIntrinsicWidth 2510\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hXznQUsAX\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZZ3Az8hif\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerQX6vzOHJ3=withCSS(Component,css,\"framer-Yshqy\");export default FramerQX6vzOHJ3;FramerQX6vzOHJ3.displayName=\"Footer\";FramerQX6vzOHJ3.defaultProps={height:499,width:2510};addPropertyControls(FramerQX6vzOHJ3,{variant:{options:[\"ZUsXlOXBc\",\"hXznQUsAX\",\"ZZ3Az8hif\"],optionTitles:[\"Footer_base\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQX6vzOHJ3,[{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9r7TqbCHJ8BRq0b.woff2\",weight:\"400\"},{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9ocSabCHJ8BRq0b.woff2\",weight:\"700\"},{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v3/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbCHJ8BRq0b.woff2\",weight:\"300\"},...IconoirFonts,...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQX6vzOHJ3\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"2510\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hXznQUsAX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZZ3Az8hif\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"499\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QX6vzOHJ3.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "IconoirFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transition1", "animation", "transition2", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClickynhhlb", "args", "onClick1he5e9k", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "SVG", "RichText", "x", "Link", "css", "FramerH5bhlqKmj", "withCSS", "H5bhlqKmj_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "fontStore", "fonts", "css", "className", "IconoirFonts", "getFonts", "Icon", "MotionAWithFX", "withFX", "motion", "MotionDivWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "transition1", "animation", "transformTemplate2", "animation1", "animation2", "transition2", "animation3", "transition3", "animation4", "animation5", "animation6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "cx", "RichText", "x", "Image2", "optimizeAppear", "optimizeAppearTransformTemplate", "Link", "css", "FramerQX6vzOHJ3", "withCSS", "QX6vzOHJ3_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
