{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/audio-assets.js@0.2.0", "ssg:https://framer.com/m/framer/lodash.js@0.3.0", "ssg:https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js", "ssg:https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/kDypoRR2B1GRROQ0uGdY/Audio.js", "ssg:https://framerusercontent.com/modules/YyZVlw1eVE4f40znAGAP/RyYaUCnGLMg33RcGrSTL/Hvff_pUrv-0.js", "ssg:https://framerusercontent.com/modules/YyZVlw1eVE4f40znAGAP/RyYaUCnGLMg33RcGrSTL/Hvff_pUrv.js"],
  "sourcesContent": ["import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { motion } from \"framer\";\nexport function PlayIcon(props) {\n    return(/*#__PURE__*/ _jsx(motion.svg, {\n        ...props,\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 16 16\",\n        children: /*#__PURE__*/ _jsx(\"path\", {\n            d: \"M 5.379 1.292 C 4.968 1.033 4.449 1.017 4.023 1.251 C 3.598 1.486 3.334 1.933 3.333 2.419 L 3.333 13.581 C 3.334 14.067 3.598 14.514 4.023 14.749 C 4.449 14.983 4.968 14.967 5.379 14.708 L 14.215 9.127 C 14.602 8.883 14.836 8.457 14.836 8 C 14.836 7.543 14.602 7.117 14.215 6.873 Z\",\n            fill: \"#333\"\n        })\n    }));\n}\nexport function PauseIcon(props) {\n    return(/*#__PURE__*/ _jsxs(motion.svg, {\n        ...props,\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 16 16\",\n        children: [\n            /*#__PURE__*/ _jsx(\"path\", {\n                d: \"M 3 3 C 3 2.448 3.448 2 4 2 L 6 2 C 6.552 2 7 2.448 7 3 L 7 13 C 7 13.552 6.552 14 6 14 L 4 14 C 3.448 14 3 13.552 3 13 Z\",\n                fill: \"#343434\"\n            }),\n            /*#__PURE__*/ _jsx(\"path\", {\n                d: \"M 9 3 C 9 2.448 9.448 2 10 2 L 12 2 C 12.552 2 13 2.448 13 3 L 13 13 C 13 13.552 12.552 14 12 14 L 10 14 C 9.448 14 9 13.552 9 13 Z\",\n                fill: \"#343434\"\n            })\n        ]\n    }));\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"PauseIcon\":{\"type\":\"reactComponent\",\"name\":\"PauseIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"PlayIcon\":{\"type\":\"reactComponent\",\"name\":\"PlayIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./audio.map", "/** Error message constants. */ var FUNC_ERROR_TEXT = \"Expected a function\";\n/* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min;\n/** Used as references for various `Number` constants. */ var NAN = 0 / 0;\n/** Used to match leading and trailing whitespace. */ var reTrim = /^\\s+|\\s+$/g;\n/** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n/** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i;\n/** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i;\n/** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt;\nvar now = function() {\n    return Date.now();\n};\nfunction isObject(value) {\n    var type = typeof value;\n    return value != null && (type == \"object\" || type == \"function\");\n}\nfunction isObjectLike(value) {\n    return value != null && typeof value == \"object\";\n}\nfunction toNumber(value) {\n    if (typeof value == \"number\") {\n        return value;\n    }\n    if (typeof value == \"symbol\") {\n        return NAN;\n    }\n    if (isObject(value)) {\n        var other = typeof value.valueOf == \"function\" ? value.valueOf() : value;\n        value = isObject(other) ? other + \"\" : other;\n    }\n    if (typeof value != \"string\") {\n        return value === 0 ? value : +value;\n    }\n    value = value.replace(reTrim, \"\");\n    var isBinary = reIsBinary.test(value);\n    return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n}\nexport function debounce(func, wait, options) {\n    var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    wait = toNumber(wait) || 0;\n    if (isObject(options)) {\n        leading = !!options.leading;\n        maxing = \"maxWait\" in options;\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    function invokeFunc(time) {\n        var args = lastArgs, thisArg = lastThis;\n        lastArgs = lastThis = undefined;\n        lastInvokeTime = time;\n        result = func.apply(thisArg, args);\n        return result;\n    }\n    function leadingEdge(time) {\n        // Reset any `maxWait` timer.\n        lastInvokeTime = time;\n        // Start the timer for the trailing edge.\n        timerId = setTimeout(timerExpired, wait);\n        // Invoke the leading edge.\n        return leading ? invokeFunc(time) : result;\n    }\n    function remainingWait(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;\n        return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;\n    }\n    function shouldInvoke(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;\n        // Either this is the first call, activity has stopped and we're at the\n        // trailing edge, the system time has gone backwards and we're treating\n        // it as the trailing edge, or we've hit the `maxWait` limit.\n        return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;\n    }\n    function timerExpired() {\n        var time = now();\n        if (shouldInvoke(time)) {\n            return trailingEdge(time);\n        }\n        // Restart the timer.\n        timerId = setTimeout(timerExpired, remainingWait(time));\n    }\n    function trailingEdge(time) {\n        timerId = undefined;\n        // Only invoke if we have `lastArgs` which means `func` has been\n        // debounced at least once.\n        if (trailing && lastArgs) {\n            return invokeFunc(time);\n        }\n        lastArgs = lastThis = undefined;\n        return result;\n    }\n    function cancel() {\n        if (timerId !== undefined) {\n            clearTimeout(timerId);\n        }\n        lastInvokeTime = 0;\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\n    }\n    function flush() {\n        return timerId === undefined ? result : trailingEdge(now());\n    }\n    function debounced() {\n        var time = now(), isInvoking = shouldInvoke(time);\n        lastArgs = arguments;\n        lastThis = this;\n        lastCallTime = time;\n        if (isInvoking) {\n            if (timerId === undefined) {\n                return leadingEdge(lastCallTime);\n            }\n            if (maxing) {\n                // Handle invocations in a tight loop.\n                clearTimeout(timerId);\n                timerId = setTimeout(timerExpired, wait);\n                return invokeFunc(lastCallTime);\n            }\n        }\n        if (timerId === undefined) {\n            timerId = setTimeout(timerExpired, wait);\n        }\n        return result;\n    }\n    debounced.cancel = cancel;\n    debounced.flush = flush;\n    return debounced;\n}\nexport function throttle(func, wait, options) {\n    var leading = true, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    if (isObject(options)) {\n        leading = \"leading\" in options ? !!options.leading : leading;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    return debounce(func, wait, {\n        leading: leading,\n        maxWait: wait,\n        trailing: trailing\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"throttle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"debounce\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./lodash.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{animate,transform,motion,useTransform}from\"framer-motion\";import{useRef,useState,useCallback}from\"react\";import{isMotionValue,useOnChange,useAutoMotionValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{throttle}from\"https://framer.com/m/framer/lodash.js@0.3.0\";var KnobOptions;(function(KnobOptions){KnobOptions[\"Hide\"]=\"Hide\";KnobOptions[\"Hover\"]=\"Hover\";KnobOptions[\"Show\"]=\"Show\";})(KnobOptions||(KnobOptions={}));/**\n * SLIDER\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Slider=withCSS(function Slider(props){const{value:valueProp,trackHeight,fillColor,focusColor,min,max,onChange,onChangeLive,onMax,onMin,trackColor,trackRadius,knobSize,knobColor,constrainKnob,shadow,shouldAnimateChange,transition,overdrag,knobSetting,style}=props;const[hovered,setHovered]=useState(false);const[focused,setFocused]=useState(false);const onCanvas=RenderTarget.current()===RenderTarget.canvas;const shouldAnimate=shouldAnimateChange&&!onCanvas;const isConstrained=constrainKnob&&knobSetting===KnobOptions.Show;const showKnob=knobSetting!==KnobOptions.Hide;const input=useRef();const knobPadding=8;// Main setting function\nconst updateValue=useCallback((newVal,target)=>{throttledInputUpdate(newVal);if(onChange)onChange(newVal);if(shouldAnimate)animate(target,newVal,transition);else requestAnimationFrame(()=>target.set(newVal));},[transition,shouldAnimate,onChange]);// \"value\" is the source of truth\n// It can be controlled via props with a motionvalue or number 0.0 - 1.0\n// Local changes are always allowed and are reported back up using \"onChange\" callback\nconst value=useAutoMotionValue(valueProp,{onChange:updateValue,transform:value=>transform(value,[0,100],[min,max])});const knobX=useTransform(value,[min,max],[\"0%\",\"100%\"]);const normalizedValue=useTransform(value,[min,max],[0,1]);const throttledInputUpdate=useCallback(throttle(val=>{var ref;if((ref=input.current)===null||ref===void 0?void 0:ref.value)input.current.value=val;},100),[input]);// Live updating callback\nuseOnChange(value,val=>{if(isMotionValue(valueProp))throttledInputUpdate(val);if(onMax&&val>=max)onMax();if(onMin&&val<=min)onMin();if(onChangeLive)onChangeLive(val);});// Read changes from input element\nconst handleInputChange=e=>{updateValue(parseFloat(e.target.value),value);};// Handle tapping on the know to trigger update\nconst handleMouseDown=e=>{if(parseFloat(e.target.value)!==0)updateValue(parseFloat(e.target.value),value);};const handleMouseUp=()=>{};const totalKnobWidth=showKnob?knobSize+knobPadding:knobPadding;const totalHeight=Math.max(knobSize+knobPadding,trackHeight);return /*#__PURE__*/ _jsxs(\"div\",{className:\"framer-default-slider\",onMouseEnter:()=>setHovered(true),onMouseLeave:()=>setHovered(false),style:{position:\"relative\",...style,alignItems:\"center\",justifyContent:\"flex-start\",border:`0px solid ${focusColor}`,\"--framer-default-slider-height\":totalHeight,\"--framer-default-slider-width\":totalKnobWidth},children:[/*#__PURE__*/ _jsx(\"input\",{ref:input,style:{flexShrink:0,minHeight:totalHeight,opacity:0,margin:0,display:\"flex\",...style,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",...!isConstrained&&{width:`calc(100% + ${totalKnobWidth}px)`,marginLeft:-totalKnobWidth/2}},onFocus:()=>setFocused(true),onBlur:()=>setFocused(false),type:\"range\",min:min,max:max,defaultValue:-1,step:\"any\",onChange:handleInputChange,onMouseDown:handleMouseDown,onMouseUp:handleMouseUp}),/*#__PURE__*/ _jsx(\"div\",{style:{background:trackColor,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,borderRadius:trackRadius,display:\"flex\",height:trackHeight,width:\"100%\",transformOrigin:\"left\",pointerEvents:\"none\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:trackHeight,width:\"100%\",background:fillColor,scaleX:normalizedValue,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,transformOrigin:\"left\",pointerEvents:\"none\"}})}),/*#__PURE__*/ _jsx(motion.div,{style:{x:knobX,position:\"absolute\",display:\"flex\",top:`calc(50% - ${Math.floor(knobSize/2)}px)`,pointerEvents:\"none\",...isConstrained?{width:`calc(100% - ${knobSize}px`,left:0}:{width:`100%`,left:-knobSize/2}},children:/*#__PURE__*/ _jsx(motion.div,{initial:false,animate:{scale:hovered&&knobSetting===KnobOptions.Hover||knobSetting===KnobOptions.Show?1:0},transition:{type:\"spring\",stiffness:900,damping:40},style:{transformOrigin:\"50% 50%\",width:knobSize,height:knobSize,borderRadius:\"50%\",background:knobColor,pointerEvents:\"none\",boxShadow:`0px 1px 2px 0px ${shadow}, \n                                0px 2px 4px 0px ${shadow}, \n                                0px 4px 8px 0px ${shadow}`}})})]});},[\".framer-default-slider input[type=range] {  width: 100%; height: 100% background:transparent margin: 0;}\",\".framer-default-slider input[type=range]:focus { outline: none; }\",\".framer-default-slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; }\",\".framer-default-slider input[type=range]::-webkit-slider-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-moz-range-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-ms-thumb  { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",]);Slider.displayName=\"Slider\";Slider.defaultProps={height:20,width:200,trackHeight:4,fillColor:\"#09F\",trackColor:\"#DDD\",knobColor:\"#FFF\",focusColor:\"rgba(0, 153, 255,0)\",shadow:\"rgba(0,0,0,0.1)\",knobSize:20,overdrag:true,min:0,max:100,value:50,trackRadius:5,knobSetting:KnobOptions.Show,constrainKnob:false,transition:{type:\"spring\",delay:0,stiffness:750,damping:50},shouldAnimateChange:true};addPropertyControls(Slider,{fillColor:{title:\"Tint\",type:ControlType.Color},trackColor:{title:\"Track\",type:ControlType.Color},knobColor:{title:\"Knob\",type:ControlType.Color},shadow:{type:ControlType.Color,title:\"Shadow\"},// focusColor: {\n//     title: \"Focus\",\n//     type: ControlType.Color,\n// },\nshouldAnimateChange:{type:ControlType.Boolean,title:\"Changes\",enabledTitle:\"Animate\",disabledTitle:\"Instant\"},transition:{type:ControlType.Transition,defaultValue:Slider.defaultProps.transition},knobSetting:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Knob\",options:[\"Hide\",\"Hover\",\"Show\"]},constrainKnob:{type:ControlType.Boolean,title:\"Constrain\",enabledTitle:\"Yes\",disabledTitle:\"No\",hidden:({knobSetting})=>knobSetting!==KnobOptions.Show},knobSize:{type:ControlType.Number,title:\"Knob\",min:10,max:100,hidden:({knobSetting})=>knobSetting===KnobOptions.Hide},value:{type:ControlType.Number,title:\"Value\",min:0,max:100,unit:\"%\"},trackHeight:{title:\"Height\",type:ControlType.Number,min:0},min:{title:\"Min\",type:ControlType.Number,displayStepper:true},trackRadius:{type:ControlType.Number,displayStepper:true,min:0,max:200,title:\"Radius\"},max:{title:\"Max\",type:ControlType.Number,displayStepper:true},onChange:{type:ControlType.EventHandler},onMax:{type:ControlType.EventHandler},onMin:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Slider\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Slider.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useRef,useState,useMemo,useEffect,useCallback}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{MotionValue,animate,useMotionValueEvent}from\"framer-motion\";import{useOnEnter,usePadding,useRadius,paddingControl,borderRadiusControl,useOnChange,containerStyles,secondsToMinutes,useAutoMotionValue,useOnExit,fontStack,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{PlayIcon,PauseIcon}from\"https://framer.com/m/framer/audio-assets.js@0.2.0\";import{Slider}from\"https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js\";const isMotionValue=v=>v instanceof MotionValue;var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));function PlayTime(props){const{currentTime,startTime}=props;const[playTime,setPlayTime]=useState(\"0:00\");useEffect(()=>{setPlayTime(secondsToMinutes(startTime));},[startTime]);useOnChange(currentTime,latest=>{setPlayTime(secondsToMinutes(latest));});return /*#__PURE__*/ _jsx(_Fragment,{children:playTime});}const checkIfPlaying=player=>player.current&&!player.current.paused&&!player.current.ended&&player.current.readyState>2;/**\n * AUDIO\n *\n * Audio player component optimized for smart components.\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Audio(props){const{playing,background,progressColor,trackHeight,gap,trackColor,srcUrl,srcType,srcFile,loop,font,autoPlay,progress,volume,showTime,showTrack,playPauseCursor,showPlayPause,onTimeUpdate,onMetadata,onPlay,onPause,onEnd,pauseOnExit,onPlayGlobalPauseOption}=props;// Defaults to false, only switches to play if possible\nconst[isPlaying,setIsPlaying]=useState(false);const[duration,setDuration]=useState(0);// Audio element ref and non-state info\nconst player=useRef();const playerInfo=useRef({ready:false,animation:null});// Track progress in ms, always in sync with audio element\nconst trackProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{if(player.current.duration){player.current.currentTime=newValue*player.current.duration;handlePlayStateUpdate(\"motionHook\");}}});const padding=usePadding(props);const borderRadius=useRadius(props);const{fontSize}=useFontControls(props);const shouldPlay=RenderTarget.current()===RenderTarget.preview;const shouldPausePlayers=onPlayGlobalPauseOption===\"pause\";const url=srcType===SrcType.Url?srcUrl:srcFile;const shouldAutoPlay=shouldPlay&&playing;// Sync UI with state of the audio element\n// TODO look into better more performant ways of doing this\nconst handlePlayStateUpdate=useCallback(_=>{var ref,ref1;const currentDuration=player.current.duration;const currentTime=player.current.currentTime;(ref=playerInfo.current)===null||ref===void 0?void 0:(ref1=ref.animation)===null||ref1===void 0?void 0:ref1.stop();if(Math.abs(currentTime-trackProgress.get())>.5){trackProgress.set(currentTime);}if(!shouldPlay)return;const isNowPlaying=checkIfPlaying(player);if(isPlaying!==isNowPlaying)setIsPlaying(isNowPlaying);if(isNowPlaying&&shouldPlay){playerInfo.current.animation=animate(trackProgress,currentDuration,{type:\"tween\",ease:\"linear\",duration:currentDuration-currentTime});}},[shouldPlay,isPlaying]);const pauseAllAudioPlayers=()=>{const audioPlayerElements=document.querySelectorAll(\".framer-audio\");audioPlayerElements.forEach(el=>{el.pause();});};// Always use this for playing audio\n// No logic in here as it is async & can fail\nconst playAudio=()=>{if(shouldPlay)player.current.play().catch(e=>{}) // It's likely fine, swallow error\n;};const pauseAudio=()=>{var ref,ref1;player.current.pause();(ref=playerInfo.current)===null||ref===void 0?void 0:(ref1=ref.animation)===null||ref1===void 0?void 0:ref1.stop();};const handleMetadata=()=>{if(onMetadata)onMetadata({duration:player.current.duration});setDuration(player.current.duration);};const initProgress=()=>{if(!isMotionValue(progress))player.current.currentTime=progress*.01*player.current.duration;};const handleReady=()=>{// This tries to run on every pause\n// We use playerInfo.ready to only call on initial load of a source\nif(!playerInfo.current.ready){if(shouldAutoPlay)playAudio();playerInfo.current.ready=true;initProgress();}};// Handle seek event from slider\nconst handleSeek=val=>{if(player.current.currentTime){player.current.currentTime=val;handlePlayStateUpdate(\"handleSeek\");}};const handleEnd=()=>{if(onEnd)onEnd();};const handlePlayClick=()=>{if(shouldPausePlayers)pauseAllAudioPlayers();playAudio();};// Control audio via props\nuseEffect(()=>{if(shouldPlay){// In preview when prop changes, pause/play\nif(playing===true)playAudio();else pauseAudio();}else{// Only set the state for canvas use\nif(playing===true)setIsPlaying(true);else setIsPlaying(false);}},[playing]);useEffect(()=>{var ref;// Do this in an effect to correct on optimised sites\nif((ref=player.current)===null||ref===void 0?void 0:ref.duration)setDuration(player.current.duration);},[]);// Call event callbacks\nuseEffect(()=>{if(playerInfo.current.ready&&isPlaying&&onPlay)onPlay();else if(playerInfo.current.ready&&onPause)onPause();},[isPlaying]);// Volume Control\nuseEffect(()=>{player.current.volume=volume/100;},[volume]);// Reset ready state when src changes\nuseEffect(()=>{playerInfo.current.ready=false;},[srcFile,srcType,srcUrl]);// Play on navigation\nuseOnEnter(()=>{if(shouldAutoPlay)playAudio();});useOnExit(()=>{if(pauseOnExit)player.current.pause();});useMotionValueEvent(trackProgress,\"change\",val=>{var ref;const progressPercent=((ref=player.current)===null||ref===void 0?void 0:ref.duration)?val/player.current.duration*100:null;if(onTimeUpdate){onTimeUpdate(val,progressPercent,secondsToMinutes(val));}});const iconStyles=useMemo(()=>({marginRight:showTime||showTrack?gap:0,flexShrink:0,cursor:playPauseCursor}),[playPauseCursor,showTime,showTrack,gap]);return /*#__PURE__*/ _jsxs(\"div\",{style:{...containerStyles,position:\"relative\",overflow:\"hidden\",background,padding,borderRadius},children:[/*#__PURE__*/ _jsx(\"audio\",{src:url,loop:loop,className:\"framer-audio\",ref:player,preload:\"metadata\",autoPlay:shouldAutoPlay,onLoadedMetadata:handleMetadata,onCanPlayThrough:handleReady,// Listen to all events for status changes\nonPlaying:()=>handlePlayStateUpdate(\"playingEvent\"),onPlay:()=>handlePlayStateUpdate(\"playEvent\"),onSeeked:()=>handlePlayStateUpdate(\"seekEvent\"),onPause:()=>handlePlayStateUpdate(\"pauseEvent\"),onEnded:()=>handleEnd()}),showPlayPause&&/*#__PURE__*/ _jsx(_Fragment,{children:isPlaying?/*#__PURE__*/ _jsx(PauseIcon,{width:16,whileTap:{scale:.9},onClick:()=>pauseAudio(),style:iconStyles,\"aria-label\":\"pause audio\"}):/*#__PURE__*/ _jsx(PlayIcon,{width:16,whileTap:{scale:.9},onClick:handlePlayClick,style:iconStyles,\"aria-label\":\"play audio\"})}),showTime&&/*#__PURE__*/ _jsxs(\"p\",{style:{userSelect:\"none\",color:\"#333\",fontWeight:500,letterSpacing:-.25,margin:0,flexShrink:0,fontFamily:fontStack,fontVariantNumeric:\"tabular-nums\",marginRight:showTrack?gap:0,...font},children:[/*#__PURE__*/ _jsx(PlayTime,{startTime:duration*(isMotionValue(progress)?progress.get():progress*.01),currentTime:trackProgress}),/*#__PURE__*/ _jsx(\"span\",{style:{padding:\"0 2px\"},children:\"/\"}),duration>0?secondsToMinutes(duration):\"1:34\"]}),showTrack&&/*#__PURE__*/ _jsx(Slider,{style:{width:\"100%\"},value:trackProgress,fillColor:progressColor,knobSetting:\"Hover\",shadow:`rgba(0,0,0,0)`,knobSize:10,knobColor:progressColor,onChange:handleSeek,shouldAnimateChange:false,min:0,max:duration,trackColor:trackColor})]});}Audio.defaultProps={background:\"#EBEBEB\",trackColor:\"#FFFFFF\",font:{fontSize:12},progressColor:\"#333333\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",srcType:SrcType.Url,pauseOnExit:true,borderRadius:8,padding:15,progress:0,volume:25,loop:false,playing:true,autoPlay:true,showTime:true,showTrack:true,showPlayPause:true,onPlayGlobalPauseOption:\"continue\",trackHeight:4,gap:15,height:50,width:240};addPropertyControls(Audio,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\".../example.mp4\",hidden(props){return props.srcType===SrcType.Video;}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\",\"mp3\",\"wav\",\"m4a\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{title:\"Playing\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// autoPlay: {\n//     type: ControlType.Boolean,\n//     title: \"Autoplay\",\n//     enabledTitle: \"Yes\",\n//     disabledTitle: \"No\",\n// },\nprogress:{title:\"Progress\",type:ControlType.Number,max:100,min:0,unit:\"%\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\"},progressColor:{title:\"Progress\",type:ControlType.Color,defaultValue:Audio.defaultProps.progressColor},trackColor:{title:\"Track\",type:ControlType.Color,defaultValue:Audio.defaultProps.trackColor},background:{title:\"Player\",type:ControlType.Color,defaultValue:Audio.defaultProps.background},font:{title:\"Font\",// @ts-ignore \u2013 Internal\ntype:ControlType.Font,displayFontSize:true},...paddingControl,...borderRadiusControl,gap:{type:ControlType.Number,min:0,max:100,displayStepper:true},showPlayPause:{type:ControlType.Boolean,title:\"Play/Pause\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},playPauseCursor:{type:ControlType.Enum,title:\"Cursor\",options:[\"default\",\"pointer\"],optionTitles:[\"Default\",\"Pointer\"],defaultValue:\"default\",hidden(props){return!props.showPlayPause;}},showTrack:{type:ControlType.Boolean,title:\"Track\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTime:{type:ControlType.Boolean,title:\"Time\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},pauseOnExit:{type:ControlType.Boolean,title:\"On Leave\",enabledTitle:\"Pause\",disabledTitle:\"Continue\"},onPlayGlobalPauseOption:{type:ControlType.Enum,title:\"On Play\",options:[\"continue\",\"pause\"],optionTitles:[\"Continue All\",\"Pause All\"]},onPlay:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler},onTimeUpdate:{type:ControlType.EventHandler}});const trackStyle={borderRadius:10,width:\"100%\",overflow:\"hidden\"};const trackParentStyle={position:\"relative\",border:\"1px solid red\",display:\"flex\",alignItems:\"center\",height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Audio\":{\"type\":\"reactComponent\",\"name\":\"Audio\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Audio.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Perdido en el Jard\\xedn del Ed\\xe9n\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"La melancol\\xeda convirti\\xf3 las vacaciones en d\\xedas vac\\xedos\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Mientras iba de flor en flor buscando polinizar\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Donde estamos lejos y nos quejamos, queriendo caminar sobre el agua\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Toma todas las tristezas del oto\\xf1o y observa\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Entonces disolverse\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"El peso al que despierto se acumula, todos mis pensamientos tan acumulados\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Toda nuestra energ\\xeda es nuclear, t\\xfa miras dentro de mi n\\xfacleo\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Mantente Enfocado\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Mantente Enfocado\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Mantente Enfocado\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})});\nexport const __FramerMetadata__ = {\"exports\":{\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0f2619)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,RichText,SVG,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/kDypoRR2B1GRROQ0uGdY/Audio.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/utyP5JXkTfgfeGuaFEKO/wJGt7fVk2Nn8m5WcnOOO/swiBRzXra.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sBpcwgkM6hKFph7ZVrwA/VoiU3nussuFgQtQJkhpy/ZyK0wKHEe.js\";import*as localizedValues from\"./Hvff_pUrv-0.js\";const ImageWithFX=withFX(Image);const AudioFonts=getFonts(Audio);const MotionDivWithFX=withFX(motion.div);const enabledGestures={leezByLFx:{hover:true}};const cycleOrder=[\"PfIni01aG\",\"qQkRhGDzv\",\"RMKlBkWkj\",\"u0BUv0qUY\",\"VsjjCByfd\",\"tdHazl766\",\"z1CWb3wbJ\",\"PDFmTQz6P\",\"iTDuP9k2b\",\"leezByLFx\"];const serializationHash=\"framer-aq8cs\";const variantClassNames={iTDuP9k2b:\"framer-v-1oo2j61\",leezByLFx:\"framer-v-1nv9nbv\",PDFmTQz6P:\"framer-v-zxk1i4\",PfIni01aG:\"framer-v-1pnecg8\",qQkRhGDzv:\"framer-v-19yk743\",RMKlBkWkj:\"framer-v-4kvvbh\",tdHazl766:\"framer-v-1319shm\",u0BUv0qUY:\"framer-v-1yi28w9\",VsjjCByfd:\"framer-v-jhra2h\",z1CWb3wbJ:\"framer-v-1ywhmki\"};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:{delay:0,duration:.7,ease:[.5,.3,0,.99],type:\"tween\"}};const valuesByLocaleId={SnaSoYePk:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const animation={opacity:1,rotate:0,scale:1.1,transition:transition1};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"PfIni01aG\",\"Variant 10\":\"leezByLFx\",\"Variant 2\":\"qQkRhGDzv\",\"Variant 3\":\"RMKlBkWkj\",\"Variant 4\":\"u0BUv0qUY\",\"Variant 5\":\"VsjjCByfd\",\"Variant 6\":\"tdHazl766\",\"Variant 7\":\"z1CWb3wbJ\",\"Variant 8\":\"PDFmTQz6P\",\"Variant 9\":\"iTDuP9k2b\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"PfIni01aG\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"PfIni01aG\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearjerjae=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qQkRhGDzv\"),3e3);});const onAppearj93s7a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"RMKlBkWkj\"),5e3);});const onAppear12u47s3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"u0BUv0qUY\"),5e3);});const onAppeared23r5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VsjjCByfd\"),5e3);});const onAppeargev3nc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tdHazl766\"),4e3);});const onAppeargmibd2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"z1CWb3wbJ\"),7e3);});const onAppear7hz14f=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PDFmTQz6P\"),6e3);});const onAppear15jfnja=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iTDuP9k2b\"),4250);});const onTap1atkm07=activeVariantCallback(async(...args)=>{setVariant(\"leezByLFx\");});const onTap2mm5z2=activeVariantCallback(async(...args)=>{setVariant(\"AgKAknlif\");});const onTap3hayko=activeVariantCallback(async(...args)=>{setVariant(\"PfIni01aG\");});useOnVariantChange(baseVariant,{default:onAppearjerjae,iTDuP9k2b:undefined,leezByLFx:undefined,PDFmTQz6P:onAppear15jfnja,qQkRhGDzv:onAppearj93s7a,RMKlBkWkj:onAppear12u47s3,tdHazl766:onAppeargmibd2,u0BUv0qUY:onAppeared23r5,VsjjCByfd:onAppeargev3nc,z1CWb3wbJ:onAppear7hz14f});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"leezByLFx-hover\")return true;if([\"iTDuP9k2b\",\"leezByLFx\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"leezByLFx-hover\")return true;if(baseVariant===\"leezByLFx\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"leezByLFx-hover\")return true;if(baseVariant===\"leezByLFx\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10;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-1pnecg8\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"PfIni01aG\",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({\"leezByLFx-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined},iTDuP9k2b:{\"data-framer-name\":\"Variant 9\",\"data-highlight\":undefined},leezByLFx:{\"data-framer-name\":\"Variant 10\",\"data-highlight\":undefined},PDFmTQz6P:{\"data-framer-name\":\"Variant 8\"},qQkRhGDzv:{\"data-framer-name\":\"Variant 2\"},RMKlBkWkj:{\"data-framer-name\":\"Variant 3\"},tdHazl766:{\"data-framer-name\":\"Variant 6\"},u0BUv0qUY:{\"data-framer-name\":\"Variant 4\"},VsjjCByfd:{\"data-framer-name\":\"Variant 5\"},z1CWb3wbJ:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-aapyux\",layoutDependency:layoutDependency,layoutId:\"M0pCRuxvB\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lost inside the Garden of Eden\"})}),className:\"framer-17g0ekz\",\"data-framer-name\":\"HUSH Web\",layoutDependency:layoutDependency,layoutId:\"KN5DAyJlS\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"leezByLFx-hover\":{children:(_getLocalizedValue1=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Stay Focused\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})})},iTDuP9k2b:{children:(_getLocalizedValue2=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Stay Focused\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})})},leezByLFx:{children:(_getLocalizedValue3=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Stay Focused\",/*#__PURE__*/_jsx(motion.br,{}),\"\uD83D\uDCAA\uD83D\uDE08\uD83D\uDD31\"]})})},PDFmTQz6P:{children:(_getLocalizedValue4=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"All our energy's nuclear, you look into my nucleus\"})})},qQkRhGDzv:{children:(_getLocalizedValue5=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Melancholy calling turned holidays into hollow days\"})})},RMKlBkWkj:{children:(_getLocalizedValue6=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"While I went from flower to flower looking to pollinate\"})})},tdHazl766:{children:(_getLocalizedValue7=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"'em dissolve away\"})})},u0BUv0qUY:{children:(_getLocalizedValue8=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"We're far away and wallow, we wanted to walk on water\"})})},VsjjCByfd:{children:(_getLocalizedValue9=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Take all of the autumn sorrows and watch\"})})},z1CWb3wbJ:{children:(_getLocalizedValue10=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1s08fvw\",\"data-styles-preset\":\"ZyK0wKHEe\",style:{\"--framer-text-alignment\":\"center\"},children:\"The weight I wake up to accumulates, all my thoughts are so cumulus\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qatr7z\",layoutDependency:layoutDependency,layoutId:\"BhNKg_FmC\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-14xa7sd\",\"data-framer-name\":\"Action Center\",layoutDependency:layoutDependency,layoutId:\"kRSc6xyHr\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-7855a345-0bf7-443e-8ee6-3054e834e6e3, rgba(255, 255, 255, 0.28))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(5px)\"},transformTemplate:transformTemplate1,variants:{\"leezByLFx-hover\":{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},iTDuP9k2b:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},leezByLFx:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({\"leezByLFx-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,src:\"https://framerusercontent.com/images/MiXJEHQbnc3XzZRwfFhkYlxwQM.jpg\",srcSet:\"https://framerusercontent.com/images/MiXJEHQbnc3XzZRwfFhkYlxwQM.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/MiXJEHQbnc3XzZRwfFhkYlxwQM.jpg 640w\"}},iTDuP9k2b:{\"data-highlight\":true,onTap:onTap1atkm07,whileHover:animation},leezByLFx:{whileHover:animation}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cl3duo\",\"data-framer-name\":\"Size=24, Theme=Regular\",layoutDependency:layoutDependency,layoutId:\"x8sihqnwC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kvzudi\",\"data-framer-name\":\"Shape\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"z5OkLD8nB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 35\"><path d=\"M 17.591 2.591 C 16.591 2.591 15.612 2.689 14.665 2.876 C 14.055 2.997 13.659 3.589 13.779 4.198 C 13.9 4.808 14.492 5.204 15.101 5.084 C 15.906 4.925 16.738 4.841 17.591 4.841 C 18.444 4.841 19.276 4.925 20.08 5.084 C 20.69 5.204 21.282 4.808 21.402 4.198 C 21.523 3.589 21.127 2.997 20.517 2.876 C 19.57 2.689 18.591 2.591 17.591 2.591 Z M 10.508 6.988 C 11.024 6.642 11.162 5.943 10.817 5.427 C 10.471 4.911 9.772 4.772 9.256 5.118 C 7.621 6.213 6.213 7.621 5.118 9.256 C 4.772 9.772 4.911 10.471 5.427 10.817 C 5.943 11.162 6.642 11.024 6.988 10.508 C 7.919 9.117 9.117 7.919 10.508 6.988 Z M 25.926 5.118 C 25.41 4.772 24.711 4.911 24.365 5.427 C 24.02 5.943 24.158 6.642 24.674 6.988 C 26.065 7.919 27.263 9.117 28.194 10.508 C 28.54 11.024 29.238 11.162 29.755 10.817 C 30.271 10.471 30.409 9.772 30.064 9.256 C 28.969 7.621 27.561 6.213 25.926 5.118 Z M 32.305 14.665 C 32.185 14.055 31.593 13.659 30.984 13.779 C 30.374 13.9 29.978 14.492 30.098 15.101 C 30.257 15.906 30.341 16.738 30.341 17.591 C 30.341 18.444 30.257 19.276 30.098 20.08 C 29.978 20.69 30.374 21.282 30.984 21.402 C 31.593 21.523 32.185 21.127 32.305 20.517 C 32.493 19.57 32.591 18.591 32.591 17.591 C 32.591 16.591 32.493 15.612 32.305 14.665 Z M 5.084 15.101 C 5.204 14.492 4.808 13.9 4.198 13.779 C 3.589 13.659 2.997 14.055 2.876 14.665 C 2.689 15.612 2.591 16.591 2.591 17.591 C 2.591 18.591 2.689 19.57 2.876 20.517 C 2.997 21.127 3.589 21.523 4.198 21.402 C 4.808 21.282 5.204 20.69 5.084 20.08 C 4.925 19.276 4.841 18.444 4.841 17.591 C 4.841 16.738 4.925 15.906 5.084 15.101 Z M 6.988 24.674 C 6.642 24.158 5.943 24.02 5.427 24.365 C 4.911 24.711 4.772 25.41 5.118 25.926 C 6.213 27.561 7.621 28.969 9.256 30.064 C 9.772 30.409 10.471 30.271 10.817 29.755 C 11.162 29.238 11.024 28.54 10.508 28.194 C 9.117 27.263 7.919 26.065 6.988 24.674 Z M 30.064 25.926 C 30.409 25.41 30.271 24.711 29.755 24.365 C 29.238 24.02 28.54 24.158 28.194 24.674 C 27.263 26.065 26.065 27.263 24.674 28.194 C 24.158 28.54 24.02 29.238 24.365 29.755 C 24.711 30.271 25.41 30.409 25.926 30.064 C 27.561 28.969 28.969 27.561 30.064 25.926 Z M 15.101 30.098 C 14.492 29.978 13.9 30.374 13.779 30.984 C 13.659 31.593 14.055 32.185 14.665 32.305 C 15.612 32.493 16.591 32.591 17.591 32.591 C 18.591 32.591 19.57 32.493 20.517 32.305 C 21.127 32.185 21.523 31.593 21.402 30.984 C 21.282 30.374 20.69 29.978 20.08 30.098 C 19.276 30.257 18.444 30.341 17.591 30.341 C 16.738 30.341 15.906 30.257 15.101 30.098 Z M 13.091 13.462 C 13.091 12.035 14.625 11.132 15.874 11.823 L 24.511 16.603 C 24.869 16.801 25.091 17.177 25.091 17.586 C 25.091 17.995 24.869 18.371 24.511 18.569 L 15.874 23.349 C 14.625 24.04 13.091 23.137 13.091 21.71 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:568770413,withExternalLayout:true,...addPropertyOverrides({iTDuP9k2b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 10 1 C 9.333 1 8.681 1.065 8.049 1.19 C 7.643 1.271 7.379 1.665 7.459 2.072 C 7.539 2.478 7.934 2.742 8.34 2.662 C 8.876 2.556 9.431 2.5 10 2.5 C 10.569 2.5 11.124 2.556 11.66 2.662 C 12.066 2.742 12.461 2.478 12.541 2.072 C 12.621 1.665 12.357 1.271 11.951 1.19 C 11.319 1.065 10.667 1 10 1 Z M 5.278 3.931 C 5.622 3.701 5.714 3.235 5.484 2.891 C 5.253 2.547 4.788 2.454 4.443 2.685 C 3.353 3.415 2.415 4.353 1.685 5.443 C 1.454 5.788 1.547 6.253 1.891 6.484 C 2.235 6.714 2.701 6.622 2.931 6.278 C 3.552 5.351 4.351 4.552 5.278 3.931 Z M 15.557 2.685 C 15.213 2.454 14.747 2.547 14.516 2.891 C 14.286 3.235 14.378 3.701 14.722 3.931 C 15.65 4.552 16.448 5.351 17.069 6.278 C 17.299 6.622 17.765 6.714 18.109 6.484 C 18.453 6.253 18.546 5.788 18.315 5.443 C 17.585 4.353 16.647 3.415 15.557 2.685 Z M 19.81 9.049 C 19.729 8.643 19.335 8.379 18.928 8.459 C 18.522 8.539 18.258 8.934 18.338 9.34 C 18.444 9.876 18.5 10.431 18.5 11 C 18.5 11.569 18.444 12.124 18.338 12.66 C 18.258 13.066 18.522 13.461 18.928 13.541 C 19.335 13.621 19.729 13.357 19.81 12.951 C 19.935 12.319 20 11.667 20 11 C 20 10.333 19.935 9.681 19.81 9.049 Z M 1.662 9.34 C 1.742 8.934 1.478 8.539 1.072 8.459 C 0.665 8.379 0.271 8.643 0.19 9.049 C 0.065 9.681 -0 10.333 -0 11 C -0 11.667 0.065 12.319 0.19 12.951 C 0.271 13.357 0.665 13.621 1.072 13.541 C 1.478 13.461 1.742 13.066 1.662 12.66 C 1.556 12.124 1.5 11.569 1.5 11 C 1.5 10.431 1.556 9.876 1.662 9.34 Z M 2.931 15.722 C 2.701 15.378 2.235 15.286 1.891 15.516 C 1.547 15.747 1.454 16.213 1.685 16.557 C 2.415 17.647 3.353 18.585 4.443 19.315 C 4.788 19.546 5.253 19.453 5.484 19.109 C 5.714 18.765 5.622 18.299 5.278 18.069 C 4.351 17.448 3.552 16.65 2.931 15.722 Z M 18.315 16.557 C 18.546 16.213 18.453 15.747 18.109 15.516 C 17.765 15.286 17.299 15.378 17.069 15.722 C 16.448 16.65 15.65 17.448 14.722 18.069 C 14.378 18.299 14.286 18.765 14.516 19.109 C 14.747 19.453 15.213 19.546 15.557 19.315 C 16.647 18.585 17.585 17.647 18.315 16.557 Z M 8.34 19.338 C 7.934 19.258 7.539 19.522 7.459 19.928 C 7.379 20.335 7.643 20.729 8.049 20.81 C 8.681 20.935 9.333 21 10 21 C 10.667 21 11.319 20.935 11.951 20.81 C 12.357 20.729 12.621 20.335 12.541 19.928 C 12.461 19.522 12.066 19.258 11.66 19.338 C 11.124 19.444 10.569 19.5 10 19.5 C 9.431 19.5 8.876 19.444 8.34 19.338 Z M 7 8.247 C 7 7.296 8.022 6.694 8.856 7.155 L 14.613 10.341 C 14.852 10.473 15 10.724 15 10.997 C 15 11.269 14.852 11.52 14.613 11.652 L 8.856 14.839 C 8.023 15.3 7 14.698 7 13.746 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:3652372295},leezByLFx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 10.591 0.591 C 9.924 0.591 9.272 0.656 8.64 0.781 C 8.234 0.862 7.97 1.256 8.05 1.663 C 8.13 2.069 8.525 2.333 8.931 2.253 C 9.467 2.147 10.022 2.091 10.591 2.091 C 11.16 2.091 11.714 2.147 12.251 2.253 C 12.657 2.333 13.052 2.069 13.132 1.663 C 13.212 1.256 12.948 0.862 12.542 0.781 C 11.91 0.656 11.258 0.591 10.591 0.591 Z M 5.869 3.522 C 6.213 3.292 6.305 2.826 6.075 2.482 C 5.844 2.137 5.378 2.045 5.034 2.276 C 3.944 3.006 3.006 3.944 2.276 5.034 C 2.045 5.378 2.137 5.844 2.482 6.075 C 2.826 6.305 3.292 6.213 3.522 5.869 C 4.143 4.941 4.941 4.143 5.869 3.522 Z M 16.148 2.276 C 15.803 2.045 15.338 2.137 15.107 2.482 C 14.877 2.826 14.969 3.292 15.313 3.522 C 16.24 4.143 17.039 4.941 17.66 5.869 C 17.89 6.213 18.356 6.305 18.7 6.075 C 19.044 5.844 19.137 5.378 18.906 5.034 C 18.176 3.944 17.238 3.006 16.148 2.276 Z M 20.401 8.64 C 20.32 8.234 19.926 7.97 19.519 8.05 C 19.113 8.13 18.849 8.525 18.929 8.931 C 19.035 9.467 19.091 10.022 19.091 10.591 C 19.091 11.16 19.035 11.714 18.929 12.251 C 18.849 12.657 19.113 13.052 19.519 13.132 C 19.926 13.212 20.32 12.948 20.401 12.542 C 20.526 11.91 20.591 11.258 20.591 10.591 C 20.591 9.924 20.526 9.272 20.401 8.64 Z M 2.253 8.931 C 2.333 8.525 2.069 8.13 1.663 8.05 C 1.256 7.97 0.862 8.234 0.781 8.64 C 0.656 9.272 0.591 9.924 0.591 10.591 C 0.591 11.258 0.656 11.91 0.781 12.542 C 0.862 12.948 1.256 13.212 1.663 13.132 C 2.069 13.052 2.333 12.657 2.253 12.251 C 2.147 11.714 2.091 11.16 2.091 10.591 C 2.091 10.022 2.147 9.467 2.253 8.931 Z M 3.522 15.313 C 3.292 14.969 2.826 14.877 2.482 15.107 C 2.137 15.338 2.045 15.803 2.276 16.148 C 3.006 17.238 3.944 18.176 5.034 18.906 C 5.378 19.137 5.844 19.044 6.075 18.7 C 6.305 18.356 6.213 17.89 5.869 17.66 C 4.941 17.039 4.143 16.24 3.522 15.313 Z M 18.906 16.148 C 19.137 15.803 19.044 15.338 18.7 15.107 C 18.356 14.877 17.89 14.969 17.66 15.313 C 17.039 16.24 16.24 17.039 15.313 17.66 C 14.969 17.89 14.877 18.356 15.107 18.7 C 15.338 19.044 15.803 19.137 16.148 18.906 C 17.238 18.176 18.176 17.238 18.906 16.148 Z M 8.931 18.929 C 8.525 18.849 8.13 19.113 8.05 19.519 C 7.97 19.926 8.234 20.32 8.64 20.401 C 9.272 20.526 9.924 20.591 10.591 20.591 C 11.258 20.591 11.91 20.526 12.542 20.401 C 12.948 20.32 13.212 19.926 13.132 19.519 C 13.052 19.113 12.657 18.849 12.251 18.929 C 11.714 19.035 11.16 19.091 10.591 19.091 C 10.022 19.091 9.467 19.035 8.931 18.929 Z M 7.591 7.838 C 7.591 6.887 8.613 6.285 9.447 6.746 L 15.204 9.932 C 15.443 10.064 15.591 10.315 15.591 10.588 C 15.591 10.86 15.443 11.111 15.204 11.243 L 9.447 14.429 C 8.613 14.89 7.591 14.288 7.591 13.337 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:2618592526}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nsp9sj\",\"data-framer-name\":\"Action Center\",layoutDependency:layoutDependency,layoutId:\"ok5Rsq2Ay\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-7855a345-0bf7-443e-8ee6-3054e834e6e3, rgba(255, 255, 255, 0.28))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(5px)\"},transformTemplate:transformTemplate1,variants:{\"leezByLFx-hover\":{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,WebkitBackdropFilter:\"none\"},iTDuP9k2b:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,WebkitBackdropFilter:\"none\"},leezByLFx:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:27,borderBottomRightRadius:27,borderTopLeftRadius:27,borderTopRightRadius:27,WebkitBackdropFilter:\"none\"}},...addPropertyOverrides({\"leezByLFx-hover\":{transformTemplate:undefined},iTDuP9k2b:{transformTemplate:undefined},leezByLFx:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bzo3rn\",\"data-framer-name\":\"Action Center\",layoutDependency:layoutDependency,layoutId:\"mHxxiIUa3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0)))\"},children:\"drowning (sped up)\"})}),className:\"framer-jikjmo\",fonts:[\"GF;Space Grotesk-600\"],layoutDependency:layoutDependency,layoutId:\"Dfx9nvSXy\",style:{\"--extracted-a0htzi\":\"var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"leezByLFx-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0)))\"},children:\"drowning (sped up)\"})})},iTDuP9k2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay02MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0)))\"},children:\"drowning (sped up)\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1rlswe7\",\"data-styles-preset\":\"swiBRzXra\",children:\"Vague003\"})}),className:\"framer-1ptjesj\",layoutDependency:layoutDependency,layoutId:\"Tq4vDjrd2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"leezByLFx-hover\":{\"--extracted-1w1cjl5\":\"var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0))\"},iTDuP9k2b:{\"--extracted-1w1cjl5\":\"var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"leezByLFx-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0)))\"},children:\"Vague003\"})}),fonts:[\"GF;Space Grotesk-700\"]},iTDuP9k2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"R0Y7U3BhY2UgR3JvdGVzay03MDA=\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-7db45316-b530-410d-96be-35f0a8b0e558, rgb(0, 0, 0)))\"},children:\"Vague003\"})}),fonts:[\"GF;Space Grotesk-700\"]}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ig241-container\",layoutDependency:layoutDependency,layoutId:\"NP6nADWfx-container\",whileHover:animation,children:/*#__PURE__*/_jsx(Audio,{background:'var(--token-96790a7c-1d28-459c-85bf-afecc63191e7, rgba(255, 255, 255, 0)) /* {\"name\":\"Disabled Color Mode\"} */',borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,font:{fontFamily:'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400},gap:20,height:\"100%\",id:\"NP6nADWfx\",isMixedBorderRadius:false,layoutId:\"NP6nADWfx\",loop:false,onPlayGlobalPauseOption:\"continue\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:false,playing:true,playPauseCursor:\"default\",progress:0,progressColor:'var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0)) /* {\"name\":\"Component Mode\"} */',showPlayPause:true,showTime:false,showTrack:true,srcFile:\"https://framerusercontent.com/assets/Y96nRapKKSE2bavWddEsRe3P0.mp3\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,trackColor:'var(--token-fe397c9d-5bc4-4af8-bd20-253031e1cac5, rgb(255, 255, 255)) /* {\"name\":\"Window Mode\"} */',volume:100,width:\"100%\",...addPropertyOverrides({\"leezByLFx-hover\":{showTrack:false}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jnjcqm\",\"data-framer-name\":\"Action Center\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tKuSCdUmD\",onTap:onTap2mm5z2,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-7855a345-0bf7-443e-8ee6-3054e834e6e3, rgba(255, 255, 255, 0.28))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,WebkitBackdropFilter:\"blur(5px)\"},transformTemplate:transformTemplate1,variants:{\"leezByLFx-hover\":{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},iTDuP9k2b:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},leezByLFx:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"}},whileHover:animation,...addPropertyOverrides({iTDuP9k2b:{onTap:onTap3hayko}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zkx49f\",\"data-framer-name\":\"Size=20, Theme=Regular\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PulC1iZ_w\",onTap:onTap3hayko,whileHover:animation,...addPropertyOverrides({iTDuP9k2b:{\"data-highlight\":undefined,onTap:undefined,whileHover:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x2oxtv\",\"data-framer-name\":\"Shape\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gr3C3S1Eo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 35 35\"><path d=\"M 4.878 11.438 L 4.878 5.814 C 4.878 5.296 5.298 4.877 5.816 4.877 C 6.334 4.877 6.753 5.296 6.753 5.814 L 6.753 8.077 C 8.332 6.287 10.341 4.865 12.648 3.986 C 13.981 3.476 15.405 3.151 16.889 3.043 C 18.521 2.92 20.118 3.066 21.634 3.445 C 28.162 5.069 33 10.969 33 18 C 33 18.054 33 18.109 32.999 18.163 C 32.993 18.827 32.942 19.482 32.85 20.127 C 32.344 23.69 30.586 26.851 28.035 29.148 C 27.08 30.01 26.009 30.753 24.844 31.35 C 23.056 32.268 21.06 32.838 18.945 32.969 C 17.023 33.092 15.151 32.844 13.406 32.281 C 11.919 31.803 10.533 31.098 9.289 30.209 C 6.079 27.918 3.774 24.374 3.16 20.173 C 3.153 20.128 3.147 20.081 3.14 20.035 C 3.001 19.021 2.967 18.015 3.03 17.029 C 3.063 16.512 3.509 16.12 4.026 16.153 C 4.542 16.186 4.934 16.632 4.901 17.148 C 4.885 17.404 4.876 17.66 4.875 17.918 C 4.877 17.945 4.878 17.972 4.878 18 C 4.878 23.812 8.657 28.742 13.891 30.467 C 15.184 30.893 16.566 31.123 18.002 31.123 C 18.276 31.123 18.549 31.115 18.819 31.098 C 19.138 31.078 19.459 31.046 19.781 31.002 C 21.35 30.787 22.817 30.303 24.14 29.602 C 28.871 27.098 31.77 21.83 31.002 16.219 C 30.25 10.73 26.206 6.502 21.136 5.253 C 20.131 5.007 19.082 4.877 18.002 4.877 C 17.673 4.877 17.348 4.889 17.025 4.912 C 16.757 4.933 16.488 4.961 16.219 4.998 C 15.242 5.132 14.306 5.37 13.419 5.699 C 10.899 6.638 8.746 8.329 7.231 10.501 L 10.503 10.501 C 11.02 10.501 11.44 10.921 11.44 11.438 C 11.44 11.956 11.02 12.376 10.503 12.376 L 5.816 12.376 C 5.749 12.376 5.684 12.369 5.621 12.355 C 5.197 12.266 4.878 11.889 4.878 11.438 Z M 13.315 14.189 C 13.315 12.444 15.153 11.311 16.712 12.095 L 24.286 15.907 C 26.006 16.772 26.006 19.228 24.286 20.093 L 16.712 23.905 C 15.153 24.689 13.315 23.556 13.315 21.811 Z M 15.869 13.77 C 15.557 13.613 15.19 13.84 15.19 14.189 L 15.19 21.811 C 15.19 22.16 15.557 22.387 15.869 22.23 L 23.443 18.419 C 23.787 18.245 23.787 17.754 23.443 17.581 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:630377997,withExternalLayout:true,...addPropertyOverrides({iTDuP9k2b:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.252 5.626 L 1.252 1.876 C 1.252 1.531 1.532 1.251 1.877 1.251 C 2.222 1.251 2.502 1.531 2.502 1.876 L 2.502 3.385 C 3.554 2.191 4.894 1.243 6.432 0.657 C 7.321 0.317 8.27 0.101 9.259 0.028 C 10.347 -0.054 11.412 0.044 12.423 0.296 C 16.775 1.379 20 5.313 20 10 C 20 10.036 20 10.073 19.999 10.109 C 19.995 10.551 19.962 10.988 19.9 11.418 C 19.563 13.793 18.391 15.9 16.69 17.432 C 16.053 18.006 15.34 18.502 14.563 18.9 C 13.371 19.512 12.04 19.892 10.63 19.979 C 9.349 20.062 8.101 19.896 6.937 19.521 C 5.946 19.202 5.022 18.732 4.192 18.139 C 2.053 16.612 0.516 14.25 0.107 11.449 C 0.102 11.418 0.098 11.388 0.094 11.357 C 0.001 10.68 -0.022 10.01 0.02 9.353 C 0.042 9.008 0.339 8.747 0.684 8.769 C 1.028 8.791 1.29 9.088 1.268 9.432 C 1.257 9.602 1.251 9.774 1.25 9.946 C 1.252 9.964 1.252 9.982 1.252 10 C 1.252 13.875 3.771 17.161 7.261 18.311 C 8.123 18.595 9.044 18.749 10.001 18.749 C 10.184 18.749 10.366 18.743 10.546 18.732 C 10.759 18.719 10.973 18.697 11.187 18.668 C 12.234 18.525 13.211 18.202 14.093 17.735 C 17.247 16.066 19.18 12.554 18.668 8.813 C 18.167 5.154 15.471 2.335 12.091 1.502 C 11.421 1.338 10.721 1.251 10.001 1.251 C 9.782 1.251 9.565 1.259 9.35 1.275 C 9.172 1.288 8.992 1.307 8.813 1.332 C 8.162 1.421 7.537 1.58 6.946 1.799 C 5.266 2.425 3.83 3.553 2.82 5.001 L 5.002 5.001 C 5.347 5.001 5.627 5.28 5.627 5.626 C 5.627 5.971 5.347 6.25 5.002 6.25 L 1.877 6.25 C 1.833 6.25 1.789 6.246 1.747 6.237 C 1.464 6.177 1.252 5.926 1.252 5.626 Z M 6.877 7.459 C 6.877 6.296 8.102 5.541 9.141 6.064 L 14.19 8.604 C 15.337 9.181 15.337 10.819 14.19 11.396 L 9.141 13.936 C 8.102 14.459 6.877 13.704 6.877 12.541 Z M 8.579 7.18 C 8.372 7.075 8.126 7.226 8.126 7.459 L 8.126 12.541 C 8.126 12.774 8.372 12.925 8.579 12.82 L 13.629 10.279 C 13.858 10.164 13.858 9.836 13.629 9.721 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:163241628},leezByLFx:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 1.252 5.626 L 1.252 1.876 C 1.252 1.531 1.532 1.251 1.877 1.251 C 2.222 1.251 2.502 1.531 2.502 1.876 L 2.502 3.385 C 3.554 2.191 4.894 1.243 6.432 0.657 C 7.321 0.317 8.27 0.101 9.259 0.028 C 10.347 -0.054 11.412 0.044 12.423 0.296 C 16.775 1.379 20 5.313 20 10 C 20 10.036 20 10.073 19.999 10.109 C 19.995 10.551 19.962 10.988 19.9 11.418 C 19.563 13.793 18.391 15.9 16.69 17.432 C 16.053 18.006 15.34 18.502 14.563 18.9 C 13.371 19.512 12.04 19.892 10.63 19.979 C 9.349 20.062 8.101 19.896 6.937 19.521 C 5.946 19.202 5.022 18.732 4.192 18.139 C 2.053 16.612 0.516 14.25 0.107 11.449 C 0.102 11.418 0.098 11.388 0.094 11.357 C 0.001 10.68 -0.022 10.01 0.02 9.353 C 0.042 9.008 0.339 8.747 0.684 8.769 C 1.028 8.791 1.29 9.088 1.268 9.432 C 1.257 9.602 1.251 9.774 1.25 9.946 C 1.252 9.964 1.252 9.982 1.252 10 C 1.252 13.875 3.771 17.161 7.261 18.311 C 8.123 18.595 9.044 18.749 10.001 18.749 C 10.184 18.749 10.366 18.743 10.546 18.732 C 10.759 18.719 10.973 18.697 11.187 18.668 C 12.234 18.525 13.211 18.202 14.093 17.735 C 17.247 16.066 19.18 12.554 18.668 8.813 C 18.167 5.154 15.471 2.335 12.091 1.502 C 11.421 1.338 10.721 1.251 10.001 1.251 C 9.782 1.251 9.565 1.259 9.35 1.275 C 9.172 1.288 8.992 1.307 8.813 1.332 C 8.162 1.421 7.537 1.58 6.946 1.799 C 5.266 2.425 3.83 3.553 2.82 5.001 L 5.002 5.001 C 5.347 5.001 5.627 5.28 5.627 5.626 C 5.627 5.971 5.347 6.25 5.002 6.25 L 1.877 6.25 C 1.833 6.25 1.789 6.246 1.747 6.237 C 1.464 6.177 1.252 5.926 1.252 5.626 Z M 6.877 7.459 C 6.877 6.296 8.102 5.541 9.141 6.064 L 14.19 8.604 C 15.337 9.181 15.337 10.819 14.19 11.396 L 9.141 13.936 C 8.102 14.459 6.877 13.704 6.877 12.541 Z M 8.579 7.18 C 8.372 7.075 8.126 7.226 8.126 7.459 L 8.126 12.541 C 8.126 12.774 8.372 12.925 8.579 12.82 L 13.629 10.279 C 13.858 10.164 13.858 9.836 13.629 9.721 Z\" fill=\"var(--token-eccecc5f-9954-4278-802a-e7f64820d4e1, rgb(0, 0, 0))\"></path></svg>',svgContentId:2588603046}},baseVariant,gestureVariant)})})})]})]})})});});const css=['.framer-aq8cs[data-border=\"true\"]::after, .framer-aq8cs [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-aq8cs.framer-8n7qig, .framer-aq8cs .framer-8n7qig { display: block; }\",\".framer-aq8cs.framer-1pnecg8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 300px; min-height: 200px; min-width: 300px; overflow: visible; padding: 25px 25px 25px 25px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-aapyux { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-aq8cs .framer-17g0ekz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aq8cs .framer-qatr7z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 5px 5px 5px 5px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-aq8cs .framer-14xa7sd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; min-height: 50px; min-width: 50px; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-1cl3duo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-1kvzudi, .framer-aq8cs .framer-x2oxtv { flex: none; height: 35px; position: relative; width: 35px; }\",\".framer-aq8cs .framer-1nsp9sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; min-height: 50px; min-width: 50px; padding: 10px 25px 10px 25px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-1bzo3rn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-jikjmo, .framer-aq8cs .framer-1ptjesj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aq8cs .framer-8ig241-container { cursor: none; flex: none; height: 30px; position: relative; width: 145px; }\",\".framer-aq8cs .framer-1jnjcqm { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; min-height: 50px; min-width: 50px; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-aq8cs .framer-zkx49f { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aq8cs.framer-1pnecg8, .framer-aq8cs .framer-aapyux, .framer-aq8cs .framer-qatr7z, .framer-aq8cs .framer-14xa7sd, .framer-aq8cs .framer-1cl3duo, .framer-aq8cs .framer-1nsp9sj, .framer-aq8cs .framer-1bzo3rn, .framer-aq8cs .framer-1jnjcqm, .framer-aq8cs .framer-zkx49f { gap: 0px; } .framer-aq8cs.framer-1pnecg8 > *, .framer-aq8cs .framer-aapyux > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aq8cs.framer-1pnecg8 > :first-child, .framer-aq8cs .framer-aapyux > :first-child, .framer-aq8cs .framer-1bzo3rn > :first-child { margin-top: 0px; } .framer-aq8cs.framer-1pnecg8 > :last-child, .framer-aq8cs .framer-aapyux > :last-child, .framer-aq8cs .framer-1bzo3rn > :last-child { margin-bottom: 0px; } .framer-aq8cs .framer-qatr7z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aq8cs .framer-qatr7z > :first-child, .framer-aq8cs .framer-14xa7sd > :first-child, .framer-aq8cs .framer-1cl3duo > :first-child, .framer-aq8cs .framer-1nsp9sj > :first-child, .framer-aq8cs .framer-1jnjcqm > :first-child, .framer-aq8cs .framer-zkx49f > :first-child { margin-left: 0px; } .framer-aq8cs .framer-qatr7z > :last-child, .framer-aq8cs .framer-14xa7sd > :last-child, .framer-aq8cs .framer-1cl3duo > :last-child, .framer-aq8cs .framer-1nsp9sj > :last-child, .framer-aq8cs .framer-1jnjcqm > :last-child, .framer-aq8cs .framer-zkx49f > :last-child { margin-right: 0px; } .framer-aq8cs .framer-14xa7sd > *, .framer-aq8cs .framer-1nsp9sj > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-aq8cs .framer-1cl3duo > *, .framer-aq8cs .framer-zkx49f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aq8cs .framer-1bzo3rn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aq8cs .framer-1jnjcqm > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } }\",\".framer-aq8cs.framer-v-4kvvbh.framer-1pnecg8 { width: 300px; }\",\".framer-aq8cs.framer-v-4kvvbh .framer-aapyux { align-self: unset; width: 100%; }\",\".framer-aq8cs.framer-v-1oo2j61.framer-1pnecg8, .framer-aq8cs.framer-v-1nv9nbv.framer-1pnecg8 { cursor: none; gap: 30px; }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-qatr7z, .framer-aq8cs.framer-v-1nv9nbv .framer-qatr7z { overflow: visible; }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-14xa7sd, .framer-aq8cs.framer-v-1oo2j61 .framer-1jnjcqm, .framer-aq8cs.framer-v-1nv9nbv .framer-14xa7sd, .framer-aq8cs.framer-v-1nv9nbv .framer-1jnjcqm { cursor: none; min-height: 40px; }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-1kvzudi, .framer-aq8cs.framer-v-1nv9nbv .framer-1kvzudi, .framer-aq8cs.framer-v-1nv9nbv .framer-x2oxtv { height: 21px; width: 21px; }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-1nsp9sj, .framer-aq8cs.framer-v-1nv9nbv .framer-1nsp9sj { cursor: none; min-height: 65px; overflow: hidden; padding: 10px 15px 10px 15px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-zkx49f { cursor: unset; }\",\".framer-aq8cs.framer-v-1oo2j61 .framer-x2oxtv { height: 20px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aq8cs.framer-v-1oo2j61.framer-1pnecg8 { gap: 0px; } .framer-aq8cs.framer-v-1oo2j61.framer-1pnecg8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-aq8cs.framer-v-1oo2j61.framer-1pnecg8 > :first-child { margin-top: 0px; } .framer-aq8cs.framer-v-1oo2j61.framer-1pnecg8 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aq8cs.framer-v-1nv9nbv.framer-1pnecg8 { gap: 0px; } .framer-aq8cs.framer-v-1nv9nbv.framer-1pnecg8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-aq8cs.framer-v-1nv9nbv.framer-1pnecg8 > :first-child { margin-top: 0px; } .framer-aq8cs.framer-v-1nv9nbv.framer-1pnecg8 > :last-child { margin-bottom: 0px; } }\",\".framer-aq8cs.framer-v-1nv9nbv.hover .framer-1nsp9sj { gap: 15px; min-height: 70px; padding: 10px 20px 10px 30px; }\",\".framer-aq8cs.framer-v-1nv9nbv.hover .framer-8ig241-container { width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aq8cs.framer-v-1nv9nbv.hover .framer-1nsp9sj { gap: 0px; } .framer-aq8cs.framer-v-1nv9nbv.hover .framer-1nsp9sj > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-aq8cs.framer-v-1nv9nbv.hover .framer-1nsp9sj > :first-child { margin-left: 0px; } .framer-aq8cs.framer-v-1nv9nbv.hover .framer-1nsp9sj > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"qQkRhGDzv\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"RMKlBkWkj\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"u0BUv0qUY\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"VsjjCByfd\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"tdHazl766\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"z1CWb3wbJ\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"PDFmTQz6P\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"iTDuP9k2b\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"leezByLFx\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]},\"StLEzzqDY\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"300px\",\"300px\",\"200px\",null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerHvff_pUrv=withCSS(Component,css,\"framer-aq8cs\");export default FramerHvff_pUrv;FramerHvff_pUrv.displayName=\"Don't Degrade\";FramerHvff_pUrv.defaultProps={height:200,width:300};addPropertyControls(FramerHvff_pUrv,{variant:{options:[\"PfIni01aG\",\"qQkRhGDzv\",\"RMKlBkWkj\",\"u0BUv0qUY\",\"VsjjCByfd\",\"tdHazl766\",\"z1CWb3wbJ\",\"PDFmTQz6P\",\"iTDuP9k2b\",\"leezByLFx\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHvff_pUrv,[{family:\"Space Grotesk\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksmNsFjTDJK.woff2\",weight:\"600\"},{family:\"Space Grotesk\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksmNsFjTDJK.woff2\",weight:\"700\"},{family:\"Space Grotesk\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacegrotesk/v16/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsmNsFjTDJK.woff2\",weight:\"400\"},...AudioFonts,...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHvff_pUrv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"qQkRhGDzv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"RMKlBkWkj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"u0BUv0qUY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"VsjjCByfd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"tdHazl766\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"z1CWb3wbJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"PDFmTQz6P\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"iTDuP9k2b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"leezByLFx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]},\\\"StLEzzqDY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"300px\\\",\\\"300px\\\",\\\"200px\\\",null]}}}\",\"framerIntrinsicWidth\":\"300\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayIcon", "props", "p", "motion", "PauseIcon", "u", "FUNC_ERROR_TEXT", "nativeMax", "nativeMin", "NAN", "reTrim", "reIsBadHex", "reIsBinary", "reIsOctal", "freeParseInt", "now", "isObject", "value", "type", "toNumber", "value", "NAN", "isObject", "other", "reTrim", "isBinary", "reIsBinary", "reIsOctal", "freeParseInt", "reIsBadHex", "debounce", "func", "wait", "options", "lastArgs", "lastThis", "maxWait", "result", "timerId", "lastCallTime", "lastInvokeTime", "leading", "maxing", "trailing", "FUNC_ERROR_TEXT", "nativeMax", "invokeFunc", "time", "args", "thisArg", "leadingEdge", "timerExpired", "remainingWait", "timeSinceLastCall", "timeSinceLastInvoke", "timeWaiting", "nativeMin", "shouldInvoke", "now", "trailingEdge", "cancel", "flush", "debounced", "isInvoking", "throttle", "KnobOptions", "Slider", "withCSS", "props", "valueProp", "trackHeight", "fillColor", "focusColor", "min", "max", "onChange", "onChangeLive", "onMax", "onMin", "trackColor", "trackRadius", "knobSize", "knobColor", "constrainKnob", "shadow", "shouldAnimateChange", "transition", "overdrag", "knobSetting", "style", "hovered", "setHovered", "ye", "focused", "setFocused", "onCanvas", "RenderTarget", "shouldAnimate", "isConstrained", "showKnob", "input", "pe", "knobPadding", "updateValue", "te", "newVal", "target", "throttledInputUpdate", "animate", "value", "useAutoMotionValue", "transform", "knobX", "useTransform", "normalizedValue", "throttle", "val", "ref", "useOnChange", "isMotionValue", "handleInputChange", "e", "handleMouseDown", "handleMouseUp", "totalKnobWidth", "totalHeight", "u", "p", "motion", "addPropertyControls", "ControlType", "isMotionValue", "v", "MotionValue", "SrcType", "PlayTime", "props", "currentTime", "startTime", "playTime", "setPlayTime", "ye", "ue", "secondsToMinutes", "useOnChange", "latest", "p", "l", "checkIfPlaying", "player", "Audio", "playing", "background", "progressColor", "trackHeight", "gap", "trackColor", "srcUrl", "srcType", "srcFile", "loop", "font", "autoPlay", "progress", "volume", "showTime", "showTrack", "playPauseCursor", "showPlayPause", "onTimeUpdate", "onMetadata", "onPlay", "onPause", "onEnd", "pauseOnExit", "onPlayGlobalPauseOption", "isPlaying", "setIsPlaying", "duration", "setDuration", "pe", "playerInfo", "trackProgress", "useAutoMotionValue", "value", "newValue", "handlePlayStateUpdate", "padding", "usePadding", "borderRadius", "useRadius", "fontSize", "useFontControls", "shouldPlay", "RenderTarget", "shouldPausePlayers", "url", "shouldAutoPlay", "te", "_", "ref", "ref1", "currentDuration", "isNowPlaying", "animate", "pauseAllAudioPlayers", "el", "playAudio", "e", "pauseAudio", "handleMetadata", "initProgress", "handleReady", "handleSeek", "val", "handleEnd", "handlePlayClick", "useOnEnter", "useOnExit", "useMotionValueEvent", "progressPercent", "iconStyles", "se", "u", "containerStyles", "PauseIcon", "PlayIcon", "fontStack", "Slider", "addPropertyControls", "ControlType", "paddingControl", "borderRadiusControl", "Hvff_pUrv_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "u", "v9", "v10", "__FramerMetadata__", "ImageWithFX", "withFX", "Image2", "AudioFonts", "getFonts", "Audio", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "Hvff_pUrv_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "transformTemplate1", "_", "t", "animation", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearjerjae", "args", "onAppearj93s7a", "onAppear12u47s3", "onAppeared23r5", "onAppeargev3nc", "onAppeargmibd2", "onAppear7hz14f", "onAppear15jfnja", "onTap1atkm07", "onTap2mm5z2", "onTap3hayko", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "LayoutGroup", "u", "cx", "RichText", "x", "SVG", "css", "FramerHvff_pUrv", "withCSS", "Hvff_pUrv_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
