{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js", "ssg:https://framerusercontent.com/modules/dXSEPLEl7TWgSxNkFADJ/veVfBVvRmJGgivvEubgY/X_wgacHHt.js", "ssg:https://framerusercontent.com/modules/jAwIObgGqMbDJsJEPBqa/DkN9OSMfET0hF5zFaf3r/WZ0ySEW9p.js", "ssg:https://framerusercontent.com/modules/7u4lmsymVcT5JwR54RaW/qSyzigoLCeGuIRfyzGWP/Xa5TN8eXb.js", "ssg:https://framerusercontent.com/modules/IkMuvhDxYIWkpKT5gKzR/plfZY8LGSTF1ym2WpSQV/OPi9HK9MY.js", "ssg:https://framerusercontent.com/modules/i6utQWQ69APfUogEl51j/c3IKqSKlh3qUNHpkfNns/gJBTzyKYT.js", "ssg:https://framerusercontent.com/modules/VdA0UQNafWPiLR1VUxB1/e6J96YICDt6aILcIPtVI/NEYqx4nyE.js", "ssg:https://framerusercontent.com/modules/uQyGR6g8QLhN1IrVL42j/PwjAXvvVKOytTVa80pdl/bQ09Xgnqk.js", "ssg:https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js", "ssg:https://framerusercontent.com/modules/6nMw72rY1qVu9mGcQ8QI/9uzSuuVyXl5HYXAPptKw/Sy4xSaUbk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef,useMemo}from\"react\";import{useInView,animate}from\"framer-motion\";const HIDDEN=0;const SCRAMBLED=1;const REVEALED=2;/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function ScrambleAppear(props){var _props_style;const{from,scrambledLetters,text,scrambledColor,animation,speed}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const Tag=props.tag;const ref=useRef(null);const encryptedText=useRef(randomString(props));const[progress,setProgress]=useState(0);const[currentAnimation,setCurrentAnimation]=useState(null);const intervalRef=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const characterDelay=mapRange(speed,1,100,.2,.002)// seconds per character\n;const shuffledIndices=useMemo(()=>{if(from===\"random\"){const indices=Array.from({length:text.length},(_,i)=>i);return indices.sort(()=>Math.random()-.5);}return[];},[text,from]);const runAnimation=()=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}if(intervalRef.current){clearInterval(intervalRef.current);}// Add timeout for delay\nsetTimeout(()=>{intervalRef.current=setInterval(()=>{encryptedText.current=randomString(props);},characterDelay*1e3);setCurrentAnimation(animate(0,1,{type:\"ease\",ease:\"linear\",duration:characterDelay*(text.length+scrambledLetters),onUpdate:setProgress,onComplete:()=>{if(intervalRef.current){clearInterval(intervalRef.current);}}}));},animation.delay*1e3);}};useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}return()=>{if(intervalRef.current){clearInterval(intervalRef.current);}};},[]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();setProgress(0);if(intervalRef.current){clearInterval(intervalRef.current);}}}}},[isInView]);let segments=[];switch(from){case\"left\":{const leftCutoff=mapRange(progress,0,1,-scrambledLetters,text.length);const rightCutoff=mapRange(progress,0,1,0,text.length+scrambledLetters);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),REVEALED],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length)),HIDDEN]);break;}case\"center\":{const center=Math.ceil(text.length/2);const letters=Math.max(Math.floor(scrambledLetters/2),1);const leftCutoff=mapRange(progress,0,1,center,-letters);const rightCutoff=mapRange(progress,0,1,center+letters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,center),clamp(rightCutoff,0,center)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,center),clamp(text.length-rightCutoff,center,text.length)),REVEALED],[encryptedText.current.substring(clamp(text.length-leftCutoff,center,text.length),clamp(text.length-rightCutoff,center,text.length)),SCRAMBLED],[text.substring(clamp(text.length-leftCutoff,0,text.length),text.length),HIDDEN]);break;}case\"right\":{const leftCutoff=mapRange(progress,0,1,text.length,-scrambledLetters);const rightCutoff=mapRange(progress,0,1,text.length+scrambledLetters,0);segments.push([text.substring(0,clamp(leftCutoff,0,text.length)),HIDDEN],[encryptedText.current.substring(clamp(leftCutoff,0,text.length),clamp(rightCutoff,0,text.length)),SCRAMBLED],[text.substring(clamp(rightCutoff,0,text.length),text.length),REVEALED]);break;}case\"random\":{// Show all hidden characters if progress is 0 (during delay)\nif(progress===0){segments.push([text,HIDDEN]);}else if(progress>=1){segments.push([text,REVEALED]);}else{// Calculate two thresholds for each character based on its position in shuffledIndices\nfor(let i=0;i<text.length;i++){const indexInSequence=shuffledIndices.indexOf(i);// Adjust the windows to maintain consistent number of scrambled letters\nconst scrambleWindow=scrambledLetters/text.length// Size of the \"window\" of scrambled letters\n;const startScrambleAt=indexInSequence/text.length*(1-scrambleWindow)// When this character starts scrambling\n;const startRevealAt=startScrambleAt+scrambleWindow// When this character starts revealing\n;if(progress>=startRevealAt){// Past reveal threshold - show actual character\nsegments.push([text[i],REVEALED]);}else if(progress>=startScrambleAt){// Between scramble and reveal threshold - show scrambled\nsegments.push([encryptedText.current[i],SCRAMBLED]);}else{// Before scramble threshold - show hidden\nsegments.push([text[i],HIDDEN]);}}}break;}}return /*#__PURE__*/_jsx(Tag,{ref:ref,style:{color:props.color,userSelect:\"none\",pointerEvents:\"none\",margin:0,whiteSpace:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)?undefined:\"nowrap\",...props.font,...props.style},children:isCanvas?text:consolidateSegments(segments).map(([text,state],index)=>{switch(state){case HIDDEN:return /*#__PURE__*/_jsx(\"span\",{style:{opacity:0},children:text},index);case SCRAMBLED:return scrambledColor?/*#__PURE__*/_jsx(\"span\",{style:{color:scrambledColor},children:text},index):text;case REVEALED:return text;}})});}ScrambleAppear.displayName=\"Scramble Appear\";addPropertyControls(ScrambleAppear,{text:{type:ControlType.String,defaultValue:\"Learn Framer With Framer University\",displayTextArea:true},characters:{type:ControlType.String,defaultValue:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",displayTextArea:true},from:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"center\",\"right\",\"random\"],optionTitles:[\"Left\",\"Center\",\"Right\",\"Random\"]},font:{type:\"font\",controls:\"extended\",defaultFontType:\"monospace\",defaultValue:{fontSize:24,lineHeight:1.4}},color:{type:ControlType.Color,defaultValue:\"#000\"},scrambledColor:{type:ControlType.Color,optional:true,title:\"Scrambled\"},speed:{type:ControlType.Number,defaultValue:75,min:1,max:100,step:1,unit:\"%\"},scrambledLetters:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,title:\"Letters\"},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.trigger!==\"layerInView\"},delay:{type:ControlType.Number,defaultValue:0,min:0,step:.01}}},options:{type:ControlType.Object,buttonTitle:\"Options\",controls:{matchCase:{type:ControlType.Boolean,defaultValue:true},keepSpaces:{type:ControlType.Boolean,defaultValue:false,title:\"Spaces\",enabledTitle:\"Keep\",disabledTitle:\"Replace\",description:\"\"}}},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const randomString=props=>{const length=props.text.length;const characters=props.characters;const originalText=props.text;const matchCase=props.options.matchCase;const keepSpaces=props.options.keepSpaces;if(length<=0){return\"\";}let result=\"\";let lastChar=\"\";for(let i=0;i<length;i++){const originalChar=originalText[i];// Preserve spaces and tabs if keepSpaces is true\nif(keepSpaces&&(originalChar===\" \"||originalChar===\"\t\")){result+=originalChar;continue;}let newChar;do{newChar=characters[Math.floor(Math.random()*characters.length)];// Match case if matchCase is true\nif(matchCase&&originalChar){newChar=originalChar===originalChar.toUpperCase()?newChar.toUpperCase():newChar.toLowerCase();}}while(newChar===lastChar&&characters.length>=8)result+=newChar;lastChar=newChar;}return result;};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function clamp(value,min,max){return Math.max(min,Math.min(value,max));}function consolidateSegments(segments){return segments.filter(([text])=>text.length>0).reduce((acc,curr)=>{// If array is empty or last segment has different state, add new segment\nif(acc.length===0||acc[acc.length-1][1]!==curr[1]){acc.push(curr);}else{// Combine text with the last segment that has the same state\nacc[acc.length-1][0]+=curr[0];}return acc;},[]);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrambleAppear\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ScrambleAppear_Prod.map", "// Generated by Framer (4c611f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Fg79zwq9Y\",\"I00rnLQsV\"];const variantClassNames={Fg79zwq9Y:\"framer-v-jlegc5\",I00rnLQsV:\"framer-v-lvnanx\"};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 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={Black:\"I00rnLQsV\",White:\"Fg79zwq9Y\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"Fg79zwq9Y\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Fg79zwq9Y\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isDisplayed=()=>{if(baseVariant===\"I00rnLQsV\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"I00rnLQsV\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-zkkZp\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-jlegc5\",className),\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"Fg79zwq9Y\",ref:ref,style:{...style},...addPropertyOverrides({I00rnLQsV:{\"data-framer-name\":\"Black\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-ycm4hb\",\"data-framer-name\":\"Right White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i0M0QHgkO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 9 3.333 L 13.667 8 L 9 12.667 M 2.333 8 L 13.333 8\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"hsl(0, 0%, 100%)\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:1738655641,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1qi9pmd\",\"data-framer-name\":\"Right Black\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DR8kYSiDA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 9 3.333 L 13.667 8 L 9 12.667 M 2.333 8 L 13.333 8\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"var(--token-419394a1-565d-4952-8ba3-b4f1eb92339c, rgb(5, 5, 5)) /* {&quot;name&quot;:&quot;1&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:4092151826,withExternalLayout:true,...addPropertyOverrides({I00rnLQsV:{svgContentId:19198337}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-zkkZp [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-zkkZp .framer-bv9emp { display: block; }\",\".framer-zkkZp .framer-jlegc5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 16px; }\",\".framer-zkkZp .framer-ycm4hb, .framer-zkkZp .framer-1qi9pmd { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zkkZp .framer-jlegc5 { gap: 0px; } .framer-zkkZp .framer-jlegc5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zkkZp .framer-jlegc5 > :first-child { margin-left: 0px; } .framer-zkkZp .framer-jlegc5 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"I00rnLQsV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerX_wgacHHt=withCSS(Component,css,\"framer-zkkZp\");export default FramerX_wgacHHt;FramerX_wgacHHt.displayName=\"Bouncy Button/Icon\";FramerX_wgacHHt.defaultProps={height:16,width:16};addPropertyControls(FramerX_wgacHHt,{variant:{options:[\"Fg79zwq9Y\",\"I00rnLQsV\"],optionTitles:[\"White\",\"Black\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerX_wgacHHt,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX_wgacHHt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"16\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I00rnLQsV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"16\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./X_wgacHHt.map", "// Generated by Framer (4c611f3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BouncyButtonIcon from\"https://framerusercontent.com/modules/dXSEPLEl7TWgSxNkFADJ/veVfBVvRmJGgivvEubgY/X_wgacHHt.js\";const BouncyButtonIconFonts=getFonts(BouncyButtonIcon);const BouncyButtonIconControls=getPropertyControls(BouncyButtonIcon);const cycleOrder=[\"sZ2hH_8Gc\",\"jD1kor83l\"];const variantClassNames={jD1kor83l:\"framer-v-fvy1ya\",sZ2hH_8Gc:\"framer-v-m040mq\"};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={In:\"jD1kor83l\",Out:\"sZ2hH_8Gc\"};const getProps=({dotColor,height,iconColor,id,width,...props})=>{var ref,_variant,ref1,ref2;return{...props,bkgNXsaVh:(ref=dotColor!==null&&dotColor!==void 0?dotColor:props.bkgNXsaVh)!==null&&ref!==void 0?ref:'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(5, 154, 255)) /* {\"name\":\"Accent\"} */',variant:(ref1=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref1!==void 0?ref1:\"sZ2hH_8Gc\",wZAz72OR6:(ref2=iconColor!==null&&iconColor!==void 0?iconColor:props.wZAz72OR6)!==null&&ref2!==void 0?ref2:\"Fg79zwq9Y\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,wZAz72OR6,bkgNXsaVh,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"sZ2hH_8Gc\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-tyOpj\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-m040mq\",className),\"data-framer-name\":\"Out\",layoutDependency:layoutDependency,layoutId:\"sZ2hH_8Gc\",ref:ref,style:{backgroundColor:bkgNXsaVh,borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",...style},...addPropertyOverrides({jD1kor83l:{\"data-framer-name\":\"In\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-4mffbq-container\",layoutDependency:layoutDependency,layoutId:\"pzwpBwaMV-container\",children:/*#__PURE__*/ _jsx(BouncyButtonIcon,{height:\"100%\",id:\"pzwpBwaMV\",layoutId:\"pzwpBwaMV\",style:{height:\"100%\",width:\"100%\"},variant:wZAz72OR6,width:\"100%\"})})})})})});});const css=['.framer-tyOpj [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-tyOpj .framer-xtdjq0 { display: block; }\",\".framer-tyOpj .framer-m040mq { height: 12px; overflow: hidden; position: relative; width: 12px; will-change: transform; }\",\".framer-tyOpj .framer-4mffbq-container { flex: none; height: 16px; left: -36px; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-tyOpj.framer-v-fvy1ya .framer-m040mq { height: 28px; width: 28px; }\",\".framer-tyOpj.framer-v-fvy1ya .framer-4mffbq-container { left: calc(50.00000000000002% - 16px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12\n * @framerIntrinsicWidth 12\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jD1kor83l\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wZAz72OR6\":\"iconColor\",\"bkgNXsaVh\":\"dotColor\"}\n */ const FramerWZ0ySEW9p=withCSS(Component,css,\"framer-tyOpj\");export default FramerWZ0ySEW9p;FramerWZ0ySEW9p.displayName=\"Bouncy Button/Dot\";FramerWZ0ySEW9p.defaultProps={height:12,width:12};addPropertyControls(FramerWZ0ySEW9p,{variant:{options:[\"sZ2hH_8Gc\",\"jD1kor83l\"],optionTitles:[\"Out\",\"In\"],title:\"Variant\",type:ControlType.Enum},wZAz72OR6:(BouncyButtonIconControls===null||BouncyButtonIconControls===void 0?void 0:BouncyButtonIconControls[\"variant\"])&&{...BouncyButtonIconControls[\"variant\"],defaultValue:\"Fg79zwq9Y\",hidden:undefined,title:\"Icon Color\"},bkgNXsaVh:{defaultValue:'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(5, 154, 255)) /* {\"name\":\"Accent\"} */',title:\"Dot Color\",type:ControlType.Color}});addFonts(FramerWZ0ySEW9p,[...BouncyButtonIconFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWZ0ySEW9p\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"wZAz72OR6\\\":\\\"iconColor\\\",\\\"bkgNXsaVh\\\":\\\"dotColor\\\"}\",\"framerIntrinsicHeight\":\"12\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jD1kor83l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"12\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WZ0ySEW9p.map", "// Generated by Framer (401b244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BouncyButtonDot from\"https://framerusercontent.com/modules/jAwIObgGqMbDJsJEPBqa/DkN9OSMfET0hF5zFaf3r/WZ0ySEW9p.js\";const BouncyButtonDotFonts=getFonts(BouncyButtonDot);const enabledGestures={pJ5LKR69i:{hover:true}};const cycleOrder=[\"pJ5LKR69i\"];const serializationHash=\"framer-yoNcg\";const variantClassNames={pJ5LKR69i:\"framer-v-3gmuso\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({button,dotColor,height,id,label,link,newTab,smoothScroll,width,...props})=>{var _ref,_ref1,_ref2;return{...props,AAql3Z1IA:newTab!==null&&newTab!==void 0?newTab:props.AAql3Z1IA,G12sDdivV:(_ref=button!==null&&button!==void 0?button:props.G12sDdivV)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",gnaXB_FDf:(_ref1=label!==null&&label!==void 0?label:props.gnaXB_FDf)!==null&&_ref1!==void 0?_ref1:\"Get started\",lflvlvWlr:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.lflvlvWlr,uzYUogkDq:link!==null&&link!==void 0?link:props.uzYUogkDq,V4GP67J_M:(_ref2=dotColor!==null&&dotColor!==void 0?dotColor:props.V4GP67J_M)!==null&&_ref2!==void 0?_ref2:\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(5, 154, 255))\"};};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,G12sDdivV,gnaXB_FDf,tkVfb0cuk,V4GP67J_M,uzYUogkDq,AAql3Z1IA,lflvlvWlr,NEqJTpV7FvdwXYUeKe,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pJ5LKR69i\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uzYUogkDq,openInNewTab:AAql3Z1IA,smoothScroll:lflvlvWlr,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-3gmuso\",className,classNames)} framer-1j19qyi`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"pJ5LKR69i\",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:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({\"pJ5LKR69i-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yquo9h\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"ah9N0Fqei\",style:{backgroundColor:G12sDdivV,borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plwotx\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"GJn0v8nEA\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ki7pm-container\",layoutDependency:layoutDependency,layoutId:\"EiiZOydoZ-container\",children:/*#__PURE__*/_jsx(BouncyButtonDot,{dotColor:V4GP67J_M,height:\"100%\",iconColor:tkVfb0cuk,id:\"EiiZOydoZ\",layoutId:\"EiiZOydoZ\",variant:\"sZ2hH_8Gc\",width:\"100%\",...addPropertyOverrides({\"pJ5LKR69i-hover\":{variant:\"jD1kor83l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sj9l18\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"qNf3peak9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-NEqJTpV7F-vdwXYUeKe))\"},children:\"Get started\"})}),className:\"framer-v3tsde\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"ky4VpYmHd\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-NEqJTpV7F-vdwXYUeKe)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-NEqJTpV7F-vdwXYUeKe\":NEqJTpV7FvdwXYUeKe},text:gnaXB_FDf,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yoNcg.framer-1j19qyi, .framer-yoNcg .framer-1j19qyi { display: block; }\",\".framer-yoNcg.framer-3gmuso { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 8px 8px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yoNcg .framer-1yquo9h { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yoNcg .framer-1plwotx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 28px; }\",\".framer-yoNcg .framer-ki7pm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-yoNcg .framer-1sj9l18 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 6px 0px 2px; position: relative; width: min-content; }\",\".framer-yoNcg .framer-v3tsde { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yoNcg.framer-3gmuso, .framer-yoNcg .framer-1plwotx, .framer-yoNcg .framer-1sj9l18 { gap: 0px; } .framer-yoNcg.framer-3gmuso > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-yoNcg.framer-3gmuso > :first-child, .framer-yoNcg .framer-1sj9l18 > :first-child { margin-left: 0px; } .framer-yoNcg.framer-3gmuso > :last-child, .framer-yoNcg .framer-1sj9l18 > :last-child { margin-right: 0px; } .framer-yoNcg .framer-1plwotx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yoNcg .framer-1plwotx > :first-child { margin-top: 0px; } .framer-yoNcg .framer-1plwotx > :last-child { margin-bottom: 0px; } .framer-yoNcg .framer-1sj9l18 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-yoNcg.framer-v-3gmuso.hover .framer-1yquo9h { bottom: -2px; left: -2px; right: -2px; top: -2px; }\",\".framer-yoNcg.framer-v-3gmuso.hover .framer-1sj9l18 { padding: 0px 6px 0px 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iwbjEp6pQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"G12sDdivV\":\"button\",\"gnaXB_FDf\":\"label\",\"V4GP67J_M\":\"dotColor\",\"uzYUogkDq\":\"link\",\"AAql3Z1IA\":\"newTab\",\"lflvlvWlr\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXa5TN8eXb=withCSS(Component,css,\"framer-yoNcg\");export default FramerXa5TN8eXb;FramerXa5TN8eXb.displayName=\"Button/Bouncy Button\";FramerXa5TN8eXb.defaultProps={height:44,width:135};addPropertyControls(FramerXa5TN8eXb,{G12sDdivV:{defaultValue:\"rgb(255, 255, 255)\",title:\"Button\",type:ControlType.Color},gnaXB_FDf:{defaultValue:\"Get started\",displayTextArea:false,title:\"Label\",type:ControlType.String},V4GP67J_M:{defaultValue:'var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(5, 154, 255)) /* {\"name\":\"Accent\"} */',title:\"Dot Color\",type:ControlType.Color},uzYUogkDq:{title:\"Link\",type:ControlType.Link},AAql3Z1IA:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},lflvlvWlr:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramerXa5TN8eXb,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BouncyButtonDotFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXa5TN8eXb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iwbjEp6pQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"G12sDdivV\\\":\\\"button\\\",\\\"gnaXB_FDf\\\":\\\"label\\\",\\\"V4GP67J_M\\\":\\\"dotColor\\\",\\\"uzYUogkDq\\\":\\\"link\\\",\\\"AAql3Z1IA\\\":\\\"newTab\\\",\\\"lflvlvWlr\\\":\\\"smoothScroll\\\"}\",\"framerIntrinsicWidth\":\"135\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Xa5TN8eXb.map", "// Generated by Framer (c7eb1b9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"YwbnMYXlV\",\"OtorYVasr\"];const serializationHash=\"framer-w8KXs\";const variantClassNames={OtorYVasr:\"framer-v-q8pdb3\",YwbnMYXlV:\"framer-v-1l7nzfw\"};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:20,delay:0,mass:1,stiffness:300,type:\"spring\"},OtorYVasr:{damping:20,delay:0,mass:1,stiffness:300,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Close:\"OtorYVasr\",Hamburger:\"YwbnMYXlV\"};const getProps=({color,height,id,radius,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,NwSd5Ti5y:(_ref=radius!==null&&radius!==void 0?radius:props.NwSd5Ti5y)!==null&&_ref!==void 0?_ref:1,QfRxYOe98:(_ref1=color!==null&&color!==void 0?color:props.QfRxYOe98)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"YwbnMYXlV\"};};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,QfRxYOe98,NwSd5Ti5y,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"YwbnMYXlV\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapt77tm9=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OtorYVasr\");});const onTapp9by64=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"YwbnMYXlV\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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-1l7nzfw\",className,classNames),\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"YwbnMYXlV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapt77tm9,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({OtorYVasr:{\"data-framer-name\":\"Close\",onTap:onTapp9by64}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pgm0b2\",layoutDependency:layoutDependency,layoutId:\"TWLoifwDl\",style:{backgroundColor:QfRxYOe98,borderBottomLeftRadius:NwSd5Ti5y,borderBottomRightRadius:NwSd5Ti5y,borderTopLeftRadius:NwSd5Ti5y,borderTopRightRadius:NwSd5Ti5y,opacity:1},variants:{OtorYVasr:{opacity:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s25ocu\",layoutDependency:layoutDependency,layoutId:\"D5VxwRu2O\",style:{backgroundColor:QfRxYOe98,borderBottomLeftRadius:NwSd5Ti5y,borderBottomRightRadius:NwSd5Ti5y,borderTopLeftRadius:NwSd5Ti5y,borderTopRightRadius:NwSd5Ti5y,rotate:0},variants:{OtorYVasr:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-inj4qp\",layoutDependency:layoutDependency,layoutId:\"M_QZlpSpe\",style:{backgroundColor:QfRxYOe98,borderBottomLeftRadius:NwSd5Ti5y,borderBottomRightRadius:NwSd5Ti5y,borderTopLeftRadius:NwSd5Ti5y,borderTopRightRadius:NwSd5Ti5y,rotate:0},variants:{OtorYVasr:{rotate:-45}}})]})})});});const css=['.framer-w8KXs[data-border=\"true\"]::after, .framer-w8KXs [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-w8KXs.framer-11c01x7, .framer-w8KXs .framer-11c01x7 { display: block; }\",\".framer-w8KXs.framer-1l7nzfw { cursor: pointer; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-w8KXs .framer-pgm0b2 { flex: none; height: 2px; left: 3px; overflow: visible; position: absolute; top: 6px; width: 15px; }\",\".framer-w8KXs .framer-1s25ocu { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; }\",\".framer-w8KXs .framer-inj4qp { bottom: 6px; flex: none; height: 2px; left: 3px; overflow: visible; position: absolute; width: 20px; }\",\".framer-w8KXs.framer-v-q8pdb3 .framer-pgm0b2 { width: 1px; }\",\".framer-w8KXs.framer-v-q8pdb3 .framer-inj4qp { bottom: unset; left: calc(50.00000000000002% - 24px / 2); top: calc(50.00000000000002% - 2px / 2); width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OtorYVasr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QfRxYOe98\":\"color\",\"NwSd5Ti5y\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerOPi9HK9MY=withCSS(Component,css,\"framer-w8KXs\");export default FramerOPi9HK9MY;FramerOPi9HK9MY.displayName=\"Navigation/Hamburger\";FramerOPi9HK9MY.defaultProps={height:30,width:30};addPropertyControls(FramerOPi9HK9MY,{variant:{options:[\"YwbnMYXlV\",\"OtorYVasr\"],optionTitles:[\"Hamburger\",\"Close\"],title:\"Variant\",type:ControlType.Enum},QfRxYOe98:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},NwSd5Ti5y:{defaultValue:1,displayStepper:true,max:1,min:0,title:\"Radius\",type:ControlType.Number}});addFonts(FramerOPi9HK9MY,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOPi9HK9MY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"30\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OtorYVasr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerVariables\":\"{\\\"QfRxYOe98\\\":\\\"color\\\",\\\"NwSd5Ti5y\\\":\\\"radius\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OPi9HK9MY.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-gDFRo .framer-styles-preset-18yr1ch:not(.rich-text-wrapper), .framer-gDFRo .framer-styles-preset-18yr1ch.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }\"];export const className=\"framer-gDFRo\";\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\"}}}", "// Generated by Framer (401b244)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/i6utQWQ69APfUogEl51j/c3IKqSKlh3qUNHpkfNns/gJBTzyKYT.js\";const enabledGestures={ANmso7Fhs:{hover:true}};const cycleOrder=[\"ANmso7Fhs\"];const serializationHash=\"framer-c4zMy\";const variantClassNames={ANmso7Fhs:\"framer-v-wkku2v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({borderColor,height,id,link,textColor,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,gXyAPMRGO:(_ref=textColor!==null&&textColor!==void 0?textColor:props.gXyAPMRGO)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",NTOnIbDOf:link!==null&&link!==void 0?link:props.NTOnIbDOf,Q0n_gFqmK:(_ref1=title!==null&&title!==void 0?title:props.Q0n_gFqmK)!==null&&_ref1!==void 0?_ref1:\"Item\",Q6qDsf_y5:(_ref2=borderColor!==null&&borderColor!==void 0?borderColor:props.Q6qDsf_y5)!==null&&_ref2!==void 0?_ref2:\"rgb(255, 255, 255)\"};};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,Q0n_gFqmK,NTOnIbDOf,Q6qDsf_y5,gXyAPMRGO,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ANmso7Fhs\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wkku2v\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"ANmso7Fhs\",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:{...style},...addPropertyOverrides({\"ANmso7Fhs-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-gXyAPMRGO-NEYqx4nyE))\"},children:/*#__PURE__*/_jsx(Link,{href:NTOnIbDOf,openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-18yr1ch\",\"data-styles-preset\":\"gJBTzyKYT\",children:\"Item\"})})})}),className:\"framer-1688sjl\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"sVAbfiJpW\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-gXyAPMRGO-NEYqx4nyE)\",\"--variable-reference-gXyAPMRGO-NEYqx4nyE\":gXyAPMRGO},text:Q0n_gFqmK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gjvq7z\",\"data-framer-name\":\"Border\",layoutDependency:layoutDependency,layoutId:\"cZVw9IOq4\",style:{backgroundColor:Q6qDsf_y5},variants:{\"ANmso7Fhs-hover\":{backgroundColor:\"rgb(255, 255, 255)\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c4zMy.framer-1ov90og, .framer-c4zMy .framer-1ov90og { display: block; }\",\".framer-c4zMy.framer-wkku2v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-c4zMy .framer-1688sjl { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-c4zMy .framer-gjvq7z { bottom: -2px; flex: none; height: 1px; left: 0px; position: absolute; width: 0%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c4zMy.framer-wkku2v { gap: 0px; } .framer-c4zMy.framer-wkku2v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-c4zMy.framer-wkku2v > :first-child { margin-top: 0px; } .framer-c4zMy.framer-wkku2v > :last-child { margin-bottom: 0px; } }\",\".framer-c4zMy.framer-v-wkku2v.hover .framer-gjvq7z { width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 17\n * @framerIntrinsicWidth 35\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"UTu8MnLOy\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Q0n_gFqmK\":\"title\",\"NTOnIbDOf\":\"link\",\"Q6qDsf_y5\":\"borderColor\",\"gXyAPMRGO\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNEYqx4nyE=withCSS(Component,css,\"framer-c4zMy\");export default FramerNEYqx4nyE;FramerNEYqx4nyE.displayName=\"Button/Underline Animation\";FramerNEYqx4nyE.defaultProps={height:17,width:35};addPropertyControls(FramerNEYqx4nyE,{Q0n_gFqmK:{defaultValue:\"Item\",displayTextArea:false,title:\"Title\",type:ControlType.String},NTOnIbDOf:{title:\"Link\",type:ControlType.Link},Q6qDsf_y5:{defaultValue:\"rgb(255, 255, 255)\",title:\"Border Color\",type:ControlType.Color},gXyAPMRGO:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text Color\",type:ControlType.Color}});addFonts(FramerNEYqx4nyE,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNEYqx4nyE\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"17\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UTu8MnLOy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"35\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Q0n_gFqmK\\\":\\\"title\\\",\\\"NTOnIbDOf\\\":\\\"link\\\",\\\"Q6qDsf_y5\\\":\\\"borderColor\\\",\\\"gXyAPMRGO\\\":\\\"textColor\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NEYqx4nyE.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonBouncyButton from\"https://framerusercontent.com/modules/7u4lmsymVcT5JwR54RaW/qSyzigoLCeGuIRfyzGWP/Xa5TN8eXb.js\";import NavigationHamburger from\"https://framerusercontent.com/modules/IkMuvhDxYIWkpKT5gKzR/plfZY8LGSTF1ym2WpSQV/OPi9HK9MY.js\";import ButtonUnderlineAnimation from\"https://framerusercontent.com/modules/VdA0UQNafWPiLR1VUxB1/e6J96YICDt6aILcIPtVI/NEYqx4nyE.js\";const NavigationHamburgerFonts=getFonts(NavigationHamburger);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const ButtonUnderlineAnimationFonts=getFonts(ButtonUnderlineAnimation);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonBouncyButtonFonts=getFonts(ButtonBouncyButton);const cycleOrder=[\"Mq4KLiHVD\",\"zm6rEKvgU\",\"eGRuIwF02\",\"gI8OKjy83\"];const serializationHash=\"framer-WOkW7\";const variantClassNames={eGRuIwF02:\"framer-v-1ahv2wg\",gI8OKjy83:\"framer-v-p7qx70\",Mq4KLiHVD:\"framer-v-tkhxqg\",zm6rEKvgU:\"framer-v-1flo5u7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:60,delay:.4,mass:3,stiffness:540,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation1={opacity:.001,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition4={damping:30,delay:.25,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Closed\":\"gI8OKjy83\",\"Mobile Open\":\"eGRuIwF02\",\"Nav Mini\":\"zm6rEKvgU\",Desktop:\"Mq4KLiHVD\"};const getProps=({height,id,image,width,...props})=>{return{...props,m65IYz7wA:image??props.m65IYz7wA??{src:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp\",srcSet:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp 818w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"Mq4KLiHVD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,m65IYz7wA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Mq4KLiHVD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearuxhzea=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zm6rEKvgU\"),300);});const onTap1jm3tm6=activeVariantCallback(async(...args)=>{setVariant(\"Mq4KLiHVD\");});const onTap1x4wr12=activeVariantCallback(async(...args)=>{setVariant(\"gI8OKjy83\");});const onTapk9w9ky=activeVariantCallback(async(...args)=>{setVariant(\"eGRuIwF02\");});useOnVariantChange(baseVariant,{default:onAppearuxhzea,eGRuIwF02:undefined,gI8OKjy83:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"eGRuIwF02\",\"gI8OKjy83\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"gI8OKjy83\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({eGRuIwF02:{value:transition2},gI8OKjy83:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tkhxqg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mq4KLiHVD\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.05)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\",...style},variants:{eGRuIwF02:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgb(15, 15, 15)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,WebkitBackdropFilter:\"blur(5px)\"},gI8OKjy83:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(33, 32, 32, 0.7)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,WebkitBackdropFilter:\"blur(5px)\"},zm6rEKvgU:{\"--border-bottom-width\":\"0px\"}},...addPropertyOverrides({eGRuIwF02:{\"data-framer-name\":\"Mobile Open\",\"data-highlight\":undefined},gI8OKjy83:{\"data-framer-name\":\"Mobile Closed\",\"data-highlight\":undefined},zm6rEKvgU:{\"data-framer-name\":\"Nav Mini\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sys3ia\",layoutDependency:layoutDependency,layoutId:\"LHGXsg1qr\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\"},variants:{eGRuIwF02:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\"},gI8OKjy83:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"none\"},zm6rEKvgU:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(33, 32, 32, 0.05)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({zm6rEKvgU:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1jm3tm6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17rl07c\",layoutDependency:layoutDependency,layoutId:\"rZi1aV8td\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vka6j\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"WHPG8Mxp8\",children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Z_5ApRI9u\",...addPropertyOverrides({gI8OKjy83:{href:{webPageId:\"augiA20Il\"}},zm6rEKvgU:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||76)-32-44)/2)+7+-14+0),sizes:\"50px\",...toResponsiveImage(m65IYz7wA),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ne5seb framer-11bxmwm\",\"data-framer-name\":\"Logo Image\",layoutDependency:layoutDependency,layoutId:\"Z_5ApRI9u\",...addPropertyOverrides({eGRuIwF02:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||349.5)-66-285)/2)+0+0+-14+0),sizes:\"50px\",...toResponsiveImage(m65IYz7wA),...{positionX:\"center\",positionY:\"center\"}}},gI8OKjy83:{as:\"a\",background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||62)-32-30)/2)+0+0+-14+0),sizes:\"50px\",...toResponsiveImage(m65IYz7wA),...{positionX:\"center\",positionY:\"center\"}}},zm6rEKvgU:{as:\"a\",background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||108)-32-76)/2)+23+-14+0),sizes:\"50px\",...toResponsiveImage(m65IYz7wA),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kl71fl\",layoutDependency:layoutDependency,layoutId:\"cvRoSrjeE\",...addPropertyOverrides({eGRuIwF02:{\"data-highlight\":true,onTap:onTap1x4wr12},gI8OKjy83:{\"data-highlight\":true,onTap:onTapk9w9ky}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-72tash-container\",\"data-framer-appear-id\":\"72tash\",initial:animation1,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"oJ_MEtCJi-container\",nodeId:\"oJ_MEtCJi\",optimized:true,rendersWithMotion:true,scopeId:\"bQ09Xgnqk\",style:{transformPerspective:1200},variants:{eGRuIwF02:{transformPerspective:undefined},gI8OKjy83:{transformPerspective:undefined}},...addPropertyOverrides({eGRuIwF02:{animate:undefined,initial:undefined,optimized:undefined},gI8OKjy83:{animate:undefined,initial:undefined,optimized:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(NavigationHamburger,{height:\"100%\",id:\"oJ_MEtCJi\",layoutId:\"oJ_MEtCJi\",NwSd5Ti5y:1,QfRxYOe98:\"rgb(255, 255, 255)\",variant:\"OtorYVasr\",width:\"100%\",...addPropertyOverrides({gI8OKjy83:{variant:\"YwbnMYXlV\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{className:\"framer-s7bl6e\",\"data-framer-appear-id\":\"s7bl6e\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"tihGEWcLg\",variants:{eGRuIwF02:{transformPerspective:1200}},...addPropertyOverrides({eGRuIwF02:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,initial:animation3,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uzCf0PYc_\"},implicitPathVariables:undefined},{href:{webPageId:\"uzCf0PYc_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+(16+((componentViewport?.height||76)-32-44)/2)+13.5+0,...addPropertyOverrides({eGRuIwF02:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||349.5)-66-285)/2)+0+80+0+0},zm6rEKvgU:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||108)-32-76)/2)+29.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dnuryt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ej9IcOtDc-container\",nodeId:\"ej9IcOtDc\",rendersWithMotion:true,scopeId:\"bQ09Xgnqk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"ej9IcOtDc\",layoutId:\"ej9IcOtDc\",Q0n_gFqmK:\"GH SPAIN\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({eGRuIwF02:{NTOnIbDOf:resolvedLinks[1]},zm6rEKvgU:{NTOnIbDOf:resolvedLinks[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X3nBh8R87\"},implicitPathVariables:undefined},{href:{webPageId:\"X3nBh8R87\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+(16+((componentViewport?.height||76)-32-44)/2)+13.5+0,...addPropertyOverrides({eGRuIwF02:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||349.5)-66-285)/2)+0+80+0+47},zm6rEKvgU:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||108)-32-76)/2)+29.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h3j14v-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QHGNWQaQh-container\",nodeId:\"QHGNWQaQh\",rendersWithMotion:true,scopeId:\"bQ09Xgnqk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"QHGNWQaQh\",layoutId:\"QHGNWQaQh\",Q0n_gFqmK:\"PHARMAZONE\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({eGRuIwF02:{NTOnIbDOf:resolvedLinks1[1]},zm6rEKvgU:{NTOnIbDOf:resolvedLinks1[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pcR22cCWK\"},implicitPathVariables:undefined},{href:{webPageId:\"pcR22cCWK\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+(16+((componentViewport?.height||76)-32-44)/2)+13.5+0,...addPropertyOverrides({eGRuIwF02:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||349.5)-66-285)/2)+0+80+0+94},zm6rEKvgU:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||108)-32-76)/2)+29.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1exoha3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tWvE8XhU1-container\",nodeId:\"tWvE8XhU1\",rendersWithMotion:true,scopeId:\"bQ09Xgnqk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"tWvE8XhU1\",layoutId:\"tWvE8XhU1\",Q0n_gFqmK:\"FARMACIA\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({eGRuIwF02:{NTOnIbDOf:resolvedLinks2[1]},zm6rEKvgU:{NTOnIbDOf:resolvedLinks2[0]}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fta9_KaT2\"},implicitPathVariables:undefined},{href:{webPageId:\"fta9_KaT2\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(16+((componentViewport?.height||76)-32-44)/2)+0,...addPropertyOverrides({eGRuIwF02:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||349.5)-66-285)/2)+0+241},zm6rEKvgU:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||108)-32-76)/2)+16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lvqn0n-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"NHPLW0hKs-container\",nodeId:\"NHPLW0hKs\",rendersWithMotion:true,scopeId:\"bQ09Xgnqk\",children:/*#__PURE__*/_jsx(ButtonBouncyButton,{AAql3Z1IA:false,G12sDdivV:\"rgb(255, 255, 255)\",gnaXB_FDf:\"PEDIDOS\",height:\"100%\",id:\"NHPLW0hKs\",layoutId:\"NHPLW0hKs\",lflvlvWlr:false,uzYUogkDq:\"https://element-components.framer.website/button/buttonuniverse\",V4GP67J_M:\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(5, 154, 255))\",width:\"100%\",...addPropertyOverrides({eGRuIwF02:{uzYUogkDq:resolvedLinks3[1]},zm6rEKvgU:{uzYUogkDq:resolvedLinks3[0]}},baseVariant,gestureVariant)})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WOkW7.framer-11bxmwm, .framer-WOkW7 .framer-11bxmwm { display: block; }\",\".framer-WOkW7.framer-tkhxqg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 50px 16px 50px; position: relative; width: 1200px; }\",\".framer-WOkW7 .framer-sys3ia { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WOkW7 .framer-17rl07c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WOkW7 .framer-1vka6j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 156px; }\",\".framer-WOkW7 .framer-1ne5seb { aspect-ratio: 0.8571428571428571 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: relative; width: 50px; }\",\".framer-WOkW7 .framer-1kl71fl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 30px; min-width: 30px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WOkW7 .framer-72tash-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-WOkW7 .framer-s7bl6e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-WOkW7 .framer-1dnuryt-container, .framer-WOkW7 .framer-h3j14v-container, .framer-WOkW7 .framer-1exoha3-container, .framer-WOkW7 .framer-1lvqn0n-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WOkW7 .framer-17rl07c, .framer-WOkW7 .framer-1vka6j, .framer-WOkW7 .framer-1kl71fl, .framer-WOkW7 .framer-s7bl6e { gap: 0px; } .framer-WOkW7 .framer-17rl07c > *, .framer-WOkW7 .framer-1kl71fl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WOkW7 .framer-17rl07c > :first-child, .framer-WOkW7 .framer-1vka6j > :first-child, .framer-WOkW7 .framer-1kl71fl > :first-child, .framer-WOkW7 .framer-s7bl6e > :first-child { margin-left: 0px; } .framer-WOkW7 .framer-17rl07c > :last-child, .framer-WOkW7 .framer-1vka6j > :last-child, .framer-WOkW7 .framer-1kl71fl > :last-child, .framer-WOkW7 .framer-s7bl6e > :last-child { margin-right: 0px; } .framer-WOkW7 .framer-1vka6j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WOkW7 .framer-s7bl6e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-WOkW7.framer-v-1flo5u7.framer-tkhxqg { gap: 50px; justify-content: center; }\",\".framer-WOkW7.framer-v-1flo5u7 .framer-sys3ia { cursor: pointer; flex: 0.8 0 0px; padding: 16px 16px 16px 50px; }\",\".framer-WOkW7.framer-v-1flo5u7 .framer-1vka6j { width: min-content; }\",\".framer-WOkW7.framer-v-1flo5u7 .framer-1ne5seb, .framer-WOkW7.framer-v-p7qx70 .framer-1ne5seb { text-decoration: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WOkW7.framer-v-1flo5u7.framer-tkhxqg { gap: 0px; } .framer-WOkW7.framer-v-1flo5u7.framer-tkhxqg > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-WOkW7.framer-v-1flo5u7.framer-tkhxqg > :first-child { margin-left: 0px; } .framer-WOkW7.framer-v-1flo5u7.framer-tkhxqg > :last-child { margin-right: 0px; } }\",\".framer-WOkW7.framer-v-1ahv2wg.framer-tkhxqg { padding: 16px 24px 50px 24px; width: 320px; }\",\".framer-WOkW7.framer-v-1ahv2wg .framer-sys3ia, .framer-WOkW7.framer-v-p7qx70 .framer-sys3ia { flex-direction: column; gap: 50px; justify-content: flex-start; }\",\".framer-WOkW7.framer-v-1ahv2wg .framer-17rl07c, .framer-WOkW7.framer-v-p7qx70 .framer-17rl07c { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-WOkW7.framer-v-1ahv2wg .framer-1kl71fl, .framer-WOkW7.framer-v-p7qx70 .framer-1kl71fl { cursor: pointer; min-height: unset; min-width: unset; }\",\".framer-WOkW7.framer-v-1ahv2wg .framer-s7bl6e { align-content: center; align-items: center; flex-direction: column; gap: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WOkW7.framer-v-1ahv2wg .framer-sys3ia, .framer-WOkW7.framer-v-1ahv2wg .framer-17rl07c, .framer-WOkW7.framer-v-1ahv2wg .framer-s7bl6e { gap: 0px; } .framer-WOkW7.framer-v-1ahv2wg .framer-sys3ia > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-WOkW7.framer-v-1ahv2wg .framer-sys3ia > :first-child, .framer-WOkW7.framer-v-1ahv2wg .framer-s7bl6e > :first-child { margin-top: 0px; } .framer-WOkW7.framer-v-1ahv2wg .framer-sys3ia > :last-child, .framer-WOkW7.framer-v-1ahv2wg .framer-s7bl6e > :last-child { margin-bottom: 0px; } .framer-WOkW7.framer-v-1ahv2wg .framer-17rl07c > *, .framer-WOkW7.framer-v-1ahv2wg .framer-17rl07c > :first-child, .framer-WOkW7.framer-v-1ahv2wg .framer-17rl07c > :last-child { margin: 0px; } .framer-WOkW7.framer-v-1ahv2wg .framer-s7bl6e > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-WOkW7.framer-v-p7qx70.framer-tkhxqg { padding: 16px 24px 16px 24px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WOkW7.framer-v-p7qx70 .framer-sys3ia, .framer-WOkW7.framer-v-p7qx70 .framer-17rl07c { gap: 0px; } .framer-WOkW7.framer-v-p7qx70 .framer-sys3ia > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-WOkW7.framer-v-p7qx70 .framer-sys3ia > :first-child { margin-top: 0px; } .framer-WOkW7.framer-v-p7qx70 .framer-sys3ia > :last-child { margin-bottom: 0px; } .framer-WOkW7.framer-v-p7qx70 .framer-17rl07c > *, .framer-WOkW7.framer-v-p7qx70 .framer-17rl07c > :first-child, .framer-WOkW7.framer-v-p7qx70 .framer-17rl07c > :last-child { margin: 0px; } }\",'.framer-WOkW7[data-border=\"true\"]::after, .framer-WOkW7 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 76\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zm6rEKvgU\":{\"layout\":[\"fixed\",\"auto\"]},\"eGRuIwF02\":{\"layout\":[\"fixed\",\"auto\"]},\"gI8OKjy83\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"m65IYz7wA\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbQ09Xgnqk=withCSS(Component,css,\"framer-WOkW7\");export default FramerbQ09Xgnqk;FramerbQ09Xgnqk.displayName=\"Shrink Navigation\";FramerbQ09Xgnqk.defaultProps={height:76,width:1200};addPropertyControls(FramerbQ09Xgnqk,{variant:{options:[\"Mq4KLiHVD\",\"zm6rEKvgU\",\"eGRuIwF02\",\"gI8OKjy83\"],optionTitles:[\"Desktop\",\"Nav Mini\",\"Mobile Open\",\"Mobile Closed\"],title:\"Variant\",type:ControlType.Enum},m65IYz7wA:{__defaultAssetReference:\"data:framer/asset-reference,2RfLQ416S6B0Nkp3IbIjz0I1s.webp?originalFilename=ghspain-Photoroom.png.webp&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerbQ09Xgnqk,[{explicitInter:true,fonts:[]},...NavigationHamburgerFonts,...ButtonUnderlineAnimationFonts,...ButtonBouncyButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbQ09Xgnqk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zm6rEKvgU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eGRuIwF02\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gI8OKjy83\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"m65IYz7wA\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"76\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bQ09Xgnqk.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const currentYear=new Date().getFullYear();/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function AutoCopyright(props){const{name,statement,dateRange,startYear,font,color,fontSize}=props;const yearDisplay=dateRange?`${startYear}-${currentYear}`:currentYear;let displayText=`\\xa9 ${yearDisplay} ${name.trim()}`;if(statement.trim()){displayText+=` ${statement.trim()}`;}const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText});}AutoCopyright.defaultProps={name:\"Your Name\",statement:\"All rights reserved.\",dateRange:false,startYear:currentYear-1,color:\"#999999\",fontSize:14,font:{family:\"Inter\"}};AutoCopyright.displayName=\"Auto Copyright\";addPropertyControls(AutoCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#999999\"},dateRange:{type:ControlType.Boolean,title:\"Date Range\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},startYear:{type:ControlType.Number,title:\"Start Year\",min:1e3,max:currentYear-1,defaultValue:currentYear-2,displayStepper:true,hidden:({dateRange})=>!dateRange},name:{type:ControlType.String,title:\"Name\",defaultValue:\"Your Name\"},statement:{type:ControlType.String,title:\"Statement\",defaultValue:\"All rights reserved.\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoCopyright_Prod.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AutoCopyright from\"https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js\";import ButtonUnderlineAnimation from\"https://framerusercontent.com/modules/VdA0UQNafWPiLR1VUxB1/e6J96YICDt6aILcIPtVI/NEYqx4nyE.js\";import ScrambleAppear from\"https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js\";const ScrambleAppearFonts=getFonts(ScrambleAppear);const ButtonUnderlineAnimationFonts=getFonts(ButtonUnderlineAnimation);const AutoCopyrightFonts=getFonts(AutoCopyright);const cycleOrder=[\"u8hs7495X\",\"gXklD0awV\"];const serializationHash=\"framer-HTFNb\";const variantClassNames={gXklD0awV:\"framer-v-1omsrgu\",u8hs7495X:\"framer-v-ih274f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"u8hs7495X\",Phone:\"gXklD0awV\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"u8hs7495X\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"u8hs7495X\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"gXklD0awV\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ih274f\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"u8hs7495X\",ref:ref??ref1,style:{backgroundColor:\"rgb(9, 10, 10)\",...style},...addPropertyOverrides({gXklD0awV:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xj8s6u\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"izyBGHLSA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i1i96q\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"zz8nTtgF1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zujurb\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"o1niQMye0\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+0+(0+0+(Math.max(0,((componentViewport?.height||900)-100-0)/1)*1-0-319)/1*0)+0+0),pixelHeight:1e3,pixelWidth:818,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp\",srcSet:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp 818w\"},className:\"framer-tf5nav\",layoutDependency:layoutDependency,layoutId:\"hSe1Oxtf0\",...addPropertyOverrides({gXklD0awV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+50+0+0+0+0+0+0),pixelHeight:1e3,pixelWidth:818,positionX:\"center\",positionY:\"center\",sizes:\"109px\",src:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp\",srcSet:\"https://framerusercontent.com/images/2RfLQ416S6B0Nkp3IbIjz0I1s.webp 818w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9dj8e\",layoutDependency:layoutDependency,layoutId:\"OLmFYq5Ew\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dz9077-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jDeAnp9Wm-container\",nodeId:\"jDeAnp9Wm\",rendersWithMotion:true,scopeId:\"Sy4xSaUbk\",children:/*#__PURE__*/_jsx(ScrambleAppear,{animation:{delay:0,replay:true,trigger:\"layerInView\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Quantico\", \"Quantico Placeholder\", sans-serif',fontSize:\"65px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"left\"},from:\"center\",height:\"100%\",id:\"jDeAnp9Wm\",layoutId:\"jDeAnp9Wm\",options:{keepSpaces:false,matchCase:true},scrambledLetters:10,speed:90,style:{width:\"100%\"},tag:\"p\",text:\"GH SPAIN, SIN\\xd3NIMO DE CALIDAD Y CONFIANZA\",userSelect:true,width:\"100%\",...addPropertyOverrides({gXklD0awV:{font:{fontFamily:'\"Quantico\", \"Quantico Placeholder\", sans-serif',fontSize:\"40px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.4em\",textAlign:\"left\"}}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kqnovi\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"lDxY671ku\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ofgyyi\",\"data-framer-name\":\"Form\",layoutDependency:layoutDependency,layoutId:\"Otdg20uMH\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jgyot7\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"ocpXg7F8X\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iv8jkn\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"XG0VOivyw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uzCf0PYc_\"},implicitPathVariables:undefined},{href:{webPageId:\"uzCf0PYc_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+50+0+0+(0+256+(Math.max(0,((componentViewport?.height||900)-100-0)/1)*1-0-319)/1*1)+0+0+0+2+0+0,...addPropertyOverrides({gXklD0awV:{y:(componentViewport?.y||0)+50+0+0+436+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-orzpv9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QGTMN0Eco-container\",nodeId:\"QGTMN0Eco\",rendersWithMotion:true,scopeId:\"Sy4xSaUbk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"QGTMN0Eco\",layoutId:\"QGTMN0Eco\",NTOnIbDOf:resolvedLinks[0],Q0n_gFqmK:\"GH SPAIN\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({gXklD0awV:{NTOnIbDOf:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"X3nBh8R87\"},implicitPathVariables:undefined},{href:{webPageId:\"X3nBh8R87\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+50+0+0+(0+256+(Math.max(0,((componentViewport?.height||900)-100-0)/1)*1-0-319)/1*1)+0+0+0+2+0+22,...addPropertyOverrides({gXklD0awV:{y:(componentViewport?.y||0)+50+0+0+436+0+0+0+0+0+22}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2zzaa3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"LBCTE20Zt-container\",nodeId:\"LBCTE20Zt\",rendersWithMotion:true,scopeId:\"Sy4xSaUbk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"LBCTE20Zt\",layoutId:\"LBCTE20Zt\",NTOnIbDOf:resolvedLinks1[0],Q0n_gFqmK:\"PHARMAZONE\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({gXklD0awV:{NTOnIbDOf:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pcR22cCWK\"},implicitPathVariables:undefined},{href:{webPageId:\"pcR22cCWK\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+50+0+0+(0+256+(Math.max(0,((componentViewport?.height||900)-100-0)/1)*1-0-319)/1*1)+0+0+0+2+0+44,...addPropertyOverrides({gXklD0awV:{y:(componentViewport?.y||0)+50+0+0+436+0+0+0+0+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1g1frb3-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"QWk0mYndt-container\",nodeId:\"QWk0mYndt\",rendersWithMotion:true,scopeId:\"Sy4xSaUbk\",children:/*#__PURE__*/_jsx(ButtonUnderlineAnimation,{gXyAPMRGO:\"rgb(255, 255, 255)\",height:\"100%\",id:\"QWk0mYndt\",layoutId:\"QWk0mYndt\",NTOnIbDOf:resolvedLinks2[0],Q0n_gFqmK:\"FARMACIA\",Q6qDsf_y5:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({gXklD0awV:{NTOnIbDOf:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-opn7t3\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"DLEfXJjrG\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pikrkc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ihkeYhVxC-container\",nodeId:\"ihkeYhVxC\",rendersWithMotion:true,scopeId:\"Sy4xSaUbk\",children:/*#__PURE__*/_jsx(AutoCopyright,{color:\"rgb(219, 219, 219)\",dateRange:false,font:{fontFamily:'\"Rhodium Libre\", \"Rhodium Libre Placeholder\", serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"ihkeYhVxC\",layoutId:\"ihkeYhVxC\",name:\"GH SPAIN\",startYear:2023,statement:\"All rights reserved.\",width:\"100%\"})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HTFNb.framer-1nqqj0t, .framer-HTFNb .framer-1nqqj0t { display: block; }\",\".framer-HTFNb.framer-ih274f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 900px; justify-content: flex-start; overflow: hidden; padding: 50px 24px 50px 24px; position: relative; width: 1440px; }\",\".framer-HTFNb .framer-1xj8s6u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTFNb .framer-i1i96q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTFNb .framer-zujurb { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTFNb .framer-tf5nav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 256px; justify-content: center; padding: 0px; position: relative; width: 173px; }\",\".framer-HTFNb .framer-w9dj8e { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-HTFNb .framer-1dz9077-container { flex: none; height: auto; position: relative; width: 102%; }\",\".framer-HTFNb .framer-kqnovi { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HTFNb .framer-ofgyyi { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; min-height: 115px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTFNb .framer-jgyot7 { align-content: flex-end; align-items: flex-end; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 63px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTFNb .framer-iv8jkn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-HTFNb .framer-orzpv9-container, .framer-HTFNb .framer-2zzaa3-container, .framer-HTFNb .framer-1g1frb3-container, .framer-HTFNb .framer-1pikrkc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HTFNb .framer-opn7t3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HTFNb.framer-ih274f, .framer-HTFNb .framer-i1i96q, .framer-HTFNb .framer-zujurb, .framer-HTFNb .framer-tf5nav, .framer-HTFNb .framer-w9dj8e, .framer-HTFNb .framer-kqnovi, .framer-HTFNb .framer-ofgyyi, .framer-HTFNb .framer-jgyot7, .framer-HTFNb .framer-iv8jkn, .framer-HTFNb .framer-opn7t3 { gap: 0px; } .framer-HTFNb.framer-ih274f > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-HTFNb.framer-ih274f > :first-child, .framer-HTFNb .framer-tf5nav > :first-child, .framer-HTFNb .framer-w9dj8e > :first-child, .framer-HTFNb .framer-ofgyyi > :first-child, .framer-HTFNb .framer-iv8jkn > :first-child, .framer-HTFNb .framer-opn7t3 > :first-child { margin-top: 0px; } .framer-HTFNb.framer-ih274f > :last-child, .framer-HTFNb .framer-tf5nav > :last-child, .framer-HTFNb .framer-w9dj8e > :last-child, .framer-HTFNb .framer-ofgyyi > :last-child, .framer-HTFNb .framer-iv8jkn > :last-child, .framer-HTFNb .framer-opn7t3 > :last-child { margin-bottom: 0px; } .framer-HTFNb .framer-i1i96q > *, .framer-HTFNb .framer-kqnovi > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-HTFNb .framer-i1i96q > :first-child, .framer-HTFNb .framer-zujurb > :first-child, .framer-HTFNb .framer-kqnovi > :first-child, .framer-HTFNb .framer-jgyot7 > :first-child { margin-left: 0px; } .framer-HTFNb .framer-i1i96q > :last-child, .framer-HTFNb .framer-zujurb > :last-child, .framer-HTFNb .framer-kqnovi > :last-child, .framer-HTFNb .framer-jgyot7 > :last-child { margin-right: 0px; } .framer-HTFNb .framer-zujurb > *, .framer-HTFNb .framer-jgyot7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HTFNb .framer-tf5nav > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-HTFNb .framer-w9dj8e > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-HTFNb .framer-ofgyyi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HTFNb .framer-iv8jkn > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-HTFNb .framer-opn7t3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-HTFNb.framer-v-1omsrgu.framer-ih274f { height: min-content; width: 370px; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-1xj8s6u { flex: none; gap: 48px; height: min-content; justify-content: center; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-i1i96q, .framer-HTFNb.framer-v-1omsrgu .framer-kqnovi { flex-direction: column; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-zujurb, .framer-HTFNb.framer-v-1omsrgu .framer-iv8jkn, .framer-HTFNb.framer-v-1omsrgu .framer-opn7t3 { flex: none; width: 100%; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-tf5nav { height: 140px; width: 109px; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-w9dj8e { flex: none; gap: 48px; width: 100%; }\",\".framer-HTFNb.framer-v-1omsrgu .framer-jgyot7 { flex: none; flex-direction: column; gap: 48px; height: min-content; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HTFNb.framer-v-1omsrgu .framer-1xj8s6u, .framer-HTFNb.framer-v-1omsrgu .framer-i1i96q, .framer-HTFNb.framer-v-1omsrgu .framer-w9dj8e, .framer-HTFNb.framer-v-1omsrgu .framer-kqnovi, .framer-HTFNb.framer-v-1omsrgu .framer-jgyot7 { gap: 0px; } .framer-HTFNb.framer-v-1omsrgu .framer-1xj8s6u > *, .framer-HTFNb.framer-v-1omsrgu .framer-i1i96q > *, .framer-HTFNb.framer-v-1omsrgu .framer-w9dj8e > *, .framer-HTFNb.framer-v-1omsrgu .framer-kqnovi > *, .framer-HTFNb.framer-v-1omsrgu .framer-jgyot7 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-HTFNb.framer-v-1omsrgu .framer-1xj8s6u > :first-child, .framer-HTFNb.framer-v-1omsrgu .framer-i1i96q > :first-child, .framer-HTFNb.framer-v-1omsrgu .framer-w9dj8e > :first-child, .framer-HTFNb.framer-v-1omsrgu .framer-kqnovi > :first-child, .framer-HTFNb.framer-v-1omsrgu .framer-jgyot7 > :first-child { margin-top: 0px; } .framer-HTFNb.framer-v-1omsrgu .framer-1xj8s6u > :last-child, .framer-HTFNb.framer-v-1omsrgu .framer-i1i96q > :last-child, .framer-HTFNb.framer-v-1omsrgu .framer-w9dj8e > :last-child, .framer-HTFNb.framer-v-1omsrgu .framer-kqnovi > :last-child, .framer-HTFNb.framer-v-1omsrgu .framer-jgyot7 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 900\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gXklD0awV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSy4xSaUbk=withCSS(Component,css,\"framer-HTFNb\");export default FramerSy4xSaUbk;FramerSy4xSaUbk.displayName=\"Footer 2\";FramerSy4xSaUbk.defaultProps={height:900,width:1440};addPropertyControls(FramerSy4xSaUbk,{variant:{options:[\"u8hs7495X\",\"gXklD0awV\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSy4xSaUbk,[{explicitInter:true,fonts:[{family:\"Quantico\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/quantico/v17/rax-HiSdp9cPL3KIF4xpLjxSmlLZ.woff2\",weight:\"400\"},{family:\"Rhodium Libre\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rhodiumlibre/v19/1q2AY5adA0tn_ukeHcQHqpx6pEHLeo2gm2U.woff2\",weight:\"400\"}]},...ScrambleAppearFonts,...ButtonUnderlineAnimationFonts,...AutoCopyrightFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSy4xSaUbk\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gXklD0awV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"900\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Sy4xSaUbk.map"],
  "mappings": "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",
  "names": ["HIDDEN", "SCRAMBLED", "REVEALED", "ScrambleAppear", "props", "_props_style", "from", "scrambledLetters", "text", "scrambledColor", "animation", "speed", "isCanvas", "RenderTarget", "Tag", "ref", "pe", "encryptedText", "randomString", "progress", "setProgress", "ye", "currentAnimation", "setCurrentAnimation", "intervalRef", "isInView", "useInView", "characterDelay", "mapRange", "shuffledIndices", "se", "_", "i", "runAnimation", "animate", "ue", "segments", "leftCutoff", "rightCutoff", "clamp", "center", "letters", "indexInSequence", "scrambleWindow", "startScrambleAt", "startRevealAt", "p", "consolidateSegments", "state", "index", "addPropertyControls", "ControlType", "length", "characters", "originalText", "matchCase", "keepSpaces", "result", "lastChar", "originalChar", "newChar", "value", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "min", "max", "acc", "curr", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerX_wgacHHt", "withCSS", "X_wgacHHt_default", "addPropertyControls", "ControlType", "addFonts", "BouncyButtonIconFonts", "getFonts", "X_wgacHHt_default", "BouncyButtonIconControls", "getPropertyControls", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "dotColor", "height", "iconColor", "id", "width", "props", "ref", "_variant", "ref1", "ref2", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "wZAz72OR6", "bkgNXsaVh", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "css", "FramerWZ0ySEW9p", "withCSS", "WZ0ySEW9p_default", "addPropertyControls", "ControlType", "addFonts", "BouncyButtonDotFonts", "getFonts", "WZ0ySEW9p_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "button", "dotColor", "height", "id", "label", "link", "newTab", "smoothScroll", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "G12sDdivV", "gnaXB_FDf", "tkVfb0cuk", "V4GP67J_M", "uzYUogkDq", "AAql3Z1IA", "lflvlvWlr", "NEqJTpV7FvdwXYUeKe", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerXa5TN8eXb", "withCSS", "Xa5TN8eXb_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "color", "height", "id", "radius", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "QfRxYOe98", "NwSd5Ti5y", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapt77tm9", "args", "onTapp9by64", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "css", "FramerOPi9HK9MY", "withCSS", "OPi9HK9MY_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "borderColor", "height", "id", "link", "textColor", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Q0n_gFqmK", "NTOnIbDOf", "Q6qDsf_y5", "gXyAPMRGO", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Link", "css", "FramerNEYqx4nyE", "withCSS", "NEYqx4nyE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationHamburgerFonts", "getFonts", "OPi9HK9MY_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "ButtonUnderlineAnimationFonts", "NEYqx4nyE_default", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "ButtonBouncyButtonFonts", "Xa5TN8eXb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "toResponsiveImage", "value", "transition3", "animation", "animation1", "transition4", "animation2", "animation3", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "m65IYz7wA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearuxhzea", "args", "onTap1jm3tm6", "onTap1x4wr12", "onTapk9w9ky", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerbQ09Xgnqk", "withCSS", "bQ09Xgnqk_default", "addPropertyControls", "ControlType", "addFonts", "currentYear", "AutoCopyright", "props", "name", "statement", "dateRange", "startYear", "font", "color", "fontSize", "displayText", "textStyle", "p", "addPropertyControls", "ControlType", "ScrambleAppearFonts", "getFonts", "ScrambleAppear", "ButtonUnderlineAnimationFonts", "NEYqx4nyE_default", "AutoCopyrightFonts", "AutoCopyright", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerSy4xSaUbk", "withCSS", "Sy4xSaUbk_default", "addPropertyControls", "ControlType", "addFonts"]
}
