{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/0670lkIDbtGR6UTcgHwQ/2mEx1zmMwG5PWqAc1Mdy/PuJv23A0G.js", "ssg:https://framerusercontent.com/modules/ADZmEnxhYi3OB7DsNpkA/ogiL9DLfYrduvQQXlc7O/xwLtASr04.js", "ssg:https://framerusercontent.com/modules/kTASGh3lmfXVd1lwt8uC/3whYHLTRwLR4a2iqlnZg/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ShopAllFlavorsButton from\"https://framerusercontent.com/modules/nuMBIsCcHmYbtfE0S2tl/Q4tbIvB0n7YoDcKKk6fc/EZjBp97nQ.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const ShopAllFlavorsButtonFonts=getFonts(ShopAllFlavorsButton);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const cycleOrder=[\"upuUDNARb\",\"WHthNNWkM\",\"WRot8rpyg\",\"OTMn4x6mx\"];const serializationHash=\"framer-eus9d\";const variantClassNames={OTMn4x6mx:\"framer-v-tjvml1\",upuUDNARb:\"framer-v-bm4ezi\",WHthNNWkM:\"framer-v-1pchybu\",WRot8rpyg:\"framer-v-jpua79\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:.4,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-150,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:.2,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:-5,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:300};const transition4={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition5={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-15};const transition6={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:0,duration:3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-4};const transition8={bounce:.2,delay:.4,duration:1,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:8};const transition10={delay:.6,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-5};const transition11={delay:.8,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={delay:0,duration:6,ease:[.44,0,.56,1],type:\"tween\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:9};const transition13={delay:.2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={delay:.3,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation19={opacity:.001,rotate:-6,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:150};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={\"Variant 1\":\"upuUDNARb\",laptop:\"OTMn4x6mx\",mobile:\"WRot8rpyg\",tablet:\"WHthNNWkM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"upuUDNARb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"upuUDNARb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"WRot8rpyg\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"WRot8rpyg\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bm4ezi\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"upuUDNARb\",ref:refBinding,style:{...style},...addPropertyOverrides({OTMn4x6mx:{\"data-framer-name\":\"laptop\"},WHthNNWkM:{\"data-framer-name\":\"tablet\"},WRot8rpyg:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1huf75t\",\"data-framer-name\":\"hero content\",layoutDependency:layoutDependency,layoutId:\"tAktWkZbq\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1edqizz\",\"data-framer-appear-id\":\"1edqizz\",\"data-framer-name\":\"hero text\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Eti1TjWru\",optimized:true,children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"REAL INGREDIENTS, REAL JOY.\"})}),className:\"framer-742a3o\",\"data-framer-appear-id\":\"742a3o\",fonts:[\"CUSTOM;Heavitas Regular\"],initial:animation3,layoutDependency:layoutDependency,layoutId:\"n4poSpHbp\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WRot8rpyg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"REAL INGREDIENTS, REAL JOY.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"The treats your\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"dog deserves.\"})]}),className:\"framer-52usyf\",fonts:[\"CUSTOM;Evans Extrabold\"],layoutDependency:layoutDependency,layoutId:\"XszODQ0Ow\",style:{\"--extracted-2gxw0f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WRot8rpyg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"The treats your\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(255, 255, 255))\"},children:\"dog deserves.\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[\"No artificial additives, preservatives, or mystery fillers\",/*#__PURE__*/_jsx(motion.br,{}),\"\u2014just wholesome, natural goodness in every bite.\"]})}),className:\"framer-nc2q52\",fonts:[\"CUSTOM;Neue Montreal Bold\"],layoutDependency:layoutDependency,layoutId:\"yKtZJBvOf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WRot8rpyg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"No artificial additives, preservatives, or mystery fillers\u2014just wholesome, natural goodness in every bite.\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bndk21\",layoutDependency:layoutDependency,layoutId:\"y5TVGg4wo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1024)-0-1024)/2+0+0)+250+0+970.8+0,...addPropertyOverrides({WHthNNWkM:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1024)-0-1024)/2+0+0)+250+0+1086+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lkg9my-container\",layoutDependency:layoutDependency,layoutId:\"Ym0jyrd66-container\",nodeId:\"Ym0jyrd66\",rendersWithMotion:true,scopeId:\"PuJv23A0G\",children:/*#__PURE__*/_jsx(ShopAllFlavorsButton,{height:\"100%\",id:\"Ym0jyrd66\",layoutId:\"Ym0jyrd66\",variant:\"ANLHiBsOK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a9tybn\",layoutDependency:layoutDependency,layoutId:\"YNm49dqHh\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8c2bc\",layoutDependency:layoutDependency,layoutId:\"OhsAHpHgl\"})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16ih6wl\",\"data-framer-name\":\"dog food stack\",layoutDependency:layoutDependency,layoutId:\"EMW4mcba5\",children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,background:{alt:\"\",fit:\"fill\"},className:\"framer-ln5yzt\",\"data-framer-appear-id\":\"ln5yzt\",\"data-framer-name\":\"dog food frame\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"NDKvX3Ai3\",optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1901,intrinsicWidth:2257,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1024)-0-1024)/2+0+0)+250+0+-44+818-873),pixelHeight:1807,pixelWidth:2142,sizes:\"1123px\",src:\"https://framerusercontent.com/images/TK7ehS1PcMmfutUH69LDjKtRgfA.png\",srcSet:\"https://framerusercontent.com/images/TK7ehS1PcMmfutUH69LDjKtRgfA.png?scale-down-to=512 512w,https://framerusercontent.com/images/TK7ehS1PcMmfutUH69LDjKtRgfA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TK7ehS1PcMmfutUH69LDjKtRgfA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TK7ehS1PcMmfutUH69LDjKtRgfA.png 2142w\"},className:\"framer-1e1h2b5\",\"data-framer-name\":\"Dog food\",layoutDependency:layoutDependency,layoutId:\"IU6aRbs3s\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,background:{alt:\"\",fit:\"fill\",intrinsicHeight:361,intrinsicWidth:881},className:\"framer-tpg44k\",\"data-framer-appear-id\":\"tpg44k\",\"data-framer-name\":\"Field\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"Ow3m8ORhA\",optimized:true,children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:671,intrinsicWidth:2146,pixelHeight:336,pixelWidth:1073,src:\"https://framerusercontent.com/images/t381n15jDEDUMIfE4DFAXZ9wEKI.png\",srcSet:\"https://framerusercontent.com/images/t381n15jDEDUMIfE4DFAXZ9wEKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/t381n15jDEDUMIfE4DFAXZ9wEKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t381n15jDEDUMIfE4DFAXZ9wEKI.png 1073w\"},className:\"framer-1olsbv0\",\"data-framer-name\":\"field image - old\",layoutDependency:layoutDependency,layoutId:\"cJKttdrIe\",...addPropertyOverrides({WRot8rpyg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:671,intrinsicWidth:2146,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||872)-0-872)/2+0+0)+607+0),pixelHeight:264,pixelWidth:791,sizes:\"791px\",src:\"https://framerusercontent.com/images/ZI2ZbPAvsXnliD635tSpkIHyxU.png\",srcSet:\"https://framerusercontent.com/images/ZI2ZbPAvsXnliD635tSpkIHyxU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZI2ZbPAvsXnliD635tSpkIHyxU.png 791w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2020,intrinsicWidth:5841,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1024)-0-1024)/2+0+0)+1024-361+-19),pixelHeight:2020,pixelWidth:5841,sizes:\"1122px\",src:\"https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png\",srcSet:\"https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Mk1cItpH0i3XgrC3jw0PRilrVA0.png 5841w\"},className:\"framer-7i1rxo\",\"data-framer-name\":\"field image - new\",layoutDependency:layoutDependency,layoutId:\"M6FxTX_dS\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yvw077\",layoutDependency:layoutDependency,layoutId:\"t7r8NfrGc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,...addPropertyOverrides({WRot8rpyg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||872)-0-872)/2+0+0)+100+575+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jube85-container\",layoutDependency:layoutDependency,layoutId:\"IiPfW9Or0-container\",nodeId:\"IiPfW9Or0\",rendersWithMotion:true,scopeId:\"PuJv23A0G\",children:/*#__PURE__*/_jsx(ShopAllFlavorsButton,{height:\"100%\",id:\"IiPfW9Or0\",layoutId:\"IiPfW9Or0\",variant:\"tskQEPVsh\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cjc56k\",layoutDependency:layoutDependency,layoutId:\"UdPBnlECA\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-893o8b\",layoutDependency:layoutDependency,layoutId:\"hfM7OMhnj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gkx7gt\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"ill2m2J8X\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jiohu4\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"opTt9mNjs\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tiw0sr\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"eKfStNaBm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13iq15v\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"oBuXnoUpc\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s6r5zh\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"WyhkWd_7m\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-104rqrx\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"hvGZW2Gx8\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nllkr0\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"T7Dz4Uyc4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3b57ef\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"r45V_5RLa\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wrv4bo\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"XtmIl20AJ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sjhfb5\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Q65ud9LEH\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o4nmds\",layoutDependency:layoutDependency,layoutId:\"OZDyochxL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDY1IE1lZGl1bQ==\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 65 Medium\", \"Neue Haas Grotesk Display Pro 65 Medium Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"lowercase\"},children:\"4.8\"})}),className:\"framer-osku9j\",\"data-framer-name\":\"4.8 1,000\u2019s customers\",fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 65 Medium\"],layoutDependency:layoutDependency,layoutId:\"RLwXVtUjB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDY1IE1lZGl1bQ==\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 65 Medium\", \"Neue Haas Grotesk Display Pro 65 Medium Placeholder\", sans-serif',\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"lowercase\"},children:\"1000's customers\"})}),className:\"framer-12jcc4k\",\"data-framer-name\":\"4.8 1,000\u2019s customers\",fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 65 Medium\"],layoutDependency:layoutDependency,layoutId:\"TiTjnjrBx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-35x086\",\"data-framer-name\":\"white paw\",layoutDependency:layoutDependency,layoutId:\"G1QhL223k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g2ynxa\",\"data-framer-name\":\"white paw\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"t2CK_mKgC\",svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.662 4.123c.456 1.633 1.794 2.566 3.17 2.211 1.44-.372 2.316-2.327 1.829-4.087C10.24.731 8.87-.275 7.65.067c-1.826.514-2.475 2.36-1.989 4.056Zm7.938-1.26c-1.568.503-2.198 2.81-1.513 3.92.713 1.157 2.188 1.572 3.556.872 1.502-.768 2.17-2.665 1.422-4.038-.66-1.21-2-1.503-3.465-.755Zm-.37 8.263c-1.174-3.24-6.25-4.445-8.65-2.967-2.497 1.537-3.337 4.624-1.742 7.438 1.748 3.089 5.931 4.392 8.9 2.772 2.62-1.427 3.199-4.232 1.494-7.244l-.002.001ZM.176 6.238C.32 7.413 1.599 8.362 3.038 8.022c1.242-.292 1.99-1.89 1.604-3.289-.395-1.43-1.501-2.08-2.84-1.766C.526 3.265-.404 4.94.175 6.237Zm16.786 2.55c-1.58.413-2.472 1.678-2.109 2.985.379 1.363 1.455 1.946 2.899 1.572 1.592-.414 2.5-1.766 2.186-3.129-.24-1.043-1.48-2.026-2.977-1.426v-.002Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b5masx\",\"data-framer-name\":\"cloud frame\",layoutDependency:layoutDependency,layoutId:\"H9Tu8KUjt\",transformTemplate:transformTemplate1,...addPropertyOverrides({WRot8rpyg:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,className:\"framer-1x2bw0k\",\"data-framer-appear-id\":\"1x2bw0k\",\"data-framer-name\":\"cloud 5\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"fWCx6K0bW\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v5ykc6\",\"data-framer-name\":\"Cloud5\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"es0aVZo8x\",svg:'<svg width=\"40\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.872 15.636c0 2.175-.9 4.265-2.522 5.802-1.575 1.499-3.733 2.695-5.964 2.695h-22.9c-2.231 0-4.39-1.196-5.964-2.695C.9 19.9 0 17.81 0 15.636c0-2.176.9-4.266 2.522-5.803A8.448 8.448 0 0 1 4.9 8.241C6.383 3.498 10.988 0 16.459 0c5.175 0 9.573 3.127 11.29 7.478h3.637c2.24 0 4.383.852 5.964 2.356 1.622 1.536 2.522 3.626 2.522 5.802Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation10,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation11,className:\"framer-184o2s8\",\"data-framer-appear-id\":\"184o2s8\",\"data-framer-name\":\"cloud 4\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"spStyqIg6\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lfjlzi\",\"data-framer-name\":\"Cloud 4\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:68,layoutDependency:layoutDependency,layoutId:\"c1QvHOxdj\",svg:'<svg width=\"68\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.698 26.547c0 3.694-1.529 7.243-4.282 9.852-2.674 2.545-6.338 4.576-10.126 4.576H14.408c-3.788 0-7.452-2.031-10.126-4.576C1.529 33.79 0 30.24 0 26.547c0-3.693 1.529-7.243 4.282-9.851a14.342 14.342 0 0 1 4.04-2.704C10.837 5.938 18.655 0 27.944 0c8.787 0 16.254 5.31 19.17 12.697h6.175c3.803 0 7.441 1.446 10.126 4 2.753 2.608 4.282 6.157 4.282 9.85Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation13,className:\"framer-71qkhl\",\"data-framer-appear-id\":\"71qkhl\",\"data-framer-name\":\"cloud 1\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"o1hPwf79z\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4pjuh\",\"data-framer-name\":\"Cloud1\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:77,layoutDependency:layoutDependency,layoutId:\"zcUzS5hDN\",svg:'<svg width=\"77\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 29.516c0 4.107 1.74 8.053 4.87 10.954 3.042 2.83 7.21 5.088 11.518 5.088h44.224c4.309 0 8.476-2.258 11.518-5.088 3.13-2.9 4.87-6.847 4.87-10.954 0-4.106-1.739-8.052-4.87-10.953a16.341 16.341 0 0 0-4.595-3.006C64.674 6.603 55.78 0 45.215 0 35.22 0 26.728 5.903 23.41 14.117h-7.023c-4.325 0-8.464 1.607-11.518 4.447C1.74 21.464 0 25.41 0 29.517Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation14,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition7,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation15,className:\"framer-pgrpyy\",\"data-framer-appear-id\":\"pgrpyy\",\"data-framer-name\":\"cloud 2\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"L_FdeOeiA\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oelp5p\",\"data-framer-name\":\"Cloud2\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"MyzXlSGGE\",svg:'<svg width=\"40\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.872 15.636c0 2.175-.9 4.265-2.522 5.802-1.575 1.499-3.733 2.695-5.964 2.695h-22.9c-2.231 0-4.39-1.196-5.964-2.695C.9 19.9 0 17.81 0 15.636c0-2.176.9-4.266 2.522-5.803A8.448 8.448 0 0 1 4.9 8.241C6.383 3.498 10.988 0 16.459 0c5.175 0 9.573 3.127 11.29 7.478h3.637c2.24 0 4.383.852 5.964 2.356 1.622 1.536 2.522 3.627 2.522 5.802Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation16,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition12,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation17,className:\"framer-1hbncf1\",\"data-framer-appear-id\":\"1hbncf1\",\"data-framer-name\":\"cloud 3\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"GYe7PTnXG\",optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13zesu4\",\"data-framer-name\":\"Cloud 3\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:68,layoutDependency:layoutDependency,layoutId:\"yJ7j0IkOt\",svg:'<svg width=\"68\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.698 26.547c0 3.694-1.529 7.243-4.282 9.852-2.674 2.545-6.338 4.576-10.126 4.576H14.408c-3.788 0-7.452-2.031-10.126-4.576C1.529 33.79 0 30.24 0 26.547c0-3.693 1.529-7.243 4.282-9.851a14.342 14.342 0 0 1 4.04-2.704C10.837 5.938 18.655 0 27.944 0c8.787 0 16.254 5.31 19.17 12.697h6.175c3.803 0 7.441 1.446 10.126 4 2.753 2.608 4.282 6.157 4.282 9.85Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1024)*.8818359375000002-238.5)),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2115)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"},className:\"framer-1bev34k\",\"data-framer-name\":\"pattern\",layoutDependency:layoutDependency,layoutId:\"FIz85IPFg\",transformTemplate:transformTemplate1,...addPropertyOverrides({WRot8rpyg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||872)*.9472477064220186-68.5)),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.4189)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:937,intrinsicWidth:1512.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1024)*.5000000000000002-(componentViewport?.height||1024)*1/2)),pixelHeight:960,pixelWidth:1513,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png\",srcSet:\"https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png 1513w\"},className:\"framer-po0koa\",\"data-framer-name\":\"background\",layoutDependency:layoutDependency,layoutId:\"EwypckQqQ\",...addPropertyOverrides({WRot8rpyg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:937,intrinsicWidth:1512.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||872)*.5000000000000002-(componentViewport?.height||872)*1/2)),pixelHeight:960,pixelWidth:1513,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png\",srcSet:\"https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cvKNzgdVlv0XARw6hazDTIDFSuA.png 1513w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation18,background:{alt:\"\",fit:\"fill\",intrinsicHeight:737,intrinsicWidth:746,pixelHeight:2744,pixelWidth:2779,src:\"https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png 2779w\"},className:\"framer-1dm422g\",\"data-framer-appear-id\":\"1dm422g\",\"data-framer-name\":\"Dog food mobile\",initial:animation19,layoutDependency:layoutDependency,layoutId:\"ybIYFqjEV\",optimized:true,...addPropertyOverrides({WRot8rpyg:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:737,intrinsicWidth:746,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||872)*.6444954128440369-183)),pixelHeight:2744,pixelWidth:2779,sizes:\"370px\",src:\"https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=512 512w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3IsbNw5odY4NHGWvNHWWQSGuGA.png 2779w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eus9d.framer-1hcvhbz, .framer-eus9d .framer-1hcvhbz { display: block; }\",\".framer-eus9d.framer-bm4ezi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1024px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-eus9d .framer-1huf75t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 1024px; justify-content: space-between; max-width: 1513px; overflow: visible; padding: 250px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-eus9d .framer-1edqizz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-width: 499px; overflow: visible; padding: 0px 0px 0px 149px; position: relative; width: 1px; z-index: 5; }\",\".framer-eus9d .framer-742a3o, .framer-eus9d .framer-osku9j, .framer-eus9d .framer-12jcc4k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eus9d .framer-52usyf, .framer-eus9d .framer-nc2q52 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eus9d .framer-1bndk21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eus9d .framer-lkg9my-container, .framer-eus9d .framer-jube85-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eus9d .framer-1a9tybn, .framer-eus9d .framer-1cjc56k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eus9d .framer-i8c2bc { 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: 20px; min-width: 140px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eus9d .framer-16ih6wl { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-eus9d .framer-ln5yzt { flex: none; height: 818px; overflow: visible; position: relative; width: 826px; }\",\".framer-eus9d .framer-1e1h2b5 { aspect-ratio: 1.1871035940803383 / 1; bottom: -73px; flex: none; height: var(--framer-aspect-ratio-supported, 946px); left: -43px; max-width: 1123px; overflow: visible; position: absolute; right: -254px; z-index: 1; }\",\".framer-eus9d .framer-tpg44k { bottom: 0px; flex: none; height: 361px; left: 0px; overflow: visible; position: absolute; width: 881px; z-index: 0; }\",\".framer-eus9d .framer-1olsbv0 { flex: none; height: 338px; left: calc(39.16004540295121% - 1081px / 2); overflow: visible; pointer-events: none; position: absolute; top: calc(44.321329639889214% - 338px / 2); width: 1081px; }\",\".framer-eus9d .framer-7i1rxo { flex: none; height: 388px; left: calc(43.13280363223612% - 1122px / 2); overflow: visible; position: absolute; top: calc(48.47645429362883% - 388px / 2); width: 1122px; }\",\".framer-eus9d .framer-1yvw077 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eus9d .framer-893o8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-eus9d .framer-1gkx7gt, .framer-eus9d .framer-1tiw0sr, .framer-eus9d .framer-s6r5zh, .framer-eus9d .framer-nllkr0, .framer-eus9d .framer-wrv4bo { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-eus9d .framer-1jiohu4, .framer-eus9d .framer-13iq15v, .framer-eus9d .framer-104rqrx, .framer-eus9d .framer-3b57ef, .framer-eus9d .framer-1sjhfb5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eus9d .framer-1o4nmds { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-eus9d .framer-35x086 { flex: none; height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-eus9d .framer-g2ynxa { flex: none; height: 14px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eus9d .framer-b5masx { aspect-ratio: 1.4775390625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1024px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 1513px; z-index: 1; }\",\".framer-eus9d .framer-1x2bw0k { flex: none; height: 25px; overflow: hidden; position: absolute; right: 70px; top: 164px; width: 40px; }\",\".framer-eus9d .framer-1v5ykc6, .framer-eus9d .framer-oelp5p { aspect-ratio: 1.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eus9d .framer-184o2s8 { flex: none; height: 41px; left: calc(47.52148050231331% - 68px / 2); overflow: hidden; position: absolute; top: calc(69.14062500000003% - 41px / 2); width: 68px; }\",\".framer-eus9d .framer-1lfjlzi, .framer-eus9d .framer-13zesu4 { aspect-ratio: 1.6585365853658536 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eus9d .framer-71qkhl { flex: none; height: 46px; left: calc(43.0270984798414% - 77px / 2); overflow: hidden; position: absolute; top: calc(15.332031250000021% - 46px / 2); width: 77px; z-index: 1; }\",\".framer-eus9d .framer-1y4pjuh { aspect-ratio: 1.673913043478261 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-eus9d .framer-pgrpyy { flex: none; height: 25px; left: calc(5.221414408460035% - 40px / 2); overflow: visible; position: absolute; top: calc(19.14062500000002% - 25px / 2); width: 40px; z-index: 1; }\",\".framer-eus9d .framer-1hbncf1 { flex: none; height: 41px; left: calc(1.2557832121612913% - 68px / 2); overflow: visible; position: absolute; top: calc(58.69140625000002% - 41px / 2); width: 68px; z-index: 1; }\",\".framer-eus9d .framer-1bev34k { aspect-ratio: 3.842767295597484 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 477px); left: 50%; overflow: visible; pointer-events: none; position: absolute; top: 88%; width: 121%; z-index: 3; }\",\".framer-eus9d .framer-po0koa { flex: none; height: 100%; left: calc(49.9669530733642% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-eus9d .framer-1dm422g { flex: none; height: 366px; left: calc(50.00000000000002% - 370px / 2); overflow: visible; position: absolute; top: calc(64.4495412844037% - 366px / 2); width: 370px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eus9d.framer-bm4ezi, .framer-eus9d .framer-1edqizz, .framer-eus9d .framer-1bndk21, .framer-eus9d .framer-1a9tybn, .framer-eus9d .framer-i8c2bc, .framer-eus9d .framer-16ih6wl, .framer-eus9d .framer-1yvw077, .framer-eus9d .framer-1cjc56k, .framer-eus9d .framer-893o8b, .framer-eus9d .framer-1o4nmds { gap: 0px; } .framer-eus9d.framer-bm4ezi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eus9d.framer-bm4ezi > :first-child, .framer-eus9d .framer-1edqizz > :first-child, .framer-eus9d .framer-1a9tybn > :first-child, .framer-eus9d .framer-1yvw077 > :first-child, .framer-eus9d .framer-1cjc56k > :first-child { margin-top: 0px; } .framer-eus9d.framer-bm4ezi > :last-child, .framer-eus9d .framer-1edqizz > :last-child, .framer-eus9d .framer-1a9tybn > :last-child, .framer-eus9d .framer-1yvw077 > :last-child, .framer-eus9d .framer-1cjc56k > :last-child { margin-bottom: 0px; } .framer-eus9d .framer-1edqizz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-eus9d .framer-1bndk21 > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-eus9d .framer-1bndk21 > :first-child, .framer-eus9d .framer-i8c2bc > :first-child, .framer-eus9d .framer-16ih6wl > :first-child, .framer-eus9d .framer-893o8b > :first-child, .framer-eus9d .framer-1o4nmds > :first-child { margin-left: 0px; } .framer-eus9d .framer-1bndk21 > :last-child, .framer-eus9d .framer-i8c2bc > :last-child, .framer-eus9d .framer-16ih6wl > :last-child, .framer-eus9d .framer-893o8b > :last-child, .framer-eus9d .framer-1o4nmds > :last-child { margin-right: 0px; } .framer-eus9d .framer-1a9tybn > *, .framer-eus9d .framer-1cjc56k > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-eus9d .framer-i8c2bc > *, .framer-eus9d .framer-16ih6wl > *, .framer-eus9d .framer-893o8b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eus9d .framer-1yvw077 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-eus9d .framer-1o4nmds > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-eus9d.framer-v-1pchybu.framer-bm4ezi { width: 810px; }\",\".framer-eus9d.framer-v-1pchybu .framer-1huf75t, .framer-eus9d.framer-v-tjvml1 .framer-1huf75t { padding: 250px 0px 0px 38px; }\",\".framer-eus9d.framer-v-1pchybu .framer-1edqizz { min-width: 408px; padding: 0px; }\",\".framer-eus9d.framer-v-1pchybu .framer-742a3o, .framer-eus9d.framer-v-jpua79 .framer-742a3o { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eus9d.framer-v-1pchybu .framer-i8c2bc { min-width: 171px; }\",\".framer-eus9d.framer-v-1pchybu .framer-1bev34k { height: var(--framer-aspect-ratio-supported, 256px); }\",\".framer-eus9d.framer-v-jpua79.framer-bm4ezi { height: 872px; width: 370px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1huf75t { flex-direction: column; height: 872px; order: 1; padding: 100px 0px 100px 0px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1edqizz { align-content: center; align-items: center; flex: none; gap: 16px; min-width: unset; padding: 0px 16px 0px 16px; width: 100%; }\",\".framer-eus9d.framer-v-jpua79 .framer-tpg44k { bottom: unset; height: 264px; left: calc(50.00000000000002% - 791px / 2); top: calc(84.74770642201838% - 264px / 2); width: 791px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1olsbv0 { height: 264px; left: calc(50.06321112515805% - 791px / 2); top: calc(50.00000000000002% - 264px / 2); width: 791px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1yvw077 { flex: none; width: 100%; }\",\".framer-eus9d.framer-v-jpua79 .framer-1cjc56k { min-height: 43px; min-width: 171px; }\",\".framer-eus9d.framer-v-jpua79 .framer-b5masx { aspect-ratio: unset; height: 869px; left: calc(50.00000000000002% - 371px / 2); order: 3; top: calc(49.77064220183489% - 869px / 2); width: 371px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1x2bw0k { right: -13px; top: 46px; }\",\".framer-eus9d.framer-v-jpua79 .framer-pgrpyy { left: -15px; top: 75px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1hbncf1 { height: 25px; left: calc(38.54447439353102% - 41px / 2); top: calc(2.646720368239378% - 25px / 2); width: 41px; }\",\".framer-eus9d.framer-v-jpua79 .framer-13zesu4 { aspect-ratio: unset; bottom: 0px; height: unset; right: -1px; }\",\".framer-eus9d.framer-v-jpua79 .framer-1bev34k { height: var(--framer-aspect-ratio-supported, 137px); left: 50%; order: 2; top: 95%; width: 142%; }\",\".framer-eus9d.framer-v-jpua79 .framer-po0koa { order: 4; }\",\".framer-eus9d.framer-v-jpua79 .framer-1dm422g { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eus9d.framer-v-jpua79 .framer-1huf75t, .framer-eus9d.framer-v-jpua79 .framer-1edqizz { gap: 0px; } .framer-eus9d.framer-v-jpua79 .framer-1huf75t > *, .framer-eus9d.framer-v-jpua79 .framer-1huf75t > :first-child, .framer-eus9d.framer-v-jpua79 .framer-1huf75t > :last-child { margin: 0px; } .framer-eus9d.framer-v-jpua79 .framer-1edqizz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-eus9d.framer-v-jpua79 .framer-1edqizz > :first-child { margin-top: 0px; } .framer-eus9d.framer-v-jpua79 .framer-1edqizz > :last-child { margin-bottom: 0px; } }\",\".framer-eus9d.framer-v-tjvml1.framer-bm4ezi { width: 1200px; }\",\".framer-eus9d.framer-v-tjvml1 .framer-1edqizz { padding: 0px; z-index: 1; }\",\".framer-eus9d.framer-v-tjvml1 .framer-1bev34k { height: var(--framer-aspect-ratio-supported, 378px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1024\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WHthNNWkM\":{\"layout\":[\"fixed\",\"fixed\"]},\"WRot8rpyg\":{\"layout\":[\"fixed\",\"fixed\"]},\"OTMn4x6mx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPuJv23A0G=withCSS(Component,css,\"framer-eus9d\");export default FramerPuJv23A0G;FramerPuJv23A0G.displayName=\"hero section\";FramerPuJv23A0G.defaultProps={height:1024,width:1512};addPropertyControls(FramerPuJv23A0G,{variant:{options:[\"upuUDNARb\",\"WHthNNWkM\",\"WRot8rpyg\",\"OTMn4x6mx\"],optionTitles:[\"Variant 1\",\"tablet\",\"mobile\",\"laptop\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPuJv23A0G,[{explicitInter:true,fonts:[{family:\"Heavitas Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/S5XTCp6oj0FDLQKP1LbqChyg.woff2\"},{family:\"Evans Extrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/0LLglwHdS0aEKvjiSgYbD6D08.woff2\"},{family:\"Neue Montreal Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/RPkJxzk3b5OHRdh8fGRoGBfE20Y.woff2\"},{family:\"Neue Haas Grotesk Display Pro 65 Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/GOW5fAs7vHkKuMlMQBmQpkLcM.woff2\"}]},...ShopAllFlavorsButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPuJv23A0G\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1024\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WHthNNWkM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WRot8rpyg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OTMn4x6mx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1512\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PuJv23A0G.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const ImageWithFX=withFX(Image);const cycleOrder=[\"OeOb3QWSL\",\"nWEbxk1PU\",\"gKsXfESCf\",\"zgPxKfeFM\"];const serializationHash=\"framer-G7Dyo\";const variantClassNames={gKsXfESCf:\"framer-v-1xqt8bf\",nWEbxk1PU:\"framer-v-1l7echa\",OeOb3QWSL:\"framer-v-22pqoo\",zgPxKfeFM:\"framer-v-emfkai\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:-230,y:0};const transition2={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,transition:transition2,x:-230,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:230,y:0};const transition4={delay:.2,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,transition:transition4,x:230,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={Desktop:\"OeOb3QWSL\",laptop:\"nWEbxk1PU\",mobile:\"zgPxKfeFM\",tablet:\"gKsXfESCf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OeOb3QWSL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OeOb3QWSL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"zgPxKfeFM\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"zgPxKfeFM\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"gKsXfESCf\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1327,pixelWidth:2130,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZwVee8BECBX4PfnIUlRRxc2Po.png\",srcSet:\"https://framerusercontent.com/images/ZwVee8BECBX4PfnIUlRRxc2Po.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZwVee8BECBX4PfnIUlRRxc2Po.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZwVee8BECBX4PfnIUlRRxc2Po.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZwVee8BECBX4PfnIUlRRxc2Po.png 2130w\"},className:cx(scopingClassNames,\"framer-22pqoo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"OeOb3QWSL\",ref:refBinding,style:{...style},...addPropertyOverrides({gKsXfESCf:{\"data-framer-name\":\"tablet\"},nWEbxk1PU:{\"data-framer-name\":\"laptop\"},zgPxKfeFM:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwez9l\",\"data-framer-name\":\"top pattern\",layoutDependency:layoutDependency,layoutId:\"dkLqH2_mj\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7s72cj\",\"data-framer-name\":\"Pattern adjusted\",fill:\"black\",intrinsicHeight:300,intrinsicWidth:1928,layoutDependency:layoutDependency,layoutId:\"c3COCKnpQ\",svg:'<svg width=\"1928\" height=\"300\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#FEFAF5\"><path d=\"M1217.44 114.612 952.3 178.607a100.006 100.006 0 0 1-40.276 1.368l-244.505-41.702a99.994 99.994 0 0 0-47.583 3.428l-144.964 46.88a99.999 99.999 0 0 1-48.89 3.196L224.534 154.64a99.997 99.997 0 0 0-29.376-1.02l-226.245 25.626v-280.9H1928v273.383l-187.29-34.073a100.046 100.046 0 0 0-41.9 1.307l-161.66 39.958a99.984 99.984 0 0 1-51.56-.954l-217.12-62.271a99.994 99.994 0 0 0-51.03-1.084Z\"/><path d=\"m635.887 187.856-71.164 28.57c-6.481 2.602-8.367 10.876-3.654 16.029l33.837 36.995a10 10 0 0 0 11.703 2.268l85.761-41.126c7.484-3.588 7.591-14.205.181-17.944l-48.433-24.439a10.002 10.002 0 0 0-8.231-.353Zm992.673 94 93.73-11.39c7.23-.879 11.13-8.941 7.33-15.15l-33.05-53.957a10.004 10.004 0 0 0-11.13-4.432l-73.81 19.887c-5.41 1.455-8.56 7.056-7.01 12.43l13.13 45.46a9.996 9.996 0 0 0 10.81 7.152ZM1231.1 144.89l-37.42 15.132c-6.45 2.608-8.33 10.842-3.65 15.993l17.26 19.018a10.013 10.013 0 0 0 12.51 1.881l28.92-17.138c4.55-2.699 6.22-8.481 3.79-13.187l-8.77-17.012a10.004 10.004 0 0 0-12.64-4.687ZM19.627 232.997l-37.42 15.132c-6.45 2.608-8.331 10.842-3.654 15.993L-4.18 283.14a10.001 10.001 0 0 0 12.502 1.881l28.924-17.138a10 10 0 0 0 3.79-13.187l-8.774-17.012a9.999 9.999 0 0 0-12.636-4.687Zm151.684 9.47 36.352-17.541c6.266-3.024 7.607-11.363 2.603-16.198l-18.472-17.851a10 10 0 0 0-12.597-1.061l-27.745 18.989a10 10 0 0 0-2.921 13.406l9.864 16.403a10 10 0 0 0 12.916 3.853Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h1928v300H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmfxys\",\"data-framer-name\":\"bottom pattern\",layoutDependency:layoutDependency,layoutId:\"qiuUMPDJZ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1881)-526+0),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2116)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"},className:\"framer-14p3exf\",\"data-framer-name\":\"pattern\",layoutDependency:layoutDependency,layoutId:\"uHlene4PC\",transformTemplate:transformTemplate1,...addPropertyOverrides({gKsXfESCf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1607)-526+0),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2116)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"}},nWEbxk1PU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||1607)-526+0),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2116)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"}},zgPxKfeFM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||840)-526+0),pixelHeight:478,pixelWidth:1834,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.2116)`,src:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg\",srcSet:\"https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=512 512w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYheYt4UqFlrFfMNn0KGZPbhBE.svg 1834w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197.7611641943342,intrinsicWidth:589.5522241205757,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1881)*.5003389830508477-397)),pixelHeight:3475,pixelWidth:1711,sizes:`calc(${componentViewport?.width||\"100vw\"} / 3.867)`,src:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png 1711w\"},className:\"framer-1at8913\",\"data-framer-name\":\"Leftdog\",layoutDependency:layoutDependency,layoutId:\"pFWO3XwKf\",transformTemplate:transformTemplate2,...addPropertyOverrides({gKsXfESCf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197.7611641943342,intrinsicWidth:589.5522241205757,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1607)*.5003389830508477-397)),pixelHeight:3475,pixelWidth:1711,sizes:`calc(${componentViewport?.width||\"100vw\"} / 3.867)`,src:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png 1711w\"}},nWEbxk1PU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197.7611641943342,intrinsicWidth:589.5522241205757,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1607)*.5003389830508477-397)),pixelHeight:3475,pixelWidth:1711,sizes:`calc(${componentViewport?.width||\"100vw\"} / 3.867)`,src:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png 1711w\"}},zgPxKfeFM:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1197.7611641943342,intrinsicWidth:589.5522241205757,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||840)*.5003389830508477-397)),pixelHeight:3475,pixelWidth:1711,sizes:`calc(${componentViewport?.width||\"100vw\"} / 3.867)`,src:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/wUQODtSwPJKssbc6kvPd7kP0mjo.png 1711w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y1ypdp\",layoutDependency:layoutDependency,layoutId:\"VDnrNiHMI\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:138.80596669167986,intrinsicWidth:194.77611455122818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1881)-0-1460)/2+0+0)+0+0),pixelHeight:186,pixelWidth:261,src:\"https://framerusercontent.com/images/bjBna0mdp782n4N6JFnqJndF6A.png\"},className:\"framer-95wdps\",\"data-framer-name\":\"Dog treat\",layoutDependency:layoutDependency,layoutId:\"u0KRk7LKN\",...addPropertyOverrides({gKsXfESCf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:138.80596669167986,intrinsicWidth:194.77611455122818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1607)-0-1172)/2+0+0)+0+0),pixelHeight:186,pixelWidth:261,src:\"https://framerusercontent.com/images/bjBna0mdp782n4N6JFnqJndF6A.png\"}},nWEbxk1PU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:138.80596669167986,intrinsicWidth:194.77611455122818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1607)-0-1172)/2+0+0)+0+0),pixelHeight:186,pixelWidth:261,src:\"https://framerusercontent.com/images/bjBna0mdp782n4N6JFnqJndF6A.png\"}},zgPxKfeFM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:138.80596669167986,intrinsicWidth:194.77611455122818,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||840)-0-607)/2+0+0)+0+234),pixelHeight:186,pixelWidth:261,src:\"https://framerusercontent.com/images/bjBna0mdp782n4N6JFnqJndF6A.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(253, 227, 209))\"},children:\"A look at how we do\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(253, 227, 209))\"},children:\"against other brands\"})]}),className:\"framer-17q67so\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"lPbgnEhZz\",style:{\"--extracted-2gxw0f\":\"rgb(253, 227, 209)\",\"--extracted-r6o4lv\":\"rgb(253, 227, 209)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gKsXfESCf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(253, 227, 209))\"},children:[\"A look at how\",/*#__PURE__*/_jsx(motion.br,{}),\"we do against other brands\"]})})},nWEbxk1PU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(253, 227, 209))\"},children:[\"A look at how\",/*#__PURE__*/_jsx(motion.br,{}),\"we do against other brands\"]})})},zgPxKfeFM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(253, 227, 209))\"},children:[\"A look at how\",/*#__PURE__*/_jsx(motion.br,{}),\"we do against other brands\"]})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mlmqk9\",\"data-framer-name\":\"comparables tablet\",layoutDependency:layoutDependency,layoutId:\"uyYYh1ewG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4yzoh\",\"data-framer-name\":\"Rectangle 24544\",layoutDependency:layoutDependency,layoutId:\"atCbRiMRO\",style:{backgroundColor:\"rgb(219, 161, 110)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jcb0iy\",\"data-framer-name\":\"Monogram\",fill:\"black\",intrinsicHeight:67,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"L7HPyGlpo\",style:{rotate:15},svg:'<svg width=\"65\" height=\"67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.426 14.965c.65-.126 1.33.129 1.671.696l2.506 4.153a9.508 9.508 0 0 1 1.368 4.912v18.88a9.508 9.508 0 0 1-3.032 6.962L50.76 60.97a9.509 9.509 0 0 1-5.02 2.434l-17.096 2.651a9.508 9.508 0 0 1-7.917-2.419L4.025 48.173a9.508 9.508 0 0 1-2.985-8.07l2.54-21.946a9.508 9.508 0 0 1 4.53-7.046l16.55-9.993c.072-.044.145-.086.218-.128.603-.342 1.34-.1 1.783.433a11.186 11.186 0 0 0 3.123 2.61 10.802 10.802 0 0 0 4.496 1.371 1.799 1.799 0 0 1 1.558 1.221c.724 2.173 2.193 4.074 4.28 5.25 2.547 1.435 5.466 1.482 7.966.39a1.779 1.779 0 0 1 1.84.246c.53.44 1.106.837 1.723 1.185a11.359 11.359 0 0 0 7.778 1.268ZM31.814 49.378c.37-.381.74-.761 1.126-1.123.114-.106.338-.129.509-.123 1.122.037 2.227-.065 3.31-.38 2.115-.617 3.723-1.87 4.638-3.941.402-.912.577-1.89.606-2.898.037-1.276-.063-2.53-.575-3.706-.99-2.279-2.789-3.544-5.118-4.06-.475-.106-.967-.134-1.459-.161-.225-.013-.45-.025-.673-.046-.24-.021-.38.052-.365.334.025.508.055 1.015.085 1.523.074 1.263.148 2.525.154 3.788.003.557.033 1.113.062 1.67.073 1.364.145 2.73-.174 4.1-.537 2.305-1.78 4.047-3.735 5.27-1.587.993-3.345 1.428-5.195 1.5-1.196.049-2.388.011-3.54-.365-1.39-.453-2.692-1.07-3.568-2.33-.92-1.321-1.218-2.742-.49-4.264.408-.85 1.106-1.218 2.027-1.3 1.83-.16 2.842.965 3.605 2.389.294.549.495 1.15.696 1.753.096.288.192.576.299.86.245.647.666 1.066 1.387 1.113.633.042 1.117-.241 1.314-.812.226-.652.431-1.355.434-2.036.03-7.185.04-14.372-.003-21.557-.006-1.103-.248-2.216-.484-3.302v-.004c-.212-.972-.764-1.764-1.717-2.348.074-.01.135-.02.187-.028h.002c.094-.016.162-.027.23-.027.415-.002.83-.001 1.246 0 .52 0 1.04 0 1.559-.003.887-.006 1.774-.018 2.662-.029 2.007-.026 4.014-.052 6.02-.015 1.534.028 3.08.18 4.59.455 1.766.323 3.348 1.105 4.463 2.632.622.852.921 1.836.931 2.884.008.804.008 1.637-.177 2.41-.508 2.133-2.1 3.242-3.946 4.062a7.5 7.5 0 0 1-.41.162l-.252.095c.248.098.489.188.723.275.487.18.945.35 1.382.566 2.104 1.037 3.636 2.644 4.388 4.922.56 1.698.59 3.466.271 5.214-.594 3.243-2.67 5.204-5.555 6.379-1.352.55-2.773.896-4.234.928-1.805.04-3.61.052-5.415.064-.734.005-1.469.01-2.203.017l-.006-.023-.004-.017-.008-.032-.005-.02-.002.002.407-.417Zm8.068-23.452v-.456c-.03-1.967-.911-3.38-2.648-4.239-.932-.46-1.923-.568-2.942-.583-.373-.006-.497.189-.55.48-.057.32-.108.648-.105.972.011 1.54.027 3.078.044 4.617l.039 4.04c.002.311.138.425.422.4l.14-.013.102-.009c.253-.021.507-.043.758-.075 1.253-.16 2.425-.531 3.364-1.443 1.056-1.027 1.457-2.31 1.377-3.69ZM19.658 39.604c0 1.122-.755 1.946-1.787 1.952-1.082.007-2.077-1.095-2.08-2.303-.002-1.041.761-1.917 1.681-1.905 1.38.019 2.195 1.09 2.186 2.256Zm-3.388 2.909c.05-1.01-1.065-2.377-2.16-2.169-1.11.002-1.815.68-1.817 1.749-.004 1.211 1.003 2.283 2.143 2.28 1.038-.002 1.781-.81 1.834-1.86Zm7.336-2.278c.11.763-.502 1.573-1.429 1.6-.8.023-1.52-.857-1.524-1.8-.002-.965.557-1.558 1.42-1.584.82-.026 1.664.872 1.533 1.784Zm-8.09 6.75c-.001-.914-.71-1.583-1.676-1.58v.002c-.947-.132-1.498.722-1.469 1.443a1.7 1.7 0 0 0 1.743 1.658c.882-.005 1.402-.57 1.401-1.523Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rv8vm9\",\"data-framer-name\":\"Line 174\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:220,layoutDependency:layoutDependency,layoutId:\"fWUI_8Ee0\",svg:'<svg width=\"220\" height=\"4\" viewBox=\"-1 -1 220 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"218\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ppadqm\",\"data-framer-name\":\"Line 176\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:221,layoutDependency:layoutDependency,layoutId:\"RXq4K88IC\",svg:'<svg width=\"221\" height=\"4\" viewBox=\"-1 -1 221 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.600586\" y1=\"1\" x2=\"218.601\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tsmgyr\",\"data-framer-name\":\"Line 178\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:199,layoutDependency:layoutDependency,layoutId:\"ptD8tomHu\",svg:'<svg width=\"199\" height=\"4\" viewBox=\"-1 -1 199 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"197\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13hgtik\",\"data-framer-name\":\"Line 175\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:220,layoutDependency:layoutDependency,layoutId:\"vWM3R_uHb\",svg:'<svg width=\"220\" height=\"4\" viewBox=\"-1 -1 220 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"218\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gtf39v\",\"data-framer-name\":\"Line 180\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:220,layoutDependency:layoutDependency,layoutId:\"mPsTBMWm1\",svg:'<svg width=\"220\" height=\"4\" viewBox=\"-1 -1 220 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"218\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uexcwp\",\"data-framer-name\":\"Line 183\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:220,layoutDependency:layoutDependency,layoutId:\"VwoZlCHkz\",svg:'<svg width=\"220\" height=\"4\" viewBox=\"-1 -1 220 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"218\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19zff9e\",\"data-framer-name\":\"Line 177\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:221,layoutDependency:layoutDependency,layoutId:\"kEkYNWFak\",svg:'<svg width=\"221\" height=\"4\" viewBox=\"-1 -1 221 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.600586\" y1=\"1\" x2=\"218.601\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2utnkh\",\"data-framer-name\":\"Line 181\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:221,layoutDependency:layoutDependency,layoutId:\"Im7WwqJMb\",svg:'<svg width=\"221\" height=\"4\" viewBox=\"-1 -1 221 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.600586\" y1=\"1\" x2=\"218.601\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k6ou3q\",\"data-framer-name\":\"Line 184\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:220,layoutDependency:layoutDependency,layoutId:\"osixyOWZ4\",svg:'<svg width=\"220\" height=\"4\" viewBox=\"-1 -1 220 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"218\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tpvmgg\",\"data-framer-name\":\"Line 179\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:199,layoutDependency:layoutDependency,layoutId:\"tWlGzaNFs\",svg:'<svg width=\"199\" height=\"4\" viewBox=\"-1 -1 199 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"197\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p5kxgf\",\"data-framer-name\":\"Line 182\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:200,layoutDependency:layoutDependency,layoutId:\"YqI6VXI6l\",svg:'<svg width=\"200\" height=\"4\" viewBox=\"-1 -1 200 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.600586\" y1=\"1\" x2=\"197.601\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nqocbl\",\"data-framer-name\":\"Line 185\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:199,layoutDependency:layoutDependency,layoutId:\"LzntBIMyZ\",svg:'<svg width=\"199\" height=\"4\" viewBox=\"-1 -1 199 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1\" x2=\"197\" y2=\"1\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"80%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"21px\"},children:\"BIG NAME\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"21px\"},children:/*#__PURE__*/_jsx(motion.br,{})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"21px\"},children:\"BRANDS\"})]})}),className:\"framer-1unuaen\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"sBQw6XUHN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"NONE\"})}),className:\"framer-vzwbl2\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"X2lALrLnr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Real Meat\"})}),className:\"framer-1dl7n34\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"iRHU1Kc6I\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Small Batch\"})}),className:\"framer-bn4g0d\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"T6bb5rA2f\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"FILLERS\"})}),className:\"framer-1lnojyq\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"NSKElrhRi\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"MEAT QUALITY\"})}),className:\"framer-118kk2z\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"bGekA2T9r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"PRODUCTION\"})}),className:\"framer-vqmr7j\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"RUYHhErq2\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Wheat  & Soy\"})}),className:\"framer-qa2cqj\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"JfHas9psG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"By-Products\"})}),className:\"framer-18cqum8\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"TVf_AAVhD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Mass-Produced\"})}),className:\"framer-15c0bi2\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"V_rtYwCKb\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wlkdq0\",\"data-framer-name\":\"Group 427319301\",layoutDependency:layoutDependency,layoutId:\"bC4GFom84\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15qpca8\",\"data-framer-name\":\"Group 427319300\",layoutDependency:layoutDependency,layoutId:\"oYAI4yGCl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g494yj\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"ycwRRz4UC\",svg:'<svg width=\"52\" height=\"15\" viewBox=\"-1 -1 52 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M3.024 3.724V4.228C3.024 4.308 3.052 4.376 3.108 4.432C3.164 4.488 3.232 4.516 3.312 4.516H6.552C6.632 4.516 6.7 4.544 6.756 4.6C6.812 4.656 6.84 4.724 6.84 4.804V6.484C6.84 6.564 6.812 6.632 6.756 6.688C6.7 6.744 6.632 6.772 6.552 6.772H3.312C3.232 6.772 3.164 6.8 3.108 6.856C3.052 6.912 3.024 6.98 3.024 7.06V9.712C3.024 9.792 2.996 9.86 2.94 9.916C2.884 9.972 2.816 10 2.736 10H0.924C0.844 10 0.776 9.972 0.72 9.916C0.664 9.86 0.636 9.792 0.636 9.712L0.636 1.504C0.636 1.424 0.664 1.356 0.72 1.3C0.776 1.244 0.844 1.216 0.924 1.216H7.032C7.112 1.216 7.18 1.244 7.236 1.3C7.292 1.356 7.32 1.424 7.32 1.504V3.148C7.32 3.228 7.292 3.296 7.236 3.352C7.18 3.408 7.112 3.436 7.032 3.436H3.312C3.232 3.436 3.164 3.464 3.108 3.52C3.052 3.576 3.024 3.644 3.024 3.724ZM10.3121 10H8.50012C8.41212 10 8.34012 9.972 8.28412 9.916C8.23612 9.86 8.21212 9.792 8.21212 9.712V1.516C8.21212 1.436 8.23612 1.368 8.28412 1.312C8.34012 1.256 8.41212 1.228 8.50012 1.228H10.3121C10.3921 1.228 10.4601 1.256 10.5161 1.312C10.5721 1.368 10.6001 1.436 10.6001 1.516V9.712C10.6001 9.792 10.5721 9.86 10.5161 9.916C10.4601 9.972 10.3921 10 10.3121 10ZM18.3863 8.08V9.712C18.3863 9.792 18.3583 9.86 18.3023 9.916C18.2463 9.972 18.1783 10 18.0983 10H12.1102C12.0222 10 11.9502 9.972 11.8942 9.916C11.8462 9.86 11.8222 9.792 11.8222 9.712V1.504C11.8222 1.424 11.8462 1.356 11.8942 1.3C11.9502 1.244 12.0222 1.216 12.1102 1.216H13.9102C13.9902 1.216 14.0582 1.244 14.1142 1.3C14.1702 1.356 14.1982 1.424 14.1982 1.504V7.504C14.1982 7.584 14.2222 7.652 14.2702 7.708C14.3262 7.764 14.3982 7.792 14.4862 7.792H18.0983C18.1783 7.792 18.2463 7.82 18.3023 7.876C18.3583 7.932 18.3863 8 18.3863 8.08ZM25.4091 8.08V9.712C25.4091 9.792 25.3811 9.86 25.3251 9.916C25.2691 9.972 25.2011 10 25.1211 10H19.1331C19.0451 10 18.9731 9.972 18.9171 9.916C18.8691 9.86 18.8451 9.792 18.8451 9.712V1.504C18.8451 1.424 18.8691 1.356 18.9171 1.3C18.9731 1.244 19.0451 1.216 19.1331 1.216H20.9331C21.0131 1.216 21.0811 1.244 21.1371 1.3C21.1931 1.356 21.2211 1.424 21.2211 1.504V7.504C21.2211 7.584 21.2451 7.652 21.2931 7.708C21.3491 7.764 21.4211 7.792 21.5091 7.792H25.1211C25.2011 7.792 25.2691 7.82 25.3251 7.876C25.3811 7.932 25.4091 8 25.4091 8.08ZM28.2439 3.712V4.216C28.2439 4.296 28.2719 4.364 28.3279 4.42C28.3839 4.476 28.4519 4.504 28.5319 4.504H31.7839C31.8639 4.504 31.9319 4.532 31.9879 4.588C32.0439 4.644 32.0719 4.712 32.0719 4.792V6.448C32.0719 6.528 32.0439 6.596 31.9879 6.652C31.9319 6.708 31.8639 6.736 31.7839 6.736H28.5319C28.4519 6.736 28.3839 6.764 28.3279 6.82C28.2719 6.876 28.2439 6.944 28.2439 7.024V7.48C28.2439 7.56 28.2719 7.628 28.3279 7.684C28.3839 7.74 28.4519 7.768 28.5319 7.768H32.2639C32.3439 7.768 32.4119 7.796 32.4679 7.852C32.5239 7.908 32.5519 7.976 32.5519 8.056V9.712C32.5519 9.792 32.5239 9.86 32.4679 9.916C32.4119 9.972 32.3439 10 32.2639 10H26.1559C26.0759 10 26.0079 9.972 25.9519 9.916C25.8959 9.86 25.8679 9.792 25.8679 9.712V1.504C25.8679 1.424 25.8959 1.356 25.9519 1.3C26.0079 1.244 26.0759 1.216 26.1559 1.216H32.2639C32.3439 1.216 32.4119 1.244 32.4679 1.3C32.5239 1.356 32.5519 1.424 32.5519 1.504V3.136C32.5519 3.216 32.5239 3.284 32.4679 3.34C32.4119 3.396 32.3439 3.424 32.2639 3.424H28.5319C28.4519 3.424 28.3839 3.452 28.3279 3.508C28.2719 3.564 28.2439 3.632 28.2439 3.712ZM35.7993 10H34.0113C33.9313 10 33.8633 9.972 33.8073 9.916C33.7513 9.86 33.7233 9.792 33.7233 9.712V1.504C33.7233 1.424 33.7513 1.356 33.8073 1.3C33.8633 1.244 33.9313 1.216 34.0113 1.216H37.7433C38.2073 1.216 38.6353 1.296 39.0273 1.456C39.4193 1.608 39.7513 1.824 40.0233 2.104C40.3033 2.384 40.5193 2.716 40.6713 3.1C40.8313 3.484 40.9113 3.908 40.9113 4.372C40.9113 4.628 40.8793 4.884 40.8153 5.14C40.7593 5.388 40.6753 5.624 40.5633 5.848C40.4513 6.072 40.3193 6.276 40.1673 6.46C40.0153 6.636 39.8433 6.784 39.6513 6.904C39.5873 6.952 39.5433 7.012 39.5193 7.084C39.5033 7.148 39.5193 7.212 39.5673 7.276C39.8713 7.676 40.1913 8.088 40.5273 8.512C40.8633 8.936 41.1633 9.324 41.4273 9.676C41.4753 9.74 41.4873 9.812 41.4633 9.892C41.4393 9.964 41.3873 10 41.3073 10H39.0753C38.9953 10 38.9073 9.98 38.8113 9.94C38.7233 9.892 38.6553 9.836 38.6073 9.772C38.3513 9.436 38.0953 9.096 37.8393 8.752C37.5913 8.408 37.3433 8.06 37.0953 7.708C37.0473 7.644 36.9793 7.592 36.8913 7.552C36.8033 7.504 36.7193 7.48 36.6393 7.48H36.3753C36.2953 7.48 36.2273 7.508 36.1713 7.564C36.1153 7.62 36.0873 7.688 36.0873 7.768V9.712C36.0873 9.792 36.0593 9.86 36.0033 9.916C35.9473 9.972 35.8793 10 35.7993 10ZM36.3753 5.272H37.6473C37.7433 5.272 37.8433 5.256 37.9473 5.224C38.0513 5.184 38.1473 5.128 38.2353 5.056C38.3233 4.976 38.3953 4.88 38.4513 4.768C38.5073 4.656 38.5353 4.524 38.5353 4.372C38.5353 4.292 38.5193 4.2 38.4873 4.096C38.4633 3.984 38.4153 3.88 38.3433 3.784C38.2793 3.68 38.1873 3.596 38.0673 3.532C37.9553 3.46 37.8153 3.424 37.6473 3.424H36.3753C36.2953 3.424 36.2273 3.452 36.1713 3.508C36.1153 3.564 36.0873 3.632 36.0873 3.712V4.984C36.0873 5.064 36.1153 5.132 36.1713 5.188C36.2273 5.244 36.2953 5.272 36.3753 5.272ZM42.984 6.988C43.416 7.268 43.844 7.488 44.268 7.648C44.692 7.808 45.088 7.888 45.456 7.888C45.808 7.888 46.076 7.84 46.26 7.744C46.444 7.64 46.536 7.488 46.536 7.288C46.536 7.184 46.496 7.104 46.416 7.048C46.336 6.984 46.228 6.932 46.092 6.892C45.964 6.852 45.812 6.82 45.636 6.796C45.46 6.772 45.28 6.74 45.096 6.7C44.92 6.668 44.712 6.632 44.472 6.592C44.24 6.544 44 6.48 43.752 6.4C43.504 6.312 43.256 6.204 43.008 6.076C42.768 5.948 42.552 5.784 42.36 5.584C42.168 5.384 42.012 5.148 41.892 4.876C41.78 4.596 41.724 4.268 41.724 3.892C41.724 3.34 41.832 2.884 42.048 2.524C42.264 2.164 42.536 1.88 42.864 1.672C43.2 1.456 43.572 1.308 43.98 1.228C44.388 1.14 44.784 1.096 45.168 1.096C45.84 1.096 46.44 1.196 46.968 1.396C47.504 1.588 48.016 1.872 48.504 2.248C48.568 2.304 48.604 2.372 48.612 2.452C48.62 2.532 48.6 2.604 48.552 2.668L47.616 4C47.568 4.064 47.504 4.104 47.424 4.12C47.344 4.136 47.272 4.12 47.208 4.072C46.8 3.816 46.42 3.636 46.068 3.532C45.716 3.42 45.392 3.364 45.096 3.364C45.008 3.364 44.904 3.368 44.784 3.376C44.672 3.376 44.564 3.392 44.46 3.424C44.356 3.448 44.268 3.492 44.196 3.556C44.132 3.62 44.1 3.708 44.1 3.82C44.1 3.932 44.184 4.032 44.352 4.12C44.52 4.208 44.712 4.284 44.928 4.348C45.144 4.412 45.352 4.464 45.552 4.504C45.752 4.536 45.88 4.556 45.936 4.564C46.224 4.62 46.54 4.704 46.884 4.816C47.228 4.92 47.548 5.08 47.844 5.296C48.148 5.504 48.4 5.78 48.6 6.124C48.808 6.46 48.912 6.884 48.912 7.396C48.912 7.876 48.828 8.292 48.66 8.644C48.492 8.988 48.256 9.272 47.952 9.496C47.656 9.72 47.296 9.888 46.872 10C46.456 10.104 45.992 10.156 45.48 10.156C45.064 10.156 44.676 10.12 44.316 10.048C43.956 9.984 43.62 9.892 43.308 9.772C42.996 9.652 42.704 9.512 42.432 9.352C42.168 9.184 41.924 9.008 41.7 8.824C41.636 8.776 41.6 8.712 41.592 8.632C41.584 8.544 41.604 8.468 41.652 8.404L42.576 7.072C42.624 7.008 42.688 6.968 42.768 6.952C42.848 6.936 42.92 6.948 42.984 6.988Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wdhcb6\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:93,layoutDependency:layoutDependency,layoutId:\"RnvNoEe27\",svg:'<svg width=\"93\" height=\"15\" viewBox=\"-1 -1 93 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M10.452 1.516V9.712C10.452 9.792 10.424 9.86 10.368 9.916C10.312 9.972 10.244 10 10.164 10H8.352C8.272 10 8.204 9.972 8.148 9.916C8.092 9.86 8.064 9.792 8.064 9.712V5.848C8.064 5.768 8.028 5.724 7.956 5.716C7.884 5.708 7.824 5.736 7.776 5.8L5.76 9.052C5.72 9.116 5.656 9.148 5.568 9.148C5.48 9.148 5.412 9.116 5.364 9.052L3.348 5.8C3.308 5.736 3.252 5.708 3.18 5.716C3.108 5.724 3.072 5.768 3.072 5.848V9.712C3.072 9.792 3.044 9.86 2.988 9.916C2.932 9.972 2.864 10 2.784 10H0.972C0.892 10 0.824 9.972 0.768 9.916C0.712 9.86 0.684 9.792 0.684 9.712L0.684 1.516C0.684 1.436 0.712 1.368 0.768 1.312C0.824 1.256 0.892 1.228 0.972 1.228H2.652C2.732 1.228 2.816 1.252 2.904 1.3C2.992 1.348 3.056 1.404 3.096 1.468L5.4 4.852C5.448 4.916 5.504 4.948 5.568 4.948C5.632 4.948 5.684 4.916 5.724 4.852L8.028 1.468C8.076 1.404 8.144 1.348 8.232 1.3C8.32 1.252 8.404 1.228 8.484 1.228H10.164C10.244 1.228 10.312 1.256 10.368 1.312C10.424 1.368 10.452 1.436 10.452 1.516ZM14.3473 3.712V4.216C14.3473 4.296 14.3753 4.364 14.4313 4.42C14.4873 4.476 14.5553 4.504 14.6353 4.504H17.8873C17.9673 4.504 18.0353 4.532 18.0913 4.588C18.1473 4.644 18.1753 4.712 18.1753 4.792V6.448C18.1753 6.528 18.1473 6.596 18.0913 6.652C18.0353 6.708 17.9673 6.736 17.8873 6.736H14.6353C14.5553 6.736 14.4873 6.764 14.4313 6.82C14.3753 6.876 14.3473 6.944 14.3473 7.024V7.48C14.3473 7.56 14.3753 7.628 14.4313 7.684C14.4873 7.74 14.5553 7.768 14.6353 7.768H18.3673C18.4473 7.768 18.5153 7.796 18.5713 7.852C18.6273 7.908 18.6553 7.976 18.6553 8.056V9.712C18.6553 9.792 18.6273 9.86 18.5713 9.916C18.5153 9.972 18.4473 10 18.3673 10H12.2593C12.1793 10 12.1113 9.972 12.0553 9.916C11.9993 9.86 11.9713 9.792 11.9713 9.712V1.504C11.9713 1.424 11.9993 1.356 12.0553 1.3C12.1113 1.244 12.1793 1.216 12.2593 1.216L18.3673 1.216C18.4473 1.216 18.5153 1.244 18.5713 1.3C18.6273 1.356 18.6553 1.424 18.6553 1.504V3.136C18.6553 3.216 18.6273 3.284 18.5713 3.34C18.5153 3.396 18.4473 3.424 18.3673 3.424H14.6353C14.5553 3.424 14.4873 3.452 14.4313 3.508C14.3753 3.564 14.3473 3.632 14.3473 3.712ZM22.3481 1.492C22.3801 1.42 22.4321 1.36 22.5041 1.312C22.5841 1.256 22.6681 1.228 22.7561 1.228H24.4361C24.5161 1.228 24.5921 1.256 24.6641 1.312C24.7441 1.36 24.8001 1.42 24.8321 1.492L28.3361 9.652C28.3681 9.724 28.3601 9.8 28.3121 9.88C28.2721 9.96 28.1881 10 28.0601 10H26.0081C25.9201 10 25.8361 9.976 25.7561 9.928C25.6841 9.872 25.6281 9.808 25.5881 9.736L25.2641 9.016C25.2241 8.944 25.1641 8.884 25.0841 8.836C25.0121 8.78 24.9361 8.752 24.8561 8.752H22.3241C22.2361 8.752 22.1521 8.78 22.0721 8.836C22.0001 8.884 21.9481 8.944 21.9161 9.016L21.5801 9.736C21.5481 9.808 21.4921 9.872 21.4121 9.928C21.3401 9.976 21.2641 10 21.1841 10H19.1201C19.0801 10 19.0401 9.992 19.0001 9.976C18.9521 9.96 18.9161 9.936 18.8921 9.904C18.8601 9.872 18.8401 9.832 18.8321 9.784C18.8241 9.736 18.8361 9.68 18.8681 9.616L22.3481 1.492ZM23.0561 6.712H24.1241C24.2041 6.712 24.2601 6.688 24.2921 6.64C24.3321 6.584 24.3321 6.52 24.2921 6.448C24.2121 6.248 24.1161 6.016 24.0041 5.752C23.8921 5.48 23.7881 5.228 23.6921 4.996C23.6601 4.924 23.6241 4.888 23.5841 4.888C23.5441 4.888 23.5081 4.924 23.4761 4.996L22.8761 6.448C22.8441 6.52 22.8441 6.584 22.8761 6.64C22.9081 6.688 22.9681 6.712 23.0561 6.712ZM33.6638 3.424H31.9838C31.9038 3.424 31.8358 3.452 31.7798 3.508C31.7238 3.564 31.6958 3.632 31.6958 3.712V9.712C31.6958 9.792 31.6678 9.86 31.6118 9.916C31.5638 9.972 31.4958 10 31.4078 10H29.6078C29.5278 10 29.4598 9.972 29.4038 9.916C29.3478 9.86 29.3198 9.792 29.3198 9.712V3.712C29.3198 3.632 29.2918 3.564 29.2358 3.508C29.1878 3.452 29.1198 3.424 29.0318 3.424H27.3278C27.2478 3.424 27.1798 3.396 27.1238 3.34C27.0678 3.284 27.0398 3.216 27.0398 3.136V1.504C27.0398 1.424 27.0678 1.356 27.1238 1.3C27.1798 1.244 27.2478 1.216 27.3278 1.216H33.6638C33.7518 1.216 33.8198 1.244 33.8678 1.3C33.9238 1.356 33.9518 1.424 33.9518 1.504V3.136C33.9518 3.216 33.9238 3.284 33.8678 3.34C33.8198 3.396 33.7518 3.424 33.6638 3.424ZM47.0422 8.032V9.724C47.0422 9.804 47.0142 9.872 46.9582 9.928C46.9022 9.984 46.8342 10.012 46.7542 10.012H42.6142C41.8062 10.012 41.1062 9.896 40.5142 9.664C39.9222 9.424 39.4302 9.104 39.0382 8.704C38.6542 8.296 38.3662 7.824 38.1742 7.288C37.9902 6.744 37.8982 6.164 37.8982 5.548C37.8982 4.932 38.0142 4.352 38.2462 3.808C38.4782 3.264 38.7942 2.792 39.1942 2.392C39.6022 1.984 40.0742 1.664 40.6102 1.432C41.1542 1.192 41.7342 1.072 42.3502 1.072C42.9662 1.072 43.5462 1.192 44.0902 1.432C44.6342 1.664 45.1062 1.984 45.5062 2.392C45.9142 2.792 46.2342 3.264 46.4662 3.808C46.6982 4.352 46.8142 4.932 46.8142 5.548C46.8142 5.932 46.7462 6.3 46.6102 6.652C46.4742 6.996 46.3022 7.288 46.0942 7.528C45.9902 7.672 46.0222 7.744 46.1902 7.744H46.7542C46.8342 7.744 46.9022 7.772 46.9582 7.828C47.0142 7.884 47.0422 7.952 47.0422 8.032ZM42.3502 7.672C42.6382 7.672 42.9062 7.616 43.1542 7.504C43.4102 7.384 43.6342 7.228 43.8262 7.036C44.0182 6.844 44.1662 6.62 44.2702 6.364C44.3822 6.108 44.4382 5.836 44.4382 5.548C44.4382 5.26 44.3822 4.988 44.2702 4.732C44.1662 4.468 44.0182 4.24 43.8262 4.048C43.6342 3.848 43.4102 3.692 43.1542 3.58C42.9062 3.468 42.6382 3.412 42.3502 3.412C42.0622 3.412 41.7902 3.468 41.5342 3.58C41.2862 3.692 41.0662 3.848 40.8742 4.048C40.6822 4.24 40.5302 4.468 40.4182 4.732C40.3142 4.988 40.2622 5.26 40.2622 5.548C40.2622 5.836 40.3142 6.108 40.4182 6.364C40.5302 6.62 40.6822 6.844 40.8742 7.036C41.0662 7.228 41.2862 7.384 41.5342 7.504C41.7902 7.616 42.0622 7.672 42.3502 7.672ZM47.8239 1.516C47.8239 1.436 47.8519 1.368 47.9079 1.312C47.9639 1.256 48.0319 1.228 48.1119 1.228H49.9239C50.0039 1.228 50.0719 1.256 50.1279 1.312C50.1839 1.368 50.2119 1.436 50.2119 1.516V6.376C50.2119 6.688 50.2599 6.948 50.3559 7.156C50.4599 7.356 50.5839 7.516 50.7279 7.636C50.8799 7.748 51.0399 7.828 51.2079 7.876C51.3759 7.924 51.5279 7.948 51.6639 7.948C51.7999 7.948 51.9519 7.924 52.1199 7.876C52.2879 7.828 52.4439 7.748 52.5879 7.636C52.7319 7.516 52.8519 7.356 52.9479 7.156C53.0519 6.948 53.1039 6.688 53.1039 6.376V1.516C53.1039 1.436 53.1319 1.368 53.1879 1.312C53.2439 1.256 53.3119 1.228 53.3919 1.228H55.2039C55.2839 1.228 55.3519 1.256 55.4079 1.312C55.4639 1.368 55.4919 1.436 55.4919 1.516V6.376C55.4919 6.944 55.3999 7.46 55.2159 7.924C55.0399 8.388 54.7839 8.784 54.4479 9.112C54.1119 9.44 53.7079 9.696 53.2359 9.88C52.7639 10.056 52.2399 10.144 51.6639 10.144C51.0879 10.144 50.5639 10.056 50.0919 9.88C49.6199 9.696 49.2159 9.44 48.8799 9.112C48.5439 8.784 48.2839 8.388 48.0999 7.924C47.9159 7.46 47.8239 6.944 47.8239 6.376V1.516ZM58.9505 1.492C58.9825 1.42 59.0345 1.36 59.1065 1.312C59.1865 1.256 59.2705 1.228 59.3585 1.228H61.0385C61.1185 1.228 61.1945 1.256 61.2665 1.312C61.3465 1.36 61.4025 1.42 61.4345 1.492L64.9385 9.652C64.9705 9.724 64.9625 9.8 64.9145 9.88C64.8745 9.96 64.7905 10 64.6625 10H62.6105C62.5225 10 62.4385 9.976 62.3585 9.928C62.2865 9.872 62.2305 9.808 62.1905 9.736L61.8665 9.016C61.8265 8.944 61.7665 8.884 61.6865 8.836C61.6145 8.78 61.5385 8.752 61.4585 8.752H58.9265C58.8385 8.752 58.7545 8.78 58.6745 8.836C58.6025 8.884 58.5505 8.944 58.5185 9.016L58.1825 9.736C58.1505 9.808 58.0945 9.872 58.0145 9.928C57.9425 9.976 57.8665 10 57.7865 10H55.7225C55.6825 10 55.6425 9.992 55.6025 9.976C55.5545 9.96 55.5185 9.936 55.4945 9.904C55.4625 9.872 55.4425 9.832 55.4345 9.784C55.4265 9.736 55.4385 9.68 55.4705 9.616L58.9505 1.492ZM59.6585 6.712H60.7265C60.8065 6.712 60.8625 6.688 60.8945 6.64C60.9345 6.584 60.9345 6.52 60.8945 6.448C60.8145 6.248 60.7185 6.016 60.6065 5.752C60.4945 5.48 60.3905 5.228 60.2945 4.996C60.2625 4.924 60.2265 4.888 60.1865 4.888C60.1465 4.888 60.1105 4.924 60.0785 4.996L59.4785 6.448C59.4465 6.52 59.4465 6.584 59.4785 6.64C59.5105 6.688 59.5705 6.712 59.6585 6.712ZM71.6794 8.08V9.712C71.6794 9.792 71.6514 9.86 71.5954 9.916C71.5394 9.972 71.4714 10 71.3914 10H65.4034C65.3154 10 65.2434 9.972 65.1874 9.916C65.1394 9.86 65.1154 9.792 65.1154 9.712V1.504C65.1154 1.424 65.1394 1.356 65.1874 1.3C65.2434 1.244 65.3154 1.216 65.4034 1.216H67.2034C67.2834 1.216 67.3514 1.244 67.4074 1.3C67.4634 1.356 67.4914 1.424 67.4914 1.504V7.504C67.4914 7.584 67.5154 7.652 67.5634 7.708C67.6194 7.764 67.6914 7.792 67.7794 7.792L71.3914 7.792C71.4714 7.792 71.5394 7.82 71.5954 7.876C71.6514 7.932 71.6794 8 71.6794 8.08ZM74.3462 10H72.5342C72.4462 10 72.3742 9.972 72.3182 9.916C72.2702 9.86 72.2462 9.792 72.2462 9.712V1.516C72.2462 1.436 72.2702 1.368 72.3182 1.312C72.3742 1.256 72.4462 1.228 72.5342 1.228H74.3462C74.4262 1.228 74.4942 1.256 74.5502 1.312C74.6062 1.368 74.6342 1.436 74.6342 1.516V9.712C74.6342 9.792 74.6062 9.86 74.5502 9.916C74.4942 9.972 74.4262 10 74.3462 10ZM81.7336 3.424H80.0536C79.9736 3.424 79.9056 3.452 79.8496 3.508C79.7936 3.564 79.7656 3.632 79.7656 3.712V9.712C79.7656 9.792 79.7376 9.86 79.6816 9.916C79.6336 9.972 79.5656 10 79.4776 10H77.6776C77.5976 10 77.5296 9.972 77.4736 9.916C77.4176 9.86 77.3896 9.792 77.3896 9.712V3.712C77.3896 3.632 77.3616 3.564 77.3056 3.508C77.2576 3.452 77.1896 3.424 77.1016 3.424H75.3976C75.3176 3.424 75.2496 3.396 75.1936 3.34C75.1376 3.284 75.1096 3.216 75.1096 3.136V1.504C75.1096 1.424 75.1376 1.356 75.1936 1.3C75.2496 1.244 75.3176 1.216 75.3976 1.216H81.7336C81.8216 1.216 81.8896 1.244 81.9376 1.3C81.9936 1.356 82.0216 1.424 82.0216 1.504V3.136C82.0216 3.216 81.9936 3.284 81.9376 3.34C81.8896 3.396 81.8216 3.424 81.7336 3.424ZM90.3384 1.564L87.3384 6.424C87.2984 6.496 87.2624 6.584 87.2304 6.688C87.1984 6.792 87.1824 6.884 87.1824 6.964V9.712C87.1824 9.792 87.1544 9.86 87.0984 9.916C87.0424 9.972 86.9744 10 86.8944 10H85.0824C85.0024 10 84.9344 9.972 84.8784 9.916C84.8224 9.86 84.7944 9.792 84.7944 9.712V6.976C84.7944 6.896 84.7784 6.804 84.7464 6.7C84.7224 6.588 84.6904 6.5 84.6504 6.436C84.1704 5.612 83.6784 4.804 83.1744 4.012C82.6784 3.22 82.1824 2.404 81.6864 1.564C81.6464 1.492 81.6384 1.42 81.6624 1.348C81.6864 1.268 81.7384 1.228 81.8184 1.228H83.9544C84.0344 1.228 84.1144 1.252 84.1944 1.3C84.2824 1.348 84.3464 1.408 84.3864 1.48L85.8624 4.048C85.9024 4.112 85.9504 4.144 86.0064 4.144C86.0624 4.144 86.1104 4.112 86.1504 4.048L87.6144 1.48C87.6544 1.408 87.7144 1.348 87.7944 1.3C87.8824 1.252 87.9664 1.228 88.0464 1.228H90.2064C90.2864 1.228 90.3424 1.256 90.3744 1.312C90.4144 1.368 90.4024 1.452 90.3384 1.564Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rtbewq\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"V5qOxLJ33\",svg:'<svg width=\"85\" height=\"16\" viewBox=\"-1 -1 85 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M4.35563 7.82326H3.31163C3.23163 7.82326 3.16363 7.85126 3.10763 7.90726C3.05163 7.96326 3.02363 8.03126 3.02363 8.11126V9.89926C3.02363 9.97926 2.99563 10.0473 2.93963 10.1033C2.88363 10.1593 2.81563 10.1873 2.73563 10.1873H0.923634C0.843634 10.1873 0.775634 10.1593 0.719634 10.1033C0.663634 10.0473 0.635634 9.97926 0.635634 9.89926L0.635634 1.69126C0.635634 1.61126 0.663634 1.54326 0.719634 1.48726C0.775634 1.43126 0.843634 1.40326 0.923634 1.40326H4.59563C5.04363 1.40326 5.46363 1.48726 5.85563 1.65526C6.25563 1.82326 6.59963 2.05526 6.88763 2.35126C7.18363 2.64726 7.41563 2.99126 7.58363 3.38326C7.75963 3.77526 7.84763 4.19526 7.84763 4.64326C7.84763 5.09126 7.77563 5.51126 7.63163 5.90326C7.48763 6.28726 7.26763 6.62326 6.97163 6.91126C6.68363 7.19126 6.31963 7.41526 5.87963 7.58326C5.44763 7.74326 4.93963 7.82326 4.35563 7.82326ZM4.43963 3.61126H3.31163C3.23163 3.61126 3.16363 3.63926 3.10763 3.69526C3.05163 3.75126 3.02363 3.81926 3.02363 3.89926V5.31526C3.02363 5.39526 3.05163 5.46326 3.10763 5.51926C3.16363 5.57526 3.23163 5.60326 3.31163 5.60326H4.59563C4.89963 5.60326 5.11963 5.50726 5.25563 5.31526C5.39963 5.11526 5.47163 4.89126 5.47163 4.64326C5.47163 4.51526 5.44763 4.39126 5.39963 4.27126C5.35963 4.14326 5.29563 4.03126 5.20763 3.93526C5.11963 3.83926 5.01163 3.76326 4.88363 3.70726C4.75563 3.64326 4.60763 3.61126 4.43963 3.61126ZM10.5084 10.1873H8.72045C8.64045 10.1873 8.57245 10.1593 8.51645 10.1033C8.46045 10.0473 8.43245 9.97926 8.43245 9.89926V1.69126C8.43245 1.61126 8.46045 1.54326 8.51645 1.48726C8.57245 1.43126 8.64045 1.40326 8.72045 1.40326H12.4524C12.9164 1.40326 13.3444 1.48326 13.7364 1.64326C14.1284 1.79526 14.4604 2.01126 14.7324 2.29126C15.0124 2.57126 15.2284 2.90326 15.3804 3.28726C15.5404 3.67126 15.6204 4.09526 15.6204 4.55926C15.6204 4.81526 15.5884 5.07126 15.5244 5.32726C15.4684 5.57526 15.3844 5.81126 15.2724 6.03526C15.1604 6.25926 15.0284 6.46326 14.8764 6.64726C14.7244 6.82326 14.5524 6.97126 14.3604 7.09126C14.2964 7.13926 14.2524 7.19926 14.2284 7.27126C14.2124 7.33526 14.2284 7.39926 14.2764 7.46326C14.5804 7.86326 14.9004 8.27526 15.2364 8.69926C15.5724 9.12326 15.8724 9.51126 16.1364 9.86326C16.1844 9.92726 16.1964 9.99926 16.1724 10.0793C16.1484 10.1513 16.0964 10.1873 16.0164 10.1873H13.7844C13.7044 10.1873 13.6164 10.1673 13.5204 10.1273C13.4324 10.0793 13.3644 10.0233 13.3164 9.95926C13.0604 9.62326 12.8044 9.28326 12.5484 8.93926C12.3004 8.59526 12.0524 8.24726 11.8044 7.89526C11.7564 7.83126 11.6884 7.77926 11.6004 7.73926C11.5124 7.69126 11.4284 7.66726 11.3484 7.66726H11.0844C11.0044 7.66726 10.9364 7.69526 10.8804 7.75126C10.8244 7.80726 10.7964 7.87526 10.7964 7.95526V9.89926C10.7964 9.97926 10.7684 10.0473 10.7124 10.1033C10.6564 10.1593 10.5884 10.1873 10.5084 10.1873ZM11.0844 5.45926H12.3564C12.4524 5.45926 12.5524 5.44326 12.6564 5.41126C12.7604 5.37126 12.8564 5.31526 12.9444 5.24326C13.0324 5.16326 13.1044 5.06726 13.1604 4.95526C13.2164 4.84326 13.2444 4.71126 13.2444 4.55926C13.2444 4.47926 13.2284 4.38726 13.1964 4.28326C13.1724 4.17126 13.1244 4.06726 13.0524 3.97126C12.9884 3.86726 12.8964 3.78326 12.7764 3.71926C12.6644 3.64726 12.5244 3.61126 12.3564 3.61126H11.0844C11.0044 3.61126 10.9364 3.63926 10.8804 3.69526C10.8244 3.75126 10.7964 3.81926 10.7964 3.89926V5.17126C10.7964 5.25126 10.8244 5.31926 10.8804 5.37526C10.9364 5.43126 11.0044 5.45926 11.0844 5.45926ZM16.3132 5.79526C16.3132 5.17126 16.4332 4.58326 16.6732 4.03126C16.9132 3.47926 17.2372 2.99926 17.6452 2.59126C18.0532 2.17526 18.5332 1.84726 19.0852 1.60726C19.6372 1.36726 20.2252 1.24726 20.8492 1.24726C21.4732 1.24726 22.0612 1.36726 22.6132 1.60726C23.1652 1.84726 23.6452 2.17526 24.0532 2.59126C24.4692 2.99926 24.7972 3.47926 25.0372 4.03126C25.2772 4.58326 25.3972 5.17126 25.3972 5.79526C25.3972 6.41926 25.2772 7.00726 25.0372 7.55926C24.7972 8.11126 24.4692 8.59526 24.0532 9.01126C23.6452 9.41926 23.1652 9.74326 22.6132 9.98326C22.0612 10.2233 21.4732 10.3433 20.8492 10.3433C20.2252 10.3433 19.6372 10.2233 19.0852 9.98326C18.5332 9.74326 18.0532 9.41926 17.6452 9.01126C17.2372 8.59526 16.9132 8.11126 16.6732 7.55926C16.4332 7.00726 16.3132 6.41926 16.3132 5.79526ZM18.6892 5.79526C18.6892 6.09926 18.7452 6.38726 18.8572 6.65926C18.9692 6.93126 19.1212 7.17126 19.3132 7.37926C19.5132 7.58726 19.7452 7.75526 20.0092 7.88326C20.2732 8.00326 20.5532 8.06326 20.8492 8.06326C21.1452 8.06326 21.4252 8.00326 21.6892 7.88326C21.9532 7.75526 22.1852 7.58726 22.3852 7.37926C22.5852 7.17126 22.7412 6.93126 22.8532 6.65926C22.9652 6.38726 23.0212 6.09926 23.0212 5.79526C23.0212 5.49926 22.9652 5.21526 22.8532 4.94326C22.7412 4.66326 22.5852 4.42326 22.3852 4.22326C22.1852 4.01526 21.9532 3.85126 21.6892 3.73126C21.4252 3.60326 21.1452 3.53926 20.8492 3.53926C20.5532 3.53926 20.2732 3.60326 20.0092 3.73126C19.7452 3.85126 19.5132 4.01526 19.3132 4.22326C19.1212 4.42326 18.9692 4.66326 18.8572 4.94326C18.7452 5.21526 18.6892 5.49926 18.6892 5.79526ZM26.2987 9.89926V1.69126C26.2987 1.61126 26.3267 1.54326 26.3827 1.48726C26.4387 1.43126 26.5067 1.40326 26.5867 1.40326H29.8627C31.1187 1.40326 32.1467 1.77126 32.9467 2.50726C33.3787 2.90726 33.7067 3.38326 33.9307 3.93526C34.1547 4.48726 34.2667 5.10726 34.2667 5.79526C34.2667 6.48326 34.1547 7.10726 33.9307 7.66726C33.7067 8.21926 33.3787 8.69526 32.9467 9.09526C32.5467 9.45526 32.0867 9.72726 31.5667 9.91126C31.0547 10.0953 30.4867 10.1873 29.8627 10.1873H26.5867C26.5067 10.1873 26.4387 10.1593 26.3827 10.1033C26.3267 10.0473 26.2987 9.97926 26.2987 9.89926ZM28.9627 7.97926H29.8627C30.0867 7.97926 30.3187 7.95126 30.5587 7.89526C30.7987 7.83926 31.0147 7.73526 31.2067 7.58326C31.3987 7.42326 31.5547 7.20326 31.6747 6.92326C31.8027 6.63526 31.8667 6.26326 31.8667 5.80726C31.8667 5.35126 31.8027 4.98326 31.6747 4.70326C31.5547 4.41526 31.3947 4.19526 31.1947 4.04326C31.0027 3.88326 30.7867 3.77526 30.5467 3.71926C30.3147 3.66326 30.0867 3.63526 29.8627 3.63526H28.9627C28.8827 3.63526 28.8147 3.66326 28.7587 3.71926C28.7027 3.77526 28.6747 3.84326 28.6747 3.92326V7.69126C28.6747 7.77126 28.7027 7.83926 28.7587 7.89526C28.8147 7.95126 28.8827 7.97926 28.9627 7.97926ZM35.3483 1.70326C35.3483 1.62326 35.3763 1.55526 35.4323 1.49926C35.4883 1.44326 35.5563 1.41526 35.6363 1.41526H37.4483C37.5283 1.41526 37.5963 1.44326 37.6523 1.49926C37.7083 1.55526 37.7363 1.62326 37.7363 1.70326V6.56326C37.7363 6.87526 37.7843 7.13526 37.8803 7.34326C37.9843 7.54326 38.1083 7.70326 38.2523 7.82326C38.4043 7.93526 38.5643 8.01526 38.7323 8.06326C38.9003 8.11126 39.0523 8.13526 39.1883 8.13526C39.3243 8.13526 39.4763 8.11126 39.6443 8.06326C39.8123 8.01526 39.9683 7.93526 40.1123 7.82326C40.2563 7.70326 40.3763 7.54326 40.4723 7.34326C40.5763 7.13526 40.6283 6.87526 40.6283 6.56326V1.70326C40.6283 1.62326 40.6563 1.55526 40.7123 1.49926C40.7683 1.44326 40.8363 1.41526 40.9163 1.41526H42.7283C42.8083 1.41526 42.8763 1.44326 42.9323 1.49926C42.9883 1.55526 43.0163 1.62326 43.0163 1.70326V6.56326C43.0163 7.13126 42.9243 7.64726 42.7403 8.11126C42.5643 8.57526 42.3083 8.97126 41.9723 9.29926C41.6363 9.62726 41.2323 9.88326 40.7603 10.0673C40.2883 10.2433 39.7643 10.3313 39.1883 10.3313C38.6123 10.3313 38.0883 10.2433 37.6163 10.0673C37.1443 9.88326 36.7403 9.62726 36.4043 9.29926C36.0683 8.97126 35.8083 8.57526 35.6243 8.11126C35.4403 7.64726 35.3483 7.13126 35.3483 6.56326V1.70326ZM52.648 7.84726C52.416 8.22326 52.16 8.56726 51.88 8.87926C51.6 9.18326 51.284 9.44326 50.932 9.65926C50.588 9.87526 50.204 10.0433 49.78 10.1633C49.356 10.2833 48.888 10.3433 48.376 10.3433C47.736 10.3433 47.136 10.2233 46.576 9.98326C46.016 9.74326 45.524 9.41926 45.1 9.01126C44.684 8.60326 44.356 8.12326 44.116 7.57126C43.876 7.01926 43.756 6.43126 43.756 5.80726C43.756 5.18326 43.876 4.59526 44.116 4.04326C44.356 3.49126 44.684 3.01126 45.1 2.60326C45.524 2.19526 46.016 1.87126 46.576 1.63126C47.136 1.39126 47.736 1.27126 48.376 1.27126C48.904 1.27126 49.38 1.33126 49.804 1.45126C50.228 1.57126 50.612 1.73926 50.956 1.95526C51.3 2.17126 51.608 2.43526 51.88 2.74726C52.16 3.05126 52.416 3.38726 52.648 3.75526C52.688 3.81926 52.696 3.88726 52.672 3.95926C52.648 4.03126 52.6 4.08326 52.528 4.11526L50.824 4.78726C50.744 4.81926 50.664 4.81926 50.584 4.78726C50.504 4.75526 50.444 4.70726 50.404 4.64326C50.172 4.27526 49.892 3.99526 49.564 3.80326C49.236 3.60326 48.84 3.50326 48.376 3.50326C48.072 3.50326 47.784 3.56726 47.512 3.69526C47.248 3.82326 47.016 3.99526 46.816 4.21126C46.616 4.41926 46.46 4.66326 46.348 4.94326C46.236 5.22326 46.18 5.51126 46.18 5.80726C46.18 6.11126 46.236 6.40326 46.348 6.68326C46.46 6.95526 46.616 7.19526 46.816 7.40326C47.016 7.61126 47.248 7.77926 47.512 7.90726C47.784 8.03526 48.072 8.09926 48.376 8.09926C48.816 8.09926 49.212 7.99526 49.564 7.78726C49.924 7.57126 50.208 7.29526 50.416 6.95926C50.456 6.89526 50.512 6.84726 50.584 6.81526C50.664 6.78326 50.744 6.78326 50.824 6.81526L52.528 7.48726C52.6 7.51926 52.648 7.57126 52.672 7.64326C52.696 7.70726 52.688 7.77526 52.648 7.84726ZM58.8803 3.61126H57.2003C57.1203 3.61126 57.0523 3.63926 56.9963 3.69526C56.9403 3.75126 56.9123 3.81926 56.9123 3.89926V9.89926C56.9123 9.97926 56.8843 10.0473 56.8283 10.1033C56.7803 10.1593 56.7123 10.1873 56.6243 10.1873H54.8243C54.7443 10.1873 54.6763 10.1593 54.6203 10.1033C54.5643 10.0473 54.5363 9.97926 54.5363 9.89926V3.89926C54.5363 3.81926 54.5083 3.75126 54.4523 3.69526C54.4043 3.63926 54.3363 3.61126 54.2483 3.61126H52.5443C52.4643 3.61126 52.3963 3.58326 52.3403 3.52726C52.2843 3.47126 52.2563 3.40326 52.2563 3.32326V1.69126C52.2563 1.61126 52.2843 1.54326 52.3403 1.48726C52.3963 1.43126 52.4643 1.40326 52.5443 1.40326L58.8803 1.40326C58.9683 1.40326 59.0363 1.43126 59.0843 1.48726C59.1403 1.54326 59.1683 1.61126 59.1683 1.69126V3.32326C59.1683 3.40326 59.1403 3.47126 59.0843 3.52726C59.0363 3.58326 58.9683 3.61126 58.8803 3.61126ZM61.9291 10.1873H60.1171C60.0291 10.1873 59.9571 10.1593 59.9011 10.1033C59.8531 10.0473 59.8291 9.97926 59.8291 9.89926V1.70326C59.8291 1.62326 59.8531 1.55526 59.9011 1.49926C59.9571 1.44326 60.0291 1.41526 60.1171 1.41526H61.9291C62.0091 1.41526 62.0771 1.44326 62.1331 1.49926C62.1891 1.55526 62.2171 1.62326 62.2171 1.70326V9.89926C62.2171 9.97926 62.1891 10.0473 62.1331 10.1033C62.0771 10.1593 62.0091 10.1873 61.9291 10.1873ZM63.0672 5.79526C63.0672 5.17126 63.1872 4.58326 63.4272 4.03126C63.6672 3.47926 63.9912 2.99926 64.3992 2.59126C64.8072 2.17526 65.2872 1.84726 65.8392 1.60726C66.3912 1.36726 66.9792 1.24726 67.6032 1.24726C68.2272 1.24726 68.8152 1.36726 69.3672 1.60726C69.9192 1.84726 70.3992 2.17526 70.8072 2.59126C71.2232 2.99926 71.5512 3.47926 71.7912 4.03126C72.0312 4.58326 72.1512 5.17126 72.1512 5.79526C72.1512 6.41926 72.0312 7.00726 71.7912 7.55926C71.5512 8.11126 71.2232 8.59526 70.8072 9.01126C70.3992 9.41926 69.9192 9.74326 69.3672 9.98326C68.8152 10.2233 68.2272 10.3433 67.6032 10.3433C66.9792 10.3433 66.3912 10.2233 65.8392 9.98326C65.2872 9.74326 64.8072 9.41926 64.3992 9.01126C63.9912 8.59526 63.6672 8.11126 63.4272 7.55926C63.1872 7.00726 63.0672 6.41926 63.0672 5.79526ZM65.4432 5.79526C65.4432 6.09926 65.4992 6.38726 65.6112 6.65926C65.7232 6.93126 65.8752 7.17126 66.0672 7.37926C66.2672 7.58726 66.4992 7.75526 66.7632 7.88326C67.0272 8.00326 67.3072 8.06326 67.6032 8.06326C67.8992 8.06326 68.1792 8.00326 68.4432 7.88326C68.7072 7.75526 68.9392 7.58726 69.1392 7.37926C69.3392 7.17126 69.4952 6.93126 69.6072 6.65926C69.7192 6.38726 69.7752 6.09926 69.7752 5.79526C69.7752 5.49926 69.7192 5.21526 69.6072 4.94326C69.4952 4.66326 69.3392 4.42326 69.1392 4.22326C68.9392 4.01526 68.7072 3.85126 68.4432 3.73126C68.1792 3.60326 67.8992 3.53926 67.6032 3.53926C67.3072 3.53926 67.0272 3.60326 66.7632 3.73126C66.4992 3.85126 66.2672 4.01526 66.0672 4.22326C65.8752 4.42326 65.7232 4.66326 65.6112 4.94326C65.4992 5.21526 65.4432 5.49926 65.4432 5.79526ZM81.2847 1.69126V9.89926C81.2847 9.97926 81.2567 10.0473 81.2007 10.1033C81.1447 10.1593 81.0767 10.1873 80.9967 10.1873H79.2207C79.1407 10.1873 79.0567 10.1633 78.9687 10.1153C78.8807 10.0673 78.8127 10.0113 78.7647 9.94726L75.6327 5.54326C75.5847 5.47926 75.5327 5.45526 75.4767 5.47126C75.4287 5.47926 75.4047 5.52326 75.4047 5.60326V9.89926C75.4047 9.97926 75.3767 10.0473 75.3207 10.1033C75.2647 10.1593 75.1967 10.1873 75.1167 10.1873H73.3287C73.2487 10.1873 73.1807 10.1593 73.1247 10.1033C73.0687 10.0473 73.0407 9.97926 73.0407 9.89926V1.69126C73.0407 1.61126 73.0687 1.54326 73.1247 1.48726C73.1807 1.43126 73.2487 1.40326 73.3287 1.40326H75.1287C75.2087 1.40326 75.2927 1.42726 75.3807 1.47526C75.4687 1.51526 75.5367 1.56726 75.5847 1.63126L78.7047 6.03526C78.7527 6.09926 78.8007 6.12726 78.8487 6.11926C78.9047 6.11126 78.9327 6.06726 78.9327 5.98726V1.69126C78.9327 1.61126 78.9607 1.54326 79.0167 1.48726C79.0727 1.43126 79.1407 1.40326 79.2207 1.40326H80.9967C81.0767 1.40326 81.1447 1.43126 81.2007 1.48726C81.2567 1.54326 81.2847 1.61126 81.2847 1.69126Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3opp90\",\"data-framer-name\":\"Line 306\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:95,layoutDependency:layoutDependency,layoutId:\"elcTjLHau\",svg:'<svg width=\"95\" height=\"3\" viewBox=\"-1 -1 95 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-4.37114e-08\" y1=\"0.5\" x2=\"93\" y2=\"0.499992\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t75g6i\",\"data-framer-name\":\"Line 309\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"vNtAJA5kI\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.543701\" y1=\"0.5\" x2=\"93.5437\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19kpttq\",\"data-framer-name\":\"Line 312\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"vzVe6KJWL\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.543701\" y1=\"0.5\" x2=\"93.5437\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pnxlpp\",\"data-framer-name\":\"Line 315\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"XDyAfM1bA\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.543701\" y1=\"0.5\" x2=\"93.5437\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gw9kf7\",\"data-framer-name\":\"Line 307\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"LLU9dp7nz\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.27124\" y1=\"0.5\" x2=\"111.271\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ppfdab\",\"data-framer-name\":\"Line 310\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"C0WAak7WS\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.27124\" y1=\"0.5\" x2=\"111.271\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-98f13j\",\"data-framer-name\":\"Line 313\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"LomeZvVYU\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.27124\" y1=\"0.5\" x2=\"111.271\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wamvik\",\"data-framer-name\":\"Line 316\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"UvW8dmkdq\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.27124\" y1=\"0.5\" x2=\"111.271\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zdchmu\",\"data-framer-name\":\"Group 6774\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:250,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"MKbR1UvNR\",svg:'<svg width=\"124\" height=\"250\" viewBox=\"0 0 124 250\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"124\" height=\"250\" rx=\"20.1955\" fill=\"#DBA16E\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.6208 23.6759C78.0168 23.5993 78.4311 23.7545 78.6394 24.0998L80.1667 26.6309C80.7119 27.5343 81 28.5694 81 29.6246V41.1308C81 42.7401 80.3307 44.2769 79.1525 45.3731L72.3386 51.7126C71.4902 52.502 70.4246 53.0188 69.2795 53.1964L58.8605 54.812C57.1115 55.0832 55.3345 54.5402 54.0358 53.3377L43.8578 43.9138C42.5017 42.6583 41.8259 40.8312 42.0385 38.9954L43.5873 25.6217C43.7936 23.8404 44.813 22.255 46.348 21.328L56.4337 15.2378C56.4778 15.2112 56.5222 15.1852 56.5669 15.1598C56.9342 14.9511 57.3836 15.0985 57.6533 15.4236C58.1754 16.0528 58.8134 16.5954 59.5569 17.0143C60.4304 17.5064 61.363 17.7789 62.2968 17.8499C62.7311 17.8829 63.1084 18.1808 63.2461 18.594C63.6873 19.918 64.5825 21.0768 65.8548 21.7936C67.4067 22.6679 69.1858 22.6964 70.7094 22.0311C71.0805 21.869 71.5181 21.9231 71.8301 22.1812C72.1539 22.449 72.5046 22.6911 72.8809 22.9031C74.3836 23.7497 76.0519 23.9794 77.6208 23.6759Z\" fill=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 221)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 170)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 119)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 67)\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-azomut\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:76,layoutDependency:layoutDependency,layoutId:\"qEaMi2m_Z\",svg:'<svg width=\"76\" height=\"15\" viewBox=\"-1 -1 76 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M9.38533 1.504V9.712C9.38533 9.792 9.35733 9.86 9.30133 9.916C9.24533 9.972 9.17733 10 9.09733 10H7.32133C7.24133 10 7.15733 9.976 7.06933 9.928C6.98133 9.88 6.91333 9.824 6.86533 9.76L3.73333 5.356C3.68533 5.292 3.63333 5.268 3.57733 5.284C3.52933 5.292 3.50533 5.336 3.50533 5.416V9.712C3.50533 9.792 3.47733 9.86 3.42133 9.916C3.36533 9.972 3.29733 10 3.21733 10H1.42933C1.34933 10 1.28133 9.972 1.22533 9.916C1.16933 9.86 1.14133 9.792 1.14133 9.712V1.504C1.14133 1.424 1.16933 1.356 1.22533 1.3C1.28133 1.244 1.34933 1.216 1.42933 1.216H3.22933C3.30933 1.216 3.39333 1.24 3.48133 1.288C3.56933 1.328 3.63733 1.38 3.68533 1.444L6.80533 5.848C6.85333 5.912 6.90133 5.94 6.94933 5.932C7.00533 5.924 7.03333 5.88 7.03333 5.8V1.504C7.03333 1.424 7.06133 1.356 7.11733 1.3C7.17333 1.244 7.24133 1.216 7.32133 1.216H9.09733C9.17733 1.216 9.24533 1.244 9.30133 1.3C9.35733 1.356 9.38533 1.424 9.38533 1.504ZM10.1588 5.608C10.1588 4.984 10.2788 4.396 10.5188 3.844C10.7588 3.292 11.0828 2.812 11.4908 2.404C11.8988 1.988 12.3788 1.66 12.9308 1.42C13.4828 1.18 14.0708 1.06 14.6948 1.06C15.3188 1.06 15.9068 1.18 16.4588 1.42C17.0108 1.66 17.4908 1.988 17.8988 2.404C18.3148 2.812 18.6428 3.292 18.8828 3.844C19.1228 4.396 19.2428 4.984 19.2428 5.608C19.2428 6.232 19.1228 6.82 18.8828 7.372C18.6428 7.924 18.3148 8.408 17.8988 8.824C17.4908 9.232 17.0108 9.556 16.4588 9.796C15.9068 10.036 15.3188 10.156 14.6948 10.156C14.0708 10.156 13.4828 10.036 12.9308 9.796C12.3788 9.556 11.8988 9.232 11.4908 8.824C11.0828 8.408 10.7588 7.924 10.5188 7.372C10.2788 6.82 10.1588 6.232 10.1588 5.608ZM12.5348 5.608C12.5348 5.912 12.5908 6.2 12.7028 6.472C12.8148 6.744 12.9668 6.984 13.1588 7.192C13.3588 7.4 13.5908 7.568 13.8548 7.696C14.1188 7.816 14.3988 7.876 14.6948 7.876C14.9908 7.876 15.2708 7.816 15.5348 7.696C15.7988 7.568 16.0308 7.4 16.2308 7.192C16.4308 6.984 16.5868 6.744 16.6988 6.472C16.8108 6.2 16.8668 5.912 16.8668 5.608C16.8668 5.312 16.8108 5.028 16.6988 4.756C16.5868 4.476 16.4308 4.236 16.2308 4.036C16.0308 3.828 15.7988 3.664 15.5348 3.544C15.2708 3.416 14.9908 3.352 14.6948 3.352C14.3988 3.352 14.1188 3.416 13.8548 3.544C13.5908 3.664 13.3588 3.828 13.1588 4.036C12.9668 4.236 12.8148 4.476 12.7028 4.756C12.5908 5.028 12.5348 5.312 12.5348 5.608ZM23.8403 6.592H20.0123C19.9323 6.592 19.8643 6.564 19.8083 6.508C19.7523 6.452 19.7243 6.384 19.7243 6.304V4.684C19.7243 4.596 19.7523 4.528 19.8083 4.48C19.8643 4.424 19.9323 4.396 20.0123 4.396H23.8403C23.9203 4.396 23.9883 4.424 24.0443 4.48C24.1003 4.528 24.1283 4.596 24.1283 4.684V6.304C24.1283 6.384 24.1003 6.452 24.0443 6.508C23.9883 6.564 23.9203 6.592 23.8403 6.592ZM27.0464 3.724V4.228C27.0464 4.308 27.0744 4.376 27.1304 4.432C27.1864 4.488 27.2544 4.516 27.3344 4.516H30.5744C30.6544 4.516 30.7224 4.544 30.7784 4.6C30.8344 4.656 30.8624 4.724 30.8624 4.804V6.484C30.8624 6.564 30.8344 6.632 30.7784 6.688C30.7224 6.744 30.6544 6.772 30.5744 6.772H27.3344C27.2544 6.772 27.1864 6.8 27.1304 6.856C27.0744 6.912 27.0464 6.98 27.0464 7.06V9.712C27.0464 9.792 27.0184 9.86 26.9624 9.916C26.9064 9.972 26.8384 10 26.7584 10H24.9464C24.8664 10 24.7984 9.972 24.7424 9.916C24.6864 9.86 24.6584 9.792 24.6584 9.712V1.504C24.6584 1.424 24.6864 1.356 24.7424 1.3C24.7984 1.244 24.8664 1.216 24.9464 1.216H31.0544C31.1344 1.216 31.2024 1.244 31.2584 1.3C31.3144 1.356 31.3424 1.424 31.3424 1.504V3.148C31.3424 3.228 31.3144 3.296 31.2584 3.352C31.2024 3.408 31.1344 3.436 31.0544 3.436H27.3344C27.2544 3.436 27.1864 3.464 27.1304 3.52C27.0744 3.576 27.0464 3.644 27.0464 3.724ZM34.3345 10H32.5225C32.4345 10 32.3625 9.972 32.3065 9.916C32.2585 9.86 32.2345 9.792 32.2345 9.712V1.516C32.2345 1.436 32.2585 1.368 32.3065 1.312C32.3625 1.256 32.4345 1.228 32.5225 1.228H34.3345C34.4145 1.228 34.4825 1.256 34.5385 1.312C34.5945 1.368 34.6225 1.436 34.6225 1.516V9.712C34.6225 9.792 34.5945 9.86 34.5385 9.916C34.4825 9.972 34.4145 10 34.3345 10ZM42.4087 8.08V9.712C42.4087 9.792 42.3807 9.86 42.3247 9.916C42.2687 9.972 42.2007 10 42.1207 10H36.1327C36.0447 10 35.9727 9.972 35.9167 9.916C35.8687 9.86 35.8447 9.792 35.8447 9.712V1.504C35.8447 1.424 35.8687 1.356 35.9167 1.3C35.9727 1.244 36.0447 1.216 36.1327 1.216H37.9327C38.0127 1.216 38.0807 1.244 38.1367 1.3C38.1927 1.356 38.2207 1.424 38.2207 1.504V7.504C38.2207 7.584 38.2447 7.652 38.2927 7.708C38.3487 7.764 38.4207 7.792 38.5087 7.792H42.1207C42.2007 7.792 42.2687 7.82 42.3247 7.876C42.3807 7.932 42.4087 8 42.4087 8.08ZM49.4315 8.08V9.712C49.4315 9.792 49.4035 9.86 49.3475 9.916C49.2915 9.972 49.2235 10 49.1435 10H43.1555C43.0675 10 42.9955 9.972 42.9395 9.916C42.8915 9.86 42.8675 9.792 42.8675 9.712V1.504C42.8675 1.424 42.8915 1.356 42.9395 1.3C42.9955 1.244 43.0675 1.216 43.1555 1.216H44.9555C45.0355 1.216 45.1035 1.244 45.1595 1.3C45.2155 1.356 45.2435 1.424 45.2435 1.504V7.504C45.2435 7.584 45.2675 7.652 45.3155 7.708C45.3715 7.764 45.4435 7.792 45.5315 7.792H49.1435C49.2235 7.792 49.2915 7.82 49.3475 7.876C49.4035 7.932 49.4315 8 49.4315 8.08ZM52.2663 3.712V4.216C52.2663 4.296 52.2943 4.364 52.3503 4.42C52.4063 4.476 52.4743 4.504 52.5543 4.504H55.8063C55.8863 4.504 55.9543 4.532 56.0103 4.588C56.0663 4.644 56.0943 4.712 56.0943 4.792V6.448C56.0943 6.528 56.0663 6.596 56.0103 6.652C55.9543 6.708 55.8863 6.736 55.8063 6.736H52.5543C52.4743 6.736 52.4063 6.764 52.3503 6.82C52.2943 6.876 52.2663 6.944 52.2663 7.024V7.48C52.2663 7.56 52.2943 7.628 52.3503 7.684C52.4063 7.74 52.4743 7.768 52.5543 7.768H56.2863C56.3663 7.768 56.4343 7.796 56.4903 7.852C56.5463 7.908 56.5743 7.976 56.5743 8.056V9.712C56.5743 9.792 56.5463 9.86 56.4903 9.916C56.4343 9.972 56.3663 10 56.2863 10H50.1783C50.0983 10 50.0303 9.972 49.9743 9.916C49.9183 9.86 49.8903 9.792 49.8903 9.712V1.504C49.8903 1.424 49.9183 1.356 49.9743 1.3C50.0303 1.244 50.0983 1.216 50.1783 1.216L56.2863 1.216C56.3663 1.216 56.4343 1.244 56.4903 1.3C56.5463 1.356 56.5743 1.424 56.5743 1.504V3.136C56.5743 3.216 56.5463 3.284 56.4903 3.34C56.4343 3.396 56.3663 3.424 56.2863 3.424H52.5543C52.4743 3.424 52.4063 3.452 52.3503 3.508C52.2943 3.564 52.2663 3.632 52.2663 3.712ZM59.8217 10H58.0337C57.9537 10 57.8857 9.972 57.8297 9.916C57.7737 9.86 57.7457 9.792 57.7457 9.712V1.504C57.7457 1.424 57.7737 1.356 57.8297 1.3C57.8857 1.244 57.9537 1.216 58.0337 1.216H61.7657C62.2297 1.216 62.6577 1.296 63.0497 1.456C63.4417 1.608 63.7737 1.824 64.0457 2.104C64.3257 2.384 64.5417 2.716 64.6937 3.1C64.8537 3.484 64.9337 3.908 64.9337 4.372C64.9337 4.628 64.9017 4.884 64.8377 5.14C64.7817 5.388 64.6977 5.624 64.5857 5.848C64.4737 6.072 64.3417 6.276 64.1897 6.46C64.0377 6.636 63.8657 6.784 63.6737 6.904C63.6097 6.952 63.5657 7.012 63.5417 7.084C63.5257 7.148 63.5417 7.212 63.5897 7.276C63.8937 7.676 64.2137 8.088 64.5497 8.512C64.8857 8.936 65.1857 9.324 65.4497 9.676C65.4977 9.74 65.5097 9.812 65.4857 9.892C65.4617 9.964 65.4097 10 65.3297 10H63.0977C63.0177 10 62.9297 9.98 62.8337 9.94C62.7457 9.892 62.6777 9.836 62.6297 9.772C62.3737 9.436 62.1177 9.096 61.8617 8.752C61.6137 8.408 61.3657 8.06 61.1177 7.708C61.0697 7.644 61.0017 7.592 60.9137 7.552C60.8257 7.504 60.7417 7.48 60.6617 7.48H60.3977C60.3177 7.48 60.2497 7.508 60.1937 7.564C60.1377 7.62 60.1097 7.688 60.1097 7.768V9.712C60.1097 9.792 60.0817 9.86 60.0257 9.916C59.9697 9.972 59.9017 10 59.8217 10ZM60.3977 5.272H61.6697C61.7657 5.272 61.8657 5.256 61.9697 5.224C62.0737 5.184 62.1697 5.128 62.2577 5.056C62.3457 4.976 62.4177 4.88 62.4737 4.768C62.5297 4.656 62.5577 4.524 62.5577 4.372C62.5577 4.292 62.5417 4.2 62.5097 4.096C62.4857 3.984 62.4377 3.88 62.3657 3.784C62.3017 3.68 62.2097 3.596 62.0897 3.532C61.9777 3.46 61.8377 3.424 61.6697 3.424H60.3977C60.3177 3.424 60.2497 3.452 60.1937 3.508C60.1377 3.564 60.1097 3.632 60.1097 3.712V4.984C60.1097 5.064 60.1377 5.132 60.1937 5.188C60.2497 5.244 60.3177 5.272 60.3977 5.272ZM67.0064 6.988C67.4384 7.268 67.8664 7.488 68.2904 7.648C68.7144 7.808 69.1104 7.888 69.4784 7.888C69.8304 7.888 70.0984 7.84 70.2824 7.744C70.4664 7.64 70.5584 7.488 70.5584 7.288C70.5584 7.184 70.5184 7.104 70.4384 7.048C70.3584 6.984 70.2504 6.932 70.1144 6.892C69.9864 6.852 69.8344 6.82 69.6584 6.796C69.4824 6.772 69.3024 6.74 69.1184 6.7C68.9424 6.668 68.7344 6.632 68.4944 6.592C68.2624 6.544 68.0224 6.48 67.7744 6.4C67.5264 6.312 67.2784 6.204 67.0304 6.076C66.7904 5.948 66.5744 5.784 66.3824 5.584C66.1904 5.384 66.0344 5.148 65.9144 4.876C65.8024 4.596 65.7464 4.268 65.7464 3.892C65.7464 3.34 65.8544 2.884 66.0704 2.524C66.2864 2.164 66.5584 1.88 66.8864 1.672C67.2224 1.456 67.5944 1.308 68.0024 1.228C68.4104 1.14 68.8064 1.096 69.1904 1.096C69.8624 1.096 70.4624 1.196 70.9904 1.396C71.5264 1.588 72.0384 1.872 72.5264 2.248C72.5904 2.304 72.6264 2.372 72.6344 2.452C72.6424 2.532 72.6224 2.604 72.5744 2.668L71.6384 4C71.5904 4.064 71.5264 4.104 71.4464 4.12C71.3664 4.136 71.2944 4.12 71.2304 4.072C70.8224 3.816 70.4424 3.636 70.0904 3.532C69.7384 3.42 69.4144 3.364 69.1184 3.364C69.0304 3.364 68.9264 3.368 68.8064 3.376C68.6944 3.376 68.5864 3.392 68.4824 3.424C68.3784 3.448 68.2904 3.492 68.2184 3.556C68.1544 3.62 68.1224 3.708 68.1224 3.82C68.1224 3.932 68.2064 4.032 68.3744 4.12C68.5424 4.208 68.7344 4.284 68.9504 4.348C69.1664 4.412 69.3744 4.464 69.5744 4.504C69.7744 4.536 69.9024 4.556 69.9584 4.564C70.2464 4.62 70.5624 4.704 70.9064 4.816C71.2504 4.92 71.5704 5.08 71.8664 5.296C72.1704 5.504 72.4224 5.78 72.6224 6.124C72.8304 6.46 72.9344 6.884 72.9344 7.396C72.9344 7.876 72.8504 8.292 72.6824 8.644C72.5144 8.988 72.2784 9.272 71.9744 9.496C71.6784 9.72 71.3184 9.888 70.8944 10C70.4784 10.104 70.0144 10.156 69.5024 10.156C69.0864 10.156 68.6984 10.12 68.3384 10.048C67.9784 9.984 67.6424 9.892 67.3304 9.772C67.0184 9.652 66.7264 9.512 66.4544 9.352C66.1904 9.184 65.9464 9.008 65.7224 8.824C65.6584 8.776 65.6224 8.712 65.6144 8.632C65.6064 8.544 65.6264 8.468 65.6744 8.404L66.5984 7.072C66.6464 7.008 66.7104 6.968 66.7904 6.952C66.8704 6.936 66.9424 6.948 67.0064 6.988Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-byx9qx\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:88,layoutDependency:layoutDependency,layoutId:\"F08i7nA93\",svg:'<svg width=\"88\" height=\"15\" viewBox=\"-1 -1 88 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M0.0932492 1.564C0.0532492 1.468 0.0492492 1.388 0.0812492 1.324C0.121249 1.252 0.185249 1.216 0.273249 1.216H2.22925C2.30925 1.216 2.38525 1.244 2.45725 1.3C2.52925 1.348 2.57725 1.408 2.60125 1.48L3.96925 5.476C3.99325 5.556 4.03325 5.596 4.08925 5.596C4.15325 5.596 4.19725 5.556 4.22125 5.476L5.54125 1.492C5.56525 1.412 5.61325 1.348 5.68525 1.3C5.75725 1.244 5.83725 1.216 5.92525 1.216H7.52125C7.60925 1.216 7.68925 1.244 7.76125 1.3C7.83325 1.348 7.88125 1.412 7.90525 1.492L9.22525 5.5C9.24925 5.58 9.28925 5.62 9.34525 5.62C9.40925 5.62 9.45725 5.58 9.48925 5.5L10.8692 1.48C10.9012 1.408 10.9532 1.348 11.0252 1.3C11.0972 1.244 11.1772 1.216 11.2652 1.216H13.2093C13.2972 1.216 13.3572 1.252 13.3893 1.324C13.4212 1.388 13.4252 1.456 13.4012 1.528L10.4972 9.724C10.4652 9.804 10.4132 9.872 10.3412 9.928C10.2692 9.976 10.1892 10 10.1012 10H8.55325C8.46525 10 8.38525 9.976 8.31325 9.928C8.24125 9.872 8.19325 9.804 8.16925 9.724L6.84925 5.728C6.82525 5.648 6.78125 5.608 6.71725 5.608C6.66125 5.608 6.62125 5.648 6.59725 5.728L5.27725 9.724C5.25325 9.804 5.20525 9.872 5.13325 9.928C5.06125 9.976 4.98125 10 4.89325 10H3.34525C3.25725 10 3.17725 9.972 3.10525 9.916C3.03325 9.852 2.98925 9.788 2.97325 9.724L0.0932492 1.564ZM21.8925 1.504V9.712C21.8925 9.792 21.8645 9.86 21.8085 9.916C21.7525 9.972 21.6845 10 21.6045 10H19.8045C19.7165 10 19.6445 9.972 19.5885 9.916C19.5405 9.86 19.5165 9.792 19.5165 9.712V7.144C19.5165 7.064 19.4885 6.996 19.4325 6.94C19.3765 6.884 19.3085 6.856 19.2285 6.856H16.7565C16.6685 6.856 16.5965 6.884 16.5405 6.94C16.4925 6.996 16.4685 7.064 16.4685 7.144V9.712C16.4685 9.792 16.4405 9.86 16.3845 9.916C16.3285 9.972 16.2605 10 16.1805 10H14.3925C14.3045 10 14.2325 9.972 14.1765 9.916C14.1285 9.86 14.1045 9.792 14.1045 9.712V1.504C14.1045 1.424 14.1285 1.356 14.1765 1.3C14.2325 1.244 14.3045 1.216 14.3925 1.216H16.1805C16.2605 1.216 16.3285 1.244 16.3845 1.3C16.4405 1.356 16.4685 1.424 16.4685 1.504V4.348C16.4685 4.428 16.4925 4.496 16.5405 4.552C16.5965 4.608 16.6685 4.636 16.7565 4.636H19.2285C19.3085 4.636 19.3765 4.608 19.4325 4.552C19.4885 4.496 19.5165 4.428 19.5165 4.348V1.504C19.5165 1.424 19.5405 1.356 19.5885 1.3C19.6445 1.244 19.7165 1.216 19.8045 1.216H21.6045C21.6845 1.216 21.7525 1.244 21.8085 1.3C21.8645 1.356 21.8925 1.424 21.8925 1.504ZM25.5529 3.712V4.216C25.5529 4.296 25.5809 4.364 25.6369 4.42C25.6929 4.476 25.7609 4.504 25.8409 4.504H29.0929C29.1729 4.504 29.2409 4.532 29.2969 4.588C29.3529 4.644 29.3809 4.712 29.3809 4.792V6.448C29.3809 6.528 29.3529 6.596 29.2969 6.652C29.2409 6.708 29.1729 6.736 29.0929 6.736H25.8409C25.7609 6.736 25.6929 6.764 25.6369 6.82C25.5809 6.876 25.5529 6.944 25.5529 7.024V7.48C25.5529 7.56 25.5809 7.628 25.6369 7.684C25.6929 7.74 25.7609 7.768 25.8409 7.768H29.5729C29.6529 7.768 29.7209 7.796 29.7769 7.852C29.8329 7.908 29.8609 7.976 29.8609 8.056V9.712C29.8609 9.792 29.8329 9.86 29.7769 9.916C29.7209 9.972 29.6529 10 29.5729 10H23.4649C23.3849 10 23.3169 9.972 23.2609 9.916C23.2049 9.86 23.1769 9.792 23.1769 9.712V1.504C23.1769 1.424 23.2049 1.356 23.2609 1.3C23.3169 1.244 23.3849 1.216 23.4649 1.216H29.5729C29.6529 1.216 29.7209 1.244 29.7769 1.3C29.8329 1.356 29.8609 1.424 29.8609 1.504V3.136C29.8609 3.216 29.8329 3.284 29.7769 3.34C29.7209 3.396 29.6529 3.424 29.5729 3.424H25.8409C25.7609 3.424 25.6929 3.452 25.6369 3.508C25.5809 3.564 25.5529 3.632 25.5529 3.712ZM33.5537 1.492C33.5857 1.42 33.6377 1.36 33.7097 1.312C33.7897 1.256 33.8737 1.228 33.9617 1.228H35.6417C35.7217 1.228 35.7977 1.256 35.8697 1.312C35.9497 1.36 36.0057 1.42 36.0377 1.492L39.5417 9.652C39.5738 9.724 39.5657 9.8 39.5177 9.88C39.4777 9.96 39.3937 10 39.2657 10H37.2137C37.1257 10 37.0417 9.976 36.9617 9.928C36.8897 9.872 36.8337 9.808 36.7937 9.736L36.4697 9.016C36.4297 8.944 36.3697 8.884 36.2897 8.836C36.2177 8.78 36.1417 8.752 36.0617 8.752H33.5297C33.4417 8.752 33.3577 8.78 33.2777 8.836C33.2057 8.884 33.1537 8.944 33.1217 9.016L32.7857 9.736C32.7537 9.808 32.6977 9.872 32.6177 9.928C32.5457 9.976 32.4697 10 32.3897 10H30.3257C30.2857 10 30.2457 9.992 30.2057 9.976C30.1577 9.96 30.1217 9.936 30.0977 9.904C30.0657 9.872 30.0457 9.832 30.0377 9.784C30.0297 9.736 30.0417 9.68 30.0737 9.616L33.5537 1.492ZM34.2617 6.712H35.3297C35.4097 6.712 35.4657 6.688 35.4977 6.64C35.5377 6.584 35.5377 6.52 35.4977 6.448C35.4177 6.248 35.3217 6.016 35.2097 5.752C35.0977 5.48 34.9937 5.228 34.8977 4.996C34.8657 4.924 34.8297 4.888 34.7897 4.888C34.7497 4.888 34.7137 4.924 34.6817 4.996L34.0817 6.448C34.0497 6.52 34.0497 6.584 34.0817 6.64C34.1137 6.688 34.1737 6.712 34.2617 6.712ZM44.8694 3.424H43.1894C43.1094 3.424 43.0414 3.452 42.9854 3.508C42.9294 3.564 42.9014 3.632 42.9014 3.712V9.712C42.9014 9.792 42.8734 9.86 42.8174 9.916C42.7694 9.972 42.7014 10 42.6134 10H40.8134C40.7334 10 40.6654 9.972 40.6094 9.916C40.5534 9.86 40.5254 9.792 40.5254 9.712V3.712C40.5254 3.632 40.4974 3.564 40.4414 3.508C40.3934 3.452 40.3254 3.424 40.2374 3.424H38.5334C38.4534 3.424 38.3854 3.396 38.3294 3.34C38.2734 3.284 38.2454 3.216 38.2454 3.136V1.504C38.2454 1.424 38.2734 1.356 38.3294 1.3C38.3854 1.244 38.4534 1.216 38.5334 1.216H44.8694C44.9574 1.216 45.0254 1.244 45.0734 1.3C45.1294 1.356 45.1574 1.424 45.1574 1.504V3.136C45.1574 3.216 45.1294 3.284 45.0734 3.34C45.0254 3.396 44.9574 3.424 44.8694 3.424ZM54.9118 10.048L54.2638 9.388C54.1998 9.324 54.1278 9.292 54.0478 9.292C53.9758 9.292 53.9078 9.32 53.8438 9.376C53.6518 9.544 53.4598 9.676 53.2678 9.772C53.0838 9.868 52.9038 9.944 52.7278 10C52.5518 10.056 52.3838 10.092 52.2238 10.108C52.0718 10.124 51.9318 10.132 51.8038 10.132C51.0118 10.132 50.3678 9.928 49.8718 9.52C49.3758 9.112 49.0878 8.568 49.0078 7.888C48.9438 7.384 49.0078 6.944 49.1998 6.568C49.3918 6.192 49.6798 5.844 50.0638 5.524C50.0798 5.508 50.0998 5.492 50.1238 5.476C50.1558 5.452 50.2038 5.416 50.2678 5.368C50.3318 5.32 50.3678 5.26 50.3758 5.188C50.3838 5.108 50.3678 5.032 50.3278 4.96C49.9998 4.4 49.8718 3.812 49.9438 3.196C49.9838 2.884 50.0758 2.6 50.2198 2.344C50.3718 2.08 50.5558 1.856 50.7718 1.672C50.9958 1.488 51.2478 1.344 51.5278 1.24C51.8078 1.136 52.0998 1.084 52.4038 1.084C52.8678 1.084 53.3038 1.2 53.7118 1.432C54.1198 1.656 54.4198 1.984 54.6118 2.416C54.7398 2.704 54.8078 2.992 54.8158 3.28C54.8238 3.568 54.7838 3.844 54.6958 4.108C54.6158 4.372 54.4918 4.62 54.3238 4.852C54.1558 5.084 53.9598 5.288 53.7358 5.464C53.6718 5.512 53.6358 5.572 53.6278 5.644C53.6198 5.708 53.6438 5.772 53.6998 5.836L53.8918 6.016C53.9478 6.08 54.0078 6.108 54.0718 6.1C54.1438 6.084 54.1998 6.044 54.2398 5.98C54.3198 5.844 54.3918 5.716 54.4558 5.596C54.5278 5.476 54.5838 5.372 54.6238 5.284C54.6638 5.212 54.7198 5.164 54.7918 5.14C54.8638 5.108 54.9398 5.108 55.0198 5.14L56.3278 5.716C56.3998 5.748 56.4478 5.8 56.4718 5.872C56.5038 5.944 56.4998 6.016 56.4598 6.088C56.3798 6.232 56.2678 6.424 56.1238 6.664C55.9878 6.896 55.8278 7.148 55.6438 7.42C55.5958 7.484 55.5718 7.56 55.5718 7.648C55.5798 7.736 55.6118 7.808 55.6678 7.864C55.8038 8.008 55.9358 8.152 56.0638 8.296C56.1998 8.432 56.3278 8.568 56.4478 8.704C56.5038 8.768 56.5278 8.84 56.5198 8.92C56.5198 8.992 56.4878 9.052 56.4238 9.1L55.3318 10.06C55.2678 10.116 55.1958 10.14 55.1158 10.132C55.0358 10.132 54.9678 10.104 54.9118 10.048ZM51.3958 6.808C51.2918 6.872 51.1998 6.972 51.1198 7.108C51.0478 7.236 51.0318 7.416 51.0718 7.648C51.1038 7.832 51.1758 7.972 51.2878 8.068C51.3998 8.164 51.5278 8.224 51.6718 8.248C51.8158 8.264 51.9638 8.252 52.1158 8.212C52.2758 8.164 52.4158 8.096 52.5358 8.008C52.5998 7.96 52.6278 7.896 52.6198 7.816C52.6198 7.728 52.5918 7.652 52.5358 7.588L51.8398 6.868C51.7838 6.804 51.7118 6.768 51.6238 6.76C51.5358 6.744 51.4598 6.76 51.3958 6.808ZM52.4398 4.06C52.5838 3.964 52.6838 3.848 52.7398 3.712C52.8038 3.576 52.8318 3.448 52.8238 3.328C52.8158 3.2 52.7718 3.096 52.6918 3.016C52.6198 2.928 52.5198 2.884 52.3918 2.884C52.2958 2.884 52.1998 2.924 52.1038 3.004C52.0158 3.076 51.9598 3.196 51.9358 3.364C51.9198 3.452 51.9238 3.548 51.9478 3.652C51.9718 3.756 52.0038 3.856 52.0438 3.952C52.0758 4.024 52.1318 4.072 52.2118 4.096C52.2998 4.12 52.3758 4.108 52.4398 4.06ZM62.0562 6.988C62.4882 7.268 62.9162 7.488 63.3402 7.648C63.7642 7.808 64.1602 7.888 64.5282 7.888C64.8802 7.888 65.1482 7.84 65.3322 7.744C65.5162 7.64 65.6082 7.488 65.6082 7.288C65.6082 7.184 65.5682 7.104 65.4882 7.048C65.4082 6.984 65.3002 6.932 65.1642 6.892C65.0362 6.852 64.8842 6.82 64.7082 6.796C64.5322 6.772 64.3522 6.74 64.1682 6.7C63.9922 6.668 63.7842 6.632 63.5442 6.592C63.3122 6.544 63.0722 6.48 62.8242 6.4C62.5762 6.312 62.3282 6.204 62.0802 6.076C61.8402 5.948 61.6242 5.784 61.4322 5.584C61.2402 5.384 61.0842 5.148 60.9642 4.876C60.8522 4.596 60.7962 4.268 60.7962 3.892C60.7962 3.34 60.9042 2.884 61.1202 2.524C61.3362 2.164 61.6082 1.88 61.9362 1.672C62.2722 1.456 62.6442 1.308 63.0522 1.228C63.4602 1.14 63.8562 1.096 64.2402 1.096C64.9122 1.096 65.5122 1.196 66.0402 1.396C66.5762 1.588 67.0882 1.872 67.5762 2.248C67.6402 2.304 67.6762 2.372 67.6842 2.452C67.6922 2.532 67.6722 2.604 67.6242 2.668L66.6882 4C66.6402 4.064 66.5762 4.104 66.4962 4.12C66.4162 4.136 66.3442 4.12 66.2802 4.072C65.8722 3.816 65.4922 3.636 65.1402 3.532C64.7882 3.42 64.4642 3.364 64.1682 3.364C64.0802 3.364 63.9762 3.368 63.8562 3.376C63.7442 3.376 63.6362 3.392 63.5322 3.424C63.4282 3.448 63.3402 3.492 63.2682 3.556C63.2042 3.62 63.1722 3.708 63.1722 3.82C63.1722 3.932 63.2562 4.032 63.4242 4.12C63.5922 4.208 63.7842 4.284 64.0002 4.348C64.2162 4.412 64.4242 4.464 64.6242 4.504C64.8242 4.536 64.9522 4.556 65.0082 4.564C65.2962 4.62 65.6122 4.704 65.9562 4.816C66.3002 4.92 66.6202 5.08 66.9162 5.296C67.2202 5.504 67.4722 5.78 67.6722 6.124C67.8802 6.46 67.9842 6.884 67.9842 7.396C67.9842 7.876 67.9002 8.292 67.7322 8.644C67.5642 8.988 67.3282 9.272 67.0242 9.496C66.7282 9.72 66.3682 9.888 65.9442 10C65.5282 10.104 65.0642 10.156 64.5522 10.156C64.1362 10.156 63.7482 10.12 63.3882 10.048C63.0282 9.984 62.6922 9.892 62.3802 9.772C62.0682 9.652 61.7762 9.512 61.5042 9.352C61.2402 9.184 60.9962 9.008 60.7722 8.824C60.7082 8.776 60.6722 8.712 60.6642 8.632C60.6562 8.544 60.6762 8.468 60.7242 8.404L61.6482 7.072C61.6962 7.008 61.7602 6.968 61.8402 6.952C61.9202 6.936 61.9922 6.948 62.0562 6.988ZM68.4724 5.608C68.4724 4.984 68.5924 4.396 68.8324 3.844C69.0724 3.292 69.3964 2.812 69.8044 2.404C70.2124 1.988 70.6924 1.66 71.2444 1.42C71.7964 1.18 72.3844 1.06 73.0084 1.06C73.6324 1.06 74.2204 1.18 74.7724 1.42C75.3244 1.66 75.8044 1.988 76.2124 2.404C76.6284 2.812 76.9564 3.292 77.1964 3.844C77.4364 4.396 77.5564 4.984 77.5564 5.608C77.5564 6.232 77.4364 6.82 77.1964 7.372C76.9564 7.924 76.6284 8.408 76.2124 8.824C75.8044 9.232 75.3244 9.556 74.7724 9.796C74.2204 10.036 73.6324 10.156 73.0084 10.156C72.3844 10.156 71.7964 10.036 71.2444 9.796C70.6924 9.556 70.2124 9.232 69.8044 8.824C69.3964 8.408 69.0724 7.924 68.8324 7.372C68.5924 6.82 68.4724 6.232 68.4724 5.608ZM70.8484 5.608C70.8484 5.912 70.9044 6.2 71.0164 6.472C71.1284 6.744 71.2804 6.984 71.4724 7.192C71.6724 7.4 71.9044 7.568 72.1684 7.696C72.4324 7.816 72.7124 7.876 73.0084 7.876C73.3044 7.876 73.5844 7.816 73.8484 7.696C74.1124 7.568 74.3444 7.4 74.5444 7.192C74.7444 6.984 74.9004 6.744 75.0124 6.472C75.1244 6.2 75.1804 5.912 75.1804 5.608C75.1804 5.312 75.1244 5.028 75.0124 4.756C74.9004 4.476 74.7444 4.236 74.5444 4.036C74.3444 3.828 74.1124 3.664 73.8484 3.544C73.5844 3.416 73.3044 3.352 73.0084 3.352C72.7124 3.352 72.4324 3.416 72.1684 3.544C71.9044 3.664 71.6724 3.828 71.4724 4.036C71.2804 4.236 71.1284 4.476 71.0164 4.756C70.9044 5.028 70.8484 5.312 70.8484 5.608ZM85.8109 1.564L82.8109 6.424C82.7709 6.496 82.7349 6.584 82.7029 6.688C82.6709 6.792 82.6549 6.884 82.6549 6.964V9.712C82.6549 9.792 82.6269 9.86 82.5709 9.916C82.5149 9.972 82.4469 10 82.3669 10H80.5549C80.4749 10 80.4069 9.972 80.3509 9.916C80.2949 9.86 80.2669 9.792 80.2669 9.712V6.976C80.2669 6.896 80.2509 6.804 80.2189 6.7C80.1949 6.588 80.1629 6.5 80.1229 6.436C79.6429 5.612 79.1509 4.804 78.6469 4.012C78.1509 3.22 77.6549 2.404 77.1589 1.564C77.1189 1.492 77.1109 1.42 77.1349 1.348C77.1589 1.268 77.2109 1.228 77.2909 1.228H79.4269C79.5069 1.228 79.5869 1.252 79.6669 1.3C79.7549 1.348 79.8189 1.408 79.8589 1.48L81.3349 4.048C81.3749 4.112 81.4229 4.144 81.4789 4.144C81.5349 4.144 81.5829 4.112 81.6229 4.048L83.0869 1.48C83.1269 1.408 83.1869 1.348 83.2669 1.3C83.3549 1.252 83.4389 1.228 83.5189 1.228L85.6789 1.228C85.7589 1.228 85.8149 1.256 85.8469 1.312C85.8869 1.368 85.8749 1.452 85.8109 1.564Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ydd9iw\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"Let45mydW\",svg:'<svg width=\"90\" height=\"15\" viewBox=\"-1 -1 90 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M11.8303 10H10.0423C9.9623 10 9.8943 9.972 9.8383 9.916C9.7823 9.86 9.7543 9.792 9.7543 9.712V1.504C9.7543 1.424 9.7823 1.356 9.8383 1.3C9.8943 1.244 9.9623 1.216 10.0423 1.216H13.7743C14.2383 1.216 14.6663 1.296 15.0583 1.456C15.4503 1.608 15.7823 1.824 16.0543 2.104C16.3343 2.384 16.5503 2.716 16.7023 3.1C16.8623 3.484 16.9423 3.908 16.9423 4.372C16.9423 4.628 16.9103 4.884 16.8463 5.14C16.7903 5.388 16.7063 5.624 16.5943 5.848C16.4823 6.072 16.3503 6.276 16.1983 6.46C16.0463 6.636 15.8743 6.784 15.6823 6.904C15.6183 6.952 15.5743 7.012 15.5503 7.084C15.5343 7.148 15.5503 7.212 15.5983 7.276C15.9023 7.676 16.2223 8.088 16.5583 8.512C16.8943 8.936 17.1943 9.324 17.4583 9.676C17.5063 9.74 17.5183 9.812 17.4943 9.892C17.4703 9.964 17.4183 10 17.3383 10H15.1063C15.0263 10 14.9383 9.98 14.8423 9.94C14.7543 9.892 14.6863 9.836 14.6383 9.772C14.3823 9.436 14.1263 9.096 13.8703 8.752C13.6223 8.408 13.3743 8.06 13.1263 7.708C13.0783 7.644 13.0103 7.592 12.9223 7.552C12.8343 7.504 12.7503 7.48 12.6703 7.48H12.4063C12.3263 7.48 12.2583 7.508 12.2023 7.564C12.1463 7.62 12.1183 7.688 12.1183 7.768V9.712C12.1183 9.792 12.0903 9.86 12.0343 9.916C11.9783 9.972 11.9103 10 11.8303 10ZM12.4063 5.272H13.6783C13.7743 5.272 13.8743 5.256 13.9783 5.224C14.0823 5.184 14.1783 5.128 14.2663 5.056C14.3543 4.976 14.4263 4.88 14.4823 4.768C14.5383 4.656 14.5663 4.524 14.5663 4.372C14.5663 4.292 14.5503 4.2 14.5183 4.096C14.4943 3.984 14.4463 3.88 14.3743 3.784C14.3103 3.68 14.2183 3.596 14.0983 3.532C13.9863 3.46 13.8463 3.424 13.6783 3.424H12.4063C12.3263 3.424 12.2583 3.452 12.2023 3.508C12.1463 3.564 12.1183 3.632 12.1183 3.712V4.984C12.1183 5.064 12.1463 5.132 12.2023 5.188C12.2583 5.244 12.3263 5.272 12.4063 5.272ZM20.383 3.712V4.216C20.383 4.296 20.411 4.364 20.467 4.42C20.523 4.476 20.591 4.504 20.671 4.504H23.923C24.003 4.504 24.071 4.532 24.127 4.588C24.183 4.644 24.211 4.712 24.211 4.792V6.448C24.211 6.528 24.183 6.596 24.127 6.652C24.071 6.708 24.003 6.736 23.923 6.736H20.671C20.591 6.736 20.523 6.764 20.467 6.82C20.411 6.876 20.383 6.944 20.383 7.024V7.48C20.383 7.56 20.411 7.628 20.467 7.684C20.523 7.74 20.591 7.768 20.671 7.768H24.403C24.483 7.768 24.551 7.796 24.607 7.852C24.663 7.908 24.691 7.976 24.691 8.056V9.712C24.691 9.792 24.663 9.86 24.607 9.916C24.551 9.972 24.483 10 24.403 10H18.295C18.215 10 18.147 9.972 18.091 9.916C18.035 9.86 18.007 9.792 18.007 9.712V1.504C18.007 1.424 18.035 1.356 18.091 1.3C18.147 1.244 18.215 1.216 18.295 1.216H24.403C24.483 1.216 24.551 1.244 24.607 1.3C24.663 1.356 24.691 1.424 24.691 1.504V3.136C24.691 3.216 24.663 3.284 24.607 3.34C24.551 3.396 24.483 3.424 24.403 3.424H20.671C20.591 3.424 20.523 3.452 20.467 3.508C20.411 3.564 20.383 3.632 20.383 3.712ZM28.3838 1.492C28.4158 1.42 28.4678 1.36 28.5398 1.312C28.6198 1.256 28.7038 1.228 28.7918 1.228H30.4718C30.5518 1.228 30.6278 1.256 30.6998 1.312C30.7798 1.36 30.8358 1.42 30.8678 1.492L34.3718 9.652C34.4038 9.724 34.3958 9.8 34.3478 9.88C34.3078 9.96 34.2238 10 34.0958 10H32.0438C31.9558 10 31.8718 9.976 31.7918 9.928C31.7198 9.872 31.6638 9.808 31.6238 9.736L31.2998 9.016C31.2598 8.944 31.1998 8.884 31.1198 8.836C31.0478 8.78 30.9718 8.752 30.8918 8.752H28.3598C28.2718 8.752 28.1878 8.78 28.1078 8.836C28.0358 8.884 27.9838 8.944 27.9518 9.016L27.6158 9.736C27.5838 9.808 27.5278 9.872 27.4478 9.928C27.3758 9.976 27.2998 10 27.2198 10H25.1558C25.1158 10 25.0758 9.992 25.0358 9.976C24.9878 9.96 24.9518 9.936 24.9278 9.904C24.8958 9.872 24.8758 9.832 24.8678 9.784C24.8598 9.736 24.8718 9.68 24.9038 9.616L28.3838 1.492ZM29.0918 6.712H30.1598C30.2398 6.712 30.2958 6.688 30.3278 6.64C30.3678 6.584 30.3678 6.52 30.3278 6.448C30.2478 6.248 30.1518 6.016 30.0398 5.752C29.9278 5.48 29.8238 5.228 29.7278 4.996C29.6958 4.924 29.6598 4.888 29.6198 4.888C29.5798 4.888 29.5438 4.924 29.5118 4.996L28.9118 6.448C28.8798 6.52 28.8798 6.584 28.9118 6.64C28.9438 6.688 29.0038 6.712 29.0918 6.712ZM41.1127 8.08V9.712C41.1127 9.792 41.0847 9.86 41.0287 9.916C40.9727 9.972 40.9047 10 40.8247 10H34.8367C34.7487 10 34.6767 9.972 34.6207 9.916C34.5727 9.86 34.5487 9.792 34.5487 9.712V1.504C34.5487 1.424 34.5727 1.356 34.6207 1.3C34.6767 1.244 34.7487 1.216 34.8367 1.216H36.6367C36.7167 1.216 36.7847 1.244 36.8407 1.3C36.8967 1.356 36.9247 1.424 36.9247 1.504V7.504C36.9247 7.584 36.9487 7.652 36.9967 7.708C37.0527 7.764 37.1247 7.792 37.2127 7.792H40.8247C40.9047 7.792 40.9727 7.82 41.0287 7.876C41.0847 7.932 41.1127 8 41.1127 8.08ZM55.1291 1.516V9.712C55.1291 9.792 55.1011 9.86 55.0451 9.916C54.9891 9.972 54.9211 10 54.8411 10H53.0291C52.9491 10 52.8811 9.972 52.8251 9.916C52.7691 9.86 52.7411 9.792 52.7411 9.712V5.848C52.7411 5.768 52.7051 5.724 52.6331 5.716C52.5611 5.708 52.5011 5.736 52.4531 5.8L50.4371 9.052C50.3971 9.116 50.3331 9.148 50.2451 9.148C50.1571 9.148 50.0891 9.116 50.0411 9.052L48.0251 5.8C47.9851 5.736 47.9291 5.708 47.8571 5.716C47.7851 5.724 47.7491 5.768 47.7491 5.848V9.712C47.7491 9.792 47.7211 9.86 47.6651 9.916C47.6091 9.972 47.5411 10 47.4611 10H45.6491C45.5691 10 45.5011 9.972 45.4451 9.916C45.3891 9.86 45.3611 9.792 45.3611 9.712V1.516C45.3611 1.436 45.3891 1.368 45.4451 1.312C45.5011 1.256 45.5691 1.228 45.6491 1.228H47.3291C47.4091 1.228 47.4931 1.252 47.5811 1.3C47.6691 1.348 47.7331 1.404 47.7731 1.468L50.0771 4.852C50.1251 4.916 50.1811 4.948 50.2451 4.948C50.3091 4.948 50.3611 4.916 50.4011 4.852L52.7051 1.468C52.7531 1.404 52.8211 1.348 52.9091 1.3C52.9971 1.252 53.0811 1.228 53.1611 1.228H54.8411C54.9211 1.228 54.9891 1.256 55.0451 1.312C55.1011 1.368 55.1291 1.436 55.1291 1.516ZM59.0244 3.712V4.216C59.0244 4.296 59.0524 4.364 59.1084 4.42C59.1644 4.476 59.2324 4.504 59.3124 4.504H62.5644C62.6444 4.504 62.7124 4.532 62.7684 4.588C62.8244 4.644 62.8524 4.712 62.8524 4.792V6.448C62.8524 6.528 62.8244 6.596 62.7684 6.652C62.7124 6.708 62.6444 6.736 62.5644 6.736H59.3124C59.2324 6.736 59.1644 6.764 59.1084 6.82C59.0524 6.876 59.0244 6.944 59.0244 7.024V7.48C59.0244 7.56 59.0524 7.628 59.1084 7.684C59.1644 7.74 59.2324 7.768 59.3124 7.768H63.0444C63.1244 7.768 63.1924 7.796 63.2484 7.852C63.3044 7.908 63.3324 7.976 63.3324 8.056V9.712C63.3324 9.792 63.3044 9.86 63.2484 9.916C63.1924 9.972 63.1244 10 63.0444 10H56.9364C56.8564 10 56.7884 9.972 56.7324 9.916C56.6764 9.86 56.6484 9.792 56.6484 9.712V1.504C56.6484 1.424 56.6764 1.356 56.7324 1.3C56.7884 1.244 56.8564 1.216 56.9364 1.216H63.0444C63.1244 1.216 63.1924 1.244 63.2484 1.3C63.3044 1.356 63.3324 1.424 63.3324 1.504V3.136C63.3324 3.216 63.3044 3.284 63.2484 3.34C63.1924 3.396 63.1244 3.424 63.0444 3.424H59.3124C59.2324 3.424 59.1644 3.452 59.1084 3.508C59.0524 3.564 59.0244 3.632 59.0244 3.712ZM67.0252 1.492C67.0572 1.42 67.1092 1.36 67.1812 1.312C67.2612 1.256 67.3452 1.228 67.4332 1.228H69.1132C69.1932 1.228 69.2692 1.256 69.3412 1.312C69.4212 1.36 69.4772 1.42 69.5092 1.492L73.0132 9.652C73.0452 9.724 73.0372 9.8 72.9892 9.88C72.9492 9.96 72.8652 10 72.7372 10H70.6852C70.5972 10 70.5132 9.976 70.4332 9.928C70.3612 9.872 70.3052 9.808 70.2652 9.736L69.9412 9.016C69.9012 8.944 69.8412 8.884 69.7612 8.836C69.6892 8.78 69.6132 8.752 69.5332 8.752H67.0012C66.9132 8.752 66.8292 8.78 66.7492 8.836C66.6772 8.884 66.6252 8.944 66.5932 9.016L66.2572 9.736C66.2252 9.808 66.1692 9.872 66.0892 9.928C66.0172 9.976 65.9412 10 65.8612 10H63.7972C63.7572 10 63.7172 9.992 63.6772 9.976C63.6292 9.96 63.5932 9.936 63.5692 9.904C63.5372 9.872 63.5172 9.832 63.5092 9.784C63.5012 9.736 63.5132 9.68 63.5452 9.616L67.0252 1.492ZM67.7332 6.712L68.8012 6.712C68.8812 6.712 68.9372 6.688 68.9692 6.64C69.0092 6.584 69.0092 6.52 68.9692 6.448C68.8892 6.248 68.7932 6.016 68.6812 5.752C68.5692 5.48 68.4652 5.228 68.3692 4.996C68.3372 4.924 68.3012 4.888 68.2612 4.888C68.2212 4.888 68.1852 4.924 68.1532 4.996L67.5532 6.448C67.5212 6.52 67.5212 6.584 67.5532 6.64C67.5852 6.688 67.6452 6.712 67.7332 6.712ZM78.3409 3.424H76.6609C76.5809 3.424 76.5129 3.452 76.4569 3.508C76.4009 3.564 76.3729 3.632 76.3729 3.712V9.712C76.3729 9.792 76.3449 9.86 76.2889 9.916C76.2409 9.972 76.1729 10 76.0849 10H74.2849C74.2049 10 74.1369 9.972 74.0809 9.916C74.0249 9.86 73.9969 9.792 73.9969 9.712V3.712C73.9969 3.632 73.9689 3.564 73.9129 3.508C73.8649 3.452 73.7969 3.424 73.7089 3.424H72.0049C71.9249 3.424 71.8569 3.396 71.8009 3.34C71.7449 3.284 71.7169 3.216 71.7169 3.136V1.504C71.7169 1.424 71.7449 1.356 71.8009 1.3C71.8569 1.244 71.9249 1.216 72.0049 1.216H78.3409C78.4289 1.216 78.4969 1.244 78.5449 1.3C78.6009 1.356 78.6289 1.424 78.6289 1.504V3.136C78.6289 3.216 78.6009 3.284 78.5449 3.34C78.4969 3.396 78.4289 3.424 78.3409 3.424Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gweqaj\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"kx0Q4hzaZ\",svg:'<svg width=\"90\" height=\"15\" viewBox=\"-1 -1 90 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M7.17875 5.476C7.30675 5.548 7.43475 5.636 7.56275 5.74C7.69075 5.844 7.80675 5.972 7.91075 6.124C8.02275 6.276 8.11075 6.452 8.17475 6.652C8.24675 6.852 8.28275 7.08 8.28275 7.336C8.28275 7.856 8.19875 8.288 8.03075 8.632C7.87075 8.968 7.65075 9.24 7.37075 9.448C7.09075 9.648 6.76675 9.792 6.39875 9.88C6.03875 9.96 5.65875 10 5.25875 10H1.45475C1.37475 10 1.30675 9.972 1.25075 9.916C1.19475 9.86 1.16675 9.792 1.16675 9.712V1.504C1.16675 1.424 1.19475 1.356 1.25075 1.3C1.30675 1.244 1.37475 1.216 1.45475 1.216H5.07875C5.46275 1.216 5.83075 1.26 6.18275 1.348C6.53475 1.428 6.84275 1.564 7.10675 1.756C7.37875 1.948 7.59475 2.2 7.75475 2.512C7.92275 2.816 8.00675 3.192 8.00675 3.64C8.00675 4 7.91475 4.312 7.73075 4.576C7.55475 4.84 7.36275 5.048 7.15475 5.2C7.01075 5.304 7.01875 5.396 7.17875 5.476ZM3.83075 4.552H4.94675C5.10675 4.552 5.23475 4.492 5.33075 4.372C5.42675 4.244 5.47475 4.104 5.47475 3.952C5.47475 3.808 5.41475 3.684 5.29475 3.58C5.18275 3.476 5.07475 3.424 4.97075 3.424H3.83075C3.75075 3.424 3.68275 3.452 3.62675 3.508C3.57075 3.564 3.54275 3.632 3.54275 3.712V4.264C3.54275 4.344 3.57075 4.412 3.62675 4.468C3.68275 4.524 3.75075 4.552 3.83075 4.552ZM5.09075 6.532H3.83075C3.75075 6.532 3.68275 6.56 3.62675 6.616C3.57075 6.672 3.54275 6.74 3.54275 6.82V7.504C3.54275 7.584 3.57075 7.652 3.62675 7.708C3.68275 7.764 3.75075 7.792 3.83075 7.792H5.17475C5.31875 7.792 5.45475 7.732 5.58275 7.612C5.71075 7.492 5.77475 7.352 5.77475 7.192C5.77475 7.048 5.71075 6.904 5.58275 6.76C5.46275 6.608 5.29875 6.532 5.09075 6.532ZM16.3166 1.564L13.3166 6.424C13.2766 6.496 13.2406 6.584 13.2086 6.688C13.1766 6.792 13.1606 6.884 13.1606 6.964V9.712C13.1606 9.792 13.1326 9.86 13.0766 9.916C13.0206 9.972 12.9526 10 12.8726 10H11.0606C10.9806 10 10.9126 9.972 10.8566 9.916C10.8006 9.86 10.7726 9.792 10.7726 9.712V6.976C10.7726 6.896 10.7566 6.804 10.7246 6.7C10.7006 6.588 10.6686 6.5 10.6286 6.436C10.1486 5.612 9.65656 4.804 9.15256 4.012C8.65656 3.22 8.16056 2.404 7.66456 1.564C7.62456 1.492 7.61656 1.42 7.64056 1.348C7.66456 1.268 7.71656 1.228 7.79656 1.228H9.93256C10.0126 1.228 10.0926 1.252 10.1726 1.3C10.2606 1.348 10.3246 1.408 10.3646 1.48L11.8406 4.048C11.8806 4.112 11.9286 4.144 11.9846 4.144C12.0406 4.144 12.0886 4.112 12.1286 4.048L13.5926 1.48C13.6326 1.408 13.6926 1.348 13.7726 1.3C13.8606 1.252 13.9446 1.228 14.0246 1.228H16.1846C16.2646 1.228 16.3206 1.256 16.3526 1.312C16.3926 1.368 16.3806 1.452 16.3166 1.564ZM20.4324 6.592H16.6044C16.5244 6.592 16.4564 6.564 16.4004 6.508C16.3444 6.452 16.3164 6.384 16.3164 6.304V4.684C16.3164 4.596 16.3444 4.528 16.4004 4.48C16.4564 4.424 16.5244 4.396 16.6044 4.396H20.4324C20.5124 4.396 20.5804 4.424 20.6364 4.48C20.6924 4.528 20.7204 4.596 20.7204 4.684V6.304C20.7204 6.384 20.6924 6.452 20.6364 6.508C20.5804 6.564 20.5124 6.592 20.4324 6.592ZM24.9705 7.636H23.9265C23.8465 7.636 23.7785 7.664 23.7225 7.72C23.6665 7.776 23.6385 7.844 23.6385 7.924V9.712C23.6385 9.792 23.6105 9.86 23.5545 9.916C23.4985 9.972 23.4305 10 23.3505 10H21.5385C21.4585 10 21.3905 9.972 21.3345 9.916C21.2785 9.86 21.2505 9.792 21.2505 9.712V1.504C21.2505 1.424 21.2785 1.356 21.3345 1.3C21.3905 1.244 21.4585 1.216 21.5385 1.216H25.2105C25.6585 1.216 26.0785 1.3 26.4705 1.468C26.8705 1.636 27.2145 1.868 27.5025 2.164C27.7985 2.46 28.0305 2.804 28.1985 3.196C28.3745 3.588 28.4625 4.008 28.4625 4.456C28.4625 4.904 28.3905 5.324 28.2465 5.716C28.1025 6.1 27.8825 6.436 27.5865 6.724C27.2985 7.004 26.9345 7.228 26.4945 7.396C26.0625 7.556 25.5545 7.636 24.9705 7.636ZM25.0545 3.424H23.9265C23.8465 3.424 23.7785 3.452 23.7225 3.508C23.6665 3.564 23.6385 3.632 23.6385 3.712V5.128C23.6385 5.208 23.6665 5.276 23.7225 5.332C23.7785 5.388 23.8465 5.416 23.9265 5.416H25.2105C25.5145 5.416 25.7345 5.32 25.8705 5.128C26.0145 4.928 26.0865 4.704 26.0865 4.456C26.0865 4.328 26.0625 4.204 26.0145 4.084C25.9745 3.956 25.9105 3.844 25.8225 3.748C25.7345 3.652 25.6265 3.576 25.4985 3.52C25.3705 3.456 25.2225 3.424 25.0545 3.424ZM31.1233 10H29.3353C29.2553 10 29.1873 9.972 29.1313 9.916C29.0753 9.86 29.0473 9.792 29.0473 9.712V1.504C29.0473 1.424 29.0753 1.356 29.1313 1.3C29.1873 1.244 29.2553 1.216 29.3353 1.216H33.0673C33.5313 1.216 33.9593 1.296 34.3513 1.456C34.7433 1.608 35.0753 1.824 35.3473 2.104C35.6273 2.384 35.8433 2.716 35.9953 3.1C36.1553 3.484 36.2353 3.908 36.2353 4.372C36.2353 4.628 36.2033 4.884 36.1393 5.14C36.0833 5.388 35.9993 5.624 35.8873 5.848C35.7753 6.072 35.6433 6.276 35.4913 6.46C35.3393 6.636 35.1673 6.784 34.9753 6.904C34.9113 6.952 34.8673 7.012 34.8433 7.084C34.8273 7.148 34.8433 7.212 34.8913 7.276C35.1953 7.676 35.5153 8.088 35.8513 8.512C36.1873 8.936 36.4873 9.324 36.7513 9.676C36.7993 9.74 36.8113 9.812 36.7873 9.892C36.7633 9.964 36.7113 10 36.6313 10H34.3993C34.3193 10 34.2313 9.98 34.1353 9.94C34.0473 9.892 33.9793 9.836 33.9313 9.772C33.6753 9.436 33.4193 9.096 33.1633 8.752C32.9153 8.408 32.6673 8.06 32.4193 7.708C32.3713 7.644 32.3033 7.592 32.2153 7.552C32.1273 7.504 32.0433 7.48 31.9633 7.48H31.6993C31.6193 7.48 31.5513 7.508 31.4953 7.564C31.4393 7.62 31.4113 7.688 31.4113 7.768V9.712C31.4113 9.792 31.3833 9.86 31.3273 9.916C31.2713 9.972 31.2033 10 31.1233 10ZM31.6993 5.272H32.9713C33.0673 5.272 33.1673 5.256 33.2713 5.224C33.3753 5.184 33.4713 5.128 33.5593 5.056C33.6473 4.976 33.7193 4.88 33.7753 4.768C33.8313 4.656 33.8593 4.524 33.8593 4.372C33.8593 4.292 33.8433 4.2 33.8113 4.096C33.7873 3.984 33.7393 3.88 33.6673 3.784C33.6033 3.68 33.5113 3.596 33.3913 3.532C33.2793 3.46 33.1393 3.424 32.9713 3.424H31.6993C31.6193 3.424 31.5513 3.452 31.4953 3.508C31.4393 3.564 31.4113 3.632 31.4113 3.712V4.984C31.4113 5.064 31.4393 5.132 31.4953 5.188C31.5513 5.244 31.6193 5.272 31.6993 5.272ZM36.9281 5.608C36.9281 4.984 37.0481 4.396 37.2881 3.844C37.5281 3.292 37.8521 2.812 38.2601 2.404C38.6681 1.988 39.1481 1.66 39.7001 1.42C40.2521 1.18 40.8401 1.06 41.4641 1.06C42.0881 1.06 42.6761 1.18 43.2281 1.42C43.7801 1.66 44.2601 1.988 44.6681 2.404C45.0841 2.812 45.4121 3.292 45.6521 3.844C45.8921 4.396 46.0121 4.984 46.0121 5.608C46.0121 6.232 45.8921 6.82 45.6521 7.372C45.4121 7.924 45.0841 8.408 44.6681 8.824C44.2601 9.232 43.7801 9.556 43.2281 9.796C42.6761 10.036 42.0881 10.156 41.4641 10.156C40.8401 10.156 40.2521 10.036 39.7001 9.796C39.1481 9.556 38.6681 9.232 38.2601 8.824C37.8521 8.408 37.5281 7.924 37.2881 7.372C37.0481 6.82 36.9281 6.232 36.9281 5.608ZM39.3041 5.608C39.3041 5.912 39.3601 6.2 39.4721 6.472C39.5841 6.744 39.7361 6.984 39.9281 7.192C40.1281 7.4 40.3601 7.568 40.6241 7.696C40.8881 7.816 41.1681 7.876 41.4641 7.876C41.7601 7.876 42.0401 7.816 42.3041 7.696C42.5681 7.568 42.8001 7.4 43.0001 7.192C43.2001 6.984 43.3561 6.744 43.4681 6.472C43.5801 6.2 43.6361 5.912 43.6361 5.608C43.6361 5.312 43.5801 5.028 43.4681 4.756C43.3561 4.476 43.2001 4.236 43.0001 4.036C42.8001 3.828 42.5681 3.664 42.3041 3.544C42.0401 3.416 41.7601 3.352 41.4641 3.352C41.1681 3.352 40.8881 3.416 40.6241 3.544C40.3601 3.664 40.1281 3.828 39.9281 4.036C39.7361 4.236 39.5841 4.476 39.4721 4.756C39.3601 5.028 39.3041 5.312 39.3041 5.608ZM46.9136 9.712V1.504C46.9136 1.424 46.9416 1.356 46.9976 1.3C47.0536 1.244 47.1216 1.216 47.2016 1.216H50.4776C51.7336 1.216 52.7616 1.584 53.5616 2.32C53.9936 2.72 54.3216 3.196 54.5456 3.748C54.7696 4.3 54.8816 4.92 54.8816 5.608C54.8816 6.296 54.7696 6.92 54.5456 7.48C54.3216 8.032 53.9936 8.508 53.5616 8.908C53.1616 9.268 52.7016 9.54 52.1816 9.724C51.6696 9.908 51.1016 10 50.4776 10H47.2016C47.1216 10 47.0536 9.972 46.9976 9.916C46.9416 9.86 46.9136 9.792 46.9136 9.712ZM49.5776 7.792H50.4776C50.7016 7.792 50.9336 7.764 51.1736 7.708C51.4136 7.652 51.6296 7.548 51.8216 7.396C52.0136 7.236 52.1696 7.016 52.2896 6.736C52.4176 6.448 52.4816 6.076 52.4816 5.62C52.4816 5.164 52.4176 4.796 52.2896 4.516C52.1696 4.228 52.0096 4.008 51.8096 3.856C51.6176 3.696 51.4016 3.588 51.1616 3.532C50.9296 3.476 50.7016 3.448 50.4776 3.448H49.5776C49.4976 3.448 49.4296 3.476 49.3736 3.532C49.3176 3.588 49.2896 3.656 49.2896 3.736V7.504C49.2896 7.584 49.3176 7.652 49.3736 7.708C49.4296 7.764 49.4976 7.792 49.5776 7.792ZM55.9632 1.516C55.9632 1.436 55.9912 1.368 56.0472 1.312C56.1032 1.256 56.1712 1.228 56.2512 1.228H58.0632C58.1432 1.228 58.2112 1.256 58.2672 1.312C58.3232 1.368 58.3512 1.436 58.3512 1.516V6.376C58.3512 6.688 58.3992 6.948 58.4952 7.156C58.5992 7.356 58.7232 7.516 58.8672 7.636C59.0192 7.748 59.1792 7.828 59.3472 7.876C59.5152 7.924 59.6672 7.948 59.8032 7.948C59.9392 7.948 60.0912 7.924 60.2592 7.876C60.4272 7.828 60.5832 7.748 60.7272 7.636C60.8712 7.516 60.9912 7.356 61.0872 7.156C61.1912 6.948 61.2432 6.688 61.2432 6.376V1.516C61.2432 1.436 61.2712 1.368 61.3272 1.312C61.3832 1.256 61.4512 1.228 61.5312 1.228H63.3432C63.4232 1.228 63.4912 1.256 63.5472 1.312C63.6032 1.368 63.6312 1.436 63.6312 1.516V6.376C63.6312 6.944 63.5392 7.46 63.3552 7.924C63.1792 8.388 62.9232 8.784 62.5872 9.112C62.2512 9.44 61.8472 9.696 61.3752 9.88C60.9032 10.056 60.3792 10.144 59.8032 10.144C59.2272 10.144 58.7032 10.056 58.2312 9.88C57.7592 9.696 57.3552 9.44 57.0192 9.112C56.6832 8.784 56.4232 8.388 56.2392 7.924C56.0552 7.46 55.9632 6.944 55.9632 6.376V1.516ZM73.2629 7.66C73.0309 8.036 72.7749 8.38 72.4949 8.692C72.2149 8.996 71.8989 9.256 71.5469 9.472C71.2029 9.688 70.8189 9.856 70.3949 9.976C69.9709 10.096 69.5029 10.156 68.9909 10.156C68.3509 10.156 67.7509 10.036 67.1909 9.796C66.6309 9.556 66.1389 9.232 65.7149 8.824C65.2989 8.416 64.9709 7.936 64.7309 7.384C64.4909 6.832 64.3709 6.244 64.3709 5.62C64.3709 4.996 64.4909 4.408 64.7309 3.856C64.9709 3.304 65.2989 2.824 65.7149 2.416C66.1389 2.008 66.6309 1.684 67.1909 1.444C67.7509 1.204 68.3509 1.084 68.9909 1.084C69.5189 1.084 69.9949 1.144 70.4189 1.264C70.8429 1.384 71.2269 1.552 71.5709 1.768C71.9149 1.984 72.2229 2.248 72.4949 2.56C72.7749 2.864 73.0309 3.2 73.2629 3.568C73.3029 3.632 73.3109 3.7 73.2869 3.772C73.2629 3.844 73.2149 3.896 73.1429 3.928L71.4389 4.6C71.3589 4.632 71.2789 4.632 71.1989 4.6C71.1189 4.568 71.0589 4.52 71.0189 4.456C70.7869 4.088 70.5069 3.808 70.1789 3.616C69.8509 3.416 69.4549 3.316 68.9909 3.316C68.6869 3.316 68.3989 3.38 68.1269 3.508C67.8629 3.636 67.6309 3.808 67.4309 4.024C67.2309 4.232 67.0749 4.476 66.9629 4.756C66.8509 5.036 66.7949 5.324 66.7949 5.62C66.7949 5.924 66.8509 6.216 66.9629 6.496C67.0749 6.768 67.2309 7.008 67.4309 7.216C67.6309 7.424 67.8629 7.592 68.1269 7.72C68.3989 7.848 68.6869 7.912 68.9909 7.912C69.4309 7.912 69.8269 7.808 70.1789 7.6C70.5389 7.384 70.8229 7.108 71.0309 6.772C71.0709 6.708 71.1269 6.66 71.1989 6.628C71.2789 6.596 71.3589 6.596 71.4389 6.628L73.1429 7.3C73.2149 7.332 73.2629 7.384 73.2869 7.456C73.3109 7.52 73.3029 7.588 73.2629 7.66ZM79.4952 3.424H77.8152C77.7352 3.424 77.6672 3.452 77.6112 3.508C77.5552 3.564 77.5272 3.632 77.5272 3.712V9.712C77.5272 9.792 77.4992 9.86 77.4432 9.916C77.3952 9.972 77.3272 10 77.2392 10H75.4392C75.3592 10 75.2912 9.972 75.2352 9.916C75.1792 9.86 75.1512 9.792 75.1512 9.712V3.712C75.1512 3.632 75.1232 3.564 75.0672 3.508C75.0192 3.452 74.9512 3.424 74.8632 3.424H73.1592C73.0792 3.424 73.0112 3.396 72.9552 3.34C72.8992 3.284 72.8712 3.216 72.8712 3.136V1.504C72.8712 1.424 72.8992 1.356 72.9552 1.3C73.0112 1.244 73.0792 1.216 73.1592 1.216H79.4952C79.5832 1.216 79.6512 1.244 79.6992 1.3C79.7552 1.356 79.7832 1.424 79.7832 1.504V3.136C79.7832 3.216 79.7552 3.284 79.6992 3.34C79.6512 3.396 79.5832 3.424 79.4952 3.424ZM80.969 6.988C81.401 7.268 81.829 7.488 82.253 7.648C82.677 7.808 83.073 7.888 83.441 7.888C83.793 7.888 84.061 7.84 84.245 7.744C84.429 7.64 84.521 7.488 84.521 7.288C84.521 7.184 84.481 7.104 84.401 7.048C84.321 6.984 84.213 6.932 84.077 6.892C83.949 6.852 83.797 6.82 83.621 6.796C83.445 6.772 83.265 6.74 83.081 6.7C82.905 6.668 82.697 6.632 82.457 6.592C82.225 6.544 81.985 6.48 81.737 6.4C81.489 6.312 81.241 6.204 80.993 6.076C80.753 5.948 80.537 5.784 80.345 5.584C80.153 5.384 79.997 5.148 79.877 4.876C79.765 4.596 79.709 4.268 79.709 3.892C79.709 3.34 79.817 2.884 80.033 2.524C80.249 2.164 80.521 1.88 80.849 1.672C81.185 1.456 81.557 1.308 81.965 1.228C82.373 1.14 82.769 1.096 83.153 1.096C83.825 1.096 84.425 1.196 84.953 1.396C85.489 1.588 86.001 1.872 86.489 2.248C86.553 2.304 86.589 2.372 86.597 2.452C86.605 2.532 86.585 2.604 86.537 2.668L85.601 4C85.553 4.064 85.489 4.104 85.409 4.12C85.329 4.136 85.257 4.12 85.193 4.072C84.785 3.816 84.405 3.636 84.053 3.532C83.701 3.42 83.377 3.364 83.081 3.364C82.993 3.364 82.889 3.368 82.769 3.376C82.657 3.376 82.549 3.392 82.445 3.424C82.341 3.448 82.253 3.492 82.181 3.556C82.117 3.62 82.085 3.708 82.085 3.82C82.085 3.932 82.169 4.032 82.337 4.12C82.505 4.208 82.697 4.284 82.913 4.348C83.129 4.412 83.337 4.464 83.537 4.504C83.737 4.536 83.865 4.556 83.921 4.564C84.209 4.62 84.525 4.704 84.869 4.816C85.213 4.92 85.533 5.08 85.829 5.296C86.133 5.504 86.385 5.78 86.585 6.124C86.793 6.46 86.897 6.884 86.897 7.396C86.897 7.876 86.813 8.292 86.645 8.644C86.477 8.988 86.241 9.272 85.937 9.496C85.641 9.72 85.281 9.888 84.857 10C84.441 10.104 83.977 10.156 83.465 10.156C83.049 10.156 82.661 10.12 82.301 10.048C81.941 9.984 81.605 9.892 81.293 9.772C80.981 9.652 80.689 9.512 80.417 9.352C80.153 9.184 79.909 9.008 79.685 8.824C79.621 8.776 79.585 8.712 79.577 8.632C79.569 8.544 79.589 8.468 79.637 8.404L80.561 7.072C80.609 7.008 80.673 6.968 80.753 6.952C80.833 6.936 80.905 6.948 80.969 6.988Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-32tz0\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"mUuxggTGh\",svg:'<svg width=\"112\" height=\"16\" viewBox=\"-1 -1 112 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M13.2709 7.17526C13.7029 7.45526 14.1309 7.67526 14.5549 7.83526C14.9789 7.99526 15.3749 8.07526 15.7429 8.07526C16.0949 8.07526 16.3629 8.02726 16.5469 7.93126C16.7309 7.82726 16.8229 7.67526 16.8229 7.47526C16.8229 7.37126 16.7829 7.29126 16.7029 7.23526C16.6229 7.17126 16.5149 7.11926 16.3789 7.07926C16.2509 7.03926 16.0989 7.00726 15.9229 6.98326C15.7469 6.95926 15.5669 6.92726 15.3829 6.88726C15.2069 6.85526 14.9989 6.81926 14.7589 6.77926C14.5269 6.73126 14.2869 6.66726 14.0389 6.58726C13.7909 6.49926 13.5429 6.39126 13.2949 6.26326C13.0549 6.13526 12.8389 5.97126 12.6469 5.77126C12.4549 5.57126 12.2989 5.33526 12.1789 5.06326C12.0669 4.78326 12.0109 4.45526 12.0109 4.07926C12.0109 3.52726 12.1189 3.07126 12.3349 2.71126C12.5509 2.35126 12.8229 2.06726 13.1509 1.85926C13.4869 1.64326 13.8589 1.49526 14.2669 1.41526C14.6749 1.32726 15.0709 1.28326 15.4549 1.28326C16.1269 1.28326 16.7269 1.38326 17.2549 1.58326C17.7909 1.77526 18.3029 2.05926 18.7909 2.43526C18.8549 2.49126 18.8909 2.55926 18.8989 2.63926C18.9069 2.71926 18.8869 2.79126 18.8389 2.85526L17.9029 4.18726C17.8549 4.25126 17.7909 4.29126 17.7109 4.30726C17.6309 4.32326 17.5589 4.30726 17.4949 4.25926C17.0869 4.00326 16.7069 3.82326 16.3549 3.71926C16.0029 3.60726 15.6789 3.55126 15.3829 3.55126C15.2949 3.55126 15.1909 3.55526 15.0709 3.56326C14.9589 3.56326 14.8509 3.57926 14.7469 3.61126C14.6429 3.63526 14.5549 3.67926 14.4829 3.74326C14.4189 3.80726 14.3869 3.89526 14.3869 4.00726C14.3869 4.11926 14.4709 4.21926 14.6389 4.30726C14.8069 4.39526 14.9989 4.47126 15.2149 4.53526C15.4309 4.59926 15.6389 4.65126 15.8389 4.69126C16.0389 4.72326 16.1669 4.74326 16.2229 4.75126C16.5109 4.80726 16.8269 4.89126 17.1709 5.00326C17.5149 5.10726 17.8349 5.26726 18.1309 5.48326C18.4349 5.69126 18.6869 5.96726 18.8869 6.31126C19.0949 6.64726 19.1989 7.07126 19.1989 7.58326C19.1989 8.06326 19.1149 8.47926 18.9469 8.83126C18.7789 9.17526 18.5429 9.45926 18.2389 9.68326C17.9429 9.90726 17.5829 10.0753 17.1589 10.1873C16.7429 10.2913 16.2789 10.3433 15.7669 10.3433C15.3509 10.3433 14.9629 10.3073 14.6029 10.2353C14.2429 10.1713 13.9069 10.0793 13.5949 9.95926C13.2829 9.83926 12.9909 9.69926 12.7189 9.53926C12.4549 9.37126 12.2109 9.19526 11.9869 9.01126C11.9229 8.96326 11.8869 8.89926 11.8789 8.81926C11.8709 8.73126 11.8909 8.65526 11.9389 8.59126L12.8629 7.25926C12.9109 7.19526 12.9749 7.15526 13.0549 7.13926C13.1349 7.12326 13.2069 7.13526 13.2709 7.17526ZM29.8751 1.70326V9.89926C29.8751 9.97926 29.8471 10.0473 29.7911 10.1033C29.7351 10.1593 29.6671 10.1873 29.5871 10.1873H27.7751C27.6951 10.1873 27.6271 10.1593 27.5711 10.1033C27.5151 10.0473 27.4871 9.97926 27.4871 9.89926V6.03526C27.4871 5.95526 27.4511 5.91126 27.3791 5.90326C27.3071 5.89526 27.2471 5.92326 27.1991 5.98726L25.1831 9.23926C25.1431 9.30326 25.0791 9.33526 24.9911 9.33526C24.9031 9.33526 24.8351 9.30326 24.7871 9.23926L22.7711 5.98726C22.7311 5.92326 22.6751 5.89526 22.6031 5.90326C22.5311 5.91126 22.4951 5.95526 22.4951 6.03526V9.89926C22.4951 9.97926 22.4671 10.0473 22.4111 10.1033C22.3551 10.1593 22.2871 10.1873 22.2071 10.1873H20.3951C20.3151 10.1873 20.2471 10.1593 20.1911 10.1033C20.1351 10.0473 20.1071 9.97926 20.1071 9.89926V1.70326C20.1071 1.62326 20.1351 1.55526 20.1911 1.49926C20.2471 1.44326 20.3151 1.41526 20.3951 1.41526H22.0751C22.1551 1.41526 22.2391 1.43926 22.3271 1.48726C22.4151 1.53526 22.4791 1.59126 22.5191 1.65526L24.8231 5.03926C24.8711 5.10326 24.9271 5.13526 24.9911 5.13526C25.0551 5.13526 25.1071 5.10326 25.1471 5.03926L27.4511 1.65526C27.4991 1.59126 27.5671 1.53526 27.6551 1.48726C27.7431 1.43926 27.8271 1.41526 27.9071 1.41526H29.5871C29.6671 1.41526 29.7351 1.44326 29.7911 1.49926C29.8471 1.55526 29.8751 1.62326 29.8751 1.70326ZM33.8461 1.67926C33.8781 1.60726 33.9301 1.54726 34.0021 1.49926C34.0821 1.44326 34.1661 1.41526 34.2541 1.41526H35.9341C36.0141 1.41526 36.0901 1.44326 36.1621 1.49926C36.2421 1.54726 36.2981 1.60726 36.3301 1.67926L39.8341 9.83926C39.8661 9.91126 39.8581 9.98726 39.8101 10.0673C39.7701 10.1473 39.6861 10.1873 39.5581 10.1873H37.5061C37.4181 10.1873 37.3341 10.1633 37.2541 10.1153C37.1821 10.0593 37.1261 9.99526 37.0861 9.92326L36.7621 9.20326C36.7221 9.13126 36.6621 9.07126 36.5821 9.02326C36.5101 8.96726 36.4341 8.93926 36.3541 8.93926H33.8221C33.7341 8.93926 33.6501 8.96726 33.5701 9.02326C33.4981 9.07126 33.4461 9.13126 33.4141 9.20326L33.0781 9.92326C33.0461 9.99526 32.9901 10.0593 32.9101 10.1153C32.8381 10.1633 32.7621 10.1873 32.6821 10.1873H30.6181C30.5781 10.1873 30.5381 10.1793 30.4981 10.1633C30.4501 10.1473 30.4141 10.1233 30.3901 10.0913C30.3581 10.0593 30.3381 10.0193 30.3301 9.97126C30.3221 9.92326 30.3341 9.86726 30.3661 9.80326L33.8461 1.67926ZM34.5541 6.89926H35.6221C35.7021 6.89926 35.7581 6.87526 35.7901 6.82726C35.8301 6.77126 35.8301 6.70726 35.7901 6.63526C35.7101 6.43526 35.6141 6.20326 35.5021 5.93926C35.3901 5.66726 35.2861 5.41526 35.1901 5.18326C35.1581 5.11126 35.1221 5.07526 35.0821 5.07526C35.0421 5.07526 35.0061 5.11126 34.9741 5.18326L34.3741 6.63526C34.3421 6.70726 34.3421 6.77126 34.3741 6.82726C34.4061 6.87526 34.4661 6.89926 34.5541 6.89926ZM46.575 8.26726V9.89926C46.575 9.97926 46.547 10.0473 46.491 10.1033C46.435 10.1593 46.367 10.1873 46.287 10.1873H40.299C40.211 10.1873 40.139 10.1593 40.083 10.1033C40.035 10.0473 40.011 9.97926 40.011 9.89926V1.69126C40.011 1.61126 40.035 1.54326 40.083 1.48726C40.139 1.43126 40.211 1.40326 40.299 1.40326H42.099C42.179 1.40326 42.247 1.43126 42.303 1.48726C42.359 1.54326 42.387 1.61126 42.387 1.69126V7.69126C42.387 7.77126 42.411 7.83926 42.459 7.89526C42.515 7.95126 42.587 7.97926 42.675 7.97926H46.287C46.367 7.97926 46.435 8.00726 46.491 8.06326C46.547 8.11926 46.575 8.18726 46.575 8.26726ZM53.5978 8.26726V9.89926C53.5978 9.97926 53.5698 10.0473 53.5138 10.1033C53.4578 10.1593 53.3898 10.1873 53.3098 10.1873H47.3218C47.2338 10.1873 47.1618 10.1593 47.1058 10.1033C47.0578 10.0473 47.0338 9.97926 47.0338 9.89926V1.69126C47.0338 1.61126 47.0578 1.54326 47.1058 1.48726C47.1618 1.43126 47.2338 1.40326 47.3218 1.40326H49.1218C49.2018 1.40326 49.2698 1.43126 49.3258 1.48726C49.3818 1.54326 49.4098 1.61126 49.4098 1.69126V7.69126C49.4098 7.77126 49.4338 7.83926 49.4818 7.89526C49.5378 7.95126 49.6098 7.97926 49.6978 7.97926H53.3098C53.3898 7.97926 53.4578 8.00726 53.5138 8.06326C53.5698 8.11926 53.5978 8.18726 53.5978 8.26726ZM63.8222 5.66326C63.9502 5.73526 64.0782 5.82326 64.2062 5.92726C64.3342 6.03126 64.4502 6.15926 64.5542 6.31126C64.6662 6.46326 64.7542 6.63926 64.8182 6.83926C64.8902 7.03926 64.9262 7.26726 64.9262 7.52326C64.9262 8.04326 64.8422 8.47526 64.6742 8.81926C64.5142 9.15526 64.2942 9.42726 64.0142 9.63526C63.7342 9.83526 63.4102 9.97926 63.0422 10.0673C62.6822 10.1473 62.3022 10.1873 61.9022 10.1873H58.0982C58.0182 10.1873 57.9502 10.1593 57.8942 10.1033C57.8382 10.0473 57.8102 9.97926 57.8102 9.89926V1.69126C57.8102 1.61126 57.8382 1.54326 57.8942 1.48726C57.9502 1.43126 58.0182 1.40326 58.0982 1.40326H61.7222C62.1062 1.40326 62.4742 1.44726 62.8262 1.53526C63.1782 1.61526 63.4862 1.75126 63.7502 1.94326C64.0222 2.13526 64.2382 2.38726 64.3982 2.69926C64.5662 3.00326 64.6502 3.37926 64.6502 3.82726C64.6502 4.18726 64.5582 4.49926 64.3742 4.76326C64.1982 5.02726 64.0062 5.23526 63.7982 5.38726C63.6542 5.49126 63.6622 5.58326 63.8222 5.66326ZM60.4742 4.73926H61.5902C61.7502 4.73926 61.8782 4.67926 61.9742 4.55926C62.0702 4.43126 62.1182 4.29126 62.1182 4.13926C62.1182 3.99526 62.0582 3.87126 61.9382 3.76726C61.8262 3.66326 61.7182 3.61126 61.6142 3.61126H60.4742C60.3942 3.61126 60.3262 3.63926 60.2702 3.69526C60.2142 3.75126 60.1862 3.81926 60.1862 3.89926V4.45126C60.1862 4.53126 60.2142 4.59926 60.2702 4.65526C60.3262 4.71126 60.3942 4.73926 60.4742 4.73926ZM61.7342 6.71926H60.4742C60.3942 6.71926 60.3262 6.74726 60.2702 6.80326C60.2142 6.85926 60.1862 6.92726 60.1862 7.00726V7.69126C60.1862 7.77126 60.2142 7.83926 60.2702 7.89526C60.3262 7.95126 60.3942 7.97926 60.4742 7.97926H61.8182C61.9622 7.97926 62.0982 7.91926 62.2262 7.79926C62.3542 7.67926 62.4182 7.53926 62.4182 7.37926C62.4182 7.23526 62.3542 7.09126 62.2262 6.94726C62.1062 6.79526 61.9422 6.71926 61.7342 6.71926ZM68.0696 1.67926C68.1016 1.60726 68.1536 1.54726 68.2256 1.49926C68.3056 1.44326 68.3896 1.41526 68.4776 1.41526H70.1576C70.2376 1.41526 70.3136 1.44326 70.3856 1.49926C70.4656 1.54726 70.5216 1.60726 70.5536 1.67926L74.0576 9.83926C74.0896 9.91126 74.0816 9.98726 74.0336 10.0673C73.9936 10.1473 73.9096 10.1873 73.7816 10.1873H71.7296C71.6416 10.1873 71.5576 10.1633 71.4776 10.1153C71.4056 10.0593 71.3496 9.99526 71.3096 9.92326L70.9856 9.20326C70.9456 9.13126 70.8856 9.07126 70.8056 9.02326C70.7336 8.96726 70.6576 8.93926 70.5776 8.93926H68.0456C67.9576 8.93926 67.8736 8.96726 67.7936 9.02326C67.7216 9.07126 67.6696 9.13126 67.6376 9.20326L67.3016 9.92326C67.2696 9.99526 67.2136 10.0593 67.1336 10.1153C67.0616 10.1633 66.9856 10.1873 66.9056 10.1873H64.8416C64.8016 10.1873 64.7616 10.1793 64.7216 10.1633C64.6736 10.1473 64.6376 10.1233 64.6136 10.0913C64.5816 10.0593 64.5616 10.0193 64.5536 9.97126C64.5456 9.92326 64.5576 9.86726 64.5896 9.80326L68.0696 1.67926ZM68.7776 6.89926H69.8456C69.9256 6.89926 69.9816 6.87526 70.0136 6.82726C70.0536 6.77126 70.0536 6.70726 70.0136 6.63526C69.9336 6.43526 69.8376 6.20326 69.7256 5.93926C69.6136 5.66726 69.5096 5.41526 69.4136 5.18326C69.3816 5.11126 69.3456 5.07526 69.3056 5.07526C69.2656 5.07526 69.2296 5.11126 69.1976 5.18326L68.5976 6.63526C68.5656 6.70726 68.5656 6.77126 68.5976 6.82726C68.6296 6.87526 68.6896 6.89926 68.7776 6.89926ZM79.3852 3.61126H77.7052C77.6252 3.61126 77.5572 3.63926 77.5012 3.69526C77.4452 3.75126 77.4172 3.81926 77.4172 3.89926V9.89926C77.4172 9.97926 77.3892 10.0473 77.3332 10.1033C77.2852 10.1593 77.2172 10.1873 77.1292 10.1873H75.3292C75.2492 10.1873 75.1812 10.1593 75.1252 10.1033C75.0692 10.0473 75.0412 9.97926 75.0412 9.89926V3.89926C75.0412 3.81926 75.0132 3.75126 74.9572 3.69526C74.9092 3.63926 74.8412 3.61126 74.7532 3.61126H73.0492C72.9692 3.61126 72.9012 3.58326 72.8452 3.52726C72.7892 3.47126 72.7612 3.40326 72.7612 3.32326V1.69126C72.7612 1.61126 72.7892 1.54326 72.8452 1.48726C72.9012 1.43126 72.9692 1.40326 73.0492 1.40326H79.3852C79.4732 1.40326 79.5412 1.43126 79.5892 1.48726C79.6452 1.54326 79.6732 1.61126 79.6732 1.69126V3.32326C79.6732 3.40326 79.6452 3.47126 79.5892 3.52726C79.5412 3.58326 79.4732 3.61126 79.3852 3.61126ZM88.2298 7.84726C87.9978 8.22326 87.7418 8.56726 87.4618 8.87926C87.1818 9.18326 86.8658 9.44326 86.5138 9.65926C86.1698 9.87526 85.7858 10.0433 85.3618 10.1633C84.9378 10.2833 84.4698 10.3433 83.9578 10.3433C83.3178 10.3433 82.7178 10.2233 82.1578 9.98326C81.5978 9.74326 81.1058 9.41926 80.6818 9.01126C80.2658 8.60326 79.9378 8.12326 79.6978 7.57126C79.4578 7.01926 79.3378 6.43126 79.3378 5.80726C79.3378 5.18326 79.4578 4.59526 79.6978 4.04326C79.9378 3.49126 80.2658 3.01126 80.6818 2.60326C81.1058 2.19526 81.5978 1.87126 82.1578 1.63126C82.7178 1.39126 83.3178 1.27126 83.9578 1.27126C84.4858 1.27126 84.9618 1.33126 85.3858 1.45126C85.8098 1.57126 86.1938 1.73926 86.5378 1.95526C86.8818 2.17126 87.1898 2.43526 87.4618 2.74726C87.7418 3.05126 87.9978 3.38726 88.2298 3.75526C88.2698 3.81926 88.2778 3.88726 88.2538 3.95926C88.2298 4.03126 88.1818 4.08326 88.1098 4.11526L86.4058 4.78726C86.3258 4.81926 86.2458 4.81926 86.1658 4.78726C86.0858 4.75526 86.0258 4.70726 85.9858 4.64326C85.7538 4.27526 85.4738 3.99526 85.1458 3.80326C84.8178 3.60326 84.4218 3.50326 83.9578 3.50326C83.6538 3.50326 83.3658 3.56726 83.0938 3.69526C82.8298 3.82326 82.5978 3.99526 82.3978 4.21126C82.1978 4.41926 82.0418 4.66326 81.9298 4.94326C81.8178 5.22326 81.7618 5.51126 81.7618 5.80726C81.7618 6.11126 81.8178 6.40326 81.9298 6.68326C82.0418 6.95526 82.1978 7.19526 82.3978 7.40326C82.5978 7.61126 82.8298 7.77926 83.0938 7.90726C83.3658 8.03526 83.6538 8.09926 83.9578 8.09926C84.3978 8.09926 84.7938 7.99526 85.1458 7.78726C85.5058 7.57126 85.7898 7.29526 85.9978 6.95926C86.0378 6.89526 86.0938 6.84726 86.1658 6.81526C86.2458 6.78326 86.3258 6.78326 86.4058 6.81526L88.1098 7.48726C88.1818 7.51926 88.2298 7.57126 88.2538 7.64326C88.2778 7.70726 88.2698 7.77526 88.2298 7.84726ZM96.5966 1.69126V9.89926C96.5966 9.97926 96.5686 10.0473 96.5126 10.1033C96.4566 10.1593 96.3886 10.1873 96.3086 10.1873H94.5086C94.4206 10.1873 94.3486 10.1593 94.2926 10.1033C94.2446 10.0473 94.2206 9.97926 94.2206 9.89926V7.33126C94.2206 7.25126 94.1926 7.18326 94.1366 7.12726C94.0806 7.07126 94.0126 7.04326 93.9326 7.04326H91.4606C91.3726 7.04326 91.3006 7.07126 91.2446 7.12726C91.1966 7.18326 91.1726 7.25126 91.1726 7.33126V9.89926C91.1726 9.97926 91.1446 10.0473 91.0886 10.1033C91.0326 10.1593 90.9646 10.1873 90.8846 10.1873H89.0966C89.0086 10.1873 88.9366 10.1593 88.8806 10.1033C88.8326 10.0473 88.8086 9.97926 88.8086 9.89926V1.69126C88.8086 1.61126 88.8326 1.54326 88.8806 1.48726C88.9366 1.43126 89.0086 1.40326 89.0966 1.40326H90.8846C90.9646 1.40326 91.0326 1.43126 91.0886 1.48726C91.1446 1.54326 91.1726 1.61126 91.1726 1.69126V4.53526C91.1726 4.61526 91.1966 4.68326 91.2446 4.73926C91.3006 4.79526 91.3726 4.82326 91.4606 4.82326H93.9326C94.0126 4.82326 94.0806 4.79526 94.1366 4.73926C94.1926 4.68326 94.2206 4.61526 94.2206 4.53526V1.69126C94.2206 1.61126 94.2446 1.54326 94.2926 1.48726C94.3486 1.43126 94.4206 1.40326 94.5086 1.40326L96.3086 1.40326C96.3886 1.40326 96.4566 1.43126 96.5126 1.48726C96.5686 1.54326 96.5966 1.61126 96.5966 1.69126Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qf2qdx\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"a5B1zARRi\",svg:'<svg width=\"112\" height=\"16\" viewBox=\"-1 -1 112 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M10.5737 1.70326V9.89926C10.5737 9.97926 10.5457 10.0473 10.4897 10.1033C10.4337 10.1593 10.3657 10.1873 10.2857 10.1873H8.47366C8.39366 10.1873 8.32566 10.1593 8.26966 10.1033C8.21366 10.0473 8.18566 9.97926 8.18566 9.89926V6.03526C8.18566 5.95526 8.14966 5.91126 8.07766 5.90326C8.00566 5.89526 7.94566 5.92326 7.89766 5.98726L5.88166 9.23926C5.84166 9.30326 5.77766 9.33526 5.68966 9.33526C5.60166 9.33526 5.53366 9.30326 5.48566 9.23926L3.46966 5.98726C3.42966 5.92326 3.37366 5.89526 3.30166 5.90326C3.22966 5.91126 3.19366 5.95526 3.19366 6.03526V9.89926C3.19366 9.97926 3.16566 10.0473 3.10966 10.1033C3.05366 10.1593 2.98566 10.1873 2.90566 10.1873H1.09366C1.01366 10.1873 0.945662 10.1593 0.889662 10.1033C0.833662 10.0473 0.805662 9.97926 0.805662 9.89926L0.805662 1.70326C0.805662 1.62326 0.833662 1.55526 0.889662 1.49926C0.945662 1.44326 1.01366 1.41526 1.09366 1.41526H2.77366C2.85366 1.41526 2.93766 1.43926 3.02566 1.48726C3.11366 1.53526 3.17766 1.59126 3.21766 1.65526L5.52166 5.03926C5.56966 5.10326 5.62566 5.13526 5.68966 5.13526C5.75366 5.13526 5.80566 5.10326 5.84566 5.03926L8.14966 1.65526C8.19766 1.59126 8.26566 1.53526 8.35366 1.48726C8.44166 1.43926 8.52566 1.41526 8.60566 1.41526H10.2857C10.3657 1.41526 10.4337 1.44326 10.4897 1.49926C10.5457 1.55526 10.5737 1.62326 10.5737 1.70326ZM14.5446 1.67926C14.5766 1.60726 14.6286 1.54726 14.7006 1.49926C14.7806 1.44326 14.8646 1.41526 14.9526 1.41526H16.6326C16.7126 1.41526 16.7886 1.44326 16.8606 1.49926C16.9406 1.54726 16.9966 1.60726 17.0286 1.67926L20.5326 9.83926C20.5646 9.91126 20.5566 9.98726 20.5086 10.0673C20.4686 10.1473 20.3846 10.1873 20.2566 10.1873H18.2046C18.1166 10.1873 18.0326 10.1633 17.9526 10.1153C17.8806 10.0593 17.8246 9.99526 17.7846 9.92326L17.4606 9.20326C17.4206 9.13126 17.3606 9.07126 17.2806 9.02326C17.2086 8.96726 17.1326 8.93926 17.0526 8.93926H14.5206C14.4326 8.93926 14.3486 8.96726 14.2686 9.02326C14.1966 9.07126 14.1446 9.13126 14.1126 9.20326L13.7766 9.92326C13.7446 9.99526 13.6886 10.0593 13.6086 10.1153C13.5366 10.1633 13.4606 10.1873 13.3806 10.1873H11.3166C11.2766 10.1873 11.2366 10.1793 11.1966 10.1633C11.1486 10.1473 11.1126 10.1233 11.0886 10.0913C11.0566 10.0593 11.0366 10.0193 11.0286 9.97126C11.0206 9.92326 11.0326 9.86726 11.0646 9.80326L14.5446 1.67926ZM15.2526 6.89926H16.3206C16.4006 6.89926 16.4566 6.87526 16.4886 6.82726C16.5286 6.77126 16.5286 6.70726 16.4886 6.63526C16.4086 6.43526 16.3126 6.20326 16.2006 5.93926C16.0886 5.66726 15.9846 5.41526 15.8886 5.18326C15.8566 5.11126 15.8206 5.07526 15.7806 5.07526C15.7406 5.07526 15.7046 5.11126 15.6726 5.18326L15.0726 6.63526C15.0406 6.70726 15.0406 6.77126 15.0726 6.82726C15.1046 6.87526 15.1646 6.89926 15.2526 6.89926ZM21.7293 7.17526C22.1613 7.45526 22.5893 7.67526 23.0133 7.83526C23.4373 7.99526 23.8333 8.07526 24.2013 8.07526C24.5533 8.07526 24.8213 8.02726 25.0053 7.93126C25.1893 7.82726 25.2813 7.67526 25.2813 7.47526C25.2813 7.37126 25.2413 7.29126 25.1613 7.23526C25.0813 7.17126 24.9733 7.11926 24.8373 7.07926C24.7093 7.03926 24.5573 7.00726 24.3813 6.98326C24.2053 6.95926 24.0253 6.92726 23.8413 6.88726C23.6653 6.85526 23.4573 6.81926 23.2173 6.77926C22.9853 6.73126 22.7453 6.66726 22.4973 6.58726C22.2493 6.49926 22.0013 6.39126 21.7533 6.26326C21.5133 6.13526 21.2973 5.97126 21.1053 5.77126C20.9133 5.57126 20.7573 5.33526 20.6373 5.06326C20.5253 4.78326 20.4693 4.45526 20.4693 4.07926C20.4693 3.52726 20.5773 3.07126 20.7933 2.71126C21.0093 2.35126 21.2813 2.06726 21.6093 1.85926C21.9453 1.64326 22.3173 1.49526 22.7253 1.41526C23.1333 1.32726 23.5293 1.28326 23.9133 1.28326C24.5853 1.28326 25.1853 1.38326 25.7133 1.58326C26.2493 1.77526 26.7613 2.05926 27.2493 2.43526C27.3133 2.49126 27.3493 2.55926 27.3573 2.63926C27.3653 2.71926 27.3453 2.79126 27.2973 2.85526L26.3613 4.18726C26.3133 4.25126 26.2493 4.29126 26.1693 4.30726C26.0893 4.32326 26.0173 4.30726 25.9533 4.25926C25.5453 4.00326 25.1653 3.82326 24.8133 3.71926C24.4613 3.60726 24.1373 3.55126 23.8413 3.55126C23.7533 3.55126 23.6493 3.55526 23.5293 3.56326C23.4173 3.56326 23.3093 3.57926 23.2053 3.61126C23.1013 3.63526 23.0133 3.67926 22.9413 3.74326C22.8773 3.80726 22.8453 3.89526 22.8453 4.00726C22.8453 4.11926 22.9293 4.21926 23.0973 4.30726C23.2653 4.39526 23.4573 4.47126 23.6733 4.53526C23.8893 4.59926 24.0973 4.65126 24.2973 4.69126C24.4973 4.72326 24.6253 4.74326 24.6813 4.75126C24.9693 4.80726 25.2853 4.89126 25.6293 5.00326C25.9733 5.10726 26.2933 5.26726 26.5893 5.48326C26.8933 5.69126 27.1453 5.96726 27.3453 6.31126C27.5533 6.64726 27.6573 7.07126 27.6573 7.58326C27.6573 8.06326 27.5733 8.47926 27.4053 8.83126C27.2373 9.17526 27.0013 9.45926 26.6973 9.68326C26.4013 9.90726 26.0413 10.0753 25.6173 10.1873C25.2013 10.2913 24.7373 10.3433 24.2253 10.3433C23.8093 10.3433 23.4213 10.3073 23.0613 10.2353C22.7013 10.1713 22.3653 10.0793 22.0533 9.95926C21.7413 9.83926 21.4493 9.69926 21.1773 9.53926C20.9133 9.37126 20.6693 9.19526 20.4453 9.01126C20.3813 8.96326 20.3453 8.89926 20.3373 8.81926C20.3293 8.73126 20.3493 8.65526 20.3973 8.59126L21.3213 7.25926C21.3693 7.19526 21.4333 7.15526 21.5133 7.13926C21.5933 7.12326 21.6653 7.13526 21.7293 7.17526ZM29.5255 7.17526C29.9575 7.45526 30.3855 7.67526 30.8095 7.83526C31.2335 7.99526 31.6295 8.07526 31.9975 8.07526C32.3495 8.07526 32.6175 8.02726 32.8015 7.93126C32.9855 7.82726 33.0775 7.67526 33.0775 7.47526C33.0775 7.37126 33.0375 7.29126 32.9575 7.23526C32.8775 7.17126 32.7695 7.11926 32.6335 7.07926C32.5055 7.03926 32.3535 7.00726 32.1775 6.98326C32.0015 6.95926 31.8215 6.92726 31.6375 6.88726C31.4615 6.85526 31.2535 6.81926 31.0135 6.77926C30.7815 6.73126 30.5415 6.66726 30.2935 6.58726C30.0455 6.49926 29.7975 6.39126 29.5495 6.26326C29.3095 6.13526 29.0935 5.97126 28.9015 5.77126C28.7095 5.57126 28.5535 5.33526 28.4335 5.06326C28.3215 4.78326 28.2655 4.45526 28.2655 4.07926C28.2655 3.52726 28.3735 3.07126 28.5895 2.71126C28.8055 2.35126 29.0775 2.06726 29.4055 1.85926C29.7415 1.64326 30.1135 1.49526 30.5215 1.41526C30.9295 1.32726 31.3255 1.28326 31.7095 1.28326C32.3815 1.28326 32.9815 1.38326 33.5095 1.58326C34.0455 1.77526 34.5575 2.05926 35.0455 2.43526C35.1095 2.49126 35.1455 2.55926 35.1535 2.63926C35.1615 2.71926 35.1415 2.79126 35.0935 2.85526L34.1575 4.18726C34.1095 4.25126 34.0455 4.29126 33.9655 4.30726C33.8855 4.32326 33.8135 4.30726 33.7495 4.25926C33.3415 4.00326 32.9615 3.82326 32.6095 3.71926C32.2575 3.60726 31.9335 3.55126 31.6375 3.55126C31.5495 3.55126 31.4455 3.55526 31.3255 3.56326C31.2135 3.56326 31.1055 3.57926 31.0015 3.61126C30.8975 3.63526 30.8095 3.67926 30.7375 3.74326C30.6735 3.80726 30.6415 3.89526 30.6415 4.00726C30.6415 4.11926 30.7255 4.21926 30.8935 4.30726C31.0615 4.39526 31.2535 4.47126 31.4695 4.53526C31.6855 4.59926 31.8935 4.65126 32.0935 4.69126C32.2935 4.72326 32.4215 4.74326 32.4775 4.75126C32.7655 4.80726 33.0815 4.89126 33.4255 5.00326C33.7695 5.10726 34.0895 5.26726 34.3855 5.48326C34.6895 5.69126 34.9415 5.96726 35.1415 6.31126C35.3495 6.64726 35.4535 7.07126 35.4535 7.58326C35.4535 8.06326 35.3695 8.47926 35.2015 8.83126C35.0335 9.17526 34.7975 9.45926 34.4935 9.68326C34.1975 9.90726 33.8375 10.0753 33.4135 10.1873C32.9975 10.2913 32.5335 10.3433 32.0215 10.3433C31.6055 10.3433 31.2175 10.3073 30.8575 10.2353C30.4975 10.1713 30.1615 10.0793 29.8495 9.95926C29.5375 9.83926 29.2455 9.69926 28.9735 9.53926C28.7095 9.37126 28.4655 9.19526 28.2415 9.01126C28.1775 8.96326 28.1415 8.89926 28.1335 8.81926C28.1255 8.73126 28.1455 8.65526 28.1935 8.59126L29.1175 7.25926C29.1655 7.19526 29.2295 7.15526 29.3095 7.13926C29.3895 7.12326 29.4615 7.13526 29.5255 7.17526ZM43.7753 7.82326H42.7313C42.6513 7.82326 42.5833 7.85126 42.5273 7.90726C42.4713 7.96326 42.4433 8.03126 42.4433 8.11126V9.89926C42.4433 9.97926 42.4153 10.0473 42.3593 10.1033C42.3033 10.1593 42.2353 10.1873 42.1553 10.1873H40.3433C40.2633 10.1873 40.1953 10.1593 40.1393 10.1033C40.0833 10.0473 40.0553 9.97926 40.0553 9.89926V1.69126C40.0553 1.61126 40.0833 1.54326 40.1393 1.48726C40.1953 1.43126 40.2633 1.40326 40.3433 1.40326H44.0153C44.4633 1.40326 44.8833 1.48726 45.2753 1.65526C45.6753 1.82326 46.0193 2.05526 46.3073 2.35126C46.6033 2.64726 46.8353 2.99126 47.0033 3.38326C47.1793 3.77526 47.2673 4.19526 47.2673 4.64326C47.2673 5.09126 47.1953 5.51126 47.0513 5.90326C46.9073 6.28726 46.6873 6.62326 46.3913 6.91126C46.1033 7.19126 45.7393 7.41526 45.2993 7.58326C44.8673 7.74326 44.3593 7.82326 43.7753 7.82326ZM43.8593 3.61126H42.7313C42.6513 3.61126 42.5833 3.63926 42.5273 3.69526C42.4713 3.75126 42.4433 3.81926 42.4433 3.89926V5.31526C42.4433 5.39526 42.4713 5.46326 42.5273 5.51926C42.5833 5.57526 42.6513 5.60326 42.7313 5.60326H44.0153C44.3193 5.60326 44.5393 5.50726 44.6753 5.31526C44.8193 5.11526 44.8913 4.89126 44.8913 4.64326C44.8913 4.51526 44.8673 4.39126 44.8193 4.27126C44.7793 4.14326 44.7153 4.03126 44.6273 3.93526C44.5393 3.83926 44.4313 3.76326 44.3033 3.70726C44.1753 3.64326 44.0273 3.61126 43.8593 3.61126ZM49.9281 10.1873H48.1401C48.0601 10.1873 47.9921 10.1593 47.9361 10.1033C47.8801 10.0473 47.8521 9.97926 47.8521 9.89926V1.69126C47.8521 1.61126 47.8801 1.54326 47.9361 1.48726C47.9921 1.43126 48.0601 1.40326 48.1401 1.40326H51.8721C52.3361 1.40326 52.7641 1.48326 53.1561 1.64326C53.5481 1.79526 53.8801 2.01126 54.1521 2.29126C54.4321 2.57126 54.6481 2.90326 54.8001 3.28726C54.9601 3.67126 55.0401 4.09526 55.0401 4.55926C55.0401 4.81526 55.0081 5.07126 54.9441 5.32726C54.8881 5.57526 54.8041 5.81126 54.6921 6.03526C54.5801 6.25926 54.4481 6.46326 54.2961 6.64726C54.1441 6.82326 53.9721 6.97126 53.7801 7.09126C53.7161 7.13926 53.6721 7.19926 53.6481 7.27126C53.6321 7.33526 53.6481 7.39926 53.6961 7.46326C54.0001 7.86326 54.3201 8.27526 54.6561 8.69926C54.9921 9.12326 55.2921 9.51126 55.5561 9.86326C55.6041 9.92726 55.6161 9.99926 55.5921 10.0793C55.5681 10.1513 55.5161 10.1873 55.4361 10.1873H53.2041C53.1241 10.1873 53.0361 10.1673 52.9401 10.1273C52.8521 10.0793 52.7841 10.0233 52.7361 9.95926C52.4801 9.62326 52.2241 9.28326 51.9681 8.93926C51.7201 8.59526 51.4721 8.24726 51.2241 7.89526C51.1761 7.83126 51.1081 7.77926 51.0201 7.73926C50.9321 7.69126 50.8481 7.66726 50.7681 7.66726H50.5041C50.4241 7.66726 50.3561 7.69526 50.3001 7.75126C50.2441 7.80726 50.2161 7.87526 50.2161 7.95526V9.89926C50.2161 9.97926 50.1881 10.0473 50.1321 10.1033C50.0761 10.1593 50.0081 10.1873 49.9281 10.1873ZM50.5041 5.45926H51.7761C51.8721 5.45926 51.9721 5.44326 52.0761 5.41126C52.1801 5.37126 52.2761 5.31526 52.3641 5.24326C52.4521 5.16326 52.5241 5.06726 52.5801 4.95526C52.6361 4.84326 52.6641 4.71126 52.6641 4.55926C52.6641 4.47926 52.6481 4.38726 52.6161 4.28326C52.5921 4.17126 52.5441 4.06726 52.4721 3.97126C52.4081 3.86726 52.3161 3.78326 52.1961 3.71926C52.0841 3.64726 51.9441 3.61126 51.7761 3.61126H50.5041C50.4241 3.61126 50.3561 3.63926 50.3001 3.69526C50.2441 3.75126 50.2161 3.81926 50.2161 3.89926V5.17126C50.2161 5.25126 50.2441 5.31926 50.3001 5.37526C50.3561 5.43126 50.4241 5.45926 50.5041 5.45926ZM55.7328 5.79526C55.7328 5.17126 55.8528 4.58326 56.0928 4.03126C56.3328 3.47926 56.6568 2.99926 57.0648 2.59126C57.4728 2.17526 57.9528 1.84726 58.5048 1.60726C59.0568 1.36726 59.6448 1.24726 60.2688 1.24726C60.8928 1.24726 61.4808 1.36726 62.0328 1.60726C62.5848 1.84726 63.0648 2.17526 63.4728 2.59126C63.8888 2.99926 64.2168 3.47926 64.4568 4.03126C64.6968 4.58326 64.8168 5.17126 64.8168 5.79526C64.8168 6.41926 64.6968 7.00726 64.4568 7.55926C64.2168 8.11126 63.8888 8.59526 63.4728 9.01126C63.0648 9.41926 62.5848 9.74326 62.0328 9.98326C61.4808 10.2233 60.8928 10.3433 60.2688 10.3433C59.6448 10.3433 59.0568 10.2233 58.5048 9.98326C57.9528 9.74326 57.4728 9.41926 57.0648 9.01126C56.6568 8.59526 56.3328 8.11126 56.0928 7.55926C55.8528 7.00726 55.7328 6.41926 55.7328 5.79526ZM58.1088 5.79526C58.1088 6.09926 58.1648 6.38726 58.2768 6.65926C58.3888 6.93126 58.5408 7.17126 58.7328 7.37926C58.9328 7.58726 59.1648 7.75526 59.4288 7.88326C59.6928 8.00326 59.9728 8.06326 60.2688 8.06326C60.5648 8.06326 60.8448 8.00326 61.1088 7.88326C61.3728 7.75526 61.6048 7.58726 61.8048 7.37926C62.0048 7.17126 62.1608 6.93126 62.2728 6.65926C62.3848 6.38726 62.4408 6.09926 62.4408 5.79526C62.4408 5.49926 62.3848 5.21526 62.2728 4.94326C62.1608 4.66326 62.0048 4.42326 61.8048 4.22326C61.6048 4.01526 61.3728 3.85126 61.1088 3.73126C60.8448 3.60326 60.5648 3.53926 60.2688 3.53926C59.9728 3.53926 59.6928 3.60326 59.4288 3.73126C59.1648 3.85126 58.9328 4.01526 58.7328 4.22326C58.5408 4.42326 58.3888 4.66326 58.2768 4.94326C58.1648 5.21526 58.1088 5.49926 58.1088 5.79526ZM65.7184 9.89926V1.69126C65.7184 1.61126 65.7464 1.54326 65.8024 1.48726C65.8584 1.43126 65.9264 1.40326 66.0064 1.40326H69.2824C70.5384 1.40326 71.5664 1.77126 72.3664 2.50726C72.7984 2.90726 73.1264 3.38326 73.3504 3.93526C73.5744 4.48726 73.6864 5.10726 73.6864 5.79526C73.6864 6.48326 73.5744 7.10726 73.3504 7.66726C73.1264 8.21926 72.7984 8.69526 72.3664 9.09526C71.9664 9.45526 71.5064 9.72726 70.9864 9.91126C70.4744 10.0953 69.9064 10.1873 69.2824 10.1873H66.0064C65.9264 10.1873 65.8584 10.1593 65.8024 10.1033C65.7464 10.0473 65.7184 9.97926 65.7184 9.89926ZM68.3824 7.97926H69.2824C69.5064 7.97926 69.7384 7.95126 69.9784 7.89526C70.2184 7.83926 70.4344 7.73526 70.6264 7.58326C70.8184 7.42326 70.9744 7.20326 71.0944 6.92326C71.2224 6.63526 71.2864 6.26326 71.2864 5.80726C71.2864 5.35126 71.2224 4.98326 71.0944 4.70326C70.9744 4.41526 70.8144 4.19526 70.6144 4.04326C70.4224 3.88326 70.2064 3.77526 69.9664 3.71926C69.7344 3.66326 69.5064 3.63526 69.2824 3.63526H68.3824C68.3024 3.63526 68.2344 3.66326 68.1784 3.71926C68.1224 3.77526 68.0944 3.84326 68.0944 3.92326V7.69126C68.0944 7.77126 68.1224 7.83926 68.1784 7.89526C68.2344 7.95126 68.3024 7.97926 68.3824 7.97926ZM74.7679 1.70326C74.7679 1.62326 74.7959 1.55526 74.8519 1.49926C74.9079 1.44326 74.9759 1.41526 75.0559 1.41526H76.8679C76.9479 1.41526 77.0159 1.44326 77.0719 1.49926C77.1279 1.55526 77.1559 1.62326 77.1559 1.70326V6.56326C77.1559 6.87526 77.2039 7.13526 77.2999 7.34326C77.4039 7.54326 77.5279 7.70326 77.6719 7.82326C77.8239 7.93526 77.9839 8.01526 78.1519 8.06326C78.3199 8.11126 78.4719 8.13526 78.6079 8.13526C78.7439 8.13526 78.8959 8.11126 79.0639 8.06326C79.2319 8.01526 79.3879 7.93526 79.5319 7.82326C79.6759 7.70326 79.7959 7.54326 79.8919 7.34326C79.9959 7.13526 80.0479 6.87526 80.0479 6.56326V1.70326C80.0479 1.62326 80.0759 1.55526 80.1319 1.49926C80.1879 1.44326 80.2559 1.41526 80.3359 1.41526H82.1479C82.2279 1.41526 82.2959 1.44326 82.3519 1.49926C82.4079 1.55526 82.4359 1.62326 82.4359 1.70326V6.56326C82.4359 7.13126 82.3439 7.64726 82.1599 8.11126C81.9839 8.57526 81.7279 8.97126 81.3919 9.29926C81.0559 9.62726 80.6519 9.88326 80.1799 10.0673C79.7079 10.2433 79.1839 10.3313 78.6079 10.3313C78.0319 10.3313 77.5079 10.2433 77.0359 10.0673C76.5639 9.88326 76.1599 9.62726 75.8239 9.29926C75.4879 8.97126 75.2279 8.57526 75.0439 8.11126C74.8599 7.64726 74.7679 7.13126 74.7679 6.56326V1.70326ZM92.0677 7.84726C91.8357 8.22326 91.5797 8.56726 91.2997 8.87926C91.0197 9.18326 90.7037 9.44326 90.3517 9.65926C90.0077 9.87526 89.6237 10.0433 89.1997 10.1633C88.7757 10.2833 88.3077 10.3433 87.7957 10.3433C87.1557 10.3433 86.5557 10.2233 85.9957 9.98326C85.4357 9.74326 84.9437 9.41926 84.5197 9.01126C84.1037 8.60326 83.7757 8.12326 83.5357 7.57126C83.2957 7.01926 83.1757 6.43126 83.1757 5.80726C83.1757 5.18326 83.2957 4.59526 83.5357 4.04326C83.7757 3.49126 84.1037 3.01126 84.5197 2.60326C84.9437 2.19526 85.4357 1.87126 85.9957 1.63126C86.5557 1.39126 87.1557 1.27126 87.7957 1.27126C88.3237 1.27126 88.7997 1.33126 89.2237 1.45126C89.6477 1.57126 90.0317 1.73926 90.3757 1.95526C90.7197 2.17126 91.0277 2.43526 91.2997 2.74726C91.5797 3.05126 91.8357 3.38726 92.0677 3.75526C92.1077 3.81926 92.1157 3.88726 92.0917 3.95926C92.0677 4.03126 92.0197 4.08326 91.9477 4.11526L90.2437 4.78726C90.1637 4.81926 90.0837 4.81926 90.0037 4.78726C89.9237 4.75526 89.8637 4.70726 89.8237 4.64326C89.5917 4.27526 89.3117 3.99526 88.9837 3.80326C88.6557 3.60326 88.2597 3.50326 87.7957 3.50326C87.4917 3.50326 87.2037 3.56726 86.9317 3.69526C86.6677 3.82326 86.4357 3.99526 86.2357 4.21126C86.0357 4.41926 85.8797 4.66326 85.7677 4.94326C85.6557 5.22326 85.5997 5.51126 85.5997 5.80726C85.5997 6.11126 85.6557 6.40326 85.7677 6.68326C85.8797 6.95526 86.0357 7.19526 86.2357 7.40326C86.4357 7.61126 86.6677 7.77926 86.9317 7.90726C87.2037 8.03526 87.4917 8.09926 87.7957 8.09926C88.2357 8.09926 88.6317 7.99526 88.9837 7.78726C89.3437 7.57126 89.6277 7.29526 89.8357 6.95926C89.8757 6.89526 89.9317 6.84726 90.0037 6.81526C90.0837 6.78326 90.1637 6.78326 90.2437 6.81526L91.9477 7.48726C92.0197 7.51926 92.0677 7.57126 92.0917 7.64326C92.1157 7.70726 92.1077 7.77526 92.0677 7.84726ZM94.9744 3.89926V4.40326C94.9744 4.48326 95.0024 4.55126 95.0584 4.60726C95.1144 4.66326 95.1824 4.69126 95.2624 4.69126H98.5144C98.5944 4.69126 98.6624 4.71926 98.7184 4.77526C98.7744 4.83126 98.8024 4.89926 98.8024 4.97926V6.63526C98.8024 6.71526 98.7744 6.78326 98.7184 6.83926C98.6624 6.89526 98.5944 6.92326 98.5144 6.92326H95.2624C95.1824 6.92326 95.1144 6.95126 95.0584 7.00726C95.0024 7.06326 94.9744 7.13126 94.9744 7.21126V7.66726C94.9744 7.74726 95.0024 7.81526 95.0584 7.87126C95.1144 7.92726 95.1824 7.95526 95.2624 7.95526H98.9944C99.0744 7.95526 99.1424 7.98326 99.1984 8.03926C99.2544 8.09526 99.2824 8.16326 99.2824 8.24326V9.89926C99.2824 9.97926 99.2544 10.0473 99.1984 10.1033C99.1424 10.1593 99.0744 10.1873 98.9944 10.1873H92.8864C92.8064 10.1873 92.7384 10.1593 92.6824 10.1033C92.6264 10.0473 92.5984 9.97926 92.5984 9.89926V1.69126C92.5984 1.61126 92.6264 1.54326 92.6824 1.48726C92.7384 1.43126 92.8064 1.40326 92.8864 1.40326L98.9944 1.40326C99.0744 1.40326 99.1424 1.43126 99.1984 1.48726C99.2544 1.54326 99.2824 1.61126 99.2824 1.69126V3.32326C99.2824 3.40326 99.2544 3.47126 99.1984 3.52726C99.1424 3.58326 99.0744 3.61126 98.9944 3.61126H95.2624C95.1824 3.61126 95.1144 3.63926 95.0584 3.69526C95.0024 3.75126 94.9744 3.81926 94.9744 3.89926ZM100.466 9.89926V1.69126C100.466 1.61126 100.494 1.54326 100.55 1.48726C100.606 1.43126 100.674 1.40326 100.754 1.40326H104.03C105.286 1.40326 106.314 1.77126 107.114 2.50726C107.546 2.90726 107.874 3.38326 108.098 3.93526C108.322 4.48726 108.434 5.10726 108.434 5.79526C108.434 6.48326 108.322 7.10726 108.098 7.66726C107.874 8.21926 107.546 8.69526 107.114 9.09526C106.714 9.45526 106.254 9.72726 105.734 9.91126C105.222 10.0953 104.654 10.1873 104.03 10.1873H100.754C100.674 10.1873 100.606 10.1593 100.55 10.1033C100.494 10.0473 100.466 9.97926 100.466 9.89926ZM103.13 7.97926H104.03C104.254 7.97926 104.486 7.95126 104.726 7.89526C104.966 7.83926 105.182 7.73526 105.374 7.58326C105.566 7.42326 105.722 7.20326 105.842 6.92326C105.97 6.63526 106.034 6.26326 106.034 5.80726C106.034 5.35126 105.97 4.98326 105.842 4.70326C105.722 4.41526 105.562 4.19526 105.362 4.04326C105.17 3.88326 104.954 3.77526 104.714 3.71926C104.482 3.66326 104.254 3.63526 104.03 3.63526H103.13C103.05 3.63526 102.982 3.66326 102.926 3.71926C102.87 3.77526 102.842 3.84326 102.842 3.92326V7.69126C102.842 7.77126 102.87 7.83926 102.926 7.89526C102.982 7.95126 103.05 7.97926 103.13 7.97926Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8rnkb1\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:73,layoutDependency:layoutDependency,layoutId:\"lLCLH7HXP\",svg:'<svg width=\"73\" height=\"26\" viewBox=\"-1 -1 73 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 10.3919L0.296963 0.0167071H6.81365C7.77053 0.183781 9.15635 0.902193 9.18935 2.25548C9.20585 2.79012 9.15635 3.57536 8.85939 3.97633L7.34158 5.12913L9.13985 6.18169C9.42032 6.63279 9.43682 7.18413 9.43682 7.98608C9.43682 9.4229 8.14998 10.3251 6.71466 10.3919H0ZM4.55343 3.80926C4.7679 3.79255 4.94938 3.79255 5.13086 3.65889C5.52681 3.32475 5.5928 3.35816 5.27934 2.42255C4.65242 2.22207 4.0255 1.98817 3.44807 2.42255C3.2171 2.84024 3.29959 3.17438 3.44807 3.54194C3.77803 3.79255 4.19047 3.80926 4.55343 3.80926ZM5.46082 8.00278C5.51031 7.819 5.51031 7.70205 5.51031 7.53498C5.51031 7.26766 5.47731 6.98364 5.21335 6.81657C5.01537 6.6495 4.83389 6.61608 4.60292 6.53254C4.27296 6.41559 3.81102 6.39889 3.46457 6.6495C3.28309 7.03376 3.1841 7.45144 3.59655 8.16986C3.89351 8.32022 4.70191 8.65437 5.46082 8.00278Z\" fill=\"white\"/>\\n<path d=\"M10.7297 10.3752L10.5647 0.0334151L14.2603 0.0167071L14.1778 10.3919L10.7297 10.3752Z\" fill=\"white\"/>\\n<path d=\"M22.1254 10.4086L18.9908 10.3418C17.2915 9.874 15.1798 8.55412 15.0808 6.48242C15.0973 5.73059 15.1633 3.60877 15.2623 2.90707C15.8727 1.73756 16.6316 0.568048 18.0174 0.0501222L21.3005 0.0334151C21.8119 0.0167071 23.7587 0.350853 24.2866 0.451097L24.0887 3.17438C23.4287 3.10755 20.7231 3.10755 20.0137 3.2245C18.9743 3.49182 18.3969 4.1434 18.4464 5.17926C18.3969 6.24852 18.9248 7.00035 20.1457 7.26766C20.4426 7.33449 21.5975 7.30108 22.1419 7.21754L21.3005 5.53011L21.2345 5.01218L24.6991 4.57779L25.2105 8.65437C24.5836 9.53985 22.8843 10.275 22.1254 10.4086Z\" fill=\"white\"/>\\n<path d=\"M29.8375 10.3919L30.052 0.0167071H33.3351L36.6017 4.51096L36.6842 0.0167071H39.9178L40.0003 10.3919H36.7502L33.1866 5.39645L33.0711 10.3919H29.8375Z\" fill=\"white\"/>\\n<path d=\"M40.4324 10.3418L43.4516 0L47.7245 0.0167071L51.1726 10.3919L47.5925 10.3752L46.5697 8.21998L44.4579 8.16986L43.7485 10.3752L40.4324 10.3418ZM46.0912 5.56352C46.1077 4.87852 46.0087 3.59206 45.5468 3.69231C45.1838 3.69231 44.6064 5.01218 44.5899 5.7306C45.2333 5.78072 45.8438 5.76401 46.0912 5.56352Z\" fill=\"white\"/>\\n<path d=\"M51.3414 10.3752L51.4569 0.0334151L54.3606 0.0501222L57.0662 3.45841L59.7389 0.0167071H62.659L62.1806 10.4086L59.2109 10.4253L58.8315 6.16498L56.7693 8.38705L54.6905 6.13157L54.542 10.3919L51.3414 10.3752Z\" fill=\"white\"/>\\n<path d=\"M63.7739 10.2583L63.6419 0.0501222L70.868 0L70.8845 2.80682L67.189 3.00731L66.991 3.9095L70.9505 4.09328V6.28194L67.189 6.56596L67.1395 7.40132L71 7.70205L70.7855 10.3919L65.4072 10.3585L63.7739 10.2583Z\" fill=\"white\"/>\\n<path d=\"M5.73174 23.9666L6.0287 13.5914H12.5454C13.5023 13.7584 14.8881 14.4769 14.9211 15.8301C14.9376 16.3648 14.8881 17.15 14.5911 17.551L13.0733 18.7038L14.8716 19.7564C15.1521 20.2074 15.1686 20.7588 15.1686 21.5607C15.1686 22.9976 13.8817 23.8998 12.4464 23.9666H5.73174ZM10.2852 17.3839C10.4996 17.3672 10.6811 17.3672 10.8626 17.2336C11.2585 16.8994 11.3245 16.9328 11.0111 15.9972C10.3842 15.7967 9.75723 15.5628 9.17981 15.9972C8.94884 16.4149 9.03133 16.749 9.17981 17.1166C9.50977 17.3672 9.92221 17.3839 10.2852 17.3839ZM11.1926 21.5774C11.242 21.3937 11.242 21.2767 11.242 21.1096C11.242 20.8423 11.2091 20.5583 10.9451 20.3912C10.7471 20.2242 10.5656 20.1907 10.3347 20.1072C10.0047 19.9903 9.54276 19.9735 9.19631 20.2242C9.01483 20.6084 8.91584 21.0261 9.32829 21.7445C9.62525 21.8949 10.4337 22.229 11.1926 21.5774Z\" fill=\"white\"/>\\n<path d=\"M16.28 23.9833L16.4285 13.5914H22.5657C23.5886 13.842 24.166 14.1093 24.9744 15.1619V17.6345C24.7599 18.4699 23.9845 19.2384 23.2751 19.4556L25.9313 23.9499L22.2687 23.9833L20.058 20.7087L19.926 24L16.28 23.9833ZM21.5428 17.3839C21.4603 16.5486 20.9984 16.3314 19.8765 16.3481C19.2826 16.8827 19.5301 17.3171 19.893 17.8016C21.0974 18.1357 21.4768 17.7181 21.5428 17.3839Z\" fill=\"white\"/>\\n<path d=\"M25.3255 23.9666L28.3116 13.558L32.4526 13.6415L35.8182 24L32.5186 23.9499L31.4132 21.544L29.4005 21.5106L28.4931 23.9666H25.3255ZM31.3637 18.9878C31.0998 18.3195 30.9018 17.5009 30.3738 17.0665C30.2089 17.0665 29.6479 18.6203 29.6314 19.1048C29.6149 19.5057 30.7698 19.2551 31.3637 18.9878Z\" fill=\"white\"/>\\n<path d=\"M36.119 23.9833L36.5149 13.6248L39.7155 13.6081L42.9821 18.0856V13.6081L46.3972 13.5914L46.5127 24L43.0976 23.9666L39.732 19.4055L39.5176 23.9666L36.119 23.9833Z\" fill=\"white\"/>\\n<path d=\"M47.6048 23.9499L47.8193 13.5914H52.9996C55.4083 14.1427 57.2891 15.379 57.6025 17.9018C57.586 18.7038 57.454 19.5392 57.2891 20.6084C56.3817 22.4128 54.6329 23.2816 52.5047 23.9833L47.6048 23.9499ZM51.0858 16.8159L50.9704 20.7254C51.2178 20.7588 51.5643 20.7421 52.1087 20.7254C53.3956 20.692 54.1215 19.9735 54.2204 18.5367C53.7915 17.15 53.0656 16.7156 51.6798 16.6822C51.4488 16.6989 51.2508 16.7657 51.0858 16.8159Z\" fill=\"white\"/>\\n<path d=\"M58.102 23.9833L58.0855 20.9927L60.9891 20.9092L58.003 16.7156L58.0525 15.2788C58.2834 14.4434 59.0918 13.8253 59.8343 13.5914L65.3941 13.5747V16.8493L62.0945 16.8994L65.3776 20.7922L65.3941 22.3293C65.0971 23.3484 64.3712 23.7661 63.4638 23.9666L58.102 23.9833Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvdtef\",\"data-framer-name\":\"mobile comparibles\",layoutDependency:layoutDependency,layoutId:\"yagaRAoTi\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1n11d58\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:93,layoutDependency:layoutDependency,layoutId:\"sdpro7OBX\",svg:'<svg width=\"93\" height=\"15\" viewBox=\"-1 -1 93 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M10.452 1.516V9.712C10.452 9.792 10.424 9.86 10.368 9.916C10.312 9.972 10.244 10 10.164 10H8.352C8.272 10 8.204 9.972 8.148 9.916C8.092 9.86 8.064 9.792 8.064 9.712V5.848C8.064 5.768 8.028 5.724 7.956 5.716C7.884 5.708 7.824 5.736 7.776 5.8L5.76 9.052C5.72 9.116 5.656 9.148 5.568 9.148C5.48 9.148 5.412 9.116 5.364 9.052L3.348 5.8C3.308 5.736 3.252 5.708 3.18 5.716C3.108 5.724 3.072 5.768 3.072 5.848V9.712C3.072 9.792 3.044 9.86 2.988 9.916C2.932 9.972 2.864 10 2.784 10H0.972C0.892 10 0.824 9.972 0.768 9.916C0.712 9.86 0.684 9.792 0.684 9.712L0.684 1.516C0.684 1.436 0.712 1.368 0.768 1.312C0.824 1.256 0.892 1.228 0.972 1.228H2.652C2.732 1.228 2.816 1.252 2.904 1.3C2.992 1.348 3.056 1.404 3.096 1.468L5.4 4.852C5.448 4.916 5.504 4.948 5.568 4.948C5.632 4.948 5.684 4.916 5.724 4.852L8.028 1.468C8.076 1.404 8.144 1.348 8.232 1.3C8.32 1.252 8.404 1.228 8.484 1.228H10.164C10.244 1.228 10.312 1.256 10.368 1.312C10.424 1.368 10.452 1.436 10.452 1.516ZM14.3473 3.712V4.216C14.3473 4.296 14.3753 4.364 14.4313 4.42C14.4873 4.476 14.5553 4.504 14.6353 4.504H17.8873C17.9673 4.504 18.0353 4.532 18.0913 4.588C18.1473 4.644 18.1753 4.712 18.1753 4.792V6.448C18.1753 6.528 18.1473 6.596 18.0913 6.652C18.0353 6.708 17.9673 6.736 17.8873 6.736H14.6353C14.5553 6.736 14.4873 6.764 14.4313 6.82C14.3753 6.876 14.3473 6.944 14.3473 7.024V7.48C14.3473 7.56 14.3753 7.628 14.4313 7.684C14.4873 7.74 14.5553 7.768 14.6353 7.768H18.3673C18.4473 7.768 18.5153 7.796 18.5713 7.852C18.6273 7.908 18.6553 7.976 18.6553 8.056V9.712C18.6553 9.792 18.6273 9.86 18.5713 9.916C18.5153 9.972 18.4473 10 18.3673 10H12.2593C12.1793 10 12.1113 9.972 12.0553 9.916C11.9993 9.86 11.9713 9.792 11.9713 9.712V1.504C11.9713 1.424 11.9993 1.356 12.0553 1.3C12.1113 1.244 12.1793 1.216 12.2593 1.216L18.3673 1.216C18.4473 1.216 18.5153 1.244 18.5713 1.3C18.6273 1.356 18.6553 1.424 18.6553 1.504V3.136C18.6553 3.216 18.6273 3.284 18.5713 3.34C18.5153 3.396 18.4473 3.424 18.3673 3.424H14.6353C14.5553 3.424 14.4873 3.452 14.4313 3.508C14.3753 3.564 14.3473 3.632 14.3473 3.712ZM22.3481 1.492C22.3801 1.42 22.4321 1.36 22.5041 1.312C22.5841 1.256 22.6681 1.228 22.7561 1.228H24.4361C24.5161 1.228 24.5921 1.256 24.6641 1.312C24.7441 1.36 24.8001 1.42 24.8321 1.492L28.3361 9.652C28.3681 9.724 28.3601 9.8 28.3121 9.88C28.2721 9.96 28.1881 10 28.0601 10H26.0081C25.9201 10 25.8361 9.976 25.7561 9.928C25.6841 9.872 25.6281 9.808 25.5881 9.736L25.2641 9.016C25.2241 8.944 25.1641 8.884 25.0841 8.836C25.0121 8.78 24.9361 8.752 24.8561 8.752H22.3241C22.2361 8.752 22.1521 8.78 22.0721 8.836C22.0001 8.884 21.9481 8.944 21.9161 9.016L21.5801 9.736C21.5481 9.808 21.4921 9.872 21.4121 9.928C21.3401 9.976 21.2641 10 21.1841 10H19.1201C19.0801 10 19.0401 9.992 19.0001 9.976C18.9521 9.96 18.9161 9.936 18.8921 9.904C18.8601 9.872 18.8401 9.832 18.8321 9.784C18.8241 9.736 18.8361 9.68 18.8681 9.616L22.3481 1.492ZM23.0561 6.712H24.1241C24.2041 6.712 24.2601 6.688 24.2921 6.64C24.3321 6.584 24.3321 6.52 24.2921 6.448C24.2121 6.248 24.1161 6.016 24.0041 5.752C23.8921 5.48 23.7881 5.228 23.6921 4.996C23.6601 4.924 23.6241 4.888 23.5841 4.888C23.5441 4.888 23.5081 4.924 23.4761 4.996L22.8761 6.448C22.8441 6.52 22.8441 6.584 22.8761 6.64C22.9081 6.688 22.9681 6.712 23.0561 6.712ZM33.6638 3.424H31.9838C31.9038 3.424 31.8358 3.452 31.7798 3.508C31.7238 3.564 31.6958 3.632 31.6958 3.712V9.712C31.6958 9.792 31.6678 9.86 31.6118 9.916C31.5638 9.972 31.4958 10 31.4078 10H29.6078C29.5278 10 29.4598 9.972 29.4038 9.916C29.3478 9.86 29.3198 9.792 29.3198 9.712V3.712C29.3198 3.632 29.2918 3.564 29.2358 3.508C29.1878 3.452 29.1198 3.424 29.0318 3.424H27.3278C27.2478 3.424 27.1798 3.396 27.1238 3.34C27.0678 3.284 27.0398 3.216 27.0398 3.136V1.504C27.0398 1.424 27.0678 1.356 27.1238 1.3C27.1798 1.244 27.2478 1.216 27.3278 1.216H33.6638C33.7518 1.216 33.8198 1.244 33.8678 1.3C33.9238 1.356 33.9518 1.424 33.9518 1.504V3.136C33.9518 3.216 33.9238 3.284 33.8678 3.34C33.8198 3.396 33.7518 3.424 33.6638 3.424ZM47.0422 8.032V9.724C47.0422 9.804 47.0142 9.872 46.9582 9.928C46.9022 9.984 46.8342 10.012 46.7542 10.012H42.6142C41.8062 10.012 41.1062 9.896 40.5142 9.664C39.9222 9.424 39.4302 9.104 39.0382 8.704C38.6542 8.296 38.3662 7.824 38.1742 7.288C37.9902 6.744 37.8982 6.164 37.8982 5.548C37.8982 4.932 38.0142 4.352 38.2462 3.808C38.4782 3.264 38.7942 2.792 39.1942 2.392C39.6022 1.984 40.0742 1.664 40.6102 1.432C41.1542 1.192 41.7342 1.072 42.3502 1.072C42.9662 1.072 43.5462 1.192 44.0902 1.432C44.6342 1.664 45.1062 1.984 45.5062 2.392C45.9142 2.792 46.2342 3.264 46.4662 3.808C46.6982 4.352 46.8142 4.932 46.8142 5.548C46.8142 5.932 46.7462 6.3 46.6102 6.652C46.4742 6.996 46.3022 7.288 46.0942 7.528C45.9902 7.672 46.0222 7.744 46.1902 7.744H46.7542C46.8342 7.744 46.9022 7.772 46.9582 7.828C47.0142 7.884 47.0422 7.952 47.0422 8.032ZM42.3502 7.672C42.6382 7.672 42.9062 7.616 43.1542 7.504C43.4102 7.384 43.6342 7.228 43.8262 7.036C44.0182 6.844 44.1662 6.62 44.2702 6.364C44.3822 6.108 44.4382 5.836 44.4382 5.548C44.4382 5.26 44.3822 4.988 44.2702 4.732C44.1662 4.468 44.0182 4.24 43.8262 4.048C43.6342 3.848 43.4102 3.692 43.1542 3.58C42.9062 3.468 42.6382 3.412 42.3502 3.412C42.0622 3.412 41.7902 3.468 41.5342 3.58C41.2862 3.692 41.0662 3.848 40.8742 4.048C40.6822 4.24 40.5302 4.468 40.4182 4.732C40.3142 4.988 40.2622 5.26 40.2622 5.548C40.2622 5.836 40.3142 6.108 40.4182 6.364C40.5302 6.62 40.6822 6.844 40.8742 7.036C41.0662 7.228 41.2862 7.384 41.5342 7.504C41.7902 7.616 42.0622 7.672 42.3502 7.672ZM47.8239 1.516C47.8239 1.436 47.8519 1.368 47.9079 1.312C47.9639 1.256 48.0319 1.228 48.1119 1.228H49.9239C50.0039 1.228 50.0719 1.256 50.1279 1.312C50.1839 1.368 50.2119 1.436 50.2119 1.516V6.376C50.2119 6.688 50.2599 6.948 50.3559 7.156C50.4599 7.356 50.5839 7.516 50.7279 7.636C50.8799 7.748 51.0399 7.828 51.2079 7.876C51.3759 7.924 51.5279 7.948 51.6639 7.948C51.7999 7.948 51.9519 7.924 52.1199 7.876C52.2879 7.828 52.4439 7.748 52.5879 7.636C52.7319 7.516 52.8519 7.356 52.9479 7.156C53.0519 6.948 53.1039 6.688 53.1039 6.376V1.516C53.1039 1.436 53.1319 1.368 53.1879 1.312C53.2439 1.256 53.3119 1.228 53.3919 1.228H55.2039C55.2839 1.228 55.3519 1.256 55.4079 1.312C55.4639 1.368 55.4919 1.436 55.4919 1.516V6.376C55.4919 6.944 55.3999 7.46 55.2159 7.924C55.0399 8.388 54.7839 8.784 54.4479 9.112C54.1119 9.44 53.7079 9.696 53.2359 9.88C52.7639 10.056 52.2399 10.144 51.6639 10.144C51.0879 10.144 50.5639 10.056 50.0919 9.88C49.6199 9.696 49.2159 9.44 48.8799 9.112C48.5439 8.784 48.2839 8.388 48.0999 7.924C47.9159 7.46 47.8239 6.944 47.8239 6.376V1.516ZM58.9505 1.492C58.9825 1.42 59.0345 1.36 59.1065 1.312C59.1865 1.256 59.2705 1.228 59.3585 1.228H61.0385C61.1185 1.228 61.1945 1.256 61.2665 1.312C61.3465 1.36 61.4025 1.42 61.4345 1.492L64.9385 9.652C64.9705 9.724 64.9625 9.8 64.9145 9.88C64.8745 9.96 64.7905 10 64.6625 10H62.6105C62.5225 10 62.4385 9.976 62.3585 9.928C62.2865 9.872 62.2305 9.808 62.1905 9.736L61.8665 9.016C61.8265 8.944 61.7665 8.884 61.6865 8.836C61.6145 8.78 61.5385 8.752 61.4585 8.752H58.9265C58.8385 8.752 58.7545 8.78 58.6745 8.836C58.6025 8.884 58.5505 8.944 58.5185 9.016L58.1825 9.736C58.1505 9.808 58.0945 9.872 58.0145 9.928C57.9425 9.976 57.8665 10 57.7865 10H55.7225C55.6825 10 55.6425 9.992 55.6025 9.976C55.5545 9.96 55.5185 9.936 55.4945 9.904C55.4625 9.872 55.4425 9.832 55.4345 9.784C55.4265 9.736 55.4385 9.68 55.4705 9.616L58.9505 1.492ZM59.6585 6.712H60.7265C60.8065 6.712 60.8625 6.688 60.8945 6.64C60.9345 6.584 60.9345 6.52 60.8945 6.448C60.8145 6.248 60.7185 6.016 60.6065 5.752C60.4945 5.48 60.3905 5.228 60.2945 4.996C60.2625 4.924 60.2265 4.888 60.1865 4.888C60.1465 4.888 60.1105 4.924 60.0785 4.996L59.4785 6.448C59.4465 6.52 59.4465 6.584 59.4785 6.64C59.5105 6.688 59.5705 6.712 59.6585 6.712ZM71.6794 8.08V9.712C71.6794 9.792 71.6514 9.86 71.5954 9.916C71.5394 9.972 71.4714 10 71.3914 10H65.4034C65.3154 10 65.2434 9.972 65.1874 9.916C65.1394 9.86 65.1154 9.792 65.1154 9.712V1.504C65.1154 1.424 65.1394 1.356 65.1874 1.3C65.2434 1.244 65.3154 1.216 65.4034 1.216H67.2034C67.2834 1.216 67.3514 1.244 67.4074 1.3C67.4634 1.356 67.4914 1.424 67.4914 1.504V7.504C67.4914 7.584 67.5154 7.652 67.5634 7.708C67.6194 7.764 67.6914 7.792 67.7794 7.792L71.3914 7.792C71.4714 7.792 71.5394 7.82 71.5954 7.876C71.6514 7.932 71.6794 8 71.6794 8.08ZM74.3462 10H72.5342C72.4462 10 72.3742 9.972 72.3182 9.916C72.2702 9.86 72.2462 9.792 72.2462 9.712V1.516C72.2462 1.436 72.2702 1.368 72.3182 1.312C72.3742 1.256 72.4462 1.228 72.5342 1.228H74.3462C74.4262 1.228 74.4942 1.256 74.5502 1.312C74.6062 1.368 74.6342 1.436 74.6342 1.516V9.712C74.6342 9.792 74.6062 9.86 74.5502 9.916C74.4942 9.972 74.4262 10 74.3462 10ZM81.7336 3.424H80.0536C79.9736 3.424 79.9056 3.452 79.8496 3.508C79.7936 3.564 79.7656 3.632 79.7656 3.712V9.712C79.7656 9.792 79.7376 9.86 79.6816 9.916C79.6336 9.972 79.5656 10 79.4776 10H77.6776C77.5976 10 77.5296 9.972 77.4736 9.916C77.4176 9.86 77.3896 9.792 77.3896 9.712V3.712C77.3896 3.632 77.3616 3.564 77.3056 3.508C77.2576 3.452 77.1896 3.424 77.1016 3.424H75.3976C75.3176 3.424 75.2496 3.396 75.1936 3.34C75.1376 3.284 75.1096 3.216 75.1096 3.136V1.504C75.1096 1.424 75.1376 1.356 75.1936 1.3C75.2496 1.244 75.3176 1.216 75.3976 1.216H81.7336C81.8216 1.216 81.8896 1.244 81.9376 1.3C81.9936 1.356 82.0216 1.424 82.0216 1.504V3.136C82.0216 3.216 81.9936 3.284 81.9376 3.34C81.8896 3.396 81.8216 3.424 81.7336 3.424ZM90.3384 1.564L87.3384 6.424C87.2984 6.496 87.2624 6.584 87.2304 6.688C87.1984 6.792 87.1824 6.884 87.1824 6.964V9.712C87.1824 9.792 87.1544 9.86 87.0984 9.916C87.0424 9.972 86.9744 10 86.8944 10H85.0824C85.0024 10 84.9344 9.972 84.8784 9.916C84.8224 9.86 84.7944 9.792 84.7944 9.712V6.976C84.7944 6.896 84.7784 6.804 84.7464 6.7C84.7224 6.588 84.6904 6.5 84.6504 6.436C84.1704 5.612 83.6784 4.804 83.1744 4.012C82.6784 3.22 82.1824 2.404 81.6864 1.564C81.6464 1.492 81.6384 1.42 81.6624 1.348C81.6864 1.268 81.7384 1.228 81.8184 1.228H83.9544C84.0344 1.228 84.1144 1.252 84.1944 1.3C84.2824 1.348 84.3464 1.408 84.3864 1.48L85.8624 4.048C85.9024 4.112 85.9504 4.144 86.0064 4.144C86.0624 4.144 86.1104 4.112 86.1504 4.048L87.6144 1.48C87.6544 1.408 87.7144 1.348 87.7944 1.3C87.8824 1.252 87.9664 1.228 88.0464 1.228H90.2064C90.2864 1.228 90.3424 1.256 90.3744 1.312C90.4144 1.368 90.4024 1.452 90.3384 1.564Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rf4un1\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:85,layoutDependency:layoutDependency,layoutId:\"B6OoadISk\",svg:'<svg width=\"85\" height=\"16\" viewBox=\"-1 -1 85 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M4.35405 7.8235H3.31005C3.23005 7.8235 3.16205 7.8515 3.10605 7.9075C3.05005 7.9635 3.02205 8.0315 3.02205 8.1115V9.8995C3.02205 9.9795 2.99405 10.0475 2.93805 10.1035C2.88205 10.1595 2.81405 10.1875 2.73405 10.1875H0.922047C0.842047 10.1875 0.774047 10.1595 0.718047 10.1035C0.662047 10.0475 0.634047 9.9795 0.634047 9.8995L0.634047 1.6915C0.634047 1.6115 0.662047 1.5435 0.718047 1.4875C0.774047 1.4315 0.842047 1.4035 0.922047 1.4035H4.59405C5.04205 1.4035 5.46205 1.4875 5.85405 1.6555C6.25405 1.8235 6.59805 2.0555 6.88605 2.3515C7.18205 2.6475 7.41405 2.9915 7.58205 3.3835C7.75805 3.7755 7.84605 4.1955 7.84605 4.6435C7.84605 5.0915 7.77405 5.5115 7.63005 5.9035C7.48605 6.2875 7.26605 6.6235 6.97005 6.9115C6.68205 7.1915 6.31805 7.4155 5.87805 7.5835C5.44605 7.7435 4.93805 7.8235 4.35405 7.8235ZM4.43805 3.6115H3.31005C3.23005 3.6115 3.16205 3.6395 3.10605 3.6955C3.05005 3.7515 3.02205 3.8195 3.02205 3.8995V5.3155C3.02205 5.3955 3.05005 5.4635 3.10605 5.5195C3.16205 5.5755 3.23005 5.6035 3.31005 5.6035H4.59405C4.89805 5.6035 5.11805 5.5075 5.25405 5.3155C5.39805 5.1155 5.47005 4.8915 5.47005 4.6435C5.47005 4.5155 5.44605 4.3915 5.39805 4.2715C5.35805 4.1435 5.29405 4.0315 5.20605 3.9355C5.11805 3.8395 5.01005 3.7635 4.88205 3.7075C4.75405 3.6435 4.60605 3.6115 4.43805 3.6115ZM10.5069 10.1875H8.71886C8.63886 10.1875 8.57086 10.1595 8.51486 10.1035C8.45886 10.0475 8.43086 9.9795 8.43086 9.8995V1.6915C8.43086 1.6115 8.45886 1.5435 8.51486 1.4875C8.57086 1.4315 8.63886 1.4035 8.71886 1.4035H12.4509C12.9149 1.4035 13.3429 1.4835 13.7349 1.6435C14.1269 1.7955 14.4589 2.0115 14.7309 2.2915C15.0109 2.5715 15.2269 2.9035 15.3789 3.2875C15.5389 3.6715 15.6189 4.0955 15.6189 4.5595C15.6189 4.8155 15.5869 5.0715 15.5229 5.3275C15.4669 5.5755 15.3829 5.8115 15.2709 6.0355C15.1589 6.2595 15.0269 6.4635 14.8749 6.6475C14.7229 6.8235 14.5509 6.9715 14.3589 7.0915C14.2949 7.1395 14.2509 7.1995 14.2269 7.2715C14.2109 7.3355 14.2269 7.3995 14.2749 7.4635C14.5789 7.8635 14.8989 8.2755 15.2349 8.6995C15.5709 9.1235 15.8709 9.5115 16.1349 9.8635C16.1829 9.9275 16.1949 9.9995 16.1709 10.0795C16.1469 10.1515 16.0949 10.1875 16.0149 10.1875H13.7829C13.7029 10.1875 13.6149 10.1675 13.5189 10.1275C13.4309 10.0795 13.3629 10.0235 13.3149 9.9595C13.0589 9.6235 12.8029 9.2835 12.5469 8.9395C12.2989 8.5955 12.0509 8.2475 11.8029 7.8955C11.7549 7.8315 11.6869 7.7795 11.5989 7.7395C11.5109 7.6915 11.4269 7.6675 11.3469 7.6675H11.0829C11.0029 7.6675 10.9349 7.6955 10.8789 7.7515C10.8229 7.8075 10.7949 7.8755 10.7949 7.9555V9.8995C10.7949 9.9795 10.7669 10.0475 10.7109 10.1035C10.6549 10.1595 10.5869 10.1875 10.5069 10.1875ZM11.0829 5.4595H12.3549C12.4509 5.4595 12.5509 5.4435 12.6549 5.4115C12.7589 5.3715 12.8549 5.3155 12.9429 5.2435C13.0309 5.1635 13.1029 5.0675 13.1589 4.9555C13.2149 4.8435 13.2429 4.7115 13.2429 4.5595C13.2429 4.4795 13.2269 4.3875 13.1949 4.2835C13.1709 4.1715 13.1229 4.0675 13.0509 3.9715C12.9869 3.8675 12.8949 3.7835 12.7749 3.7195C12.6629 3.6475 12.5229 3.6115 12.3549 3.6115H11.0829C11.0029 3.6115 10.9349 3.6395 10.8789 3.6955C10.8229 3.7515 10.7949 3.8195 10.7949 3.8995V5.1715C10.7949 5.2515 10.8229 5.3195 10.8789 5.3755C10.9349 5.4315 11.0029 5.4595 11.0829 5.4595ZM16.3116 5.7955C16.3116 5.1715 16.4316 4.5835 16.6716 4.0315C16.9116 3.4795 17.2356 2.9995 17.6436 2.5915C18.0516 2.1755 18.5316 1.8475 19.0836 1.6075C19.6356 1.3675 20.2236 1.2475 20.8476 1.2475C21.4716 1.2475 22.0596 1.3675 22.6116 1.6075C23.1636 1.8475 23.6436 2.1755 24.0516 2.5915C24.4676 2.9995 24.7956 3.4795 25.0356 4.0315C25.2756 4.5835 25.3956 5.1715 25.3956 5.7955C25.3956 6.4195 25.2756 7.0075 25.0356 7.5595C24.7956 8.1115 24.4676 8.5955 24.0516 9.0115C23.6436 9.4195 23.1636 9.7435 22.6116 9.9835C22.0596 10.2235 21.4716 10.3435 20.8476 10.3435C20.2236 10.3435 19.6356 10.2235 19.0836 9.9835C18.5316 9.7435 18.0516 9.4195 17.6436 9.0115C17.2356 8.5955 16.9116 8.1115 16.6716 7.5595C16.4316 7.0075 16.3116 6.4195 16.3116 5.7955ZM18.6876 5.7955C18.6876 6.0995 18.7436 6.3875 18.8556 6.6595C18.9676 6.9315 19.1196 7.1715 19.3116 7.3795C19.5116 7.5875 19.7436 7.7555 20.0076 7.8835C20.2716 8.0035 20.5516 8.0635 20.8476 8.0635C21.1436 8.0635 21.4236 8.0035 21.6876 7.8835C21.9516 7.7555 22.1836 7.5875 22.3836 7.3795C22.5836 7.1715 22.7396 6.9315 22.8516 6.6595C22.9636 6.3875 23.0196 6.0995 23.0196 5.7955C23.0196 5.4995 22.9636 5.2155 22.8516 4.9435C22.7396 4.6635 22.5836 4.4235 22.3836 4.2235C22.1836 4.0155 21.9516 3.8515 21.6876 3.7315C21.4236 3.6035 21.1436 3.5395 20.8476 3.5395C20.5516 3.5395 20.2716 3.6035 20.0076 3.7315C19.7436 3.8515 19.5116 4.0155 19.3116 4.2235C19.1196 4.4235 18.9676 4.6635 18.8556 4.9435C18.7436 5.2155 18.6876 5.4995 18.6876 5.7955ZM26.2971 9.8995V1.6915C26.2971 1.6115 26.3251 1.5435 26.3811 1.4875C26.4371 1.4315 26.5051 1.4035 26.5851 1.4035H29.8611C31.1171 1.4035 32.1451 1.7715 32.9451 2.5075C33.3771 2.9075 33.7051 3.3835 33.9291 3.9355C34.1531 4.4875 34.2651 5.1075 34.2651 5.7955C34.2651 6.4835 34.1531 7.1075 33.9291 7.6675C33.7051 8.2195 33.3771 8.6955 32.9451 9.0955C32.5451 9.4555 32.0851 9.7275 31.5651 9.9115C31.0531 10.0955 30.4851 10.1875 29.8611 10.1875H26.5851C26.5051 10.1875 26.4371 10.1595 26.3811 10.1035C26.3251 10.0475 26.2971 9.9795 26.2971 9.8995ZM28.9611 7.9795H29.8611C30.0851 7.9795 30.3171 7.9515 30.5571 7.8955C30.7971 7.8395 31.0131 7.7355 31.2051 7.5835C31.3971 7.4235 31.5531 7.2035 31.6731 6.9235C31.8011 6.6355 31.8651 6.2635 31.8651 5.8075C31.8651 5.3515 31.8011 4.9835 31.6731 4.7035C31.5531 4.4155 31.3931 4.1955 31.1931 4.0435C31.0011 3.8835 30.7851 3.7755 30.5451 3.7195C30.3131 3.6635 30.0851 3.6355 29.8611 3.6355H28.9611C28.8811 3.6355 28.8131 3.6635 28.7571 3.7195C28.7011 3.7755 28.6731 3.8435 28.6731 3.9235V7.6915C28.6731 7.7715 28.7011 7.8395 28.7571 7.8955C28.8131 7.9515 28.8811 7.9795 28.9611 7.9795ZM35.3467 1.7035C35.3467 1.6235 35.3747 1.5555 35.4307 1.4995C35.4867 1.4435 35.5547 1.4155 35.6347 1.4155H37.4467C37.5267 1.4155 37.5947 1.4435 37.6507 1.4995C37.7067 1.5555 37.7347 1.6235 37.7347 1.7035V6.5635C37.7347 6.8755 37.7827 7.1355 37.8787 7.3435C37.9827 7.5435 38.1067 7.7035 38.2507 7.8235C38.4027 7.9355 38.5627 8.0155 38.7307 8.0635C38.8987 8.1115 39.0507 8.1355 39.1867 8.1355C39.3227 8.1355 39.4747 8.1115 39.6427 8.0635C39.8107 8.0155 39.9667 7.9355 40.1107 7.8235C40.2547 7.7035 40.3747 7.5435 40.4707 7.3435C40.5747 7.1355 40.6267 6.8755 40.6267 6.5635V1.7035C40.6267 1.6235 40.6547 1.5555 40.7107 1.4995C40.7667 1.4435 40.8347 1.4155 40.9147 1.4155H42.7267C42.8067 1.4155 42.8747 1.4435 42.9307 1.4995C42.9867 1.5555 43.0147 1.6235 43.0147 1.7035V6.5635C43.0147 7.1315 42.9227 7.6475 42.7387 8.1115C42.5627 8.5755 42.3067 8.9715 41.9707 9.2995C41.6347 9.6275 41.2307 9.8835 40.7587 10.0675C40.2867 10.2435 39.7627 10.3315 39.1867 10.3315C38.6107 10.3315 38.0867 10.2435 37.6147 10.0675C37.1427 9.8835 36.7387 9.6275 36.4027 9.2995C36.0667 8.9715 35.8067 8.5755 35.6227 8.1115C35.4387 7.6475 35.3467 7.1315 35.3467 6.5635V1.7035ZM52.6465 7.8475C52.4145 8.2235 52.1585 8.5675 51.8785 8.8795C51.5985 9.1835 51.2825 9.4435 50.9305 9.6595C50.5865 9.8755 50.2025 10.0435 49.7785 10.1635C49.3545 10.2835 48.8865 10.3435 48.3745 10.3435C47.7345 10.3435 47.1345 10.2235 46.5745 9.9835C46.0145 9.7435 45.5225 9.4195 45.0985 9.0115C44.6825 8.6035 44.3545 8.1235 44.1145 7.5715C43.8745 7.0195 43.7545 6.4315 43.7545 5.8075C43.7545 5.1835 43.8745 4.5955 44.1145 4.0435C44.3545 3.4915 44.6825 3.0115 45.0985 2.6035C45.5225 2.1955 46.0145 1.8715 46.5745 1.6315C47.1345 1.3915 47.7345 1.2715 48.3745 1.2715C48.9025 1.2715 49.3785 1.3315 49.8025 1.4515C50.2265 1.5715 50.6105 1.7395 50.9545 1.9555C51.2985 2.1715 51.6065 2.4355 51.8785 2.7475C52.1585 3.0515 52.4145 3.3875 52.6465 3.7555C52.6865 3.8195 52.6945 3.8875 52.6705 3.9595C52.6465 4.0315 52.5985 4.0835 52.5265 4.1155L50.8225 4.7875C50.7425 4.8195 50.6625 4.8195 50.5825 4.7875C50.5025 4.7555 50.4425 4.7075 50.4025 4.6435C50.1705 4.2755 49.8905 3.9955 49.5625 3.8035C49.2345 3.6035 48.8385 3.5035 48.3745 3.5035C48.0705 3.5035 47.7825 3.5675 47.5105 3.6955C47.2465 3.8235 47.0145 3.9955 46.8145 4.2115C46.6145 4.4195 46.4585 4.6635 46.3465 4.9435C46.2345 5.2235 46.1785 5.5115 46.1785 5.8075C46.1785 6.1115 46.2345 6.4035 46.3465 6.6835C46.4585 6.9555 46.6145 7.1955 46.8145 7.4035C47.0145 7.6115 47.2465 7.7795 47.5105 7.9075C47.7825 8.0355 48.0705 8.0995 48.3745 8.0995C48.8145 8.0995 49.2105 7.9955 49.5625 7.7875C49.9225 7.5715 50.2065 7.2955 50.4145 6.9595C50.4545 6.8955 50.5105 6.8475 50.5825 6.8155C50.6625 6.7835 50.7425 6.7835 50.8225 6.8155L52.5265 7.4875C52.5985 7.5195 52.6465 7.5715 52.6705 7.6435C52.6945 7.7075 52.6865 7.7755 52.6465 7.8475ZM58.8787 3.6115H57.1987C57.1187 3.6115 57.0507 3.6395 56.9947 3.6955C56.9387 3.7515 56.9107 3.8195 56.9107 3.8995V9.8995C56.9107 9.9795 56.8827 10.0475 56.8267 10.1035C56.7787 10.1595 56.7107 10.1875 56.6227 10.1875H54.8227C54.7427 10.1875 54.6747 10.1595 54.6187 10.1035C54.5627 10.0475 54.5347 9.9795 54.5347 9.8995V3.8995C54.5347 3.8195 54.5067 3.7515 54.4507 3.6955C54.4027 3.6395 54.3347 3.6115 54.2467 3.6115H52.5427C52.4627 3.6115 52.3947 3.5835 52.3387 3.5275C52.2827 3.4715 52.2547 3.4035 52.2547 3.3235V1.6915C52.2547 1.6115 52.2827 1.5435 52.3387 1.4875C52.3947 1.4315 52.4627 1.4035 52.5427 1.4035L58.8787 1.4035C58.9667 1.4035 59.0347 1.4315 59.0827 1.4875C59.1387 1.5435 59.1667 1.6115 59.1667 1.6915V3.3235C59.1667 3.4035 59.1387 3.4715 59.0827 3.5275C59.0347 3.5835 58.9667 3.6115 58.8787 3.6115ZM61.9275 10.1875H60.1155C60.0275 10.1875 59.9555 10.1595 59.8995 10.1035C59.8515 10.0475 59.8275 9.9795 59.8275 9.8995V1.7035C59.8275 1.6235 59.8515 1.5555 59.8995 1.4995C59.9555 1.4435 60.0275 1.4155 60.1155 1.4155H61.9275C62.0075 1.4155 62.0755 1.4435 62.1315 1.4995C62.1875 1.5555 62.2155 1.6235 62.2155 1.7035V9.8995C62.2155 9.9795 62.1875 10.0475 62.1315 10.1035C62.0755 10.1595 62.0075 10.1875 61.9275 10.1875ZM63.0656 5.7955C63.0656 5.1715 63.1856 4.5835 63.4256 4.0315C63.6656 3.4795 63.9896 2.9995 64.3976 2.5915C64.8056 2.1755 65.2856 1.8475 65.8376 1.6075C66.3896 1.3675 66.9776 1.2475 67.6016 1.2475C68.2256 1.2475 68.8136 1.3675 69.3656 1.6075C69.9176 1.8475 70.3976 2.1755 70.8056 2.5915C71.2216 2.9995 71.5496 3.4795 71.7896 4.0315C72.0296 4.5835 72.1496 5.1715 72.1496 5.7955C72.1496 6.4195 72.0296 7.0075 71.7896 7.5595C71.5496 8.1115 71.2216 8.5955 70.8056 9.0115C70.3976 9.4195 69.9176 9.7435 69.3656 9.9835C68.8136 10.2235 68.2256 10.3435 67.6016 10.3435C66.9776 10.3435 66.3896 10.2235 65.8376 9.9835C65.2856 9.7435 64.8056 9.4195 64.3976 9.0115C63.9896 8.5955 63.6656 8.1115 63.4256 7.5595C63.1856 7.0075 63.0656 6.4195 63.0656 5.7955ZM65.4416 5.7955C65.4416 6.0995 65.4976 6.3875 65.6096 6.6595C65.7216 6.9315 65.8736 7.1715 66.0656 7.3795C66.2656 7.5875 66.4976 7.7555 66.7616 7.8835C67.0256 8.0035 67.3056 8.0635 67.6016 8.0635C67.8976 8.0635 68.1776 8.0035 68.4416 7.8835C68.7056 7.7555 68.9376 7.5875 69.1376 7.3795C69.3376 7.1715 69.4936 6.9315 69.6056 6.6595C69.7176 6.3875 69.7736 6.0995 69.7736 5.7955C69.7736 5.4995 69.7176 5.2155 69.6056 4.9435C69.4936 4.6635 69.3376 4.4235 69.1376 4.2235C68.9376 4.0155 68.7056 3.8515 68.4416 3.7315C68.1776 3.6035 67.8976 3.5395 67.6016 3.5395C67.3056 3.5395 67.0256 3.6035 66.7616 3.7315C66.4976 3.8515 66.2656 4.0155 66.0656 4.2235C65.8736 4.4235 65.7216 4.6635 65.6096 4.9435C65.4976 5.2155 65.4416 5.4995 65.4416 5.7955ZM81.2831 1.6915V9.8995C81.2831 9.9795 81.2551 10.0475 81.1991 10.1035C81.1431 10.1595 81.0751 10.1875 80.9951 10.1875H79.2191C79.1391 10.1875 79.0551 10.1635 78.9671 10.1155C78.8791 10.0675 78.8111 10.0115 78.7631 9.9475L75.6311 5.5435C75.5831 5.4795 75.5311 5.4555 75.4751 5.4715C75.4271 5.4795 75.4031 5.5235 75.4031 5.6035V9.8995C75.4031 9.9795 75.3751 10.0475 75.3191 10.1035C75.2631 10.1595 75.1951 10.1875 75.1151 10.1875H73.3271C73.2471 10.1875 73.1791 10.1595 73.1231 10.1035C73.0671 10.0475 73.0391 9.9795 73.0391 9.8995V1.6915C73.0391 1.6115 73.0671 1.5435 73.1231 1.4875C73.1791 1.4315 73.2471 1.4035 73.3271 1.4035H75.1271C75.2071 1.4035 75.2911 1.4275 75.3791 1.4755C75.4671 1.5155 75.5351 1.5675 75.5831 1.6315L78.7031 6.0355C78.7511 6.0995 78.7991 6.1275 78.8471 6.1195C78.9031 6.1115 78.9311 6.0675 78.9311 5.9875V1.6915C78.9311 1.6115 78.9591 1.5435 79.0151 1.4875C79.0711 1.4315 79.1391 1.4035 79.2191 1.4035H80.9951C81.0751 1.4035 81.1431 1.4315 81.1991 1.4875C81.2551 1.5435 81.2831 1.6115 81.2831 1.6915Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pcm7ut\",\"data-framer-name\":\"Line 306\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:95,layoutDependency:layoutDependency,layoutId:\"Tq13G16qG\",svg:'<svg width=\"95\" height=\"3\" viewBox=\"-1 -1 95 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"-4.37114e-08\" y1=\"0.5\" x2=\"93\" y2=\"0.499992\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s6ocqw\",\"data-framer-name\":\"Line 309\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"BRyukkyXr\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.542969\" y1=\"0.5\" x2=\"93.543\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15s80em\",\"data-framer-name\":\"Line 312\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"sqnmRYuRq\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.542969\" y1=\"0.5\" x2=\"93.543\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19x7aq8\",\"data-framer-name\":\"Line 315\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:96,layoutDependency:layoutDependency,layoutId:\"Xz1Ry9wcn\",svg:'<svg width=\"96\" height=\"3\" viewBox=\"-1 -1 96 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.542969\" y1=\"0.5\" x2=\"93.543\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-asj9em\",\"data-framer-name\":\"Line 307\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"FqRSIHaex\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.269531\" y1=\"0.5\" x2=\"111.27\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oz1awk\",\"data-framer-name\":\"Line 310\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"XPafA08rP\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.269531\" y1=\"0.5\" x2=\"111.27\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n2oexn\",\"data-framer-name\":\"Line 313\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"Q4r22OlyX\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.269531\" y1=\"0.5\" x2=\"111.27\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-km848l\",\"data-framer-name\":\"Line 316\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:114,layoutDependency:layoutDependency,layoutId:\"twzshivrG\",svg:'<svg width=\"114\" height=\"3\" viewBox=\"-1 -1 114 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.269531\" y1=\"0.5\" x2=\"111.27\" y2=\"0.5\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iejw7z\",\"data-framer-name\":\"Group 6774\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:250,intrinsicWidth:124,layoutDependency:layoutDependency,layoutId:\"LkvAwGEh6\",svg:'<svg width=\"124\" height=\"250\" viewBox=\"0 0 124 250\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"124\" height=\"250\" rx=\"20.1955\" fill=\"#DBA16E\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 221)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 170)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 119)\" stroke=\"white\"/>\\n<line y1=\"-0.5\" x2=\"105.602\" y2=\"-0.5\" transform=\"matrix(0.999998 0.00197964 -0.00161642 0.999999 9 67)\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"NONE\"})}),className:\"framer-hc7jx8\",\"data-framer-name\":\"none\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"neQRIP0O4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"fillers\"})}),className:\"framer-1y5zmd2\",\"data-framer-name\":\"fillers\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"ScZeQej7V\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"real meat\"})}),className:\"framer-181h940\",\"data-framer-name\":\"real meat\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"psEDcycGu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"small batch\"})}),className:\"framer-29m1xi\",\"data-framer-name\":\"small batch\",fonts:[\"CUSTOM;Heavitas Regular\"],layoutDependency:layoutDependency,layoutId:\"yA89HP8bl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e35sq1\",\"data-framer-name\":\"Monogram\",fill:\"black\",intrinsicHeight:67,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"GsjIasjFk\",style:{rotate:15},svg:'<svg width=\"65\" height=\"67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.426 14.965c.65-.126 1.33.129 1.671.696l2.506 4.153a9.508 9.508 0 0 1 1.368 4.912v18.88a9.508 9.508 0 0 1-3.032 6.962L50.76 60.97a9.509 9.509 0 0 1-5.02 2.434l-17.096 2.651a9.508 9.508 0 0 1-7.917-2.419L4.025 48.173a9.508 9.508 0 0 1-2.985-8.07l2.54-21.946a9.508 9.508 0 0 1 4.53-7.046l16.55-9.993c.072-.044.145-.086.218-.128.603-.342 1.34-.1 1.783.433a11.186 11.186 0 0 0 3.123 2.61 10.802 10.802 0 0 0 4.496 1.371 1.799 1.799 0 0 1 1.558 1.221c.724 2.173 2.193 4.074 4.28 5.25 2.547 1.435 5.466 1.482 7.966.39a1.779 1.779 0 0 1 1.84.246c.53.44 1.106.837 1.723 1.185a11.359 11.359 0 0 0 7.778 1.268ZM31.814 49.378c.37-.381.74-.761 1.126-1.123.114-.106.338-.129.509-.123 1.122.037 2.227-.065 3.31-.38 2.115-.617 3.723-1.87 4.638-3.941.402-.912.577-1.89.606-2.898.037-1.276-.063-2.53-.575-3.706-.99-2.279-2.789-3.544-5.118-4.06-.475-.106-.967-.134-1.459-.161-.225-.013-.45-.025-.673-.046-.24-.021-.38.052-.365.334.025.508.055 1.015.085 1.523.074 1.263.148 2.525.154 3.788.003.557.033 1.113.062 1.67.073 1.364.145 2.73-.174 4.1-.537 2.305-1.78 4.047-3.735 5.27-1.587.993-3.345 1.428-5.195 1.5-1.196.049-2.388.011-3.54-.365-1.39-.453-2.692-1.07-3.568-2.33-.92-1.321-1.218-2.742-.49-4.264.408-.85 1.106-1.218 2.027-1.3 1.83-.16 2.842.965 3.605 2.389.294.549.495 1.15.696 1.753.096.288.192.576.299.86.245.647.666 1.066 1.387 1.113.633.042 1.117-.241 1.314-.812.226-.652.431-1.355.434-2.036.03-7.185.04-14.372-.003-21.557-.006-1.103-.248-2.216-.484-3.302v-.004c-.212-.972-.764-1.764-1.717-2.348.074-.01.135-.02.187-.028h.002c.094-.016.162-.027.23-.027.415-.002.83-.001 1.246 0 .52 0 1.04 0 1.559-.003.887-.006 1.774-.018 2.662-.029 2.007-.026 4.014-.052 6.02-.015 1.534.028 3.08.18 4.59.455 1.766.323 3.348 1.105 4.463 2.632.622.852.921 1.836.931 2.884.008.804.008 1.637-.177 2.41-.508 2.133-2.1 3.242-3.946 4.062a7.5 7.5 0 0 1-.41.162l-.252.095c.248.098.489.188.723.275.487.18.945.35 1.382.566 2.104 1.037 3.636 2.644 4.388 4.922.56 1.698.59 3.466.271 5.214-.594 3.243-2.67 5.204-5.555 6.379-1.352.55-2.773.896-4.234.928-1.805.04-3.61.052-5.415.064-.734.005-1.469.01-2.203.017l-.006-.023-.004-.017-.008-.032-.005-.02-.002.002.407-.417Zm8.068-23.452v-.456c-.03-1.967-.911-3.38-2.648-4.239-.932-.46-1.923-.568-2.942-.583-.373-.006-.497.189-.55.48-.057.32-.108.648-.105.972.011 1.54.027 3.078.044 4.617l.039 4.04c.002.311.138.425.422.4l.14-.013.102-.009c.253-.021.507-.043.758-.075 1.253-.16 2.425-.531 3.364-1.443 1.056-1.027 1.457-2.31 1.377-3.69ZM19.658 39.604c0 1.122-.755 1.946-1.787 1.952-1.082.007-2.077-1.095-2.08-2.303-.002-1.041.761-1.917 1.681-1.905 1.38.019 2.195 1.09 2.186 2.256Zm-3.388 2.909c.05-1.01-1.065-2.377-2.16-2.169-1.11.002-1.815.68-1.817 1.749-.004 1.211 1.003 2.283 2.143 2.28 1.038-.002 1.781-.81 1.834-1.86Zm7.336-2.278c.11.763-.502 1.573-1.429 1.6-.8.023-1.52-.857-1.524-1.8-.002-.965.557-1.558 1.42-1.584.82-.026 1.664.872 1.533 1.784Zm-8.09 6.75c-.001-.914-.71-1.583-1.676-1.58v.002c-.947-.132-1.498.722-1.469 1.443a1.7 1.7 0 0 0 1.743 1.658c.882-.005 1.402-.57 1.401-1.523Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8jo43\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:88,layoutDependency:layoutDependency,layoutId:\"Teht8hyoa\",svg:'<svg width=\"88\" height=\"15\" viewBox=\"-1 -1 88 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M0.0932492 1.564C0.0532492 1.468 0.0492492 1.388 0.0812492 1.324C0.121249 1.252 0.185249 1.216 0.273249 1.216H2.22925C2.30925 1.216 2.38525 1.244 2.45725 1.3C2.52925 1.348 2.57725 1.408 2.60125 1.48L3.96925 5.476C3.99325 5.556 4.03325 5.596 4.08925 5.596C4.15325 5.596 4.19725 5.556 4.22125 5.476L5.54125 1.492C5.56525 1.412 5.61325 1.348 5.68525 1.3C5.75725 1.244 5.83725 1.216 5.92525 1.216H7.52125C7.60925 1.216 7.68925 1.244 7.76125 1.3C7.83325 1.348 7.88125 1.412 7.90525 1.492L9.22525 5.5C9.24925 5.58 9.28925 5.62 9.34525 5.62C9.40925 5.62 9.45725 5.58 9.48925 5.5L10.8692 1.48C10.9012 1.408 10.9532 1.348 11.0252 1.3C11.0972 1.244 11.1772 1.216 11.2652 1.216H13.2093C13.2972 1.216 13.3572 1.252 13.3893 1.324C13.4212 1.388 13.4252 1.456 13.4012 1.528L10.4972 9.724C10.4652 9.804 10.4132 9.872 10.3412 9.928C10.2692 9.976 10.1892 10 10.1012 10H8.55325C8.46525 10 8.38525 9.976 8.31325 9.928C8.24125 9.872 8.19325 9.804 8.16925 9.724L6.84925 5.728C6.82525 5.648 6.78125 5.608 6.71725 5.608C6.66125 5.608 6.62125 5.648 6.59725 5.728L5.27725 9.724C5.25325 9.804 5.20525 9.872 5.13325 9.928C5.06125 9.976 4.98125 10 4.89325 10H3.34525C3.25725 10 3.17725 9.972 3.10525 9.916C3.03325 9.852 2.98925 9.788 2.97325 9.724L0.0932492 1.564ZM21.8925 1.504V9.712C21.8925 9.792 21.8645 9.86 21.8085 9.916C21.7525 9.972 21.6845 10 21.6045 10H19.8045C19.7165 10 19.6445 9.972 19.5885 9.916C19.5405 9.86 19.5165 9.792 19.5165 9.712V7.144C19.5165 7.064 19.4885 6.996 19.4325 6.94C19.3765 6.884 19.3085 6.856 19.2285 6.856H16.7565C16.6685 6.856 16.5965 6.884 16.5405 6.94C16.4925 6.996 16.4685 7.064 16.4685 7.144V9.712C16.4685 9.792 16.4405 9.86 16.3845 9.916C16.3285 9.972 16.2605 10 16.1805 10H14.3925C14.3045 10 14.2325 9.972 14.1765 9.916C14.1285 9.86 14.1045 9.792 14.1045 9.712V1.504C14.1045 1.424 14.1285 1.356 14.1765 1.3C14.2325 1.244 14.3045 1.216 14.3925 1.216H16.1805C16.2605 1.216 16.3285 1.244 16.3845 1.3C16.4405 1.356 16.4685 1.424 16.4685 1.504V4.348C16.4685 4.428 16.4925 4.496 16.5405 4.552C16.5965 4.608 16.6685 4.636 16.7565 4.636H19.2285C19.3085 4.636 19.3765 4.608 19.4325 4.552C19.4885 4.496 19.5165 4.428 19.5165 4.348V1.504C19.5165 1.424 19.5405 1.356 19.5885 1.3C19.6445 1.244 19.7165 1.216 19.8045 1.216H21.6045C21.6845 1.216 21.7525 1.244 21.8085 1.3C21.8645 1.356 21.8925 1.424 21.8925 1.504ZM25.5529 3.712V4.216C25.5529 4.296 25.5809 4.364 25.6369 4.42C25.6929 4.476 25.7609 4.504 25.8409 4.504H29.0929C29.1729 4.504 29.2409 4.532 29.2969 4.588C29.3529 4.644 29.3809 4.712 29.3809 4.792V6.448C29.3809 6.528 29.3529 6.596 29.2969 6.652C29.2409 6.708 29.1729 6.736 29.0929 6.736H25.8409C25.7609 6.736 25.6929 6.764 25.6369 6.82C25.5809 6.876 25.5529 6.944 25.5529 7.024V7.48C25.5529 7.56 25.5809 7.628 25.6369 7.684C25.6929 7.74 25.7609 7.768 25.8409 7.768H29.5729C29.6529 7.768 29.7209 7.796 29.7769 7.852C29.8329 7.908 29.8609 7.976 29.8609 8.056V9.712C29.8609 9.792 29.8329 9.86 29.7769 9.916C29.7209 9.972 29.6529 10 29.5729 10H23.4649C23.3849 10 23.3169 9.972 23.2609 9.916C23.2049 9.86 23.1769 9.792 23.1769 9.712V1.504C23.1769 1.424 23.2049 1.356 23.2609 1.3C23.3169 1.244 23.3849 1.216 23.4649 1.216H29.5729C29.6529 1.216 29.7209 1.244 29.7769 1.3C29.8329 1.356 29.8609 1.424 29.8609 1.504V3.136C29.8609 3.216 29.8329 3.284 29.7769 3.34C29.7209 3.396 29.6529 3.424 29.5729 3.424H25.8409C25.7609 3.424 25.6929 3.452 25.6369 3.508C25.5809 3.564 25.5529 3.632 25.5529 3.712ZM33.5537 1.492C33.5857 1.42 33.6377 1.36 33.7097 1.312C33.7897 1.256 33.8737 1.228 33.9617 1.228H35.6417C35.7217 1.228 35.7977 1.256 35.8697 1.312C35.9497 1.36 36.0057 1.42 36.0377 1.492L39.5417 9.652C39.5738 9.724 39.5657 9.8 39.5177 9.88C39.4777 9.96 39.3937 10 39.2657 10H37.2137C37.1257 10 37.0417 9.976 36.9617 9.928C36.8897 9.872 36.8337 9.808 36.7937 9.736L36.4697 9.016C36.4297 8.944 36.3697 8.884 36.2897 8.836C36.2177 8.78 36.1417 8.752 36.0617 8.752H33.5297C33.4417 8.752 33.3577 8.78 33.2777 8.836C33.2057 8.884 33.1537 8.944 33.1217 9.016L32.7857 9.736C32.7537 9.808 32.6977 9.872 32.6177 9.928C32.5457 9.976 32.4697 10 32.3897 10H30.3257C30.2857 10 30.2457 9.992 30.2057 9.976C30.1577 9.96 30.1217 9.936 30.0977 9.904C30.0657 9.872 30.0457 9.832 30.0377 9.784C30.0297 9.736 30.0417 9.68 30.0737 9.616L33.5537 1.492ZM34.2617 6.712H35.3297C35.4097 6.712 35.4657 6.688 35.4977 6.64C35.5377 6.584 35.5377 6.52 35.4977 6.448C35.4177 6.248 35.3217 6.016 35.2097 5.752C35.0977 5.48 34.9937 5.228 34.8977 4.996C34.8657 4.924 34.8297 4.888 34.7897 4.888C34.7497 4.888 34.7137 4.924 34.6817 4.996L34.0817 6.448C34.0497 6.52 34.0497 6.584 34.0817 6.64C34.1137 6.688 34.1737 6.712 34.2617 6.712ZM44.8694 3.424H43.1894C43.1094 3.424 43.0414 3.452 42.9854 3.508C42.9294 3.564 42.9014 3.632 42.9014 3.712V9.712C42.9014 9.792 42.8734 9.86 42.8174 9.916C42.7694 9.972 42.7014 10 42.6134 10H40.8134C40.7334 10 40.6654 9.972 40.6094 9.916C40.5534 9.86 40.5254 9.792 40.5254 9.712V3.712C40.5254 3.632 40.4974 3.564 40.4414 3.508C40.3934 3.452 40.3254 3.424 40.2374 3.424H38.5334C38.4534 3.424 38.3854 3.396 38.3294 3.34C38.2734 3.284 38.2454 3.216 38.2454 3.136V1.504C38.2454 1.424 38.2734 1.356 38.3294 1.3C38.3854 1.244 38.4534 1.216 38.5334 1.216H44.8694C44.9574 1.216 45.0254 1.244 45.0734 1.3C45.1294 1.356 45.1574 1.424 45.1574 1.504V3.136C45.1574 3.216 45.1294 3.284 45.0734 3.34C45.0254 3.396 44.9574 3.424 44.8694 3.424ZM54.9118 10.048L54.2638 9.388C54.1998 9.324 54.1278 9.292 54.0478 9.292C53.9758 9.292 53.9078 9.32 53.8438 9.376C53.6518 9.544 53.4598 9.676 53.2678 9.772C53.0838 9.868 52.9038 9.944 52.7278 10C52.5518 10.056 52.3838 10.092 52.2238 10.108C52.0718 10.124 51.9318 10.132 51.8038 10.132C51.0118 10.132 50.3678 9.928 49.8718 9.52C49.3758 9.112 49.0878 8.568 49.0078 7.888C48.9438 7.384 49.0078 6.944 49.1998 6.568C49.3918 6.192 49.6798 5.844 50.0638 5.524C50.0798 5.508 50.0998 5.492 50.1238 5.476C50.1558 5.452 50.2038 5.416 50.2678 5.368C50.3318 5.32 50.3678 5.26 50.3758 5.188C50.3838 5.108 50.3678 5.032 50.3278 4.96C49.9998 4.4 49.8718 3.812 49.9438 3.196C49.9838 2.884 50.0758 2.6 50.2198 2.344C50.3718 2.08 50.5558 1.856 50.7718 1.672C50.9958 1.488 51.2478 1.344 51.5278 1.24C51.8078 1.136 52.0998 1.084 52.4038 1.084C52.8678 1.084 53.3038 1.2 53.7118 1.432C54.1198 1.656 54.4198 1.984 54.6118 2.416C54.7398 2.704 54.8078 2.992 54.8158 3.28C54.8238 3.568 54.7838 3.844 54.6958 4.108C54.6158 4.372 54.4918 4.62 54.3238 4.852C54.1558 5.084 53.9598 5.288 53.7358 5.464C53.6718 5.512 53.6358 5.572 53.6278 5.644C53.6198 5.708 53.6438 5.772 53.6998 5.836L53.8918 6.016C53.9478 6.08 54.0078 6.108 54.0718 6.1C54.1438 6.084 54.1998 6.044 54.2398 5.98C54.3198 5.844 54.3918 5.716 54.4558 5.596C54.5278 5.476 54.5838 5.372 54.6238 5.284C54.6638 5.212 54.7198 5.164 54.7918 5.14C54.8638 5.108 54.9398 5.108 55.0198 5.14L56.3278 5.716C56.3998 5.748 56.4478 5.8 56.4718 5.872C56.5038 5.944 56.4998 6.016 56.4598 6.088C56.3798 6.232 56.2678 6.424 56.1238 6.664C55.9878 6.896 55.8278 7.148 55.6438 7.42C55.5958 7.484 55.5718 7.56 55.5718 7.648C55.5798 7.736 55.6118 7.808 55.6678 7.864C55.8038 8.008 55.9358 8.152 56.0638 8.296C56.1998 8.432 56.3278 8.568 56.4478 8.704C56.5038 8.768 56.5278 8.84 56.5198 8.92C56.5198 8.992 56.4878 9.052 56.4238 9.1L55.3318 10.06C55.2678 10.116 55.1958 10.14 55.1158 10.132C55.0358 10.132 54.9678 10.104 54.9118 10.048ZM51.3958 6.808C51.2918 6.872 51.1998 6.972 51.1198 7.108C51.0478 7.236 51.0318 7.416 51.0718 7.648C51.1038 7.832 51.1758 7.972 51.2878 8.068C51.3998 8.164 51.5278 8.224 51.6718 8.248C51.8158 8.264 51.9638 8.252 52.1158 8.212C52.2758 8.164 52.4158 8.096 52.5358 8.008C52.5998 7.96 52.6278 7.896 52.6198 7.816C52.6198 7.728 52.5918 7.652 52.5358 7.588L51.8398 6.868C51.7838 6.804 51.7118 6.768 51.6238 6.76C51.5358 6.744 51.4598 6.76 51.3958 6.808ZM52.4398 4.06C52.5838 3.964 52.6838 3.848 52.7398 3.712C52.8038 3.576 52.8318 3.448 52.8238 3.328C52.8158 3.2 52.7718 3.096 52.6918 3.016C52.6198 2.928 52.5198 2.884 52.3918 2.884C52.2958 2.884 52.1998 2.924 52.1038 3.004C52.0158 3.076 51.9598 3.196 51.9358 3.364C51.9198 3.452 51.9238 3.548 51.9478 3.652C51.9718 3.756 52.0038 3.856 52.0438 3.952C52.0758 4.024 52.1318 4.072 52.2118 4.096C52.2998 4.12 52.3758 4.108 52.4398 4.06ZM62.0562 6.988C62.4882 7.268 62.9162 7.488 63.3402 7.648C63.7642 7.808 64.1602 7.888 64.5282 7.888C64.8802 7.888 65.1482 7.84 65.3322 7.744C65.5162 7.64 65.6082 7.488 65.6082 7.288C65.6082 7.184 65.5682 7.104 65.4882 7.048C65.4082 6.984 65.3002 6.932 65.1642 6.892C65.0362 6.852 64.8842 6.82 64.7082 6.796C64.5322 6.772 64.3522 6.74 64.1682 6.7C63.9922 6.668 63.7842 6.632 63.5442 6.592C63.3122 6.544 63.0722 6.48 62.8242 6.4C62.5762 6.312 62.3282 6.204 62.0802 6.076C61.8402 5.948 61.6242 5.784 61.4322 5.584C61.2402 5.384 61.0842 5.148 60.9642 4.876C60.8522 4.596 60.7962 4.268 60.7962 3.892C60.7962 3.34 60.9042 2.884 61.1202 2.524C61.3362 2.164 61.6082 1.88 61.9362 1.672C62.2722 1.456 62.6442 1.308 63.0522 1.228C63.4602 1.14 63.8562 1.096 64.2402 1.096C64.9122 1.096 65.5122 1.196 66.0402 1.396C66.5762 1.588 67.0882 1.872 67.5762 2.248C67.6402 2.304 67.6762 2.372 67.6842 2.452C67.6922 2.532 67.6722 2.604 67.6242 2.668L66.6882 4C66.6402 4.064 66.5762 4.104 66.4962 4.12C66.4162 4.136 66.3442 4.12 66.2802 4.072C65.8722 3.816 65.4922 3.636 65.1402 3.532C64.7882 3.42 64.4642 3.364 64.1682 3.364C64.0802 3.364 63.9762 3.368 63.8562 3.376C63.7442 3.376 63.6362 3.392 63.5322 3.424C63.4282 3.448 63.3402 3.492 63.2682 3.556C63.2042 3.62 63.1722 3.708 63.1722 3.82C63.1722 3.932 63.2562 4.032 63.4242 4.12C63.5922 4.208 63.7842 4.284 64.0002 4.348C64.2162 4.412 64.4242 4.464 64.6242 4.504C64.8242 4.536 64.9522 4.556 65.0082 4.564C65.2962 4.62 65.6122 4.704 65.9562 4.816C66.3002 4.92 66.6202 5.08 66.9162 5.296C67.2202 5.504 67.4722 5.78 67.6722 6.124C67.8802 6.46 67.9842 6.884 67.9842 7.396C67.9842 7.876 67.9002 8.292 67.7322 8.644C67.5642 8.988 67.3282 9.272 67.0242 9.496C66.7282 9.72 66.3682 9.888 65.9442 10C65.5282 10.104 65.0642 10.156 64.5522 10.156C64.1362 10.156 63.7482 10.12 63.3882 10.048C63.0282 9.984 62.6922 9.892 62.3802 9.772C62.0682 9.652 61.7762 9.512 61.5042 9.352C61.2402 9.184 60.9962 9.008 60.7722 8.824C60.7082 8.776 60.6722 8.712 60.6642 8.632C60.6562 8.544 60.6762 8.468 60.7242 8.404L61.6482 7.072C61.6962 7.008 61.7602 6.968 61.8402 6.952C61.9202 6.936 61.9922 6.948 62.0562 6.988ZM68.4724 5.608C68.4724 4.984 68.5924 4.396 68.8324 3.844C69.0724 3.292 69.3964 2.812 69.8044 2.404C70.2124 1.988 70.6924 1.66 71.2444 1.42C71.7964 1.18 72.3844 1.06 73.0084 1.06C73.6324 1.06 74.2204 1.18 74.7724 1.42C75.3244 1.66 75.8044 1.988 76.2124 2.404C76.6284 2.812 76.9564 3.292 77.1964 3.844C77.4364 4.396 77.5564 4.984 77.5564 5.608C77.5564 6.232 77.4364 6.82 77.1964 7.372C76.9564 7.924 76.6284 8.408 76.2124 8.824C75.8044 9.232 75.3244 9.556 74.7724 9.796C74.2204 10.036 73.6324 10.156 73.0084 10.156C72.3844 10.156 71.7964 10.036 71.2444 9.796C70.6924 9.556 70.2124 9.232 69.8044 8.824C69.3964 8.408 69.0724 7.924 68.8324 7.372C68.5924 6.82 68.4724 6.232 68.4724 5.608ZM70.8484 5.608C70.8484 5.912 70.9044 6.2 71.0164 6.472C71.1284 6.744 71.2804 6.984 71.4724 7.192C71.6724 7.4 71.9044 7.568 72.1684 7.696C72.4324 7.816 72.7124 7.876 73.0084 7.876C73.3044 7.876 73.5844 7.816 73.8484 7.696C74.1124 7.568 74.3444 7.4 74.5444 7.192C74.7444 6.984 74.9004 6.744 75.0124 6.472C75.1244 6.2 75.1804 5.912 75.1804 5.608C75.1804 5.312 75.1244 5.028 75.0124 4.756C74.9004 4.476 74.7444 4.236 74.5444 4.036C74.3444 3.828 74.1124 3.664 73.8484 3.544C73.5844 3.416 73.3044 3.352 73.0084 3.352C72.7124 3.352 72.4324 3.416 72.1684 3.544C71.9044 3.664 71.6724 3.828 71.4724 4.036C71.2804 4.236 71.1284 4.476 71.0164 4.756C70.9044 5.028 70.8484 5.312 70.8484 5.608ZM85.8109 1.564L82.8109 6.424C82.7709 6.496 82.7349 6.584 82.7029 6.688C82.6709 6.792 82.6549 6.884 82.6549 6.964V9.712C82.6549 9.792 82.6269 9.86 82.5709 9.916C82.5149 9.972 82.4469 10 82.3669 10H80.5549C80.4749 10 80.4069 9.972 80.3509 9.916C80.2949 9.86 80.2669 9.792 80.2669 9.712V6.976C80.2669 6.896 80.2509 6.804 80.2189 6.7C80.1949 6.588 80.1629 6.5 80.1229 6.436C79.6429 5.612 79.1509 4.804 78.6469 4.012C78.1509 3.22 77.6549 2.404 77.1589 1.564C77.1189 1.492 77.1109 1.42 77.1349 1.348C77.1589 1.268 77.2109 1.228 77.2909 1.228H79.4269C79.5069 1.228 79.5869 1.252 79.6669 1.3C79.7549 1.348 79.8189 1.408 79.8589 1.48L81.3349 4.048C81.3749 4.112 81.4229 4.144 81.4789 4.144C81.5349 4.144 81.5829 4.112 81.6229 4.048L83.0869 1.48C83.1269 1.408 83.1869 1.348 83.2669 1.3C83.3549 1.252 83.4389 1.228 83.5189 1.228L85.6789 1.228C85.7589 1.228 85.8149 1.256 85.8469 1.312C85.8869 1.368 85.8749 1.452 85.8109 1.564Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15vjzqs\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:90,layoutDependency:layoutDependency,layoutId:\"k3pCB6nyt\",svg:'<svg width=\"90\" height=\"15\" viewBox=\"-1 -1 90 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M7.17875 5.476C7.30675 5.548 7.43475 5.636 7.56275 5.74C7.69075 5.844 7.80675 5.972 7.91075 6.124C8.02275 6.276 8.11075 6.452 8.17475 6.652C8.24675 6.852 8.28275 7.08 8.28275 7.336C8.28275 7.856 8.19875 8.288 8.03075 8.632C7.87075 8.968 7.65075 9.24 7.37075 9.448C7.09075 9.648 6.76675 9.792 6.39875 9.88C6.03875 9.96 5.65875 10 5.25875 10H1.45475C1.37475 10 1.30675 9.972 1.25075 9.916C1.19475 9.86 1.16675 9.792 1.16675 9.712V1.504C1.16675 1.424 1.19475 1.356 1.25075 1.3C1.30675 1.244 1.37475 1.216 1.45475 1.216H5.07875C5.46275 1.216 5.83075 1.26 6.18275 1.348C6.53475 1.428 6.84275 1.564 7.10675 1.756C7.37875 1.948 7.59475 2.2 7.75475 2.512C7.92275 2.816 8.00675 3.192 8.00675 3.64C8.00675 4 7.91475 4.312 7.73075 4.576C7.55475 4.84 7.36275 5.048 7.15475 5.2C7.01075 5.304 7.01875 5.396 7.17875 5.476ZM3.83075 4.552H4.94675C5.10675 4.552 5.23475 4.492 5.33075 4.372C5.42675 4.244 5.47475 4.104 5.47475 3.952C5.47475 3.808 5.41475 3.684 5.29475 3.58C5.18275 3.476 5.07475 3.424 4.97075 3.424H3.83075C3.75075 3.424 3.68275 3.452 3.62675 3.508C3.57075 3.564 3.54275 3.632 3.54275 3.712V4.264C3.54275 4.344 3.57075 4.412 3.62675 4.468C3.68275 4.524 3.75075 4.552 3.83075 4.552ZM5.09075 6.532H3.83075C3.75075 6.532 3.68275 6.56 3.62675 6.616C3.57075 6.672 3.54275 6.74 3.54275 6.82V7.504C3.54275 7.584 3.57075 7.652 3.62675 7.708C3.68275 7.764 3.75075 7.792 3.83075 7.792H5.17475C5.31875 7.792 5.45475 7.732 5.58275 7.612C5.71075 7.492 5.77475 7.352 5.77475 7.192C5.77475 7.048 5.71075 6.904 5.58275 6.76C5.46275 6.608 5.29875 6.532 5.09075 6.532ZM16.3166 1.564L13.3166 6.424C13.2766 6.496 13.2406 6.584 13.2086 6.688C13.1766 6.792 13.1606 6.884 13.1606 6.964V9.712C13.1606 9.792 13.1326 9.86 13.0766 9.916C13.0206 9.972 12.9526 10 12.8726 10H11.0606C10.9806 10 10.9126 9.972 10.8566 9.916C10.8006 9.86 10.7726 9.792 10.7726 9.712V6.976C10.7726 6.896 10.7566 6.804 10.7246 6.7C10.7006 6.588 10.6686 6.5 10.6286 6.436C10.1486 5.612 9.65656 4.804 9.15256 4.012C8.65656 3.22 8.16056 2.404 7.66456 1.564C7.62456 1.492 7.61656 1.42 7.64056 1.348C7.66456 1.268 7.71656 1.228 7.79656 1.228H9.93256C10.0126 1.228 10.0926 1.252 10.1726 1.3C10.2606 1.348 10.3246 1.408 10.3646 1.48L11.8406 4.048C11.8806 4.112 11.9286 4.144 11.9846 4.144C12.0406 4.144 12.0886 4.112 12.1286 4.048L13.5926 1.48C13.6326 1.408 13.6926 1.348 13.7726 1.3C13.8606 1.252 13.9446 1.228 14.0246 1.228H16.1846C16.2646 1.228 16.3206 1.256 16.3526 1.312C16.3926 1.368 16.3806 1.452 16.3166 1.564ZM20.4324 6.592H16.6044C16.5244 6.592 16.4564 6.564 16.4004 6.508C16.3444 6.452 16.3164 6.384 16.3164 6.304V4.684C16.3164 4.596 16.3444 4.528 16.4004 4.48C16.4564 4.424 16.5244 4.396 16.6044 4.396H20.4324C20.5124 4.396 20.5804 4.424 20.6364 4.48C20.6924 4.528 20.7204 4.596 20.7204 4.684V6.304C20.7204 6.384 20.6924 6.452 20.6364 6.508C20.5804 6.564 20.5124 6.592 20.4324 6.592ZM24.9705 7.636H23.9265C23.8465 7.636 23.7785 7.664 23.7225 7.72C23.6665 7.776 23.6385 7.844 23.6385 7.924V9.712C23.6385 9.792 23.6105 9.86 23.5545 9.916C23.4985 9.972 23.4305 10 23.3505 10H21.5385C21.4585 10 21.3905 9.972 21.3345 9.916C21.2785 9.86 21.2505 9.792 21.2505 9.712V1.504C21.2505 1.424 21.2785 1.356 21.3345 1.3C21.3905 1.244 21.4585 1.216 21.5385 1.216H25.2105C25.6585 1.216 26.0785 1.3 26.4705 1.468C26.8705 1.636 27.2145 1.868 27.5025 2.164C27.7985 2.46 28.0305 2.804 28.1985 3.196C28.3745 3.588 28.4625 4.008 28.4625 4.456C28.4625 4.904 28.3905 5.324 28.2465 5.716C28.1025 6.1 27.8825 6.436 27.5865 6.724C27.2985 7.004 26.9345 7.228 26.4945 7.396C26.0625 7.556 25.5545 7.636 24.9705 7.636ZM25.0545 3.424H23.9265C23.8465 3.424 23.7785 3.452 23.7225 3.508C23.6665 3.564 23.6385 3.632 23.6385 3.712V5.128C23.6385 5.208 23.6665 5.276 23.7225 5.332C23.7785 5.388 23.8465 5.416 23.9265 5.416H25.2105C25.5145 5.416 25.7345 5.32 25.8705 5.128C26.0145 4.928 26.0865 4.704 26.0865 4.456C26.0865 4.328 26.0625 4.204 26.0145 4.084C25.9745 3.956 25.9105 3.844 25.8225 3.748C25.7345 3.652 25.6265 3.576 25.4985 3.52C25.3705 3.456 25.2225 3.424 25.0545 3.424ZM31.1233 10H29.3353C29.2553 10 29.1873 9.972 29.1313 9.916C29.0753 9.86 29.0473 9.792 29.0473 9.712V1.504C29.0473 1.424 29.0753 1.356 29.1313 1.3C29.1873 1.244 29.2553 1.216 29.3353 1.216H33.0673C33.5313 1.216 33.9593 1.296 34.3513 1.456C34.7433 1.608 35.0753 1.824 35.3473 2.104C35.6273 2.384 35.8433 2.716 35.9953 3.1C36.1553 3.484 36.2353 3.908 36.2353 4.372C36.2353 4.628 36.2033 4.884 36.1393 5.14C36.0833 5.388 35.9993 5.624 35.8873 5.848C35.7753 6.072 35.6433 6.276 35.4913 6.46C35.3393 6.636 35.1673 6.784 34.9753 6.904C34.9113 6.952 34.8673 7.012 34.8433 7.084C34.8273 7.148 34.8433 7.212 34.8913 7.276C35.1953 7.676 35.5153 8.088 35.8513 8.512C36.1873 8.936 36.4873 9.324 36.7513 9.676C36.7993 9.74 36.8113 9.812 36.7873 9.892C36.7633 9.964 36.7113 10 36.6313 10H34.3993C34.3193 10 34.2313 9.98 34.1353 9.94C34.0473 9.892 33.9793 9.836 33.9313 9.772C33.6753 9.436 33.4193 9.096 33.1633 8.752C32.9153 8.408 32.6673 8.06 32.4193 7.708C32.3713 7.644 32.3033 7.592 32.2153 7.552C32.1273 7.504 32.0433 7.48 31.9633 7.48H31.6993C31.6193 7.48 31.5513 7.508 31.4953 7.564C31.4393 7.62 31.4113 7.688 31.4113 7.768V9.712C31.4113 9.792 31.3833 9.86 31.3273 9.916C31.2713 9.972 31.2033 10 31.1233 10ZM31.6993 5.272H32.9713C33.0673 5.272 33.1673 5.256 33.2713 5.224C33.3753 5.184 33.4713 5.128 33.5593 5.056C33.6473 4.976 33.7193 4.88 33.7753 4.768C33.8313 4.656 33.8593 4.524 33.8593 4.372C33.8593 4.292 33.8433 4.2 33.8113 4.096C33.7873 3.984 33.7393 3.88 33.6673 3.784C33.6033 3.68 33.5113 3.596 33.3913 3.532C33.2793 3.46 33.1393 3.424 32.9713 3.424H31.6993C31.6193 3.424 31.5513 3.452 31.4953 3.508C31.4393 3.564 31.4113 3.632 31.4113 3.712V4.984C31.4113 5.064 31.4393 5.132 31.4953 5.188C31.5513 5.244 31.6193 5.272 31.6993 5.272ZM36.9281 5.608C36.9281 4.984 37.0481 4.396 37.2881 3.844C37.5281 3.292 37.8521 2.812 38.2601 2.404C38.6681 1.988 39.1481 1.66 39.7001 1.42C40.2521 1.18 40.8401 1.06 41.4641 1.06C42.0881 1.06 42.6761 1.18 43.2281 1.42C43.7801 1.66 44.2601 1.988 44.6681 2.404C45.0841 2.812 45.4121 3.292 45.6521 3.844C45.8921 4.396 46.0121 4.984 46.0121 5.608C46.0121 6.232 45.8921 6.82 45.6521 7.372C45.4121 7.924 45.0841 8.408 44.6681 8.824C44.2601 9.232 43.7801 9.556 43.2281 9.796C42.6761 10.036 42.0881 10.156 41.4641 10.156C40.8401 10.156 40.2521 10.036 39.7001 9.796C39.1481 9.556 38.6681 9.232 38.2601 8.824C37.8521 8.408 37.5281 7.924 37.2881 7.372C37.0481 6.82 36.9281 6.232 36.9281 5.608ZM39.3041 5.608C39.3041 5.912 39.3601 6.2 39.4721 6.472C39.5841 6.744 39.7361 6.984 39.9281 7.192C40.1281 7.4 40.3601 7.568 40.6241 7.696C40.8881 7.816 41.1681 7.876 41.4641 7.876C41.7601 7.876 42.0401 7.816 42.3041 7.696C42.5681 7.568 42.8001 7.4 43.0001 7.192C43.2001 6.984 43.3561 6.744 43.4681 6.472C43.5801 6.2 43.6361 5.912 43.6361 5.608C43.6361 5.312 43.5801 5.028 43.4681 4.756C43.3561 4.476 43.2001 4.236 43.0001 4.036C42.8001 3.828 42.5681 3.664 42.3041 3.544C42.0401 3.416 41.7601 3.352 41.4641 3.352C41.1681 3.352 40.8881 3.416 40.6241 3.544C40.3601 3.664 40.1281 3.828 39.9281 4.036C39.7361 4.236 39.5841 4.476 39.4721 4.756C39.3601 5.028 39.3041 5.312 39.3041 5.608ZM46.9136 9.712V1.504C46.9136 1.424 46.9416 1.356 46.9976 1.3C47.0536 1.244 47.1216 1.216 47.2016 1.216H50.4776C51.7336 1.216 52.7616 1.584 53.5616 2.32C53.9936 2.72 54.3216 3.196 54.5456 3.748C54.7696 4.3 54.8816 4.92 54.8816 5.608C54.8816 6.296 54.7696 6.92 54.5456 7.48C54.3216 8.032 53.9936 8.508 53.5616 8.908C53.1616 9.268 52.7016 9.54 52.1816 9.724C51.6696 9.908 51.1016 10 50.4776 10H47.2016C47.1216 10 47.0536 9.972 46.9976 9.916C46.9416 9.86 46.9136 9.792 46.9136 9.712ZM49.5776 7.792H50.4776C50.7016 7.792 50.9336 7.764 51.1736 7.708C51.4136 7.652 51.6296 7.548 51.8216 7.396C52.0136 7.236 52.1696 7.016 52.2896 6.736C52.4176 6.448 52.4816 6.076 52.4816 5.62C52.4816 5.164 52.4176 4.796 52.2896 4.516C52.1696 4.228 52.0096 4.008 51.8096 3.856C51.6176 3.696 51.4016 3.588 51.1616 3.532C50.9296 3.476 50.7016 3.448 50.4776 3.448H49.5776C49.4976 3.448 49.4296 3.476 49.3736 3.532C49.3176 3.588 49.2896 3.656 49.2896 3.736V7.504C49.2896 7.584 49.3176 7.652 49.3736 7.708C49.4296 7.764 49.4976 7.792 49.5776 7.792ZM55.9632 1.516C55.9632 1.436 55.9912 1.368 56.0472 1.312C56.1032 1.256 56.1712 1.228 56.2512 1.228H58.0632C58.1432 1.228 58.2112 1.256 58.2672 1.312C58.3232 1.368 58.3512 1.436 58.3512 1.516V6.376C58.3512 6.688 58.3992 6.948 58.4952 7.156C58.5992 7.356 58.7232 7.516 58.8672 7.636C59.0192 7.748 59.1792 7.828 59.3472 7.876C59.5152 7.924 59.6672 7.948 59.8032 7.948C59.9392 7.948 60.0912 7.924 60.2592 7.876C60.4272 7.828 60.5832 7.748 60.7272 7.636C60.8712 7.516 60.9912 7.356 61.0872 7.156C61.1912 6.948 61.2432 6.688 61.2432 6.376V1.516C61.2432 1.436 61.2712 1.368 61.3272 1.312C61.3832 1.256 61.4512 1.228 61.5312 1.228H63.3432C63.4232 1.228 63.4912 1.256 63.5472 1.312C63.6032 1.368 63.6312 1.436 63.6312 1.516V6.376C63.6312 6.944 63.5392 7.46 63.3552 7.924C63.1792 8.388 62.9232 8.784 62.5872 9.112C62.2512 9.44 61.8472 9.696 61.3752 9.88C60.9032 10.056 60.3792 10.144 59.8032 10.144C59.2272 10.144 58.7032 10.056 58.2312 9.88C57.7592 9.696 57.3552 9.44 57.0192 9.112C56.6832 8.784 56.4232 8.388 56.2392 7.924C56.0552 7.46 55.9632 6.944 55.9632 6.376V1.516ZM73.2629 7.66C73.0309 8.036 72.7749 8.38 72.4949 8.692C72.2149 8.996 71.8989 9.256 71.5469 9.472C71.2029 9.688 70.8189 9.856 70.3949 9.976C69.9709 10.096 69.5029 10.156 68.9909 10.156C68.3509 10.156 67.7509 10.036 67.1909 9.796C66.6309 9.556 66.1389 9.232 65.7149 8.824C65.2989 8.416 64.9709 7.936 64.7309 7.384C64.4909 6.832 64.3709 6.244 64.3709 5.62C64.3709 4.996 64.4909 4.408 64.7309 3.856C64.9709 3.304 65.2989 2.824 65.7149 2.416C66.1389 2.008 66.6309 1.684 67.1909 1.444C67.7509 1.204 68.3509 1.084 68.9909 1.084C69.5189 1.084 69.9949 1.144 70.4189 1.264C70.8429 1.384 71.2269 1.552 71.5709 1.768C71.9149 1.984 72.2229 2.248 72.4949 2.56C72.7749 2.864 73.0309 3.2 73.2629 3.568C73.3029 3.632 73.3109 3.7 73.2869 3.772C73.2629 3.844 73.2149 3.896 73.1429 3.928L71.4389 4.6C71.3589 4.632 71.2789 4.632 71.1989 4.6C71.1189 4.568 71.0589 4.52 71.0189 4.456C70.7869 4.088 70.5069 3.808 70.1789 3.616C69.8509 3.416 69.4549 3.316 68.9909 3.316C68.6869 3.316 68.3989 3.38 68.1269 3.508C67.8629 3.636 67.6309 3.808 67.4309 4.024C67.2309 4.232 67.0749 4.476 66.9629 4.756C66.8509 5.036 66.7949 5.324 66.7949 5.62C66.7949 5.924 66.8509 6.216 66.9629 6.496C67.0749 6.768 67.2309 7.008 67.4309 7.216C67.6309 7.424 67.8629 7.592 68.1269 7.72C68.3989 7.848 68.6869 7.912 68.9909 7.912C69.4309 7.912 69.8269 7.808 70.1789 7.6C70.5389 7.384 70.8229 7.108 71.0309 6.772C71.0709 6.708 71.1269 6.66 71.1989 6.628C71.2789 6.596 71.3589 6.596 71.4389 6.628L73.1429 7.3C73.2149 7.332 73.2629 7.384 73.2869 7.456C73.3109 7.52 73.3029 7.588 73.2629 7.66ZM79.4952 3.424H77.8152C77.7352 3.424 77.6672 3.452 77.6112 3.508C77.5552 3.564 77.5272 3.632 77.5272 3.712V9.712C77.5272 9.792 77.4992 9.86 77.4432 9.916C77.3952 9.972 77.3272 10 77.2392 10H75.4392C75.3592 10 75.2912 9.972 75.2352 9.916C75.1792 9.86 75.1512 9.792 75.1512 9.712V3.712C75.1512 3.632 75.1232 3.564 75.0672 3.508C75.0192 3.452 74.9512 3.424 74.8632 3.424H73.1592C73.0792 3.424 73.0112 3.396 72.9552 3.34C72.8992 3.284 72.8712 3.216 72.8712 3.136V1.504C72.8712 1.424 72.8992 1.356 72.9552 1.3C73.0112 1.244 73.0792 1.216 73.1592 1.216H79.4952C79.5832 1.216 79.6512 1.244 79.6992 1.3C79.7552 1.356 79.7832 1.424 79.7832 1.504V3.136C79.7832 3.216 79.7552 3.284 79.6992 3.34C79.6512 3.396 79.5832 3.424 79.4952 3.424ZM80.969 6.988C81.401 7.268 81.829 7.488 82.253 7.648C82.677 7.808 83.073 7.888 83.441 7.888C83.793 7.888 84.061 7.84 84.245 7.744C84.429 7.64 84.521 7.488 84.521 7.288C84.521 7.184 84.481 7.104 84.401 7.048C84.321 6.984 84.213 6.932 84.077 6.892C83.949 6.852 83.797 6.82 83.621 6.796C83.445 6.772 83.265 6.74 83.081 6.7C82.905 6.668 82.697 6.632 82.457 6.592C82.225 6.544 81.985 6.48 81.737 6.4C81.489 6.312 81.241 6.204 80.993 6.076C80.753 5.948 80.537 5.784 80.345 5.584C80.153 5.384 79.997 5.148 79.877 4.876C79.765 4.596 79.709 4.268 79.709 3.892C79.709 3.34 79.817 2.884 80.033 2.524C80.249 2.164 80.521 1.88 80.849 1.672C81.185 1.456 81.557 1.308 81.965 1.228C82.373 1.14 82.769 1.096 83.153 1.096C83.825 1.096 84.425 1.196 84.953 1.396C85.489 1.588 86.001 1.872 86.489 2.248C86.553 2.304 86.589 2.372 86.597 2.452C86.605 2.532 86.585 2.604 86.537 2.668L85.601 4C85.553 4.064 85.489 4.104 85.409 4.12C85.329 4.136 85.257 4.12 85.193 4.072C84.785 3.816 84.405 3.636 84.053 3.532C83.701 3.42 83.377 3.364 83.081 3.364C82.993 3.364 82.889 3.368 82.769 3.376C82.657 3.376 82.549 3.392 82.445 3.424C82.341 3.448 82.253 3.492 82.181 3.556C82.117 3.62 82.085 3.708 82.085 3.82C82.085 3.932 82.169 4.032 82.337 4.12C82.505 4.208 82.697 4.284 82.913 4.348C83.129 4.412 83.337 4.464 83.537 4.504C83.737 4.536 83.865 4.556 83.921 4.564C84.209 4.62 84.525 4.704 84.869 4.816C85.213 4.92 85.533 5.08 85.829 5.296C86.133 5.504 86.385 5.78 86.585 6.124C86.793 6.46 86.897 6.884 86.897 7.396C86.897 7.876 86.813 8.292 86.645 8.644C86.477 8.988 86.241 9.272 85.937 9.496C85.641 9.72 85.281 9.888 84.857 10C84.441 10.104 83.977 10.156 83.465 10.156C83.049 10.156 82.661 10.12 82.301 10.048C81.941 9.984 81.605 9.892 81.293 9.772C80.981 9.652 80.689 9.512 80.417 9.352C80.153 9.184 79.909 9.008 79.685 8.824C79.621 8.776 79.585 8.712 79.577 8.632C79.569 8.544 79.589 8.468 79.637 8.404L80.561 7.072C80.609 7.008 80.673 6.968 80.753 6.952C80.833 6.936 80.905 6.948 80.969 6.988Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1aew5\",\"data-framer-name\":\"The navigation desig\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:112,layoutDependency:layoutDependency,layoutId:\"hcUAmEHdv\",svg:'<svg width=\"112\" height=\"16\" viewBox=\"-1 -1 112 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.9\" d=\"M10.5737 1.7035V9.8995C10.5737 9.9795 10.5457 10.0475 10.4897 10.1035C10.4337 10.1595 10.3657 10.1875 10.2857 10.1875H8.47366C8.39366 10.1875 8.32566 10.1595 8.26966 10.1035C8.21366 10.0475 8.18566 9.9795 8.18566 9.8995V6.0355C8.18566 5.9555 8.14966 5.9115 8.07766 5.9035C8.00566 5.8955 7.94566 5.9235 7.89766 5.9875L5.88166 9.2395C5.84166 9.3035 5.77766 9.3355 5.68966 9.3355C5.60166 9.3355 5.53366 9.3035 5.48566 9.2395L3.46966 5.9875C3.42966 5.9235 3.37366 5.8955 3.30166 5.9035C3.22966 5.9115 3.19366 5.9555 3.19366 6.0355V9.8995C3.19366 9.9795 3.16566 10.0475 3.10966 10.1035C3.05366 10.1595 2.98566 10.1875 2.90566 10.1875H1.09366C1.01366 10.1875 0.945662 10.1595 0.889662 10.1035C0.833662 10.0475 0.805662 9.9795 0.805662 9.8995L0.805662 1.7035C0.805662 1.6235 0.833662 1.5555 0.889662 1.4995C0.945662 1.4435 1.01366 1.4155 1.09366 1.4155H2.77366C2.85366 1.4155 2.93766 1.4395 3.02566 1.4875C3.11366 1.5355 3.17766 1.5915 3.21766 1.6555L5.52166 5.0395C5.56966 5.1035 5.62566 5.1355 5.68966 5.1355C5.75366 5.1355 5.80566 5.1035 5.84566 5.0395L8.14966 1.6555C8.19766 1.5915 8.26566 1.5355 8.35366 1.4875C8.44166 1.4395 8.52566 1.4155 8.60566 1.4155H10.2857C10.3657 1.4155 10.4337 1.4435 10.4897 1.4995C10.5457 1.5555 10.5737 1.6235 10.5737 1.7035ZM14.5446 1.6795C14.5766 1.6075 14.6286 1.5475 14.7006 1.4995C14.7806 1.4435 14.8646 1.4155 14.9526 1.4155H16.6326C16.7126 1.4155 16.7886 1.4435 16.8606 1.4995C16.9406 1.5475 16.9966 1.6075 17.0286 1.6795L20.5326 9.8395C20.5646 9.9115 20.5566 9.9875 20.5086 10.0675C20.4686 10.1475 20.3846 10.1875 20.2566 10.1875H18.2046C18.1166 10.1875 18.0326 10.1635 17.9526 10.1155C17.8806 10.0595 17.8246 9.9955 17.7846 9.9235L17.4606 9.2035C17.4206 9.1315 17.3606 9.0715 17.2806 9.0235C17.2086 8.9675 17.1326 8.9395 17.0526 8.9395H14.5206C14.4326 8.9395 14.3486 8.9675 14.2686 9.0235C14.1966 9.0715 14.1446 9.1315 14.1126 9.2035L13.7766 9.9235C13.7446 9.9955 13.6886 10.0595 13.6086 10.1155C13.5366 10.1635 13.4606 10.1875 13.3806 10.1875H11.3166C11.2766 10.1875 11.2366 10.1795 11.1966 10.1635C11.1486 10.1475 11.1126 10.1235 11.0886 10.0915C11.0566 10.0595 11.0366 10.0195 11.0286 9.9715C11.0206 9.9235 11.0326 9.8675 11.0646 9.8035L14.5446 1.6795ZM15.2526 6.8995H16.3206C16.4006 6.8995 16.4566 6.8755 16.4886 6.8275C16.5286 6.7715 16.5286 6.7075 16.4886 6.6355C16.4086 6.4355 16.3126 6.2035 16.2006 5.9395C16.0886 5.6675 15.9846 5.4155 15.8886 5.1835C15.8566 5.1115 15.8206 5.0755 15.7806 5.0755C15.7406 5.0755 15.7046 5.1115 15.6726 5.1835L15.0726 6.6355C15.0406 6.7075 15.0406 6.7715 15.0726 6.8275C15.1046 6.8755 15.1646 6.8995 15.2526 6.8995ZM21.7293 7.1755C22.1613 7.4555 22.5893 7.6755 23.0133 7.8355C23.4373 7.9955 23.8333 8.0755 24.2013 8.0755C24.5533 8.0755 24.8213 8.0275 25.0053 7.9315C25.1893 7.8275 25.2813 7.6755 25.2813 7.4755C25.2813 7.3715 25.2413 7.2915 25.1613 7.2355C25.0813 7.1715 24.9733 7.1195 24.8373 7.0795C24.7093 7.0395 24.5573 7.0075 24.3813 6.9835C24.2053 6.9595 24.0253 6.9275 23.8413 6.8875C23.6653 6.8555 23.4573 6.8195 23.2173 6.7795C22.9853 6.7315 22.7453 6.6675 22.4973 6.5875C22.2493 6.4995 22.0013 6.3915 21.7533 6.2635C21.5133 6.1355 21.2973 5.9715 21.1053 5.7715C20.9133 5.5715 20.7573 5.3355 20.6373 5.0635C20.5253 4.7835 20.4693 4.4555 20.4693 4.0795C20.4693 3.5275 20.5773 3.0715 20.7933 2.7115C21.0093 2.3515 21.2813 2.0675 21.6093 1.8595C21.9453 1.6435 22.3173 1.4955 22.7253 1.4155C23.1333 1.3275 23.5293 1.2835 23.9133 1.2835C24.5853 1.2835 25.1853 1.3835 25.7133 1.5835C26.2493 1.7755 26.7613 2.0595 27.2493 2.4355C27.3133 2.4915 27.3493 2.5595 27.3573 2.6395C27.3653 2.7195 27.3453 2.7915 27.2973 2.8555L26.3613 4.1875C26.3133 4.2515 26.2493 4.2915 26.1693 4.3075C26.0893 4.3235 26.0173 4.3075 25.9533 4.2595C25.5453 4.0035 25.1653 3.8235 24.8133 3.7195C24.4613 3.6075 24.1373 3.5515 23.8413 3.5515C23.7533 3.5515 23.6493 3.5555 23.5293 3.5635C23.4173 3.5635 23.3093 3.5795 23.2053 3.6115C23.1013 3.6355 23.0133 3.6795 22.9413 3.7435C22.8773 3.8075 22.8453 3.8955 22.8453 4.0075C22.8453 4.1195 22.9293 4.2195 23.0973 4.3075C23.2653 4.3955 23.4573 4.4715 23.6733 4.5355C23.8893 4.5995 24.0973 4.6515 24.2973 4.6915C24.4973 4.7235 24.6253 4.7435 24.6813 4.7515C24.9693 4.8075 25.2853 4.8915 25.6293 5.0035C25.9733 5.1075 26.2933 5.2675 26.5893 5.4835C26.8933 5.6915 27.1453 5.9675 27.3453 6.3115C27.5533 6.6475 27.6573 7.0715 27.6573 7.5835C27.6573 8.0635 27.5733 8.4795 27.4053 8.8315C27.2373 9.1755 27.0013 9.4595 26.6973 9.6835C26.4013 9.9075 26.0413 10.0755 25.6173 10.1875C25.2013 10.2915 24.7373 10.3435 24.2253 10.3435C23.8093 10.3435 23.4213 10.3075 23.0613 10.2355C22.7013 10.1715 22.3653 10.0795 22.0533 9.9595C21.7413 9.8395 21.4493 9.6995 21.1773 9.5395C20.9133 9.3715 20.6693 9.1955 20.4453 9.0115C20.3813 8.9635 20.3453 8.8995 20.3373 8.8195C20.3293 8.7315 20.3493 8.6555 20.3973 8.5915L21.3213 7.2595C21.3693 7.1955 21.4333 7.1555 21.5133 7.1395C21.5933 7.1235 21.6653 7.1355 21.7293 7.1755ZM29.5255 7.1755C29.9575 7.4555 30.3855 7.6755 30.8095 7.8355C31.2335 7.9955 31.6295 8.0755 31.9975 8.0755C32.3495 8.0755 32.6175 8.0275 32.8015 7.9315C32.9855 7.8275 33.0775 7.6755 33.0775 7.4755C33.0775 7.3715 33.0375 7.2915 32.9575 7.2355C32.8775 7.1715 32.7695 7.1195 32.6335 7.0795C32.5055 7.0395 32.3535 7.0075 32.1775 6.9835C32.0015 6.9595 31.8215 6.9275 31.6375 6.8875C31.4615 6.8555 31.2535 6.8195 31.0135 6.7795C30.7815 6.7315 30.5415 6.6675 30.2935 6.5875C30.0455 6.4995 29.7975 6.3915 29.5495 6.2635C29.3095 6.1355 29.0935 5.9715 28.9015 5.7715C28.7095 5.5715 28.5535 5.3355 28.4335 5.0635C28.3215 4.7835 28.2655 4.4555 28.2655 4.0795C28.2655 3.5275 28.3735 3.0715 28.5895 2.7115C28.8055 2.3515 29.0775 2.0675 29.4055 1.8595C29.7415 1.6435 30.1135 1.4955 30.5215 1.4155C30.9295 1.3275 31.3255 1.2835 31.7095 1.2835C32.3815 1.2835 32.9815 1.3835 33.5095 1.5835C34.0455 1.7755 34.5575 2.0595 35.0455 2.4355C35.1095 2.4915 35.1455 2.5595 35.1535 2.6395C35.1615 2.7195 35.1415 2.7915 35.0935 2.8555L34.1575 4.1875C34.1095 4.2515 34.0455 4.2915 33.9655 4.3075C33.8855 4.3235 33.8135 4.3075 33.7495 4.2595C33.3415 4.0035 32.9615 3.8235 32.6095 3.7195C32.2575 3.6075 31.9335 3.5515 31.6375 3.5515C31.5495 3.5515 31.4455 3.5555 31.3255 3.5635C31.2135 3.5635 31.1055 3.5795 31.0015 3.6115C30.8975 3.6355 30.8095 3.6795 30.7375 3.7435C30.6735 3.8075 30.6415 3.8955 30.6415 4.0075C30.6415 4.1195 30.7255 4.2195 30.8935 4.3075C31.0615 4.3955 31.2535 4.4715 31.4695 4.5355C31.6855 4.5995 31.8935 4.6515 32.0935 4.6915C32.2935 4.7235 32.4215 4.7435 32.4775 4.7515C32.7655 4.8075 33.0815 4.8915 33.4255 5.0035C33.7695 5.1075 34.0895 5.2675 34.3855 5.4835C34.6895 5.6915 34.9415 5.9675 35.1415 6.3115C35.3495 6.6475 35.4535 7.0715 35.4535 7.5835C35.4535 8.0635 35.3695 8.4795 35.2015 8.8315C35.0335 9.1755 34.7975 9.4595 34.4935 9.6835C34.1975 9.9075 33.8375 10.0755 33.4135 10.1875C32.9975 10.2915 32.5335 10.3435 32.0215 10.3435C31.6055 10.3435 31.2175 10.3075 30.8575 10.2355C30.4975 10.1715 30.1615 10.0795 29.8495 9.9595C29.5375 9.8395 29.2455 9.6995 28.9735 9.5395C28.7095 9.3715 28.4655 9.1955 28.2415 9.0115C28.1775 8.9635 28.1415 8.8995 28.1335 8.8195C28.1255 8.7315 28.1455 8.6555 28.1935 8.5915L29.1175 7.2595C29.1655 7.1955 29.2295 7.1555 29.3095 7.1395C29.3895 7.1235 29.4615 7.1355 29.5255 7.1755ZM43.7753 7.8235H42.7313C42.6513 7.8235 42.5833 7.8515 42.5273 7.9075C42.4713 7.9635 42.4433 8.0315 42.4433 8.1115V9.8995C42.4433 9.9795 42.4153 10.0475 42.3593 10.1035C42.3033 10.1595 42.2353 10.1875 42.1553 10.1875H40.3433C40.2633 10.1875 40.1953 10.1595 40.1393 10.1035C40.0833 10.0475 40.0553 9.9795 40.0553 9.8995V1.6915C40.0553 1.6115 40.0833 1.5435 40.1393 1.4875C40.1953 1.4315 40.2633 1.4035 40.3433 1.4035H44.0153C44.4633 1.4035 44.8833 1.4875 45.2753 1.6555C45.6753 1.8235 46.0193 2.0555 46.3073 2.3515C46.6033 2.6475 46.8353 2.9915 47.0033 3.3835C47.1793 3.7755 47.2673 4.1955 47.2673 4.6435C47.2673 5.0915 47.1953 5.5115 47.0513 5.9035C46.9073 6.2875 46.6873 6.6235 46.3913 6.9115C46.1033 7.1915 45.7393 7.4155 45.2993 7.5835C44.8673 7.7435 44.3593 7.8235 43.7753 7.8235ZM43.8593 3.6115H42.7313C42.6513 3.6115 42.5833 3.6395 42.5273 3.6955C42.4713 3.7515 42.4433 3.8195 42.4433 3.8995V5.3155C42.4433 5.3955 42.4713 5.4635 42.5273 5.5195C42.5833 5.5755 42.6513 5.6035 42.7313 5.6035H44.0153C44.3193 5.6035 44.5393 5.5075 44.6753 5.3155C44.8193 5.1155 44.8913 4.8915 44.8913 4.6435C44.8913 4.5155 44.8673 4.3915 44.8193 4.2715C44.7793 4.1435 44.7153 4.0315 44.6273 3.9355C44.5393 3.8395 44.4313 3.7635 44.3033 3.7075C44.1753 3.6435 44.0273 3.6115 43.8593 3.6115ZM49.9281 10.1875H48.1401C48.0601 10.1875 47.9921 10.1595 47.9361 10.1035C47.8801 10.0475 47.8521 9.9795 47.8521 9.8995V1.6915C47.8521 1.6115 47.8801 1.5435 47.9361 1.4875C47.9921 1.4315 48.0601 1.4035 48.1401 1.4035H51.8721C52.3361 1.4035 52.7641 1.4835 53.1561 1.6435C53.5481 1.7955 53.8801 2.0115 54.1521 2.2915C54.4321 2.5715 54.6481 2.9035 54.8001 3.2875C54.9601 3.6715 55.0401 4.0955 55.0401 4.5595C55.0401 4.8155 55.0081 5.0715 54.9441 5.3275C54.8881 5.5755 54.8041 5.8115 54.6921 6.0355C54.5801 6.2595 54.4481 6.4635 54.2961 6.6475C54.1441 6.8235 53.9721 6.9715 53.7801 7.0915C53.7161 7.1395 53.6721 7.1995 53.6481 7.2715C53.6321 7.3355 53.6481 7.3995 53.6961 7.4635C54.0001 7.8635 54.3201 8.2755 54.6561 8.6995C54.9921 9.1235 55.2921 9.5115 55.5561 9.8635C55.6041 9.9275 55.6161 9.9995 55.5921 10.0795C55.5681 10.1515 55.5161 10.1875 55.4361 10.1875H53.2041C53.1241 10.1875 53.0361 10.1675 52.9401 10.1275C52.8521 10.0795 52.7841 10.0235 52.7361 9.9595C52.4801 9.6235 52.2241 9.2835 51.9681 8.9395C51.7201 8.5955 51.4721 8.2475 51.2241 7.8955C51.1761 7.8315 51.1081 7.7795 51.0201 7.7395C50.9321 7.6915 50.8481 7.6675 50.7681 7.6675H50.5041C50.4241 7.6675 50.3561 7.6955 50.3001 7.7515C50.2441 7.8075 50.2161 7.8755 50.2161 7.9555V9.8995C50.2161 9.9795 50.1881 10.0475 50.1321 10.1035C50.0761 10.1595 50.0081 10.1875 49.9281 10.1875ZM50.5041 5.4595H51.7761C51.8721 5.4595 51.9721 5.4435 52.0761 5.4115C52.1801 5.3715 52.2761 5.3155 52.3641 5.2435C52.4521 5.1635 52.5241 5.0675 52.5801 4.9555C52.6361 4.8435 52.6641 4.7115 52.6641 4.5595C52.6641 4.4795 52.6481 4.3875 52.6161 4.2835C52.5921 4.1715 52.5441 4.0675 52.4721 3.9715C52.4081 3.8675 52.3161 3.7835 52.1961 3.7195C52.0841 3.6475 51.9441 3.6115 51.7761 3.6115H50.5041C50.4241 3.6115 50.3561 3.6395 50.3001 3.6955C50.2441 3.7515 50.2161 3.8195 50.2161 3.8995V5.1715C50.2161 5.2515 50.2441 5.3195 50.3001 5.3755C50.3561 5.4315 50.4241 5.4595 50.5041 5.4595ZM55.7328 5.7955C55.7328 5.1715 55.8528 4.5835 56.0928 4.0315C56.3328 3.4795 56.6568 2.9995 57.0648 2.5915C57.4728 2.1755 57.9528 1.8475 58.5048 1.6075C59.0568 1.3675 59.6448 1.2475 60.2688 1.2475C60.8928 1.2475 61.4808 1.3675 62.0328 1.6075C62.5848 1.8475 63.0648 2.1755 63.4728 2.5915C63.8888 2.9995 64.2168 3.4795 64.4568 4.0315C64.6968 4.5835 64.8168 5.1715 64.8168 5.7955C64.8168 6.4195 64.6968 7.0075 64.4568 7.5595C64.2168 8.1115 63.8888 8.5955 63.4728 9.0115C63.0648 9.4195 62.5848 9.7435 62.0328 9.9835C61.4808 10.2235 60.8928 10.3435 60.2688 10.3435C59.6448 10.3435 59.0568 10.2235 58.5048 9.9835C57.9528 9.7435 57.4728 9.4195 57.0648 9.0115C56.6568 8.5955 56.3328 8.1115 56.0928 7.5595C55.8528 7.0075 55.7328 6.4195 55.7328 5.7955ZM58.1088 5.7955C58.1088 6.0995 58.1648 6.3875 58.2768 6.6595C58.3888 6.9315 58.5408 7.1715 58.7328 7.3795C58.9328 7.5875 59.1648 7.7555 59.4288 7.8835C59.6928 8.0035 59.9728 8.0635 60.2688 8.0635C60.5648 8.0635 60.8448 8.0035 61.1088 7.8835C61.3728 7.7555 61.6048 7.5875 61.8048 7.3795C62.0048 7.1715 62.1608 6.9315 62.2728 6.6595C62.3848 6.3875 62.4408 6.0995 62.4408 5.7955C62.4408 5.4995 62.3848 5.2155 62.2728 4.9435C62.1608 4.6635 62.0048 4.4235 61.8048 4.2235C61.6048 4.0155 61.3728 3.8515 61.1088 3.7315C60.8448 3.6035 60.5648 3.5395 60.2688 3.5395C59.9728 3.5395 59.6928 3.6035 59.4288 3.7315C59.1648 3.8515 58.9328 4.0155 58.7328 4.2235C58.5408 4.4235 58.3888 4.6635 58.2768 4.9435C58.1648 5.2155 58.1088 5.4995 58.1088 5.7955ZM65.7184 9.8995V1.6915C65.7184 1.6115 65.7464 1.5435 65.8024 1.4875C65.8584 1.4315 65.9264 1.4035 66.0064 1.4035H69.2824C70.5384 1.4035 71.5664 1.7715 72.3664 2.5075C72.7984 2.9075 73.1264 3.3835 73.3504 3.9355C73.5744 4.4875 73.6864 5.1075 73.6864 5.7955C73.6864 6.4835 73.5744 7.1075 73.3504 7.6675C73.1264 8.2195 72.7984 8.6955 72.3664 9.0955C71.9664 9.4555 71.5064 9.7275 70.9864 9.9115C70.4744 10.0955 69.9064 10.1875 69.2824 10.1875H66.0064C65.9264 10.1875 65.8584 10.1595 65.8024 10.1035C65.7464 10.0475 65.7184 9.9795 65.7184 9.8995ZM68.3824 7.9795H69.2824C69.5064 7.9795 69.7384 7.9515 69.9784 7.8955C70.2184 7.8395 70.4344 7.7355 70.6264 7.5835C70.8184 7.4235 70.9744 7.2035 71.0944 6.9235C71.2224 6.6355 71.2864 6.2635 71.2864 5.8075C71.2864 5.3515 71.2224 4.9835 71.0944 4.7035C70.9744 4.4155 70.8144 4.1955 70.6144 4.0435C70.4224 3.8835 70.2064 3.7755 69.9664 3.7195C69.7344 3.6635 69.5064 3.6355 69.2824 3.6355H68.3824C68.3024 3.6355 68.2344 3.6635 68.1784 3.7195C68.1224 3.7755 68.0944 3.8435 68.0944 3.9235V7.6915C68.0944 7.7715 68.1224 7.8395 68.1784 7.8955C68.2344 7.9515 68.3024 7.9795 68.3824 7.9795ZM74.7679 1.7035C74.7679 1.6235 74.7959 1.5555 74.8519 1.4995C74.9079 1.4435 74.9759 1.4155 75.0559 1.4155H76.8679C76.9479 1.4155 77.0159 1.4435 77.0719 1.4995C77.1279 1.5555 77.1559 1.6235 77.1559 1.7035V6.5635C77.1559 6.8755 77.2039 7.1355 77.2999 7.3435C77.4039 7.5435 77.5279 7.7035 77.6719 7.8235C77.8239 7.9355 77.9839 8.0155 78.1519 8.0635C78.3199 8.1115 78.4719 8.1355 78.6079 8.1355C78.7439 8.1355 78.8959 8.1115 79.0639 8.0635C79.2319 8.0155 79.3879 7.9355 79.5319 7.8235C79.6759 7.7035 79.7959 7.5435 79.8919 7.3435C79.9959 7.1355 80.0479 6.8755 80.0479 6.5635V1.7035C80.0479 1.6235 80.0759 1.5555 80.1319 1.4995C80.1879 1.4435 80.2559 1.4155 80.3359 1.4155H82.1479C82.2279 1.4155 82.2959 1.4435 82.3519 1.4995C82.4079 1.5555 82.4359 1.6235 82.4359 1.7035V6.5635C82.4359 7.1315 82.3439 7.6475 82.1599 8.1115C81.9839 8.5755 81.7279 8.9715 81.3919 9.2995C81.0559 9.6275 80.6519 9.8835 80.1799 10.0675C79.7079 10.2435 79.1839 10.3315 78.6079 10.3315C78.0319 10.3315 77.5079 10.2435 77.0359 10.0675C76.5639 9.8835 76.1599 9.6275 75.8239 9.2995C75.4879 8.9715 75.2279 8.5755 75.0439 8.1115C74.8599 7.6475 74.7679 7.1315 74.7679 6.5635V1.7035ZM92.0677 7.8475C91.8357 8.2235 91.5797 8.5675 91.2997 8.8795C91.0197 9.1835 90.7037 9.4435 90.3517 9.6595C90.0077 9.8755 89.6237 10.0435 89.1997 10.1635C88.7757 10.2835 88.3077 10.3435 87.7957 10.3435C87.1557 10.3435 86.5557 10.2235 85.9957 9.9835C85.4357 9.7435 84.9437 9.4195 84.5197 9.0115C84.1037 8.6035 83.7757 8.1235 83.5357 7.5715C83.2957 7.0195 83.1757 6.4315 83.1757 5.8075C83.1757 5.1835 83.2957 4.5955 83.5357 4.0435C83.7757 3.4915 84.1037 3.0115 84.5197 2.6035C84.9437 2.1955 85.4357 1.8715 85.9957 1.6315C86.5557 1.3915 87.1557 1.2715 87.7957 1.2715C88.3237 1.2715 88.7997 1.3315 89.2237 1.4515C89.6477 1.5715 90.0317 1.7395 90.3757 1.9555C90.7197 2.1715 91.0277 2.4355 91.2997 2.7475C91.5797 3.0515 91.8357 3.3875 92.0677 3.7555C92.1077 3.8195 92.1157 3.8875 92.0917 3.9595C92.0677 4.0315 92.0197 4.0835 91.9477 4.1155L90.2437 4.7875C90.1637 4.8195 90.0837 4.8195 90.0037 4.7875C89.9237 4.7555 89.8637 4.7075 89.8237 4.6435C89.5917 4.2755 89.3117 3.9955 88.9837 3.8035C88.6557 3.6035 88.2597 3.5035 87.7957 3.5035C87.4917 3.5035 87.2037 3.5675 86.9317 3.6955C86.6677 3.8235 86.4357 3.9955 86.2357 4.2115C86.0357 4.4195 85.8797 4.6635 85.7677 4.9435C85.6557 5.2235 85.5997 5.5115 85.5997 5.8075C85.5997 6.1115 85.6557 6.4035 85.7677 6.6835C85.8797 6.9555 86.0357 7.1955 86.2357 7.4035C86.4357 7.6115 86.6677 7.7795 86.9317 7.9075C87.2037 8.0355 87.4917 8.0995 87.7957 8.0995C88.2357 8.0995 88.6317 7.9955 88.9837 7.7875C89.3437 7.5715 89.6277 7.2955 89.8357 6.9595C89.8757 6.8955 89.9317 6.8475 90.0037 6.8155C90.0837 6.7835 90.1637 6.7835 90.2437 6.8155L91.9477 7.4875C92.0197 7.5195 92.0677 7.5715 92.0917 7.6435C92.1157 7.7075 92.1077 7.7755 92.0677 7.8475ZM94.9744 3.8995V4.4035C94.9744 4.4835 95.0024 4.5515 95.0584 4.6075C95.1144 4.6635 95.1824 4.6915 95.2624 4.6915H98.5144C98.5944 4.6915 98.6624 4.7195 98.7184 4.7755C98.7744 4.8315 98.8024 4.8995 98.8024 4.9795V6.6355C98.8024 6.7155 98.7744 6.7835 98.7184 6.8395C98.6624 6.8955 98.5944 6.9235 98.5144 6.9235H95.2624C95.1824 6.9235 95.1144 6.9515 95.0584 7.0075C95.0024 7.0635 94.9744 7.1315 94.9744 7.2115V7.6675C94.9744 7.7475 95.0024 7.8155 95.0584 7.8715C95.1144 7.9275 95.1824 7.9555 95.2624 7.9555H98.9944C99.0744 7.9555 99.1424 7.9835 99.1984 8.0395C99.2544 8.0955 99.2824 8.1635 99.2824 8.2435V9.8995C99.2824 9.9795 99.2544 10.0475 99.1984 10.1035C99.1424 10.1595 99.0744 10.1875 98.9944 10.1875H92.8864C92.8064 10.1875 92.7384 10.1595 92.6824 10.1035C92.6264 10.0475 92.5984 9.9795 92.5984 9.8995V1.6915C92.5984 1.6115 92.6264 1.5435 92.6824 1.4875C92.7384 1.4315 92.8064 1.4035 92.8864 1.4035L98.9944 1.4035C99.0744 1.4035 99.1424 1.4315 99.1984 1.4875C99.2544 1.5435 99.2824 1.6115 99.2824 1.6915V3.3235C99.2824 3.4035 99.2544 3.4715 99.1984 3.5275C99.1424 3.5835 99.0744 3.6115 98.9944 3.6115H95.2624C95.1824 3.6115 95.1144 3.6395 95.0584 3.6955C95.0024 3.7515 94.9744 3.8195 94.9744 3.8995ZM100.466 9.8995V1.6915C100.466 1.6115 100.494 1.5435 100.55 1.4875C100.606 1.4315 100.674 1.4035 100.754 1.4035H104.03C105.286 1.4035 106.314 1.7715 107.114 2.5075C107.546 2.9075 107.874 3.3835 108.098 3.9355C108.322 4.4875 108.434 5.1075 108.434 5.7955C108.434 6.4835 108.322 7.1075 108.098 7.6675C107.874 8.2195 107.546 8.6955 107.114 9.0955C106.714 9.4555 106.254 9.7275 105.734 9.9115C105.222 10.0955 104.654 10.1875 104.03 10.1875H100.754C100.674 10.1875 100.606 10.1595 100.55 10.1035C100.494 10.0475 100.466 9.9795 100.466 9.8995ZM103.13 7.9795H104.03C104.254 7.9795 104.486 7.9515 104.726 7.8955C104.966 7.8395 105.182 7.7355 105.374 7.5835C105.566 7.4235 105.722 7.2035 105.842 6.9235C105.97 6.6355 106.034 6.2635 106.034 5.8075C106.034 5.3515 105.97 4.9835 105.842 4.7035C105.722 4.4155 105.562 4.1955 105.362 4.0435C105.17 3.8835 104.954 3.7755 104.714 3.7195C104.482 3.6635 104.254 3.6355 104.03 3.6355H103.13C103.05 3.6355 102.982 3.6635 102.926 3.7195C102.87 3.7755 102.842 3.8435 102.842 3.9235V7.6915C102.842 7.7715 102.87 7.8395 102.926 7.8955C102.982 7.9515 103.05 7.9795 103.13 7.9795Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1103.7313157902931,intrinsicWidth:573.8805827199022,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1881)*.4827118644067799-363.5)),pixelHeight:3561,pixelWidth:1852,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.26)`,src:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=1024 532w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048 1065w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png 1852w\"},className:\"framer-1kcnlc5\",\"data-framer-name\":\"Rightdog\",layoutDependency:layoutDependency,layoutId:\"P32jjMw3G\",transformTemplate:transformTemplate2,...addPropertyOverrides({gKsXfESCf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1103.7313157902931,intrinsicWidth:573.8805827199022,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1607)*.4827118644067799-363.5)),pixelHeight:3561,pixelWidth:1852,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.26)`,src:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=1024 532w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048 1065w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png 1852w\"}},nWEbxk1PU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1103.7313157902931,intrinsicWidth:573.8805827199022,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||1607)*.4827118644067799-363.5)),pixelHeight:3561,pixelWidth:1852,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.26)`,src:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=1024 532w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048 1065w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png 1852w\"}},zgPxKfeFM:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1103.7313157902931,intrinsicWidth:573.8805827199022,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||840)*.4827118644067799-363.5)),pixelHeight:3561,pixelWidth:1852,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.26)`,src:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=1024 532w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png?scale-down-to=2048 1065w,https://framerusercontent.com/images/VX113WZi8fopmC7HqBqnUM44P4.png 1852w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jsw6cx\",layoutDependency:layoutDependency,layoutId:\"bfYgLHIT_\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-32m7v7\",layoutDependency:layoutDependency,layoutId:\"K8Eb9EMgf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15soo1y\",layoutDependency:layoutDependency,layoutId:\"jTqFxYzyY\",style:{backgroundColor:\"rgb(187, 221, 255)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1au0fbx\",layoutDependency:layoutDependency,layoutId:\"dUFODAzUv\",style:{backgroundColor:\"rgb(204, 238, 255)\"}})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,pixelHeight:954,pixelWidth:3666,src:\"https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png 3666w\"},className:\"framer-184ya3v\",\"data-framer-name\":\"pattern\",layoutDependency:layoutDependency,layoutId:\"HjAo9vBx4\",transformTemplate:transformTemplate1,...addPropertyOverrides({zgPxKfeFM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:477,intrinsicWidth:1833,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||840)-96),pixelHeight:954,pixelWidth:3666,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.3784)`,src:\"https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AkO5u2reIr2CGbv03tSIOhu3UM.png 3666w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y5z3go\",\"data-framer-name\":\"Sun Burst\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2835,intrinsicWidth:2835,layoutDependency:layoutDependency,layoutId:\"pbbwcZipY\",svg:'<svg width=\"2835\" height=\"2835\" viewBox=\"0 0 2835 2835\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.31\" d=\"M1186.66 1282.6L519.683 776.823L420.641 835.792L417.959 950.965L1186.66 1282.6ZM1523.15 319.474L1422.75 263.031L1321.66 318.415L1418.72 1149.84L1523.15 319.474ZM1803.98 384.086L1721.33 303.753L1609.34 330.994L1488.04 1159.05L1803.98 384.086ZM1235.36 329.442L1123.67 300.922L1040.6 380.555L1349.43 1158.28L1235.36 329.442ZM960.182 413.603L845.048 415.144L785.26 513.551L1284.89 1184.97L960.182 413.603ZM715.903 566.251L605.117 597.389L572.977 708.091L1229.38 1227.3L715.903 566.251ZM2421.22 959.789L2419.68 844.654L2321.27 784.866L1649.85 1284.5L2421.22 959.789ZM1675.79 1487.63L2450.74 1803.58L2531.08 1720.93L2503.84 1608.94L1675.79 1487.63ZM2505.38 1234.97L2533.9 1123.28L2454.27 1040.2L1676.19 1349.17L2505.38 1234.97ZM2515.35 1522.76L2571.52 1422.18L2516.08 1321.29L1684.92 1418.53L2515.35 1522.76ZM2057.98 519.28L1999.22 420.291L1884.04 417.61L1552.49 1186.05L2057.98 519.28ZM2268.56 715.522L2237.42 604.735L2126.72 572.595L1607.52 1229.01L2268.56 715.522ZM777.215 2315.21L835.982 2414.19L951.154 2416.87L1282.71 1648.44L777.215 2315.21ZM1599.84 2505.02L1711.53 2533.55L1794.61 2453.91L1485.65 1675.82L1599.84 2505.02ZM1875.02 2420.86L1990.16 2419.32L2049.94 2320.92L1550.31 1649.49L1875.02 2420.86ZM1159.41 1346.83L384.457 1030.89L304.124 1113.54L331.365 1225.53L1159.41 1346.83ZM1648.54 1551.86L2315.52 2057.64L2414.51 1998.87L2417.19 1883.7L1648.54 1551.86ZM1312.06 2514.99L1412.64 2571.16L1513.53 2515.72L1416.29 1684.55L1312.06 2514.99ZM2119.3 2268.2L2230.09 2237.06L2262.23 2126.36L1605.82 1607.16L2119.3 2268.2ZM329.824 1599.48L301.303 1711.17L380.935 1794.25L1158.65 1485.4L329.824 1599.48ZM319.858 1311.69L263.415 1412.09L318.798 1513.18L1150.21 1416.12L319.858 1311.69ZM413.982 1874.66L415.523 1989.8L513.929 2049.59L1185.35 1549.95L413.982 1874.66ZM1031.23 2450.35L1113.87 2530.69L1225.86 2503.45L1347.17 1675.39L1031.23 2450.35ZM566.638 2118.93L597.775 2229.72L708.476 2261.86L1227.68 1605.45L566.638 2118.93Z\" fill=\"url(#paint0_radial_1_293)\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_1_293\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(1417.6 1417.22) rotate(105.257) scale(1154.15)\">\\n<stop stop-color=\"#F4DAB2\"/>\\n<stop offset=\"1\" stop-color=\"#D1925E\" stop-opacity=\"0\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G7Dyo.framer-138m3lj, .framer-G7Dyo .framer-138m3lj { display: block; }\",\".framer-G7Dyo.framer-22pqoo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1881px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1928px; }\",\".framer-G7Dyo .framer-hwez9l { aspect-ratio: 6.43404255319149 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); left: 50%; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-G7Dyo .framer-7s72cj { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-G7Dyo .framer-1jmfxys { aspect-ratio: 3.84375 / 1; bottom: -82px; flex: none; height: var(--framer-aspect-ratio-supported, 608px); left: 50%; overflow: visible; position: absolute; width: 121%; }\",\".framer-G7Dyo .framer-14p3exf { aspect-ratio: 3.842767295597484 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: 100%; z-index: 3; }\",\".framer-G7Dyo .framer-1at8913 { aspect-ratio: 0.49221183800623053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1013px); left: 0px; max-height: 1881px; overflow: visible; position: absolute; top: 50%; width: 26%; z-index: 1; }\",\".framer-G7Dyo .framer-1y1ypdp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-G7Dyo .framer-95wdps { aspect-ratio: 1.4032258064516128 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 186px); overflow: visible; position: relative; width: 261px; }\",\".framer-G7Dyo .framer-17q67so { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 898px; word-break: break-word; word-wrap: break-word; }\",\".framer-G7Dyo .framer-1mlmqk9 { flex: none; height: 565px; overflow: visible; position: relative; width: 699px; }\",\".framer-G7Dyo .framer-1b4yzoh { flex: none; height: 565px; left: 233px; position: absolute; top: 0px; width: 233px; }\",\".framer-G7Dyo .framer-jcb0iy, .framer-G7Dyo .framer-1e35sq1 { flex: none; height: 87px; left: calc(49.78540772532191% - 84px / 2); position: absolute; top: calc(12.743362831858429% - 87px / 2); width: 84px; }\",\".framer-G7Dyo .framer-rv8vm9 { flex: none; height: 4px; left: calc(15.593705293276109% - 220px / 2); position: absolute; top: 154px; width: 220px; }\",\".framer-G7Dyo .framer-ppadqm { flex: none; height: 4px; left: calc(84.34915392525035% - 221px / 2); position: absolute; top: 154px; width: 221px; }\",\".framer-G7Dyo .framer-tsmgyr { flex: none; height: 4px; left: calc(49.85693848354792% - 199px / 2); position: absolute; top: 154px; width: 199px; }\",\".framer-G7Dyo .framer-13hgtik { flex: none; height: 4px; left: calc(15.593705293276109% - 220px / 2); position: absolute; top: 280px; width: 220px; }\",\".framer-G7Dyo .framer-gtf39v { flex: none; height: 4px; left: calc(15.593705293276109% - 220px / 2); position: absolute; top: 406px; width: 220px; }\",\".framer-G7Dyo .framer-1uexcwp { flex: none; height: 4px; left: calc(15.593705293276109% - 220px / 2); position: absolute; top: 532px; width: 220px; }\",\".framer-G7Dyo .framer-19zff9e { flex: none; height: 4px; left: calc(84.34915392525035% - 221px / 2); position: absolute; top: 280px; width: 221px; }\",\".framer-G7Dyo .framer-2utnkh { flex: none; height: 4px; left: calc(84.34915392525035% - 221px / 2); position: absolute; top: 406px; width: 221px; }\",\".framer-G7Dyo .framer-k6ou3q { flex: none; height: 4px; left: calc(84.4062947067239% - 220px / 2); position: absolute; top: 532px; width: 220px; }\",\".framer-G7Dyo .framer-1tpvmgg { flex: none; height: 4px; left: calc(49.71387696709585% - 199px / 2); position: absolute; top: 280px; width: 199px; }\",\".framer-G7Dyo .framer-p5kxgf { flex: none; height: 4px; left: calc(49.65673618562232% - 200px / 2); position: absolute; top: 406px; width: 200px; }\",\".framer-G7Dyo .framer-nqocbl { flex: none; height: 4px; left: calc(49.71387696709585% - 199px / 2); position: absolute; top: 532px; width: 199px; }\",\".framer-G7Dyo .framer-1unuaen { flex: none; height: auto; left: 83%; position: absolute; top: 56px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-vzwbl2 { flex: none; height: auto; left: 50%; position: absolute; top: 211px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-1dl7n34 { flex: none; height: auto; left: 50%; position: absolute; top: 337px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-bn4g0d { flex: none; height: auto; left: 50%; position: absolute; top: 463px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-1lnojyq { flex: none; height: auto; left: 6%; position: absolute; top: 211px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-118kk2z { flex: none; height: auto; left: 11%; position: absolute; top: 337px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-vqmr7j { flex: none; height: auto; left: 10%; position: absolute; top: 463px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-qa2cqj { flex: none; height: auto; left: 84%; position: absolute; top: 211px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-18cqum8 { flex: none; height: auto; left: 84%; position: absolute; top: 337px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-15c0bi2 { flex: none; height: auto; left: 84%; position: absolute; top: 463px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-1wlkdq0 { flex: none; height: 250px; overflow: visible; position: relative; width: 350px; }\",\".framer-G7Dyo .framer-15qpca8, .framer-G7Dyo .framer-mvdtef { flex: none; height: 250px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 350px; }\",\".framer-G7Dyo .framer-1g494yj { flex: none; height: 15px; left: calc(7.85076831573686% - 52px / 2); position: absolute; top: 87px; width: 52px; }\",\".framer-G7Dyo .framer-1wdhcb6 { flex: none; height: 15px; left: calc(13.712474275454387% - 93px / 2); position: absolute; top: 137px; width: 93px; }\",\".framer-G7Dyo .framer-1rtbewq { flex: none; height: 16px; left: calc(12.568622057907803% - 85px / 2); position: absolute; top: 187px; width: 85px; }\",\".framer-G7Dyo .framer-3opp90 { flex: none; height: 3px; left: calc(13.426537399370602% - 95px / 2); position: absolute; top: 220px; width: 95px; }\",\".framer-G7Dyo .framer-t75g6i, .framer-G7Dyo .framer-s6ocqw { flex: none; height: 3px; left: calc(13.296064737895852% - 96px / 2); position: absolute; top: 169px; width: 96px; }\",\".framer-G7Dyo .framer-19kpttq, .framer-G7Dyo .framer-15s80em { flex: none; height: 3px; left: calc(13.296064737895852% - 96px / 2); position: absolute; top: 118px; width: 96px; }\",\".framer-G7Dyo .framer-pnxlpp, .framer-G7Dyo .framer-19x7aq8 { flex: none; height: 3px; left: calc(13.296064737895852% - 96px / 2); position: absolute; top: 66px; width: 96px; }\",\".framer-G7Dyo .framer-1gw9kf7 { flex: none; height: 3px; left: calc(84.13050337735012% - 114px / 2); position: absolute; top: 220px; width: 114px; }\",\".framer-G7Dyo .framer-1ppfdab { flex: none; height: 3px; left: calc(84.13050337735012% - 114px / 2); position: absolute; top: 169px; width: 114px; }\",\".framer-G7Dyo .framer-98f13j { flex: none; height: 3px; left: calc(84.13050337735012% - 114px / 2); position: absolute; top: 118px; width: 114px; }\",\".framer-G7Dyo .framer-1wamvik { flex: none; height: 3px; left: calc(84.13050337735012% - 114px / 2); position: absolute; top: 66px; width: 114px; }\",\".framer-G7Dyo .framer-zdchmu, .framer-G7Dyo .framer-1iejw7z { flex: none; height: 250px; left: 108px; position: absolute; top: 0px; width: 124px; }\",\".framer-G7Dyo .framer-azomut { flex: none; height: 15px; left: calc(48.45380471963387% - 76px / 2); position: absolute; top: 87px; width: 76px; }\",\".framer-G7Dyo .framer-byx9qx { flex: none; height: 15px; left: calc(83.9099773540228% - 88px / 2); position: absolute; top: 87px; width: 88px; }\",\".framer-G7Dyo .framer-ydd9iw { flex: none; height: 15px; left: calc(48.73974159571765% - 90px / 2); position: absolute; top: 137px; width: 90px; }\",\".framer-G7Dyo .framer-1gweqaj { flex: none; height: 15px; left: calc(84.19591423010658% - 90px / 2); position: absolute; top: 137px; width: 90px; }\",\".framer-G7Dyo .framer-32tz0 { flex: none; height: 16px; left: calc(48.646684273611434% - 112px / 2); position: absolute; top: 187px; width: 112px; }\",\".framer-G7Dyo .framer-1qf2qdx { flex: none; height: 16px; left: calc(84.10285690800036% - 112px / 2); position: absolute; top: 187px; width: 112px; }\",\".framer-G7Dyo .framer-8rnkb1 { flex: none; height: 26px; left: calc(84.05294579206469% - 73px / 2); position: absolute; top: 25px; width: 73px; }\",\".framer-G7Dyo .framer-1n11d58 { flex: none; height: 15px; left: calc(13.712683701877298% - 93px / 2); position: absolute; top: 137px; width: 93px; }\",\".framer-G7Dyo .framer-1rf4un1 { flex: none; height: 16px; left: calc(12.56837772708107% - 85px / 2); position: absolute; top: 187px; width: 85px; }\",\".framer-G7Dyo .framer-pcm7ut { flex: none; height: 3px; left: calc(13.426746825793517% - 95px / 2); position: absolute; top: 220px; width: 95px; }\",\".framer-G7Dyo .framer-asj9em { flex: none; height: 3px; left: calc(84.13022414211956% - 114px / 2); position: absolute; top: 220px; width: 114px; }\",\".framer-G7Dyo .framer-oz1awk { flex: none; height: 3px; left: calc(84.13022414211956% - 114px / 2); position: absolute; top: 169px; width: 114px; }\",\".framer-G7Dyo .framer-1n2oexn { flex: none; height: 3px; left: calc(84.13022414211956% - 114px / 2); position: absolute; top: 118px; width: 114px; }\",\".framer-G7Dyo .framer-km848l { flex: none; height: 3px; left: calc(84.13022414211956% - 114px / 2); position: absolute; top: 66px; width: 114px; }\",\".framer-G7Dyo .framer-hc7jx8 { flex: none; height: auto; left: 48%; position: absolute; top: 38%; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-1y5zmd2 { flex: none; height: auto; left: 3px; position: absolute; top: 88px; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-181h940 { flex: none; height: auto; left: 49%; position: absolute; top: 58%; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-29m1xi { flex: none; height: auto; left: 49%; position: absolute; top: 78%; white-space: pre; width: auto; }\",\".framer-G7Dyo .framer-8jo43 { flex: none; height: 15px; left: calc(83.91018678044571% - 88px / 2); position: absolute; top: 87px; width: 88px; }\",\".framer-G7Dyo .framer-15vjzqs { flex: none; height: 15px; left: calc(84.1961236565295% - 90px / 2); position: absolute; top: 137px; width: 90px; }\",\".framer-G7Dyo .framer-1t1aew5 { flex: none; height: 16px; left: calc(84.10306633442329% - 112px / 2); position: absolute; top: 187px; width: 112px; }\",\".framer-G7Dyo .framer-1kcnlc5 { aspect-ratio: 0.519945909398242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 964px); overflow: visible; position: absolute; right: 0px; top: 48%; width: 26%; z-index: 1; }\",\".framer-G7Dyo .framer-1jsw6cx { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 562px; justify-content: space-between; left: calc(50.00000000000002% - 1928px / 2); overflow: hidden; padding: 0px; position: absolute; width: 1928px; z-index: 1; }\",\".framer-G7Dyo .framer-32m7v7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 11px; }\",\".framer-G7Dyo .framer-15soo1y, .framer-G7Dyo .framer-1au0fbx { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-G7Dyo .framer-184ya3v { aspect-ratio: 3.842767295597484 / 1; bottom: -37px; flex: none; height: var(--framer-aspect-ratio-supported, 52px); left: 48%; overflow: visible; position: absolute; width: 138%; z-index: 3; }\",\".framer-G7Dyo .framer-1y5z3go { flex: none; height: 2835px; left: calc(50.00000000000002% - 2834px / 2); position: absolute; top: -1768px; width: 2834px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G7Dyo.framer-22pqoo, .framer-G7Dyo .framer-1y1ypdp, .framer-G7Dyo .framer-32m7v7 { gap: 0px; } .framer-G7Dyo.framer-22pqoo > *, .framer-G7Dyo .framer-32m7v7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-G7Dyo.framer-22pqoo > :first-child, .framer-G7Dyo .framer-1y1ypdp > :first-child, .framer-G7Dyo .framer-32m7v7 > :first-child { margin-top: 0px; } .framer-G7Dyo.framer-22pqoo > :last-child, .framer-G7Dyo .framer-1y1ypdp > :last-child, .framer-G7Dyo .framer-32m7v7 > :last-child { margin-bottom: 0px; } .framer-G7Dyo .framer-1y1ypdp > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } }\",\".framer-G7Dyo.framer-v-1l7echa.framer-22pqoo { height: 1607px; width: 1200px; }\",\".framer-G7Dyo.framer-v-1l7echa .framer-hwez9l { height: var(--framer-aspect-ratio-supported, 187px); }\",\".framer-G7Dyo.framer-v-1l7echa .framer-1jmfxys { height: var(--framer-aspect-ratio-supported, 378px); }\",\".framer-G7Dyo.framer-v-1l7echa .framer-1at8913 { height: var(--framer-aspect-ratio-supported, 630px); }\",\".framer-G7Dyo.framer-v-1l7echa .framer-17q67so, .framer-G7Dyo.framer-v-1xqt8bf .framer-17q67so { width: 560px; }\",\".framer-G7Dyo.framer-v-1l7echa .framer-1kcnlc5 { height: var(--framer-aspect-ratio-supported, 600px); }\",\".framer-G7Dyo.framer-v-1xqt8bf.framer-22pqoo { height: 1607px; width: 810px; }\",\".framer-G7Dyo.framer-v-1xqt8bf .framer-hwez9l { height: var(--framer-aspect-ratio-supported, 126px); }\",\".framer-G7Dyo.framer-v-1xqt8bf .framer-1jmfxys { height: var(--framer-aspect-ratio-supported, 255px); }\",\".framer-G7Dyo.framer-v-1xqt8bf .framer-1at8913 { height: var(--framer-aspect-ratio-supported, 426px); }\",\".framer-G7Dyo.framer-v-1xqt8bf .framer-1kcnlc5 { height: var(--framer-aspect-ratio-supported, 405px); }\",\".framer-G7Dyo.framer-v-emfkai.framer-22pqoo { height: 840px; width: 370px; }\",\".framer-G7Dyo.framer-v-emfkai .framer-hwez9l { height: var(--framer-aspect-ratio-supported, 85px); left: 52%; width: 148%; }\",\".framer-G7Dyo.framer-v-emfkai .framer-1jmfxys { height: var(--framer-aspect-ratio-supported, 117px); }\",\".framer-G7Dyo.framer-v-emfkai .framer-1at8913 { height: var(--framer-aspect-ratio-supported, 195px); }\",\".framer-G7Dyo.framer-v-emfkai .framer-1y1ypdp { gap: 42px; width: 100%; }\",\".framer-G7Dyo.framer-v-emfkai .framer-95wdps { height: var(--framer-aspect-ratio-supported, 81px); order: 1; width: 113px; }\",\".framer-G7Dyo.framer-v-emfkai .framer-17q67so { order: 0; width: 370px; }\",\".framer-G7Dyo.framer-v-emfkai .framer-1wlkdq0 { order: 4; }\",\".framer-G7Dyo.framer-v-emfkai .framer-1e35sq1 { height: 40px; left: calc(48.32333205815914% - 39px / 2); top: calc(12.800000000000022% - 40px / 2); width: 39px; }\",\".framer-G7Dyo.framer-v-emfkai .framer-1kcnlc5 { height: var(--framer-aspect-ratio-supported, 185px); }\",\".framer-G7Dyo.framer-v-emfkai .framer-184ya3v { height: var(--framer-aspect-ratio-supported, 133px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G7Dyo.framer-v-emfkai .framer-1y1ypdp { gap: 0px; } .framer-G7Dyo.framer-v-emfkai .framer-1y1ypdp > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-G7Dyo.framer-v-emfkai .framer-1y1ypdp > :first-child { margin-top: 0px; } .framer-G7Dyo.framer-v-emfkai .framer-1y1ypdp > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1881\n * @framerIntrinsicWidth 1928\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nWEbxk1PU\":{\"layout\":[\"fixed\",\"fixed\"]},\"gKsXfESCf\":{\"layout\":[\"fixed\",\"fixed\"]},\"zgPxKfeFM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxwLtASr04=withCSS(Component,css,\"framer-G7Dyo\");export default FramerxwLtASr04;FramerxwLtASr04.displayName=\"comparables\";FramerxwLtASr04.defaultProps={height:1881,width:1928};addPropertyControls(FramerxwLtASr04,{variant:{options:[\"OeOb3QWSL\",\"nWEbxk1PU\",\"gKsXfESCf\",\"zgPxKfeFM\"],optionTitles:[\"Desktop\",\"laptop\",\"tablet\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxwLtASr04,[{explicitInter:true,fonts:[{family:\"Heavitas Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/S5XTCp6oj0FDLQKP1LbqChyg.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxwLtASr04\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nWEbxk1PU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gKsXfESCf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zgPxKfeFM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1881\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1928\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xwLtASr04.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/D6ue3bw4Tssy1WDrspcP/SlideShow.js\";import FCCartStateMobile from\"#framer/local/canvasComponent/bfGm0vhH2/bfGm0vhH2.js\";import ProductSlideshow from\"#framer/local/canvasComponent/BixwjGTr6/BixwjGTr6.js\";import MeetJack from\"#framer/local/canvasComponent/IN5eoht4Y/IN5eoht4Y.js\";import SuggestProductAtc from\"#framer/local/canvasComponent/mHbjxqdc1/mHbjxqdc1.js\";import FaqSection from\"#framer/local/canvasComponent/nLP3wBEfe/nLP3wBEfe.js\";import HeroSection from\"#framer/local/canvasComponent/PuJv23A0G/PuJv23A0G.js\";import AnnouncementBar from\"#framer/local/canvasComponent/rF61vASjY/rF61vASjY.js\";import Navigation from\"#framer/local/canvasComponent/RylUBbuJm/RylUBbuJm.js\";import Footer from\"#framer/local/canvasComponent/SYQDCh0iI/SYQDCh0iI.js\";import Comparables from\"#framer/local/canvasComponent/xwLtASr04/xwLtASr04.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const AnnouncementBarFonts=getFonts(AnnouncementBar);const NavigationFonts=getFonts(Navigation);const SuggestProductAtcFonts=getFonts(SuggestProductAtc);const FCCartStateMobileFonts=getFonts(FCCartStateMobile);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const HeroSectionFonts=getFonts(HeroSection);const ProductSlideshowFonts=getFonts(ProductSlideshow);const VideoFonts=getFonts(Video);const SlideshowFonts=getFonts(Slideshow);const ComparablesFonts=getFonts(Comparables);const MeetJackFonts=getFonts(MeetJack);const FaqSectionFonts=getFonts(FaqSection);const FooterFonts=getFonts(Footer);const breakpoints={GjuGamxZC:\"(min-width: 1200px) and (max-width: 1511px)\",MIzEJE3_y:\"(max-width: 809px)\",pj86s5xzQ:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1512px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Zsim8\";const variantClassNames={GjuGamxZC:\"framer-v-1a9i1p5\",MIzEJE3_y:\"framer-v-19dvze0\",pj86s5xzQ:\"framer-v-pnown6\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100};const transition2={damping:40,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:440,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:440,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",laptop:\"GjuGamxZC\",Phone:\"MIzEJE3_y\",Tablet:\"pj86s5xzQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const NAerMxchw3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const qMfhn_fYs1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"MIzEJE3_y\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"MIzEJE3_y\")return true;return false;};const elementId=useRouteElementId(\"M_WPPgQpG\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"aJDnclFXa\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"MMCnsirEN\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(254, 250, 245); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ra0kzx-container\",nodeId:\"bTq6BA7Dd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"HgTYNsvSg\"},MIzEJE3_y:{variant:\"buGK3DcHj\"},pj86s5xzQ:{variant:\"rcxL9JMh4\"}},children:/*#__PURE__*/_jsx(AnnouncementBar,{height:\"100%\",id:\"bTq6BA7Dd\",layoutId:\"bTq6BA7Dd\",style:{height:\"100%\",width:\"100%\"},variant:\"eJ7X9FUma\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{y:(componentViewport?.y||0)+43},pj86s5xzQ:{y:(componentViewport?.y||0)+43}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+62,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{transformTemplate:undefined},pj86s5xzQ:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1gh55ak-container\",\"data-framer-appear-id\":\"1gh55ak\",id:\"1gh55ak\",initial:animation1,nodeId:\"OlcWWGGYY\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{variant:\"lEclwql1v\"},pj86s5xzQ:{variant:\"G8PaSPJNO\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"OlcWWGGYY\",layoutId:\"OlcWWGGYY\",NAerMxchw:NAerMxchw3bnx0g({overlay}),style:{width:\"100%\"},variant:\"THq7PHFdz\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1c3kib5\"),\"data-framer-portal-id\":\"1gh55ak\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"qQVSljhQK\"),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:`${cx(scopingClassNames,\"framer-ozdqn9-container\")} hidden-19dvze0`,\"data-framer-portal-id\":\"1gh55ak\",exit:animation2,inComponentSlot:true,initial:animation4,nodeId:\"wvk6DBveE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SuggestProductAtc,{height:\"100%\",id:\"wvk6DBveE\",layoutId:\"wvk6DBveE\",qMfhn_fYs:qMfhn_fYs1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-109w0ge-container\")} hidden-72rtr7 hidden-pnown6 hidden-1a9i1p5`,\"data-framer-portal-id\":\"1gh55ak\",inComponentSlot:true,nodeId:\"xKLIFrk2J\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FCCartStateMobile,{height:\"100%\",id:\"xKLIFrk2J\",layoutId:\"xKLIFrk2J\",qMfhn_fYs:qMfhn_fYs1wnntms({overlay}),style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:`${cx(scopingClassNames,\"framer-1kyfcyx-container\")} hidden-19dvze0`,\"data-framer-portal-id\":\"1gh55ak\",inComponentSlot:true,nodeId:\"odVN9Y3Tx\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"HgTYNsvSg\"},pj86s5xzQ:{variant:\"rcxL9JMh4\"}},children:/*#__PURE__*/_jsx(AnnouncementBar,{height:\"100%\",id:\"odVN9Y3Tx\",layoutId:\"odVN9Y3Tx\",style:{height:\"100%\",width:\"100%\"},variant:\"eJ7X9FUma\",width:\"100%\"})})})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1024,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8obsy-container\",nodeId:\"zPNh44dpm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"OTMn4x6mx\"},MIzEJE3_y:{variant:\"WRot8rpyg\"},pj86s5xzQ:{variant:\"WHthNNWkM\"}},children:/*#__PURE__*/_jsx(HeroSection,{height:\"100%\",id:\"zPNh44dpm\",layoutId:\"zPNh44dpm\",style:{width:\"100%\"},variant:\"upuUDNARb\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-178c2pg\",\"data-framer-name\":\"Discover Flavors\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yybe8z\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1knmjn6\",\"data-framer-name\":\"Vector 243 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"14\" viewBox=\"-1 -1 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 1.00008C6.60948 0.609551 5.97631 0.609552 5.58579 1.00008L1.29289 5.29297C0.902369 5.68349 0.902369 6.31666 1.29289 6.70718L5.58579 11.0001C5.97631 11.3906 6.60948 11.3906 7 11.0001C7.39052 10.6096 7.39052 9.97639 7 9.58586L4.84099 7.42685C4.6835 7.26936 4.79504 7.00008 5.01777 7.00008H13C13.5523 7.00008 14 6.55236 14 6.00008C14 5.44779 13.5523 5.00008 13 5.00008H5.01777C4.79504 5.00008 4.6835 4.73079 4.84099 4.5733L7 2.41429C7.39052 2.02376 7.39052 1.3906 7 1.00008Z\" fill=\"#7D6143\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"115%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(125, 97, 66)\"},children:\"click TO DISCOVER all of our flavors\"})}),className:\"framer-1mp0w3o\",\"data-framer-name\":\"The navigation desig\",fonts:[\"CUSTOM;Heavitas Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ziwzsg\",\"data-framer-name\":\"Vector 242 (Stroke)\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"14\" viewBox=\"-1 -1 16 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.5\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 1.00008C7.39052 0.609551 8.02369 0.609552 8.41421 1.00008L12.7071 5.29297C13.0976 5.68349 13.0976 6.31666 12.7071 6.70718L8.41421 11.0001C8.02369 11.3906 7.39052 11.3906 7 11.0001C6.60948 10.6096 6.60948 9.97639 7 9.58586L9.15901 7.42685C9.3165 7.26936 9.20496 7.00008 8.98223 7.00008H1C0.447715 7.00008 0 6.55236 0 6.00008C0 5.44779 0.447715 5.00008 1 5.00008H8.98223C9.20496 5.00008 9.3165 4.73079 9.15901 4.5733L7 2.41429C6.60948 2.02376 6.60948 1.3906 7 1.00008Z\" fill=\"#7D6143\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:610,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1056+0+152.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f8cbfh-container\",nodeId:\"XlIa8FkYU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{variant:\"lZWLx7xUC\"}},children:/*#__PURE__*/_jsx(ProductSlideshow,{height:\"100%\",id:\"XlIa8FkYU\",layoutId:\"XlIa8FkYU\",style:{width:\"100%\"},variant:\"v2KttQ7m0\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifqnzx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y49i5f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d6ide6\",\"data-framer-name\":\"peanut\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k8mih3\",\"data-framer-name\":\"Peanut\",fill:\"black\",intrinsicHeight:154,intrinsicWidth:153,svg:'<svg width=\"153\" height=\"154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M98.102 8.415H60.494a20 20 0 0 0-10.68 3.09l-24.446 15.44a20 20 0 0 0-9.03 13.512L9.38 80.822a20 20 0 0 0 2.386 13.392l20.489 35.514a20 20 0 0 0 14.917 9.86l43.665 5.293a20.001 20.001 0 0 0 17.387-6.603l31.489-35.596a20.003 20.003 0 0 0 4.804-16.183l-5.521-37.267a20.007 20.007 0 0 0-4.836-10.356l-21.11-23.748a20 20 0 0 0-14.948-6.713Z\" fill=\"#F2EEE1\" stroke=\"#E8E1CA\" stroke-width=\"16.204\"/><path d=\"m27.865 126.333 98.299-101.37\" stroke=\"#E8E1CA\" stroke-width=\"18.413\"/><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"49\" y=\"35\" width=\"57\" height=\"84\"><path d=\"m72.594 36.707-1.422.569a15 15 0 0 0-8.811 9.666l-12.323 41.59a15 15 0 0 0 3.283 14.351l9.952 10.947a15.001 15.001 0 0 0 13.22 4.76l11-1.572a15 15 0 0 0 12.588-11.907l5.303-26.515a15.005 15.005 0 0 0-1.292-9.65l-12.51-25.02c-3.49-6.978-11.744-10.117-18.988-7.22Z\" fill=\"#D9D9D9\"/></mask><g mask=\"url(#a)\"><rect x=\"32.948\" y=\"25.287\" width=\"83.936\" height=\"96.527\" rx=\"15\" fill=\"#E4B37F\"/><path d=\"M79.112 75.648V4.302m17.986 88.133V21.09m-35.97 75.543V25.287\" stroke=\"#C29A5E\" stroke-width=\"11.837\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"Filler Free\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"Filler Free\"})}),className:\"framer-1ayf91p\",fonts:[\"CUSTOM;Heavitas Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4c3k5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13keqed\",\"data-framer-name\":\"Leaf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y6i3az\",\"data-framer-name\":\"Leaf\",fill:\"black\",intrinsicHeight:154,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M153.484 101.366V57.963a20 20 0 0 0-3.09-10.68L132.379 18.76a20 20 0 0 0-13.512-9.03l-46.59-8.032a20 20 0 0 0-13.392 2.386L17.791 27.79a20 20 0 0 0-9.86 14.917L1.78 93.457a20 20 0 0 0 6.603 17.386l41.176 36.426a20.003 20.003 0 0 0 16.183 4.804l43.062-6.38a20 20 0 0 0 10.357-4.836l27.611-24.543a20 20 0 0 0 6.712-14.948Z\" fill=\"#F2EEE1\"/><mask id=\"a\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"48\" y=\"41\" width=\"50\" height=\"60\"><path d=\"m96.346 90.922 1.431 7.406a2 2 0 0 1-1.99 2.379l-14.172-.191a33.854 33.854 0 0 1-31.769-44.24l4.45-13.803c.527-1.637 2.74-1.888 3.62-.41l6.923 11.612A35 35 0 0 0 77.533 66.14l1.819 1.04a35 35 0 0 1 16.993 23.742Z\" fill=\"#239E21\"/></mask><g mask=\"url(#a)\"><path fill=\"#75B264\" d=\"m90.772 121.518 29.34-48.113-67.358-41.077-29.34 48.113z\"/><path d=\"m52.327 32.34 6.197 25.886A35 35 0 0 0 69.74 76.612l13.44 11.56\" stroke=\"#91C483\" stroke-width=\"9.207\"/></g><path d=\"m92.826 96.725 3.127 12.069\" stroke=\"#75B264\" stroke-width=\"9.207\" stroke-linecap=\"round\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"100% Natural\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"100% Natural\"})}),className:\"framer-1i9xnob\",fonts:[\"CUSTOM;Heavitas Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r94j3b\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o4crt1\",\"data-framer-name\":\"flag\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e2adtc\",\"data-framer-name\":\"Flag\",fill:\"black\",intrinsicHeight:154,intrinsicWidth:154,svg:'<svg width=\"154\" height=\"154\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M101.398.468H57.995a20 20 0 0 0-10.68 3.09L18.79 21.573a20 20 0 0 0-9.03 13.512l-8.03 46.59a20 20 0 0 0 2.385 13.392l23.709 41.094a20.001 20.001 0 0 0 14.917 9.861l50.748 6.151a20.004 20.004 0 0 0 17.387-6.603l36.425-41.177a19.999 19.999 0 0 0 4.804-16.182l-6.379-43.063a19.999 19.999 0 0 0-4.836-10.356L116.346 7.18A20.002 20.002 0 0 0 101.398.468Z\" fill=\"#F2EEE1\"/><path d=\"M40.81 51.917c-.128 4.185 4.144 7.08 7.982 5.408l9.705-4.226a12.411 12.411 0 0 1 9-.355l16.621 5.73a35 35 0 0 0 22.405.14l5.544-1.836-1.331-11.523-4.128 1.366a35 35 0 0 1-22.405-.138l-13.397-4.62a22.883 22.883 0 0 0-16.595.654l-9.975 4.344a5.706 5.706 0 0 0-3.425 5.056Z\" fill=\"#fff\"/><path d=\"m40.178 72.343 10.251-4.465a35 35 0 0 1 25.382-.999l8.304 2.863a35 35 0 0 0 22.405.139l6.793-2.248.001-.033-1.328-11.492-5.381 1.78A35 35 0 0 1 84.2 57.75l-8.936-3.08a35 35 0 0 0-25.382.999l-9.316 4.057-.388 12.617Z\" fill=\"#CC3939\"/><path d=\"m39.907 83.728 10.52-4.581a35 35 0 0 1 25.382-1l8.305 2.863a35 35 0 0 0 22.405.14l6.441-2.133.332-10.774a8.85 8.85 0 0 0-.054-1.281l-6.634 2.195a35.002 35.002 0 0 1-22.405-.138l-8.937-3.081a35 35 0 0 0-25.381 1l-9.667 4.209-.307 9.975v2.606Z\" fill=\"#fff\"/><path d=\"m39.907 94.997 10.52-4.582a35 35 0 0 1 25.382-.999l8.305 2.863a35.001 35.001 0 0 0 22.405.139l6.091-2.016.372-12.087-6.378 2.11a35.001 35.001 0 0 1-22.405-.138l-8.937-3.08a35 35 0 0 0-25.381.999l-9.974 4.343v12.448Z\" fill=\"#CC3939\"/><path d=\"m39.907 106.265 10.52-4.582a35.002 35.002 0 0 1 25.382-.999l8.305 2.863a35 35 0 0 0 22.405.139l5.74-1.9.372-12.087-6.027 1.995a35.002 35.002 0 0 1-22.405-.139l-8.937-3.08a35 35 0 0 0-25.381.999l-9.974 4.343v12.448Z\" fill=\"#fff\"/><path d=\"m40.139 74.498.72-.508c11.356-8.013 26.528-8.456 38.425-1.27V44.819a33.244 33.244 0 0 0-35.3 1.7l-3.05 2.124-.795 25.855Z\" fill=\"#3974CC\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"USA Made\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0hlYXZpdGFzIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Heavitas Regular\", \"Heavitas Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-text-color\":\"rgb(80, 74, 52)\"},children:\"USA Made\"})}),className:\"framer-w4qghm\",fonts:[\"CUSTOM;Heavitas Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j84irw\",\"data-framer-name\":\"slideshow\",id:elementId,ref:ref1,children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18b7a30-container hidden-72rtr7 hidden-pnown6 hidden-1a9i1p5\",\"data-framer-name\":\"slideshow - mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"slideshow - mobile\",nodeId:\"MI88rVloA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:16,height:\"100%\",id:\"MI88rVloA\",intervalControl:3,itemAmount:1,layoutId:\"MI88rVloA\",name:\"slideshow - mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mkacg0\",\"data-framer-name\":\"testimonial - mobile\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tg8zcn\",\"data-framer-name\":\"Strokeoutsidsmall\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:233,style:{rotate:3},svg:'<svg width=\"233\" height=\"256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1.335\" y=\"1.8\" width=\"230\" height=\"253\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6l5dgk\",\"data-framer-name\":\"testimonial one\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aux3q5\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hy8l3m\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(135, 59, 71)\"},children:\"It\u2019s rare to find a brand that puts dogs health first without sacrificing tast. My picky eater can\u2019t get enough of these!\"})}),className:\"framer-am89f8\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(211, 211, 211)\"},children:\"Justin M.\"})}),className:\"framer-kcj63s\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"114px\",src:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png\",srcSet:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png 924w\"},className:\"framer-1hawz09\",\"data-framer-name\":\"jacksbest_paw3 1\",style:{rotate:80}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"114px\",src:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png\",srcSet:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png 924w\"},className:\"framer-czse81\",\"data-framer-name\":\"jacksbest_paw3 1\",style:{rotate:80}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v5qanv\",\"data-framer-name\":\"Small crumble\",fill:\"black\",intrinsicHeight:110,intrinsicWidth:69,style:{rotate:-3},svg:'<svg width=\"69\" height=\"110\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.349 3.582 0 0l14.429 14.126a5 5 0 0 1 .649 6.366L7.194 32.197a5 5 0 0 0 1.517 7.046l5.433 3.36c.477.294 1 .506 1.546.628l25.475 5.656a5 5 0 0 1 2.673 1.582l4.167 4.745a5 5 0 0 1 .635 5.69l-4.605 8.46a5 5 0 0 0-.039 4.708l18.777 35.899L68.349 3.582ZM28.308 28.74l1.378-6.064a3 3 0 0 1 4.502-1.888l13.68 8.45a3 3 0 0 1 1.125 3.857l-3.087 6.395a3 3 0 0 1-4.476 1.115l-11.971-8.781a3 3 0 0 1-1.151-3.084ZM61.64 10.518l-1.482-.961a3 3 0 0 0-3.286.015l-6.241 4.126a3 3 0 0 0-.5 4.591l1.587 1.636a3 3 0 0 0 4.002.274l6.137-4.8a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ig4pu\",\"data-framer-name\":\"testimonial - mobile\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sbcyls-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"v_ThYVagl\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"v_ThYVagl\",isMixedBorderRadius:false,layoutId:\"v_ThYVagl\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jsmoap\",\"data-framer-name\":\"testimonial - mobile\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1547y09\",\"data-framer-name\":\"Strokeoutsidsmall\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:233,style:{rotate:3},svg:'<svg width=\"233\" height=\"256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1.335\" y=\"1.8\" width=\"230\" height=\"253\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-154g6ds\",\"data-framer-name\":\"testimonial one\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ohg89m\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ylh6kt\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(65, 90, 52)\"},children:\"Finally, a company that actually cares about quality ingredients without cutting corners. My dog loves these treats!\"})}),className:\"framer-sivojm\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(65, 90, 52)\"},children:\"Sarah D.\"})}),className:\"framer-18blh16\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png\",srcSet:\"https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png?scale-down-to=512 512w,https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png 820w\"},className:\"framer-1ofnd24\",\"data-framer-name\":\"jacksbest_paw2 2\",style:{rotate:-3}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17g2p6d\",\"data-framer-name\":\"Small crumble\",fill:\"black\",intrinsicHeight:110,intrinsicWidth:69,style:{rotate:-3},svg:'<svg width=\"69\" height=\"110\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.349 3.582 0 0l14.429 14.126a5 5 0 0 1 .649 6.366L7.194 32.197a5 5 0 0 0 1.517 7.046l5.433 3.36c.477.294 1 .506 1.546.628l25.475 5.656a5 5 0 0 1 2.673 1.582l4.167 4.745a5 5 0 0 1 .635 5.69l-4.605 8.46a5 5 0 0 0-.039 4.708l18.777 35.899L68.349 3.582ZM28.308 28.74l1.378-6.064a3 3 0 0 1 4.502-1.888l13.68 8.45a3 3 0 0 1 1.125 3.857l-3.087 6.395a3 3 0 0 1-4.476 1.115l-11.971-8.781a3 3 0 0 1-1.151-3.084ZM61.64 10.518l-1.482-.961a3 3 0 0 0-3.286.015l-6.241 4.126a3 3 0 0 0-.5 4.591l1.587 1.636a3 3 0 0 0 4.002.274l6.137-4.8a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-817u87\",\"data-framer-name\":\"testimonial - mobile\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mty1ad-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"U71MLBulo\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"U71MLBulo\",isMixedBorderRadius:false,layoutId:\"U71MLBulo\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q3oo8c\",\"data-framer-name\":\"testimonial - mobile\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-q3ym7d\",\"data-framer-name\":\"Strokeoutsidsmall\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:233,style:{rotate:3},svg:'<svg width=\"233\" height=\"256\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"1.335\" y=\"1.8\" width=\"230\" height=\"253\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s150bl\",\"data-framer-name\":\"testimonial one\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4bi0wt\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1w6oyqr\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(79, 95, 116)\"},children:\"I\u2019ve tried so many treats, but nothing compares to these. No fillers, no junk. My pup approves!\"})}),className:\"framer-1ii82w2\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(79, 95, 116)\"},children:\"Cody L.\"})}),className:\"framer-16nqeyw\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"114px\",src:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png\",srcSet:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png 924w\"},className:\"framer-1uaj16q\",\"data-framer-name\":\"jacksbest_paw3 1\",style:{rotate:80}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1411muq\",\"data-framer-name\":\"Small crumble\",fill:\"black\",intrinsicHeight:110,intrinsicWidth:69,style:{rotate:-3},svg:'<svg width=\"69\" height=\"110\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.349 3.582 0 0l14.429 14.126a5 5 0 0 1 .649 6.366L7.194 32.197a5 5 0 0 0 1.517 7.046l5.433 3.36c.477.294 1 .506 1.546.628l25.475 5.656a5 5 0 0 1 2.673 1.582l4.167 4.745a5 5 0 0 1 .635 5.69l-4.605 8.46a5 5 0 0 0-.039 4.708l18.777 35.899L68.349 3.582ZM28.308 28.74l1.378-6.064a3 3 0 0 1 4.502-1.888l13.68 8.45a3 3 0 0 1 1.125 3.857l-3.087 6.395a3 3 0 0 1-4.476 1.115l-11.971-8.781a3 3 0 0 1-1.151-3.084ZM61.64 10.518l-1.482-.961a3 3 0 0 0-3.286.015l-6.241 4.126a3 3 0 0 0-.5 4.591l1.587 1.636a3 3 0 0 0 4.002.274l6.137-4.8a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vik987\",\"data-framer-name\":\"testimonial - mobile\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2qqpn-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"NqSaLc57G\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"NqSaLc57G\",isMixedBorderRadius:false,layoutId:\"NqSaLc57G\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdqjl8-container hidden-19dvze0\",\"data-framer-name\":\"slideshow - desktop\",isAuthoredByUser:true,isModuleExternal:true,name:\"slideshow - desktop\",nodeId:\"ZfBpsOoti\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:48,height:\"100%\",id:\"ZfBpsOoti\",intervalControl:3,itemAmount:1,layoutId:\"ZfBpsOoti\",name:\"slideshow - desktop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12jq16k\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-boyvf4\",\"data-framer-name\":\"testimonial one\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1omciu0\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-os0gnu\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(135, 59, 71)\"},children:\"It\u2019s rare to find a brand that puts dogs health first without sacrificing taste. My picky eater can\u2019t get enough of these!\"})}),className:\"framer-1didivu\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(211, 211, 211)\"},children:\"Justin M.\"})}),className:\"framer-973413\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png\",srcSet:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png 924w\"},className:\"framer-1ygjlmw\",\"data-framer-name\":\"jacksbest_paw3 1\",style:{rotate:80}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"845px\",src:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png\",srcSet:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png 3000w\"},className:\"framer-m3kz4m\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d7b19g\",\"data-framer-name\":\"Subtract\",fill:\"black\",intrinsicHeight:178,intrinsicWidth:111,style:{rotate:-2},svg:'<svg width=\"111\" height=\"178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.749 5.783.4 0l25.124 24.596a5 5 0 0 1 .65 6.366L10.23 54.632a5 5 0 0 0 1.517 7.045l11.932 7.378a5 5 0 0 0 1.546.628l42.616 9.463a5 5 0 0 1 2.673 1.582l8.807 10.028a5 5 0 0 1 .635 5.69l-9.244 16.982a5 5 0 0 0-.04 4.708l31.075 59.411 9.002-171.764ZM45.835 47.581l3.064-13.487a3 3 0 0 1 4.502-1.888L79.098 48.08a3 3 0 0 1 1.125 3.856L73.55 65.752a3 3 0 0 1-4.475 1.115l-22.09-16.203a3 3 0 0 1-1.151-3.084Zm56.255-29.194-5.576-3.613a3 3 0 0 0-3.286.015L80.291 23.34a3 3 0 0 0-.499 4.591l5.262 5.426a3 3 0 0 0 4.002.275l13.251-10.365a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a364pf\",\"data-framer-name\":\"Stroke outside\",fill:\"black\",intrinsicHeight:468,intrinsicWidth:361,style:{rotate:3},svg:'<svg width=\"361\" height=\"468\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"2.335\" y=\"1.8\" width=\"357\" height=\"464\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"3\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j70jvm\",\"data-framer-name\":\"testimonial\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11xfw5m-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"A9AAtCA6u\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"A9AAtCA6u\",isMixedBorderRadius:false,layoutId:\"A9AAtCA6u\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1478sig\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pdkieu\",\"data-framer-name\":\"testimonial\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g66nts\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-47jltu\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(65, 90, 52)\"},children:\"Finally, a company that actually cares about quality ingredients without cutting corners. My dog loves these treats!\"})}),className:\"framer-1y3863g\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(65, 90, 52)\"},children:\"Sarah D.\"})}),className:\"framer-4roip6\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"845px\",src:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png\",srcSet:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png 3000w\"},className:\"framer-14t6sod\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"205px\",src:\"https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png\",srcSet:\"https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png?scale-down-to=512 512w,https://framerusercontent.com/images/N0e2JNVTaH9LSZWqoSR7zhhgvXg.png 820w\"},className:\"framer-15syspi\",\"data-framer-name\":\"jacksbest_paw2 2\",style:{rotate:-3}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9nsgqf\",\"data-framer-name\":\"Subtract\",fill:\"black\",intrinsicHeight:178,intrinsicWidth:111,style:{rotate:-2},svg:'<svg width=\"111\" height=\"178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.749 5.783.4 0l25.124 24.596a5 5 0 0 1 .65 6.366L10.23 54.632a5 5 0 0 0 1.517 7.045l11.932 7.378a5 5 0 0 0 1.546.628l42.616 9.463a5 5 0 0 1 2.673 1.582l8.807 10.028a5 5 0 0 1 .635 5.69l-9.244 16.982a5 5 0 0 0-.04 4.708l31.075 59.411 9.002-171.764ZM45.835 47.581l3.064-13.487a3 3 0 0 1 4.502-1.888L79.098 48.08a3 3 0 0 1 1.125 3.856L73.55 65.752a3 3 0 0 1-4.475 1.115l-22.09-16.203a3 3 0 0 1-1.151-3.084Zm56.255-29.194-5.576-3.613a3 3 0 0 0-3.286.015L80.291 23.34a3 3 0 0 0-.499 4.591l5.262 5.426a3 3 0 0 0 4.002.275l13.251-10.365a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fddjd\",\"data-framer-name\":\"Stroke outside\",fill:\"black\",intrinsicHeight:468,intrinsicWidth:361,style:{rotate:3},svg:'<svg width=\"361\" height=\"468\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"2.335\" y=\"1.8\" width=\"357\" height=\"464\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"3\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2bjhax\",\"data-framer-name\":\"testimonial\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqgkd3-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"KUz7G4H6t\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"KUz7G4H6t\",isMixedBorderRadius:false,layoutId:\"KUz7G4H6t\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p0ro5u\",\"data-framer-name\":\"testimonial\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18a16rh\",\"data-framer-name\":\"Stroke outside\",fill:\"black\",intrinsicHeight:468,intrinsicWidth:361,style:{rotate:3},svg:'<svg width=\"361\" height=\"468\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"2.335\" y=\"1.8\" width=\"357\" height=\"464\" rx=\"20\" stroke=\"#FEFAF5\" stroke-width=\"3\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14ro4qy\",\"data-framer-name\":\"testimonial\",style:{rotate:3},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13497zv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tgxrpz\",\"data-framer-name\":\"Stars\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M11.945 3.261c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 17.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L8.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.371 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 43.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L34.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.902 0l1.631 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 69.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L60.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.783-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .952.69h5.277c.969 0 1.372 1.24.588 1.81l-4.27 3.101A1 1 0 0 0 95.662 15l1.63 5.02c.3.921-.754 1.687-1.538 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118L86.131 15a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.38-1.809.588-1.809h5.278a1 1 0 0 0 .95-.69l1.631-5.02Zm26 0c.3-.921 1.603-.921 1.903 0l1.63 5.02a1 1 0 0 0 .951.69h5.278c.969 0 1.372 1.24.588 1.81l-4.27 3.101a1 1 0 0 0-.363 1.118l1.631 5.02c.299.921-.755 1.687-1.539 1.118l-4.27-3.102a1 1 0 0 0-1.175 0l-4.27 3.102c-.784.57-1.838-.197-1.539-1.118l1.631-5.02a1 1 0 0 0-.363-1.118l-4.27-3.102c-.784-.57-.381-1.809.588-1.809h5.278a1 1 0 0 0 .951-.69l1.63-5.02Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V2YW5zIEV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Evans Extrabold\", \"Evans Extrabold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(79, 95, 116)\"},children:\"I\u2019ve tried so many treats, but nothing compares to these. No fillers, no junk. My pup approves!\"})}),className:\"framer-zk3eqq\",fonts:[\"CUSTOM;Evans Extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgTW9udHJlYWwgQm9sZA==\",\"--framer-font-family\":'\"Neue Montreal Bold\", \"Neue Montreal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(79, 95, 116)\"},children:\"Cody L.\"})}),className:\"framer-nom3j4\",fonts:[\"CUSTOM;Neue Montreal Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png\",srcSet:\"https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/MHHU7QP3Mv2fc6OfWtBK3XDL5S8.png 924w\"},className:\"framer-1vjpu4h\",\"data-framer-name\":\"jacksbest_paw3 1\",style:{rotate:80}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"845px\",src:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png\",srcSet:\"https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=512 512w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hjWtGc4XhtLCSpPfzngkq6tJSM.png 3000w\"},className:\"framer-15uegde\",\"data-framer-name\":\"image 2\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-338e2s\",\"data-framer-name\":\"Subtract\",fill:\"black\",intrinsicHeight:178,intrinsicWidth:111,style:{rotate:-2},svg:'<svg width=\"111\" height=\"178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.749 5.783.4 0l25.124 24.596a5 5 0 0 1 .65 6.366L10.23 54.632a5 5 0 0 0 1.517 7.045l11.932 7.378a5 5 0 0 0 1.546.628l42.616 9.463a5 5 0 0 1 2.673 1.582l8.807 10.028a5 5 0 0 1 .635 5.69l-9.244 16.982a5 5 0 0 0-.04 4.708l31.075 59.411 9.002-171.764ZM45.835 47.581l3.064-13.487a3 3 0 0 1 4.502-1.888L79.098 48.08a3 3 0 0 1 1.125 3.856L73.55 65.752a3 3 0 0 1-4.475 1.115l-22.09-16.203a3 3 0 0 1-1.151-3.084Zm56.255-29.194-5.576-3.613a3 3 0 0 0-3.286.015L80.291 23.34a3 3 0 0 0-.499 4.591l5.262 5.426a3 3 0 0 0 4.002.275l13.251-10.365a3 3 0 0 0-.217-4.881Z\" fill=\"#FEFAF5\"/></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3kgp89\",\"data-framer-name\":\"testimonial\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fvx3q8-container\",\"data-framer-name\":\"vid testimonial\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"vid testimonial\",nodeId:\"yulU4dHrp\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-2},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:true,height:\"100%\",id:\"yulU4dHrp\",isMixedBorderRadius:false,layoutId:\"yulU4dHrp\",loop:true,muted:true,name:\"vid testimonial\",objectFit:\"cover\",playing:false,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{height:1607},MIzEJE3_y:{height:840,y:(componentViewport?.y||0)+0+2396.5},pj86s5xzQ:{height:1607}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1475,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2782.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h8ngsx-container\",id:elementId1,nodeId:\"aJDnclFXa\",ref:ref2,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"nWEbxk1PU\"},MIzEJE3_y:{variant:\"zgPxKfeFM\"},pj86s5xzQ:{variant:\"gKsXfESCf\"}},children:/*#__PURE__*/_jsx(Comparables,{height:\"100%\",id:\"aJDnclFXa\",layoutId:\"aJDnclFXa\",style:{height:\"100%\",width:\"100%\"},variant:\"OeOb3QWSL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqlp5b\",\"data-framer-name\":\"meet jack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{width:`min(${componentViewport?.width||\"100vw\"} - 100px, 1292px)`,y:(componentViewport?.y||0)+0+4389.9+0+0},MIzEJE3_y:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1292px)`,y:(componentViewport?.y||0)+0+3236.5+32+0},pj86s5xzQ:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1292px)`,y:(componentViewport?.y||0)+0+4389.9+62+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:606,width:`min(${componentViewport?.width||\"100vw\"}, 1292px)`,y:(componentViewport?.y||0)+0+4257.9+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xh3fap-container\",nodeId:\"dWah28jQw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{MIzEJE3_y:{variant:\"gtB0A2aXC\"}},children:/*#__PURE__*/_jsx(MeetJack,{height:\"100%\",id:\"dWah28jQw\",layoutId:\"dWah28jQw\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"kaPC9xMt9\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{y:(componentViewport?.y||0)+0+5125.9},MIzEJE3_y:{y:(componentViewport?.y||0)+0+3936.5},pj86s5xzQ:{y:(componentViewport?.y||0)+0+5187.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4993.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rqp8no-container\",id:elementId2,nodeId:\"MMCnsirEN\",ref:ref3,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"iH1XXdUYu\"},MIzEJE3_y:{variant:\"o6lQnun4H\"},pj86s5xzQ:{variant:\"T1hTvHiPR\"}},children:/*#__PURE__*/_jsx(FaqSection,{height:\"100%\",id:\"MMCnsirEN\",layoutId:\"MMCnsirEN\",style:{width:\"100%\"},variant:\"xjRfIEjF6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{y:(componentViewport?.y||0)+0+5685.9},MIzEJE3_y:{y:(componentViewport?.y||0)+0+4496.5},pj86s5xzQ:{y:(componentViewport?.y||0)+0+5747.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:763,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5553.9,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5honn-container\",nodeId:\"iRqCSDgKe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GjuGamxZC:{variant:\"xZQuf9fgf\"},MIzEJE3_y:{variant:\"mIzOxif90\"},pj86s5xzQ:{variant:\"BSQzHuol7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"iRqCSDgKe\",layoutId:\"iRqCSDgKe\",style:{width:\"100%\"},variant:\"xIKs7MisR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Zsim8.framer-lux5qc, .framer-Zsim8 .framer-lux5qc { display: block; }\",\".framer-Zsim8.framer-72rtr7 { align-content: center; align-items: center; background-color: #fefaf5; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1512px; }\",\".framer-Zsim8 .framer-ra0kzx-container { flex: none; height: 32px; position: relative; width: 100%; z-index: 9; }\",\".framer-Zsim8 .framer-1gh55ak-container { flex: none; height: auto; left: 50%; position: absolute; top: 62px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 8; }\",\".framer-Zsim8.framer-1c3kib5 { background-color: rgba(0, 0, 0, 0.5); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-Zsim8.framer-ozdqn9-container { flex: none; height: 100%; position: fixed; right: 0px; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-Zsim8.framer-109w0ge-container { flex: none; height: 100%; position: fixed; right: 0px; top: 0px; width: 100%; z-index: 10; }\",\".framer-Zsim8.framer-1kyfcyx-container { flex: none; height: 32px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-Zsim8 .framer-j8obsy-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-Zsim8 .framer-178c2pg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-1yybe8z { 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; position: relative; width: min-content; }\",\".framer-Zsim8 .framer-1knmjn6, .framer-Zsim8 .framer-ziwzsg { flex: none; height: 14px; position: relative; width: 16px; }\",\".framer-Zsim8 .framer-1mp0w3o { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 181px; word-break: break-word; word-wrap: break-word; }\",\".framer-Zsim8 .framer-f8cbfh-container, .framer-Zsim8 .framer-1rqp8no-container, .framer-Zsim8 .framer-5honn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-1ifqnzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 146px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Zsim8 .framer-1y49i5f, .framer-Zsim8 .framer-o4c3k5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Zsim8 .framer-1d6ide6 { flex: none; height: 154px; overflow: hidden; position: relative; width: 153px; }\",\".framer-Zsim8 .framer-1k8mih3 { aspect-ratio: 0.9935064935064936 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 154px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Zsim8 .framer-1ayf91p, .framer-Zsim8 .framer-1i9xnob, .framer-Zsim8 .framer-w4qghm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Zsim8 .framer-13keqed, .framer-Zsim8 .framer-o4crt1 { flex: none; height: 154px; overflow: hidden; position: relative; width: 154px; }\",\".framer-Zsim8 .framer-y6i3az, .framer-Zsim8 .framer-e2adtc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 154px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Zsim8 .framer-r94j3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 154px; }\",\".framer-Zsim8 .framer-j84irw { 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: 142px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-18b7a30-container { flex: none; height: 268px; position: relative; width: 248px; }\",\".framer-Zsim8 .framer-1mkacg0, .framer-Zsim8 .framer-10ig4pu, .framer-Zsim8 .framer-jsmoap, .framer-Zsim8 .framer-817u87 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 269px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Zsim8 .framer-tg8zcn, .framer-Zsim8 .framer-1547y09, .framer-Zsim8 .framer-q3ym7d { flex: none; height: 256px; left: calc(50.00000000000002% - 233px / 2); position: absolute; top: calc(50.185873605947975% - 256px / 2); width: 233px; z-index: 1; }\",\".framer-Zsim8 .framer-6l5dgk { align-content: flex-start; align-items: flex-start; background-color: #ef93a1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 253px; justify-content: space-between; overflow: hidden; padding: 32px 48px 42px 32px; position: relative; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-aux3q5, .framer-Zsim8 .framer-1ohg89m, .framer-Zsim8 .framer-4bi0wt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-hy8l3m, .framer-Zsim8 .framer-ylh6kt, .framer-Zsim8 .framer-1w6oyqr { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 100px; }\",\".framer-Zsim8 .framer-am89f8, .framer-Zsim8 .framer-kcj63s, .framer-Zsim8 .framer-sivojm, .framer-Zsim8 .framer-18blh16, .framer-Zsim8 .framer-1ii82w2, .framer-Zsim8 .framer-16nqeyw, .framer-Zsim8 .framer-1didivu, .framer-Zsim8 .framer-973413, .framer-Zsim8 .framer-1y3863g, .framer-Zsim8 .framer-4roip6, .framer-Zsim8 .framer-zk3eqq, .framer-Zsim8 .framer-nom3j4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zsim8 .framer-1hawz09, .framer-Zsim8 .framer-czse81 { aspect-ratio: 1 / 1; bottom: -45px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); position: absolute; right: -33px; width: 114px; z-index: 1; }\",\".framer-Zsim8 .framer-1v5qanv, .framer-Zsim8 .framer-17g2p6d, .framer-Zsim8 .framer-1411muq { aspect-ratio: 0.6272727272727273 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); position: absolute; right: -3px; top: -2px; width: 72px; z-index: 1; }\",\".framer-Zsim8 .framer-sbcyls-container, .framer-Zsim8 .framer-1mty1ad-container, .framer-Zsim8 .framer-t2qqpn-container { flex: none; height: 253px; position: relative; width: 230px; }\",\".framer-Zsim8 .framer-154g6ds { align-content: flex-start; align-items: flex-start; background-color: #7dba76; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 253px; justify-content: space-between; overflow: hidden; padding: 32px 33px 42px 32px; position: relative; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-1ofnd24 { aspect-ratio: 1 / 1; bottom: -20px; flex: none; height: var(--framer-aspect-ratio-supported, 110px); position: absolute; right: -20px; width: 110px; z-index: 1; }\",\".framer-Zsim8 .framer-q3oo8c, .framer-Zsim8 .framer-vik987 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 269px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 230px; }\",\".framer-Zsim8 .framer-1s150bl { align-content: flex-start; align-items: flex-start; background-color: #8bb5cd; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 253px; justify-content: space-between; overflow: hidden; padding: 32px 42px 42px 32px; position: relative; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-1uaj16q { aspect-ratio: 1 / 1; bottom: -40px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); position: absolute; right: -33px; width: 114px; z-index: 1; }\",\".framer-Zsim8 .framer-1vdqjl8-container { flex: none; height: 484px; position: relative; width: 357px; }\",\".framer-Zsim8 .framer-12jq16k, .framer-Zsim8 .framer-1j70jvm, .framer-Zsim8 .framer-1478sig, .framer-Zsim8 .framer-2bjhax, .framer-Zsim8 .framer-1p0ro5u { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 484px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Zsim8 .framer-boyvf4 { align-content: flex-start; align-items: flex-start; background-color: #ef93a1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 464px; justify-content: space-between; overflow: hidden; padding: 32px 48px 42px 32px; position: relative; width: 357px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-1omciu0, .framer-Zsim8 .framer-1g66nts, .framer-Zsim8 .framer-13497zv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-os0gnu, .framer-Zsim8 .framer-47jltu, .framer-Zsim8 .framer-1tgxrpz { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 130px; }\",\".framer-Zsim8 .framer-1ygjlmw, .framer-Zsim8 .framer-1vjpu4h { aspect-ratio: 1 / 1; bottom: -88px; flex: none; height: var(--framer-aspect-ratio-supported, 231px); position: absolute; right: -79px; width: 231px; z-index: 1; }\",\".framer-Zsim8 .framer-m3kz4m, .framer-Zsim8 .framer-14t6sod, .framer-Zsim8 .framer-15uegde { bottom: -30px; flex: none; left: -244px; mix-blend-mode: soft-light; opacity: 0.5; position: absolute; right: -244px; top: -29px; z-index: 1; }\",\".framer-Zsim8 .framer-1d7b19g, .framer-Zsim8 .framer-9nsgqf, .framer-Zsim8 .framer-338e2s { aspect-ratio: 0.6235955056179775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 178px); position: absolute; right: -6px; top: -3px; width: 111px; z-index: 1; }\",\".framer-Zsim8 .framer-1a364pf, .framer-Zsim8 .framer-fddjd, .framer-Zsim8 .framer-18a16rh { bottom: 8px; flex: none; left: -2px; position: absolute; right: -2px; top: 8px; z-index: 1; }\",\".framer-Zsim8 .framer-11xfw5m-container, .framer-Zsim8 .framer-fqgkd3-container, .framer-Zsim8 .framer-fvx3q8-container { flex: none; height: 464px; position: relative; width: 357px; }\",\".framer-Zsim8 .framer-pdkieu { align-content: flex-start; align-items: flex-start; background-color: #7dba76; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 464px; justify-content: space-between; overflow: hidden; padding: 32px 16px 42px 32px; position: relative; width: 357px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-15syspi { aspect-ratio: 1 / 1; bottom: -38px; flex: none; height: var(--framer-aspect-ratio-supported, 205px); position: absolute; right: -47px; width: 205px; z-index: 1; }\",\".framer-Zsim8 .framer-14ro4qy { align-content: flex-start; align-items: flex-start; background-color: #8bb5cd; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 464px; justify-content: space-between; overflow: hidden; padding: 32px 58px 42px 32px; position: relative; width: 357px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Zsim8 .framer-3kgp89 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 484px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 357px; }\",\".framer-Zsim8 .framer-1h8ngsx-container { aspect-ratio: 1.025084745762712 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1489px); position: relative; width: 100%; }\",\".framer-Zsim8 .framer-1tqlp5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-Zsim8 .framer-1xh3fap-container { flex: none; height: 606px; max-width: 1292px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zsim8.framer-72rtr7, .framer-Zsim8 .framer-178c2pg, .framer-Zsim8 .framer-1yybe8z, .framer-Zsim8 .framer-1ifqnzx, .framer-Zsim8 .framer-1y49i5f, .framer-Zsim8 .framer-o4c3k5, .framer-Zsim8 .framer-r94j3b, .framer-Zsim8 .framer-j84irw, .framer-Zsim8 .framer-1mkacg0, .framer-Zsim8 .framer-aux3q5, .framer-Zsim8 .framer-10ig4pu, .framer-Zsim8 .framer-jsmoap, .framer-Zsim8 .framer-1ohg89m, .framer-Zsim8 .framer-817u87, .framer-Zsim8 .framer-q3oo8c, .framer-Zsim8 .framer-4bi0wt, .framer-Zsim8 .framer-vik987, .framer-Zsim8 .framer-12jq16k, .framer-Zsim8 .framer-1omciu0, .framer-Zsim8 .framer-1j70jvm, .framer-Zsim8 .framer-1478sig, .framer-Zsim8 .framer-1g66nts, .framer-Zsim8 .framer-2bjhax, .framer-Zsim8 .framer-1p0ro5u, .framer-Zsim8 .framer-13497zv, .framer-Zsim8 .framer-3kgp89, .framer-Zsim8 .framer-1tqlp5b { gap: 0px; } .framer-Zsim8.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Zsim8.framer-72rtr7 > :first-child, .framer-Zsim8 .framer-178c2pg > :first-child, .framer-Zsim8 .framer-1y49i5f > :first-child, .framer-Zsim8 .framer-o4c3k5 > :first-child, .framer-Zsim8 .framer-r94j3b > :first-child, .framer-Zsim8 .framer-aux3q5 > :first-child, .framer-Zsim8 .framer-1ohg89m > :first-child, .framer-Zsim8 .framer-4bi0wt > :first-child, .framer-Zsim8 .framer-1omciu0 > :first-child, .framer-Zsim8 .framer-1g66nts > :first-child, .framer-Zsim8 .framer-13497zv > :first-child, .framer-Zsim8 .framer-1tqlp5b > :first-child { margin-top: 0px; } .framer-Zsim8.framer-72rtr7 > :last-child, .framer-Zsim8 .framer-178c2pg > :last-child, .framer-Zsim8 .framer-1y49i5f > :last-child, .framer-Zsim8 .framer-o4c3k5 > :last-child, .framer-Zsim8 .framer-r94j3b > :last-child, .framer-Zsim8 .framer-aux3q5 > :last-child, .framer-Zsim8 .framer-1ohg89m > :last-child, .framer-Zsim8 .framer-4bi0wt > :last-child, .framer-Zsim8 .framer-1omciu0 > :last-child, .framer-Zsim8 .framer-1g66nts > :last-child, .framer-Zsim8 .framer-13497zv > :last-child, .framer-Zsim8 .framer-1tqlp5b > :last-child { margin-bottom: 0px; } .framer-Zsim8 .framer-178c2pg > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-Zsim8 .framer-1yybe8z > *, .framer-Zsim8 .framer-j84irw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Zsim8 .framer-1yybe8z > :first-child, .framer-Zsim8 .framer-1ifqnzx > :first-child, .framer-Zsim8 .framer-j84irw > :first-child, .framer-Zsim8 .framer-1mkacg0 > :first-child, .framer-Zsim8 .framer-10ig4pu > :first-child, .framer-Zsim8 .framer-jsmoap > :first-child, .framer-Zsim8 .framer-817u87 > :first-child, .framer-Zsim8 .framer-q3oo8c > :first-child, .framer-Zsim8 .framer-vik987 > :first-child, .framer-Zsim8 .framer-12jq16k > :first-child, .framer-Zsim8 .framer-1j70jvm > :first-child, .framer-Zsim8 .framer-1478sig > :first-child, .framer-Zsim8 .framer-2bjhax > :first-child, .framer-Zsim8 .framer-1p0ro5u > :first-child, .framer-Zsim8 .framer-3kgp89 > :first-child { margin-left: 0px; } .framer-Zsim8 .framer-1yybe8z > :last-child, .framer-Zsim8 .framer-1ifqnzx > :last-child, .framer-Zsim8 .framer-j84irw > :last-child, .framer-Zsim8 .framer-1mkacg0 > :last-child, .framer-Zsim8 .framer-10ig4pu > :last-child, .framer-Zsim8 .framer-jsmoap > :last-child, .framer-Zsim8 .framer-817u87 > :last-child, .framer-Zsim8 .framer-q3oo8c > :last-child, .framer-Zsim8 .framer-vik987 > :last-child, .framer-Zsim8 .framer-12jq16k > :last-child, .framer-Zsim8 .framer-1j70jvm > :last-child, .framer-Zsim8 .framer-1478sig > :last-child, .framer-Zsim8 .framer-2bjhax > :last-child, .framer-Zsim8 .framer-1p0ro5u > :last-child, .framer-Zsim8 .framer-3kgp89 > :last-child { margin-right: 0px; } .framer-Zsim8 .framer-1ifqnzx > * { margin: 0px; margin-left: calc(146px / 2); margin-right: calc(146px / 2); } .framer-Zsim8 .framer-1y49i5f > *, .framer-Zsim8 .framer-o4c3k5 > *, .framer-Zsim8 .framer-r94j3b > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-Zsim8 .framer-1mkacg0 > *, .framer-Zsim8 .framer-10ig4pu > *, .framer-Zsim8 .framer-jsmoap > *, .framer-Zsim8 .framer-817u87 > *, .framer-Zsim8 .framer-q3oo8c > *, .framer-Zsim8 .framer-vik987 > *, .framer-Zsim8 .framer-12jq16k > *, .framer-Zsim8 .framer-1j70jvm > *, .framer-Zsim8 .framer-1478sig > *, .framer-Zsim8 .framer-2bjhax > *, .framer-Zsim8 .framer-1p0ro5u > *, .framer-Zsim8 .framer-3kgp89 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Zsim8 .framer-aux3q5 > *, .framer-Zsim8 .framer-1ohg89m > *, .framer-Zsim8 .framer-4bi0wt > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-Zsim8 .framer-1omciu0 > *, .framer-Zsim8 .framer-1g66nts > *, .framer-Zsim8 .framer-13497zv > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Zsim8 .framer-1tqlp5b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Zsim8.framer-72rtr7 { width: 810px; } .framer-Zsim8 .framer-1gh55ak-container { left: 0px; top: 43px; transform: unset; z-index: 10; } .framer-Zsim8 .framer-1h8ngsx-container { aspect-ratio: unset; height: 1607px; } .framer-Zsim8 .framer-1tqlp5b { padding: 62px 30px 130px 30px; }}\",\"@media (max-width: 809px) { .framer-Zsim8.framer-72rtr7 { width: 370px; } .framer-Zsim8 .framer-1gh55ak-container { left: 0px; top: 43px; transform: unset; z-index: 10; } .framer-Zsim8 .framer-1yybe8z { order: 0; } .framer-Zsim8 .framer-f8cbfh-container { order: 1; } .framer-Zsim8 .framer-1ifqnzx { gap: 40px; order: 2; width: 100%; } .framer-Zsim8 .framer-1d6ide6, .framer-Zsim8 .framer-13keqed, .framer-Zsim8 .framer-o4crt1 { height: 64px; width: 64px; } .framer-Zsim8 .framer-1k8mih3, .framer-Zsim8 .framer-y6i3az { aspect-ratio: unset; height: 100%; right: unset; width: 100%; } .framer-Zsim8 .framer-r94j3b { width: min-content; } .framer-Zsim8 .framer-e2adtc { aspect-ratio: unset; height: 100%; left: calc(50.00000000000002% - 100% / 2); right: unset; top: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-Zsim8 .framer-j84irw { padding: 70px 0px 50px 0px; } .framer-Zsim8 .framer-1h8ngsx-container { aspect-ratio: unset; height: 840px; } .framer-Zsim8 .framer-1tqlp5b { padding: 32px 16px 62px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zsim8 .framer-1ifqnzx { gap: 0px; } .framer-Zsim8 .framer-1ifqnzx > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Zsim8 .framer-1ifqnzx > :first-child { margin-left: 0px; } .framer-Zsim8 .framer-1ifqnzx > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1200px) and (max-width: 1511px) { .framer-Zsim8.framer-72rtr7 { width: 1200px; } .framer-Zsim8 .framer-1h8ngsx-container { aspect-ratio: unset; height: 1607px; } .framer-Zsim8 .framer-1tqlp5b { padding: 0px 50px 130px 50px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6281.5\n * @framerIntrinsicWidth 1512\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pj86s5xzQ\":{\"layout\":[\"fixed\",\"auto\"]},\"MIzEJE3_y\":{\"layout\":[\"fixed\",\"auto\"]},\"GjuGamxZC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"M_WPPgQpG\":{\"pattern\":\":M_WPPgQpG\",\"name\":\"testimonials\"},\"aJDnclFXa\":{\"pattern\":\":aJDnclFXa\",\"name\":\"compare-us\"},\"MMCnsirEN\":{\"pattern\":\":MMCnsirEN\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Zsim8\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6281.5,width:1512};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Heavitas Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/S5XTCp6oj0FDLQKP1LbqChyg.woff2\"},{family:\"Evans Extrabold\",source:\"custom\",url:\"https://framerusercontent.com/assets/0LLglwHdS0aEKvjiSgYbD6D08.woff2\"},{family:\"Neue Montreal Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/RPkJxzk3b5OHRdh8fGRoGBfE20Y.woff2\"}]},...AnnouncementBarFonts,...NavigationFonts,...SuggestProductAtcFonts,...FCCartStateMobileFonts,...HeroSectionFonts,...ProductSlideshowFonts,...VideoFonts,...SlideshowFonts,...ComparablesFonts,...MeetJackFonts,...FaqSectionFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"6281.5\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"M_WPPgQpG\\\":{\\\"pattern\\\":\\\":M_WPPgQpG\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"aJDnclFXa\\\":{\\\"pattern\\\":\\\":aJDnclFXa\\\",\\\"name\\\":\\\"compare-us\\\"},\\\"MMCnsirEN\\\":{\\\"pattern\\\":\\\":MMCnsirEN\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pj86s5xzQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MIzEJE3_y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GjuGamxZC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1512\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "ShopAllFlavorsButtonFonts", "getFonts", "EZjBp97nQ_default", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "ImageWithFXWithOptimizedAppearEffect", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "animation7", "transformTemplate1", "_", "t", "transition5", "animation8", "transition6", "animation9", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "transition10", "animation13", "animation14", "transition11", "animation15", "transition12", "animation16", "transition13", "animation17", "transition14", "animation18", "animation19", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLoadingLazyAtYPosition", "SVG", "css", "FramerPuJv23A0G", "withCSS", "PuJv23A0G_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "animation", "transition2", "animation1", "transformTemplate2", "animation2", "animation3", "transition3", "animation4", "transformTemplate3", "animation5", "transition4", "animation6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "SVG", "RichText2", "css", "FramerxwLtASr04", "withCSS", "xwLtASr04_default", "addPropertyControls", "ControlType", "addFonts", "AnnouncementBarFonts", "getFonts", "rF61vASjY_default", "NavigationFonts", "RylUBbuJm_default", "SuggestProductAtcFonts", "mHbjxqdc1_default", "FCCartStateMobileFonts", "bfGm0vhH2_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "HeroSectionFonts", "PuJv23A0G_default", "ProductSlideshowFonts", "BixwjGTr6_default", "VideoFonts", "Video", "SlideshowFonts", "Slideshow", "ComparablesFonts", "xwLtASr04_default", "MeetJackFonts", "IN5eoht4Y_default", "FaqSectionFonts", "nLP3wBEfe_default", "FooterFonts", "SYQDCh0iI_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "NAerMxchw3bnx0g", "overlay", "loadMore", "args", "qMfhn_fYs1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "l", "AnimatePresence", "Ga", "x", "SVG", "RichText2", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
