{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/vvOpCEqLNOEkyMUiXt3b/TSN4NCpWf1n6yFfTQsBm/I5pQbTlXw.js", "ssg:https://framerusercontent.com/modules/ldAzNZUPICfQqE6y3RxB/G3GkqzJtPLWjy8skR18j/fOaATCUPE.js", "ssg:https://framerusercontent.com/modules/RaLc1ivUO2oPsEPNQK3Q/Vd8ihj3TmeOTyqSQFUR5/ZMdft2IVB.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/f4nWm9qls18n3IMywpnl/LM2l1iLm4eSD92yVAKXM/AghOAlGbR.js\";const cycleOrder=[\"kTUwUB_Hu\",\"F1gbKf8MC\",\"BjUW68F16\"];const serializationHash=\"framer-PhV1u\";const variantClassNames={BjUW68F16:\"framer-v-4y239f\",F1gbKf8MC:\"framer-v-1ail8v5\",kTUwUB_Hu:\"framer-v-hrsbqx\"};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 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 3\":\"BjUW68F16\",New:\"F1gbKf8MC\",Popular:\"kTUwUB_Hu\"};const getProps=({height,id,title,width,...props})=>{return{...props,u4Gvws9gv:title??props.u4Gvws9gv??\"Popular\",variant:humanReadableVariantMap[props.variant]??props.variant??\"kTUwUB_Hu\"};};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,u4Gvws9gv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kTUwUB_Hu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-hrsbqx\",className,classNames),\"data-framer-name\":\"Popular\",layoutDependency:layoutDependency,layoutId:\"kTUwUB_Hu\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{BjUW68F16:{backgroundColor:\"var(--token-02cb1be2-2ce0-47f2-964c-ed5633b76051, rgb(232, 239, 235))\"},F1gbKf8MC:{backgroundColor:\"var(--token-bdf1d521-1b21-42fe-a7ce-3468d5e0f515, rgb(204, 137, 87))\"}},...addPropertyOverrides({BjUW68F16:{\"data-framer-name\":\"Variant 3\"},F1gbKf8MC:{\"data-framer-name\":\"New\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r0kk6h\",\"data-styles-preset\":\"AghOAlGbR\",children:\"Popular\"})}),className:\"framer-1du7mvl\",\"data-framer-name\":\"Popular\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PKKZmWTAK\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:u4Gvws9gv,variants:{BjUW68F16:{\"--extracted-r6o4lv\":\"var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62))\"},F1gbKf8MC:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BjUW68F16:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r0kk6h\",\"data-styles-preset\":\"AghOAlGbR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62)))\"},children:\"Popular\"})})},F1gbKf8MC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r0kk6h\",\"data-styles-preset\":\"AghOAlGbR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"New\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PhV1u.framer-6gn1hf, .framer-PhV1u .framer-6gn1hf { display: block; }\",\".framer-PhV1u.framer-hrsbqx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 24px; justify-content: center; overflow: visible; padding: 1px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-PhV1u .framer-1du7mvl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PhV1u.framer-hrsbqx { gap: 0px; } .framer-PhV1u.framer-hrsbqx > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-PhV1u.framer-hrsbqx > :first-child { margin-left: 0px; } .framer-PhV1u.framer-hrsbqx > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 79\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"F1gbKf8MC\":{\"layout\":[\"auto\",\"fixed\"]},\"BjUW68F16\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"u4Gvws9gv\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI5pQbTlXw=withCSS(Component,css,\"framer-PhV1u\");export default FramerI5pQbTlXw;FramerI5pQbTlXw.displayName=\"Labels\";FramerI5pQbTlXw.defaultProps={height:24,width:79};addPropertyControls(FramerI5pQbTlXw,{variant:{options:[\"kTUwUB_Hu\",\"F1gbKf8MC\",\"BjUW68F16\"],optionTitles:[\"Popular\",\"New\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},u4Gvws9gv:{defaultValue:\"Popular\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerI5pQbTlXw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI5pQbTlXw\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"u4Gvws9gv\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"79\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"F1gbKf8MC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"BjUW68F16\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7422eea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/S1lBTSePMWP7sI4cVKYs/hHeOBULaKYYu7U2IS5eV/iL4mo_Aba.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/u004SsgFTrIm9MiTKO5D/LfpX3ecz2tH7Uw8CTtPt/k4gh_dPgx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GaSDUhTTiDRknsw1phSc/NstuU1FY4U552FdCCjeP/mXxbZmRMg.js\";import Labels from\"https://framerusercontent.com/modules/vvOpCEqLNOEkyMUiXt3b/TSN4NCpWf1n6yFfTQsBm/I5pQbTlXw.js\";const LabelsFonts=getFonts(Labels);const enabledGestures={ew3SBYoa5:{hover:true},oa08KLc8O:{hover:true},p81UVGqnk:{hover:true},PgGERv1D3:{hover:true}};const cycleOrder=[\"oa08KLc8O\",\"PgGERv1D3\",\"ew3SBYoa5\",\"p81UVGqnk\",\"TO3HpfLqz\",\"DlsT9fA4U\"];const serializationHash=\"framer-3GzHQ\";const variantClassNames={DlsT9fA4U:\"framer-v-bhenj4\",ew3SBYoa5:\"framer-v-4ecrfg\",oa08KLc8O:\"framer-v-r7rucf\",p81UVGqnk:\"framer-v-1g5hcbw\",PgGERv1D3:\"framer-v-1ezn7ph\",TO3HpfLqz:\"framer-v-y65z63\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 BIG - Pills\":\"PgGERv1D3\",\"Desktop BIG - Shake\":\"oa08KLc8O\",\"Footer - Pills\":\"p81UVGqnk\",\"Footer - Shake\":\"ew3SBYoa5\",\"Mobile BIG - Pills\":\"DlsT9fA4U\",\"Mobile BIG - Shake\":\"TO3HpfLqz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oa08KLc8O\"};};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:\"oa08KLc8O\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"PgGERv1D3-hover\",\"p81UVGqnk-hover\"].includes(gestureVariant))return true;if([\"PgGERv1D3\",\"p81UVGqnk\",\"DlsT9fA4U\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"PgGERv1D3-hover\",\"p81UVGqnk-hover\"].includes(gestureVariant))return false;if([\"PgGERv1D3\",\"p81UVGqnk\",\"DlsT9fA4U\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"ew3SBYoa5-hover\",\"p81UVGqnk-hover\"].includes(gestureVariant))return false;if([\"ew3SBYoa5\",\"p81UVGqnk\",\"TO3HpfLqz\",\"DlsT9fA4U\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"ew3SBYoa5-hover\",\"p81UVGqnk-hover\"].includes(gestureVariant))return false;if([\"ew3SBYoa5\",\"p81UVGqnk\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pMHbEjLSn\"},motionChild:true,nodeId:\"oa08KLc8O\",openInNewTab:false,scopeId:\"fOaATCUPE\",...addPropertyOverrides({DlsT9fA4U:{href:{webPageId:\"Eiu1RdOlr\"}},p81UVGqnk:{href:{webPageId:\"Eiu1RdOlr\"}},PgGERv1D3:{href:{webPageId:\"Eiu1RdOlr\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-r7rucf\",className,classNames)} framer-er6g76`,\"data-framer-name\":\"Desktop BIG - Shake\",layoutDependency:layoutDependency,layoutId:\"oa08KLc8O\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"ew3SBYoa5-hover\":{boxShadow:\"0px 10px 30px 0px rgba(0, 0, 0, 0.3)\"},\"oa08KLc8O-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"none\"},\"p81UVGqnk-hover\":{boxShadow:\"0px 10px 30px 0px rgba(0, 0, 0, 0.3)\"},\"PgGERv1D3-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"none\"},DlsT9fA4U:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"none\"},ew3SBYoa5:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 20px 50px 0px rgba(0, 0, 0, 0.2)\"},p81UVGqnk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 20px 50px 0px rgba(0, 0, 0, 0.2)\"},TO3HpfLqz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"none\"}},...addPropertyOverrides({\"ew3SBYoa5-hover\":{\"data-framer-name\":undefined},\"oa08KLc8O-hover\":{\"data-framer-name\":undefined},\"p81UVGqnk-hover\":{\"data-framer-name\":undefined},\"PgGERv1D3-hover\":{\"data-framer-name\":undefined},DlsT9fA4U:{\"data-framer-name\":\"Mobile BIG - Pills\"},ew3SBYoa5:{\"data-border\":true,\"data-framer-name\":\"Footer - Shake\"},p81UVGqnk:{\"data-border\":true,\"data-framer-name\":\"Footer - Pills\"},PgGERv1D3:{\"data-framer-name\":\"Desktop BIG - Pills\"},TO3HpfLqz:{\"data-framer-name\":\"Mobile BIG - Shake\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1296,pixelWidth:1296,src:\"https://framerusercontent.com/images/XIELhLypTADfjKw9qORG3ozCh4.png\",srcSet:\"https://framerusercontent.com/images/XIELhLypTADfjKw9qORG3ozCh4.png?scale-down-to=512 512w,https://framerusercontent.com/images/XIELhLypTADfjKw9qORG3ozCh4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XIELhLypTADfjKw9qORG3ozCh4.png 1296w\"},className:\"framer-1hbvw6h\",\"data-framer-name\":\"Metabolism Booster\",layoutDependency:layoutDependency,layoutId:\"rI1O7Baua\",style:{opacity:.8},variants:{\"p81UVGqnk-hover\":{opacity:1},\"PgGERv1D3-hover\":{opacity:1},DlsT9fA4U:{opacity:.9}},...addPropertyOverrides({\"p81UVGqnk-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||360)*.5000000000000002-(componentViewport?.height||360)*1.08/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.08)`,src:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png\",srcSet:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png 1296w\"}},\"PgGERv1D3-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||640)*.5000000000000002-(componentViewport?.height||640)*1.0804/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0795)`,src:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png\",srcSet:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png 1296w\"}},DlsT9fA4U:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||440)*.5250000000000002-(componentViewport?.height||440)*1.05/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,src:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png\",srcSet:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png 1296w\"}},p81UVGqnk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||360)*.5000000000000002-(componentViewport?.height||360)*1.05/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,src:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png\",srcSet:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png 1296w\"}},PgGERv1D3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||640)*.5000000000000002-(componentViewport?.height||640)*1.05/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,src:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png\",srcSet:\"https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jE4Ch2qDFXEM3LuOvCiUL88xdhE.png 1296w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||640)*.5000000000000002-(componentViewport?.height||640)*1.05/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,src:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png\",srcSet:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png 1296w\"},className:\"framer-1rzhwgm\",\"data-framer-name\":\"Superfood Weight-Loss Shake\",layoutDependency:layoutDependency,layoutId:\"DKuPEjG7O\",style:{opacity:.8},variants:{\"ew3SBYoa5-hover\":{opacity:1},\"oa08KLc8O-hover\":{opacity:1},TO3HpfLqz:{opacity:.9}},...addPropertyOverrides({\"ew3SBYoa5-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||360)*.5000000000000002-(componentViewport?.height||360)*1.08/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.08)`,src:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png\",srcSet:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png 1296w\"}},\"oa08KLc8O-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||640)*.5000000000000002-(componentViewport?.height||640)*1.0804/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0795)`,src:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png\",srcSet:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png 1296w\"}},ew3SBYoa5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||360)*.5000000000000002-(componentViewport?.height||360)*1.05/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.05)`,src:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png\",srcSet:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png 1296w\"}},TO3HpfLqz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||440)*.5454545454545456-(componentViewport?.height||440)*1.0886/2)),pixelHeight:1296,pixelWidth:1296,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.09)`,src:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png\",srcSet:\"https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=512 512w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6NlvAeCnokGAmyR93VgGSpdo.png 1296w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1chumj4\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"hf2A7BfSw\",style:{background:\"linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)\",opacity:.3}}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15b22u8\",layoutDependency:layoutDependency,layoutId:\"o0e3Rxsr1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+40+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wtjrc8-container\",layoutDependency:layoutDependency,layoutId:\"e288SMa09-container\",nodeId:\"e288SMa09\",rendersWithMotion:true,scopeId:\"fOaATCUPE\",children:/*#__PURE__*/_jsx(Labels,{height:\"100%\",id:\"e288SMa09\",layoutId:\"e288SMa09\",style:{height:\"100%\"},u4Gvws9gv:\"Popular\",variant:\"kTUwUB_Hu\",width:\"100%\",...addPropertyOverrides({PgGERv1D3:{u4Gvws9gv:\"New\",variant:\"F1gbKf8MC\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1y42j2a\",\"data-styles-preset\":\"k4gh_dPgx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Superfood Weight-Loss Shake\"})}),className:\"framer-jre5j7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kku0_RIVi\",style:{\"--extracted-1lwpl3i\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DlsT9fA4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1y42j2a\",\"data-styles-preset\":\"k4gh_dPgx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Metabolism Booster+\"})})},ew3SBYoa5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h5,{className:\"framer-styles-preset-1y42j2a\",\"data-styles-preset\":\"k4gh_dPgx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:[\"Superfood\",/*#__PURE__*/_jsx(motion.br,{}),\"Weight-Loss Shake\"]})})},p81UVGqnk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1y42j2a\",\"data-styles-preset\":\"k4gh_dPgx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Metabolism Booster\"})})},PgGERv1D3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1y42j2a\",\"data-styles-preset\":\"k4gh_dPgx\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Metabolism Booster+\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b5ms6p\",\"data-styles-preset\":\"mXxbZmRMg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Enhanced Nutrition, Microbiome Health, & 173 Health Benefits\"})}),className:\"framer-18ma8km\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BiIqr3Hb0\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},variants:{TO3HpfLqz:{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DlsT9fA4U:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3cuff\",\"data-styles-preset\":\"iL4mo_Aba\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"100% Natural Ingredients for a Faster Metabolism\"})})},PgGERv1D3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b5ms6p\",\"data-styles-preset\":\"mXxbZmRMg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Spark Your Metabolism & Burn Fat Faster\"})})},TO3HpfLqz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1a3cuff\",\"data-styles-preset\":\"iL4mo_Aba\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Enhanced Nutrition, Microbiome Health, & 173 Health Benefits\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5j5yi6\",layoutDependency:layoutDependency,layoutId:\"AyjRSOEG4\",style:{backgroundColor:\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{\"ew3SBYoa5-hover\":{backgroundColor:\"var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62))\"},\"oa08KLc8O-hover\":{backgroundColor:\"var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62))\",borderBottomLeftRadius:73.47,borderBottomRightRadius:73.47,borderTopLeftRadius:73.47,borderTopRightRadius:73.47},\"p81UVGqnk-hover\":{backgroundColor:\"var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62))\"},\"PgGERv1D3-hover\":{backgroundColor:\"var(--token-01e2c105-9567-4221-af65-6bfd77027e92, rgb(30, 102, 62))\"},DlsT9fA4U:{borderBottomLeftRadius:71.43,borderBottomRightRadius:71.43,borderTopLeftRadius:71.43,borderTopRightRadius:71.43},TO3HpfLqz:{borderBottomLeftRadius:71.43,borderBottomRightRadius:71.43,borderTopLeftRadius:71.43,borderTopRightRadius:71.43}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z2ofdg\",layoutDependency:layoutDependency,layoutId:\"t76jBqS6n\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12iwmjt\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vnNE02LY_\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10927672672,withExternalLayout:true,...addPropertyOverrides({\"ew3SBYoa5-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.36\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11293124469},\"oa08KLc8O-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11127357093},\"p81UVGqnk-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.35\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9831890010},\"PgGERv1D3-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11127357093},ew3SBYoa5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.36\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8675823298},p81UVGqnk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.35\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9938280010}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i7mla6\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"e0boWqSHM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11325955328,withExternalLayout:true,...addPropertyOverrides({\"ew3SBYoa5-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.36\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9029395686},\"oa08KLc8O-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12356449282},\"p81UVGqnk-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.35\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12359067061},\"PgGERv1D3-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 1 8 L 15 8 M 15 8 L 8 1 M 15 8 L 8 15\" fill=\"transparent\" stroke-width=\"1.8\" stroke=\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12356449282},ew3SBYoa5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.36\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11337495038},p81UVGqnk:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 0.75 6 L 11.25 6 M 11.25 6 L 6 0.75 M 11.25 6 L 6 11.25\" fill=\"transparent\" stroke-width=\"1.35\" stroke=\"var(--token-657e5272-e8f8-498f-9097-d0e8c9bfe695, rgb(26, 26, 26)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8847557814}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3GzHQ.framer-er6g76, .framer-3GzHQ .framer-er6g76 { display: block; }\",\".framer-3GzHQ.framer-r7rucf { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 640px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 528px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3GzHQ .framer-1hbvw6h, .framer-3GzHQ .framer-1rzhwgm { flex: none; height: 105%; left: calc(50.00000000000002% - 105% / 2); position: absolute; top: calc(50.00000000000002% - 105% / 2); width: 105%; z-index: 0; }\",\".framer-3GzHQ .framer-1chumj4 { flex: none; height: 40%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-3GzHQ .framer-15b22u8 { 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 0px 8px 0px; position: relative; width: min-content; }\",\".framer-3GzHQ .framer-wtjrc8-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-3GzHQ .framer-jre5j7, .framer-3GzHQ .framer-18ma8km { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3GzHQ .framer-5j5yi6 { align-content: center; align-items: center; bottom: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8.57px; height: 48px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 36px; width: 48px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3GzHQ .framer-z2ofdg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: -63px; overflow: visible; padding: 0px; position: absolute; top: 50%; width: 200%; z-index: 1; }\",\".framer-3GzHQ .framer-12iwmjt, .framer-3GzHQ .framer-i7mla6 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-1hbvw6h, .framer-3GzHQ.framer-v-1g5hcbw .framer-1hbvw6h { order: 1; z-index: unset; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-1chumj4, .framer-3GzHQ.framer-v-4ecrfg .framer-1chumj4, .framer-3GzHQ.framer-v-1g5hcbw .framer-1chumj4, .framer-3GzHQ.framer-v-bhenj4 .framer-1chumj4, .framer-3GzHQ.framer-v-r7rucf.hover .framer-1chumj4 { order: 2; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-15b22u8, .framer-3GzHQ.framer-v-r7rucf.hover .framer-15b22u8 { order: 3; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-jre5j7, .framer-3GzHQ.framer-v-4ecrfg .framer-jre5j7, .framer-3GzHQ.framer-v-1g5hcbw .framer-jre5j7, .framer-3GzHQ.framer-v-bhenj4 .framer-jre5j7, .framer-3GzHQ.framer-v-r7rucf.hover .framer-jre5j7 { order: 4; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-18ma8km, .framer-3GzHQ.framer-v-bhenj4 .framer-18ma8km, .framer-3GzHQ.framer-v-r7rucf.hover .framer-18ma8km { order: 5; }\",\".framer-3GzHQ.framer-v-1ezn7ph .framer-5j5yi6 { order: 6; }\",\".framer-3GzHQ.framer-v-4ecrfg.framer-r7rucf, .framer-3GzHQ.framer-v-1g5hcbw.framer-r7rucf { height: 360px; padding: 24px; width: 360px; }\",\".framer-3GzHQ.framer-v-4ecrfg .framer-1rzhwgm { order: 1; }\",\".framer-3GzHQ.framer-v-4ecrfg .framer-5j5yi6, .framer-3GzHQ.framer-v-1g5hcbw .framer-5j5yi6 { bottom: 16px; height: 32px; order: 6; right: 16px; width: 32px; }\",\".framer-3GzHQ.framer-v-4ecrfg .framer-z2ofdg, .framer-3GzHQ.framer-v-1g5hcbw .framer-z2ofdg { left: -42px; }\",\".framer-3GzHQ.framer-v-4ecrfg .framer-12iwmjt, .framer-3GzHQ.framer-v-4ecrfg .framer-i7mla6, .framer-3GzHQ.framer-v-1g5hcbw .framer-12iwmjt, .framer-3GzHQ.framer-v-1g5hcbw .framer-i7mla6 { height: 12px; width: 12px; }\",\".framer-3GzHQ.framer-v-y65z63.framer-r7rucf, .framer-3GzHQ.framer-v-bhenj4.framer-r7rucf { cursor: unset; gap: 8px; height: 440px; padding: 28px; width: 400px; }\",\".framer-3GzHQ.framer-v-y65z63 .framer-1rzhwgm { height: 109%; left: calc(54.50000000000003% - 109.00000000000001% / 2); top: calc(54.54545454545456% - 108.86363636363636% / 2); width: 109%; }\",\".framer-3GzHQ.framer-v-y65z63 .framer-5j5yi6 { bottom: 28px; gap: 7.14px; height: 40px; right: 28px; width: 40px; }\",\".framer-3GzHQ.framer-v-y65z63 .framer-z2ofdg, .framer-3GzHQ.framer-v-bhenj4 .framer-z2ofdg { left: -52px; }\",\".framer-3GzHQ.framer-v-bhenj4 .framer-1hbvw6h { order: 1; top: calc(52.50000000000002% - 105% / 2); z-index: unset; }\",\".framer-3GzHQ.framer-v-bhenj4 .framer-5j5yi6 { bottom: 28px; gap: 7.14px; height: 40px; order: 6; right: 28px; width: 40px; }\",\".framer-3GzHQ.framer-v-r7rucf.hover .framer-1rzhwgm { height: 108%; left: calc(50.00000000000002% - 107.95454545454545% / 2); order: 1; top: calc(50.00000000000002% - 108.03571428571428% / 2); width: 108%; }\",\".framer-3GzHQ.framer-v-r7rucf.hover .framer-5j5yi6 { gap: 7.35px; order: 6; }\",\".framer-3GzHQ.framer-v-r7rucf.hover .framer-z2ofdg { left: 16px; width: 96px; }\",\".framer-3GzHQ.framer-v-1ezn7ph.hover .framer-1hbvw6h { height: 108%; left: calc(50.00000000000002% - 107.95454545454545% / 2); top: calc(50.00000000000002% - 108.03571428571428% / 2); width: 108%; z-index: unset; }\",\".framer-3GzHQ.framer-v-1ezn7ph.hover .framer-z2ofdg { left: 16px; }\",\".framer-3GzHQ.framer-v-4ecrfg.hover .framer-1rzhwgm { height: 108%; left: calc(50.00000000000002% - 108% / 2); top: calc(50.00000000000002% - 108% / 2); width: 108%; }\",\".framer-3GzHQ.framer-v-4ecrfg.hover .framer-z2ofdg { left: 10px; width: 64px; }\",\".framer-3GzHQ.framer-v-1g5hcbw.hover .framer-1hbvw6h { height: 108%; left: calc(50.00000000000002% - 108% / 2); top: calc(50.00000000000002% - 108% / 2); width: 108%; z-index: unset; }\",\".framer-3GzHQ.framer-v-1g5hcbw.hover .framer-z2ofdg { left: 10px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-3GzHQ[data-border=\"true\"]::after, .framer-3GzHQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 640\n * @framerIntrinsicWidth 528\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PgGERv1D3\":{\"layout\":[\"fixed\",\"fixed\"]},\"ew3SBYoa5\":{\"layout\":[\"fixed\",\"fixed\"]},\"p81UVGqnk\":{\"layout\":[\"fixed\",\"fixed\"]},\"TO3HpfLqz\":{\"layout\":[\"fixed\",\"fixed\"]},\"DlsT9fA4U\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ecume5hw6\":{\"layout\":[\"fixed\",\"fixed\"]},\"DvCSgRAbl\":{\"layout\":[\"fixed\",\"fixed\"]},\"Cqh7Thkyp\":{\"layout\":[\"fixed\",\"fixed\"]},\"PgjDDv4Lm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfOaATCUPE=withCSS(Component,css,\"framer-3GzHQ\");export default FramerfOaATCUPE;FramerfOaATCUPE.displayName=\"Product-card\";FramerfOaATCUPE.defaultProps={height:640,width:528};addPropertyControls(FramerfOaATCUPE,{variant:{options:[\"oa08KLc8O\",\"PgGERv1D3\",\"ew3SBYoa5\",\"p81UVGqnk\",\"TO3HpfLqz\",\"DlsT9fA4U\"],optionTitles:[\"Desktop BIG - Shake\",\"Desktop BIG - Pills\",\"Footer - Shake\",\"Footer - Pills\",\"Mobile BIG - Shake\",\"Mobile BIG - Pills\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfOaATCUPE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LabelsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfOaATCUPE\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"528\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PgGERv1D3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ew3SBYoa5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p81UVGqnk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TO3HpfLqz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DlsT9fA4U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ecume5hw6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DvCSgRAbl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Cqh7Thkyp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PgjDDv4Lm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"640\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fOaATCUPE.map", "// Generated by Framer (47dffbb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/f4nWm9qls18n3IMywpnl/LM2l1iLm4eSD92yVAKXM/AghOAlGbR.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/o4mryEtLNePlQ2onT05L/r11iMwFDPaZIXHZVeuCI/Dpkig5W9L.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/UWYDWFns7kjMGATHJMqq/nM6MLF5EpoPB5ohXaEUR/m_vwWr_Gg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7ugNWQUz4VjfLdfhse5c/WApi8PVIXBwy7DRGKHtK/PQ01mVRMJ.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/PLsMrcutWBQuJwYFUARi/nFQGBvlylCkg5Fv3Vzwu/SuS3g8pel.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/m0Dih5IOKxO2iRh4zSbh/jNtcdWcs9L3AuEZbSocv/uMZtgTafO.js\";import ProductCard from\"https://framerusercontent.com/modules/ldAzNZUPICfQqE6y3RxB/G3GkqzJtPLWjy8skR18j/fOaATCUPE.js\";import ButtonContactForm from\"https://framerusercontent.com/modules/8tZVkTxe8TSEMF6BzH1a/2uPxlO9U00tjA6ERlYcp/u9pEKDPqz.js\";const ProductCardFonts=getFonts(ProductCard);const TickerFonts=getFonts(Ticker);const ButtonContactFormFonts=getFonts(ButtonContactForm);const cycleOrder=[\"FKdHRih8Z\",\"eew8buTBj\",\"Pku5PMGAC\"];const serializationHash=\"framer-RGoJW\";const variantClassNames={eew8buTBj:\"framer-v-qpu5ap\",FKdHRih8Z:\"framer-v-wemmmf\",Pku5PMGAC:\"framer-v-1ibq6ns\"};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:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};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:\"FKdHRih8Z\",Phone:\"Pku5PMGAC\",Tablet:\"eew8buTBj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FKdHRih8Z\"};};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:\"FKdHRih8Z\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-wemmmf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"FKdHRih8Z\",ref:refBinding,style:{backgroundColor:\"rgb(15, 53, 31)\",...style},...addPropertyOverrides({eew8buTBj:{\"data-framer-name\":\"Tablet\"},Pku5PMGAC:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqv6as\",layoutDependency:layoutDependency,layoutId:\"VrrF70MXd\",style:{background:\"radial-gradient(75% 68% at 50% 0%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%)\",opacity:.2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83v6ox\",layoutDependency:layoutDependency,layoutId:\"BRDtp3I9t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xbvy28\",layoutDependency:layoutDependency,layoutId:\"hpchC724p\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"eOJgQq8F8\",scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xlw7we framer-12jybjf\",\"data-framer-name\":\"Biome - Logo White\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eOJgQq8F8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 168 32\"><path d=\"M 11.486 19.281 C 11.486 22.002 9.577 23.714 6.02 23.714 L 0.249 23.714 L 0.249 8.351 L 5.451 8.351 C 8.963 8.351 10.873 10.018 10.873 12.477 C 10.873 13.904 10.281 14.935 9.183 15.594 L 9.183 15.638 C 10.676 16.319 11.487 17.569 11.487 19.281 Z M 3.233 10.918 L 3.233 14.737 L 5.45 14.737 C 6.832 14.737 7.886 14.21 7.886 12.784 C 7.886 11.358 6.745 10.918 5.45 10.918 Z M 8.457 19.083 C 8.457 17.657 7.359 17.108 6.02 17.108 L 3.232 17.108 L 3.232 21.146 L 6.02 21.146 C 7.446 21.146 8.457 20.443 8.457 19.083 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 15.043 9.47 C 15.043 8.657 15.701 7.999 16.514 7.999 C 17.326 7.999 18.007 8.657 18.007 9.47 C 18.007 10.282 17.348 10.962 16.514 10.962 C 15.679 10.962 15.043 10.304 15.043 9.47 Z M 15.13 12.587 L 17.918 12.587 L 17.918 23.715 L 15.13 23.715 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 33.196 18.161 C 33.196 21.409 30.672 24 27.314 24 C 23.957 24 21.453 21.41 21.453 18.161 C 21.453 14.912 23.978 12.322 27.314 12.322 C 30.651 12.322 33.196 14.891 33.196 18.161 Z M 30.343 18.161 C 30.343 16.427 29.18 15 27.314 15 C 25.448 15 24.307 16.427 24.307 18.161 C 24.307 19.895 25.47 21.322 27.314 21.322 C 29.158 21.322 30.343 19.895 30.343 18.161 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 52.767 23.714 L 49.979 23.714 L 49.979 17.328 C 49.979 15.944 49.408 15.023 48.113 15.023 C 46.819 15.023 46.138 16.054 46.138 17.328 L 46.138 23.714 L 43.35 23.714 L 43.35 17.328 C 43.35 15.944 42.779 15.023 41.484 15.023 C 40.19 15.023 39.509 16.054 39.509 17.328 L 39.509 23.714 L 36.721 23.714 L 36.721 12.586 L 39.509 12.586 L 39.509 13.771 C 40.08 12.959 40.98 12.322 42.451 12.322 C 43.921 12.322 44.953 13.025 45.524 14.079 C 46.204 13.09 47.302 12.322 48.883 12.322 C 51.451 12.322 52.767 14.407 52.767 16.756 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 59.265 19.237 C 59.66 20.73 60.89 21.52 62.426 21.52 C 63.699 21.52 64.577 20.839 64.906 20.422 L 67.144 21.739 C 66.245 22.989 64.533 24 62.426 24 C 58.739 24 56.303 21.542 56.303 18.161 C 56.303 14.78 58.915 12.322 61.987 12.322 C 65.346 12.322 68.023 14.847 67.519 19.237 Z M 64.795 17.086 C 64.509 15.638 63.523 14.803 62.029 14.803 C 60.668 14.803 59.593 15.659 59.264 17.086 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 75.626 0 L 0.24 0 L 0.24 4.7 L 75.626 4.7 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 75.6 27.3 L 0.24 27.3 L 0.24 32 L 75.6 32 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 107.639 14.76 C 106.277 14.76 105.202 15.615 104.873 17.043 L 110.404 17.043 C 110.119 15.594 109.131 14.76 107.639 14.76 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 145.256 14.76 C 143.894 14.76 142.819 15.615 142.49 17.043 L 148.021 17.043 C 147.736 15.594 146.748 14.76 145.256 14.76 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 80.329 0 L 80.329 32 L 167.76 32 L 167.76 0 Z M 93.416 23.957 C 90.541 23.957 87.973 22.772 87.227 20.226 L 90.102 19.326 C 90.321 20.203 91.243 21.345 93.395 21.345 C 94.931 21.345 96.16 20.753 96.16 19.436 C 96.16 17.9 94.426 17.79 91.99 17.198 C 88.896 16.43 87.863 14.872 87.863 12.742 C 87.863 9.845 90.08 8.046 93.285 8.046 C 95.853 8.046 97.872 9.318 98.531 11.667 L 95.633 12.369 C 95.457 11.557 94.667 10.657 93.131 10.657 C 91.858 10.657 90.805 11.316 90.805 12.545 C 90.805 14.279 92.758 14.521 94.184 14.851 C 97.828 15.685 99.144 16.738 99.144 19.218 C 99.144 21.698 97.432 23.959 93.415 23.959 Z M 104.874 19.194 C 105.269 20.687 106.498 21.477 108.034 21.477 C 109.307 21.477 110.186 20.797 110.514 20.379 L 112.753 21.696 C 111.853 22.947 110.141 23.957 108.034 23.957 C 104.347 23.957 101.911 21.499 101.911 18.118 C 101.911 14.738 104.523 12.28 107.596 12.28 C 110.955 12.28 113.632 14.804 113.127 19.194 Z M 121.949 21.279 C 123.135 21.279 124.012 20.708 124.518 19.853 L 126.955 21.236 C 125.923 22.883 124.102 23.957 121.95 23.957 C 118.614 23.957 116.069 21.368 116.069 18.118 C 116.069 14.869 118.615 12.28 121.95 12.28 C 124.102 12.28 125.923 13.355 126.955 14.98 L 124.518 16.384 C 124.013 15.528 123.135 14.958 121.949 14.958 C 120.083 14.958 118.92 16.384 118.92 18.118 C 118.92 19.853 120.083 21.279 121.949 21.279 Z M 136.655 15.309 C 133.363 14.914 132.945 17.021 132.945 19.083 L 132.945 23.67 L 130.157 23.67 L 130.157 12.542 L 132.945 12.542 L 132.945 14.364 C 133.779 12.98 135.316 12.279 136.655 12.279 Z M 142.492 19.194 C 142.887 20.687 144.117 21.477 145.653 21.477 C 146.925 21.477 147.804 20.797 148.133 20.379 L 150.372 21.696 C 149.472 22.947 147.76 23.957 145.653 23.957 C 141.965 23.957 139.53 21.499 139.53 18.118 C 139.53 14.738 142.141 12.28 145.215 12.28 C 148.573 12.28 151.251 14.804 150.746 19.194 Z M 160.424 15.09 L 158.053 15.09 L 158.053 19.15 C 158.053 20.422 158.229 21.169 159.765 21.169 C 159.962 21.169 160.225 21.147 160.424 21.125 L 160.424 23.672 C 160.138 23.759 159.831 23.825 159.26 23.825 C 156.407 23.825 155.265 21.916 155.265 19.611 L 155.265 15.09 L 153.018 15.09 L 153.018 12.543 L 155.265 12.543 L 155.265 10.217 L 158.053 10.217 L 158.053 12.543 L 160.424 12.543 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12481815005,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n727mx\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"g6kfGBeMN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bMkDCQAAX\"},motionChild:true,nodeId:\"VSVm3BU67\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Reviews\"})})})}),className:\"framer-15o1wno\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VSVm3BU67\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mi2MVrUSE\"},motionChild:true,nodeId:\"RQ_BUo4cq\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Blog\"})})})}),className:\"framer-f4fmq1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RQ_BUo4cq\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gEeY5HQpk\"},motionChild:true,nodeId:\"ZWwvTYM9r\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Partners\"})})})}),className:\"framer-2v3kjm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZWwvTYM9r\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kfACfg9PP\"},motionChild:true,nodeId:\"wk04LuMFc\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Ingredients\"})})})}),className:\"framer-1j1huel\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wk04LuMFc\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FIPoMcQXM\"},motionChild:true,nodeId:\"I65lUqCpr\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Contact\"})})})}),className:\"framer-h17u3o\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I65lUqCpr\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k2imnt\",\"data-framer-name\":\"socials\",layoutDependency:layoutDependency,layoutId:\"zrruFHh_3\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/biome_secret/\",motionChild:true,nodeId:\"BaYP2Ic3M\",openInNewTab:false,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-x5zxt9 framer-12jybjf\",\"data-framer-name\":\"ig\",layoutDependency:layoutDependency,layoutId:\"BaYP2Ic3M\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ovdqsj\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jwswJRtBo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.161 C 15.206 2.161 15.586 2.175 16.847 2.231 C 18.019 2.283 18.652 2.48 19.073 2.644 C 19.631 2.859 20.034 3.122 20.452 3.539 C 20.873 3.961 21.131 4.359 21.347 4.917 C 21.511 5.339 21.708 5.977 21.759 7.144 C 21.816 8.409 21.83 8.789 21.83 11.991 C 21.83 15.197 21.816 15.577 21.759 16.837 C 21.708 18.009 21.511 18.642 21.347 19.064 C 21.131 19.622 20.869 20.025 20.452 20.442 C 20.03 20.864 19.631 21.122 19.073 21.337 C 18.652 21.502 18.014 21.698 16.847 21.75 C 15.581 21.806 15.202 21.82 12 21.82 C 8.794 21.82 8.414 21.806 7.153 21.75 C 5.981 21.698 5.348 21.502 4.927 21.337 C 4.369 21.122 3.966 20.859 3.548 20.442 C 3.127 20.02 2.869 19.622 2.653 19.064 C 2.489 18.642 2.292 18.005 2.241 16.837 C 2.184 15.572 2.17 15.192 2.17 11.991 C 2.17 8.784 2.184 8.405 2.241 7.144 C 2.292 5.972 2.489 5.339 2.653 4.917 C 2.869 4.359 3.131 3.956 3.548 3.539 C 3.97 3.117 4.369 2.859 4.927 2.644 C 5.348 2.48 5.986 2.283 7.153 2.231 C 8.414 2.175 8.794 2.161 12 2.161 Z M 12 0 C 8.742 0 8.334 0.014 7.055 0.07 C 5.78 0.127 4.903 0.333 4.144 0.628 C 3.352 0.938 2.681 1.345 2.016 2.016 C 1.345 2.681 0.938 3.352 0.628 4.139 C 0.333 4.903 0.127 5.775 0.07 7.05 C 0.014 8.334 0 8.742 0 12 C 0 15.258 0.014 15.666 0.07 16.945 C 0.127 18.22 0.333 19.097 0.628 19.856 C 0.938 20.648 1.345 21.319 2.016 21.984 C 2.681 22.65 3.352 23.063 4.139 23.367 C 4.903 23.662 5.775 23.869 7.05 23.925 C 8.33 23.981 8.737 23.995 11.995 23.995 C 15.253 23.995 15.661 23.981 16.941 23.925 C 18.216 23.869 19.092 23.662 19.852 23.367 C 20.639 23.063 21.309 22.65 21.975 21.984 C 22.641 21.319 23.053 20.648 23.358 19.861 C 23.653 19.097 23.859 18.225 23.916 16.95 C 23.972 15.67 23.986 15.263 23.986 12.005 C 23.986 8.747 23.972 8.339 23.916 7.059 C 23.859 5.784 23.653 4.908 23.358 4.148 C 23.063 3.352 22.655 2.681 21.984 2.016 C 21.319 1.35 20.648 0.938 19.861 0.633 C 19.097 0.338 18.225 0.131 16.95 0.075 C 15.666 0.014 15.258 0 12 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 12 5.836 C 8.597 5.836 5.836 8.597 5.836 12 C 5.836 15.403 8.597 18.164 12 18.164 C 15.403 18.164 18.164 15.403 18.164 12 C 18.164 8.597 15.403 5.836 12 5.836 Z M 12 15.998 C 9.792 15.998 8.002 14.208 8.002 12 C 8.002 9.792 9.792 8.002 12 8.002 C 14.208 8.002 15.998 9.792 15.998 12 C 15.998 14.208 14.208 15.998 12 15.998 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 19.847 5.592 C 19.847 6.389 19.2 7.031 18.408 7.031 C 17.611 7.031 16.969 6.384 16.969 5.592 C 16.969 4.795 17.616 4.153 18.408 4.153 C 19.2 4.153 19.847 4.8 19.847 5.592 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10562148067,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/biomesecretog\",motionChild:true,nodeId:\"LKU7aLnmD\",openInNewTab:false,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-cyevxl framer-12jybjf\",\"data-framer-name\":\"fb\",layoutDependency:layoutDependency,layoutId:\"LKU7aLnmD\",whileHover:animation,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ilf9lp\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AuWYhgCZt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 0 C 5.373 0 0 5.373 0 12 C 0 17.627 3.875 22.35 9.101 23.647 L 9.101 15.667 L 6.627 15.667 L 6.627 12 L 9.101 12 L 9.101 10.42 C 9.101 6.335 10.95 4.442 14.96 4.442 C 15.72 4.442 17.032 4.592 17.569 4.74 L 17.569 8.065 C 17.285 8.035 16.793 8.02 16.182 8.02 C 14.215 8.02 13.454 8.765 13.454 10.703 L 13.454 12 L 17.374 12 L 16.701 15.667 L 13.454 15.667 L 13.454 23.912 C 19.396 23.195 24.001 18.135 24.001 12 C 24 5.373 18.627 0 12 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10125286406,withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ace737\",\"data-framer-name\":\"Products\",layoutDependency:layoutDependency,layoutId:\"Pvtr0EAbv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"360px\",y:(componentViewport?.y||0)+120+0+0+0,...addPropertyOverrides({eew8buTBj:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+80+0+0+156.8+0},Pku5PMGAC:{height:320,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px)`,y:(componentViewport?.y||0)+64+0+0+262.4+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-emgyxf-container\",layoutDependency:layoutDependency,layoutId:\"WPv5QBCDK-container\",nodeId:\"WPv5QBCDK\",rendersWithMotion:true,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(ProductCard,{height:\"100%\",id:\"WPv5QBCDK\",layoutId:\"WPv5QBCDK\",style:{height:\"100%\",width:\"100%\"},variant:\"ew3SBYoa5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"360px\",y:(componentViewport?.y||0)+120+0+0+0,...addPropertyOverrides({eew8buTBj:{width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+80+0+0+156.8+0},Pku5PMGAC:{height:320,width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px)`,y:(componentViewport?.y||0)+64+0+0+262.4+0+344}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qmhdhm-container\",layoutDependency:layoutDependency,layoutId:\"Aqhlxtz9X-container\",nodeId:\"Aqhlxtz9X\",rendersWithMotion:true,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(ProductCard,{height:\"100%\",id:\"Aqhlxtz9X\",layoutId:\"Aqhlxtz9X\",style:{height:\"100%\",width:\"100%\"},variant:\"p81UVGqnk\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mg3jwc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ye1d1k2AB-container\",nodeId:\"ye1d1k2AB\",rendersWithMotion:true,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"ye1d1k2AB\",layoutId:\"ye1d1k2AB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xv1d0b\",\"data-framer-name\":\"Footer Slogan\",layoutDependency:layoutDependency,layoutId:\"FNgJhrw_H\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-v2rksh\",\"data-styles-preset\":\"Dpkig5W9L\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Nutrition Backed by Nature\"})}),className:\"framer-1l2ylyn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FaWIgDLhI\",style:{\"--extracted-gdpscs\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.2},verticalAlignment:\"top\",withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({eew8buTBj:{gap:40},Pku5PMGAC:{gap:40}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vz4xeq\",layoutDependency:layoutDependency,layoutId:\"ZN0vJcKsm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ubbxhv\",layoutDependency:layoutDependency,layoutId:\"s3dYK_hcB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jiz4zw\",layoutDependency:layoutDependency,layoutId:\"py8rWsXjt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r0kk6h\",\"data-styles-preset\":\"AghOAlGbR\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Disclaimer\"})}),className:\"framer-hergm7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fHgH__35G\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7exwm2\",\"data-styles-preset\":\"uMZtgTafO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"The statements on this page have not been evaluated by the Food and Drug Administration (FDA). Our products are not intended to diagnose, treat, cure, or prevent any disease. Consult with a healthcare professional before starting any dietary or wellness program. The mention of any external brands on our site does not imply their endorsement of our products. We independently select and share these brands to complement our offerings without any implied partnerships or endorsements.\"})}),className:\"framer-xz18y4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XsXSloMyw\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-urc0oq\",layoutDependency:layoutDependency,layoutId:\"jzXZPlSSX\",style:{backgroundColor:\"rgba(255, 255, 255, 0.07)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-14o179\",\"data-styles-preset\":\"PQ01mVRMJ\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"Become Part of Biome Secret Movement\"})}),className:\"framer-dhurya\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fmqJfhPdf\",style:{\"--extracted-1eung3n\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/16f7c4a8-676b-45b5-b82a-1aa552bc1eb0/submit\",className:\"framer-15s5sy\",layoutDependency:layoutDependency,layoutId:\"clFtcVUKM\",nodeId:\"clFtcVUKM\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-28ekui\",layoutDependency:layoutDependency,layoutId:\"XvMOp507o\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1iirwx1\",inputName:\"name\",layoutDependency:layoutDependency,layoutId:\"OEMs9yXXq\",placeholder:\"Name\",style:{\"--framer-input-background\":\"rgba(255, 255, 255, 0.1)\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(255, 255, 255, 0.3)\"},type:\"text\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-9msjis\",layoutDependency:layoutDependency,layoutId:\"rxseJBi6g\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ubpp9x\",inputName:\"email\",layoutDependency:layoutDependency,layoutId:\"t_Qw2WIgC\",placeholder:\"Email\",style:{\"--framer-input-background\":\"rgba(255, 255, 255, 0.1)\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(255, 255, 255, 0.4)\"},type:\"email\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+120+568+0+0+0+40+44.8+0,...addPropertyOverrides({eew8buTBj:{y:(componentViewport?.y||0)+80+724.8+0+0+0+0+32+44.8+0},Pku5PMGAC:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.9, 1300px) - 48px)`,y:(componentViewport?.y||0)+64+1102.4+0+0+0+0+24+44.8+0+116}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fiwye0-container\",layoutDependency:layoutDependency,layoutId:\"ychzne1CQ-container\",nodeId:\"ychzne1CQ\",rendersWithMotion:true,scopeId:\"ZMdft2IVB\",children:/*#__PURE__*/_jsx(ButtonContactForm,{height:\"100%\",id:\"ychzne1CQ\",layoutId:\"ychzne1CQ\",RYmeaV5XS:\"Submit\",type:\"submit\",variant:formVariants(formState,{error:\"clpfioZ2A\",pending:\"ugN2FVcov\",success:\"RpZRCWABk\"},\"XyVtfQwe8\"),width:\"100%\",...addPropertyOverrides({Pku5PMGAC:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})]})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18hzcy9\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ynaq4uP5w\",style:{backgroundColor:\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:.1}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t76zt2\",layoutDependency:layoutDependency,layoutId:\"lhvp84Vaw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mnuphy\",layoutDependency:layoutDependency,layoutId:\"HGZJsJiVj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:\"\\xa9 Biome Secret 2025\"})}),className:\"framer-oc6wvc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LPwEhpKD9\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.5},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15ck31v\",layoutDependency:layoutDependency,layoutId:\"s_hFCpb7o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{m6Rwkka6w:\"privacy-policy\"},unresolvedPathSlugs:{m6Rwkka6w:{collectionId:\"uCc7Y5oJc\",collectionItemId:\"BNwPAAL1m\"}},webPageId:\"vfHHcvPR5\"},motionChild:true,nodeId:\"DBB54xkG2\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Privacy\"})})})}),className:\"framer-1e2qvpy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DBB54xkG2\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{m6Rwkka6w:\"terms-of-service\"},unresolvedPathSlugs:{m6Rwkka6w:{collectionId:\"uCc7Y5oJc\",collectionItemId:\"s1VeoQYQY\"}},webPageId:\"vfHHcvPR5\"},motionChild:true,nodeId:\"Fm62d9TA2\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Terms\"})})})}),className:\"framer-dsji7y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fm62d9TA2\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{m6Rwkka6w:\"subscription-policy\"},unresolvedPathSlugs:{m6Rwkka6w:{collectionId:\"uCc7Y5oJc\",collectionItemId:\"c9vsHfMqf\"}},webPageId:\"vfHHcvPR5\"},motionChild:true,nodeId:\"VrejgPZ7z\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Subscription\"})})})}),className:\"framer-1fhq969\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VrejgPZ7z\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{m6Rwkka6w:\"shipping-policy\"},unresolvedPathSlugs:{m6Rwkka6w:{collectionId:\"uCc7Y5oJc\",collectionItemId:\"X54QPdvhd\"}},webPageId:\"vfHHcvPR5\"},motionChild:true,nodeId:\"hkRSrjFoz\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Shipping\"})})})}),className:\"framer-iy2g44\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hkRSrjFoz\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hvacj9\",\"data-styles-preset\":\"SuS3g8pel\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{m6Rwkka6w:\"refund-policy\"},unresolvedPathSlugs:{m6Rwkka6w:{collectionId:\"uCc7Y5oJc\",collectionItemId:\"tFHRPmiuA\"}},webPageId:\"vfHHcvPR5\"},motionChild:true,nodeId:\"IVqhEHnQQ\",openInNewTab:false,scopeId:\"ZMdft2IVB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1i2y5sp\",\"data-styles-preset\":\"m_vwWr_Gg\",children:\"Refunds\"})})})}),className:\"framer-xf2sy2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IVqhEHnQQ\",style:{\"--extracted-r6o4lv\":\"var(--token-743372cc-26ea-42fd-8667-4764c833b191, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gdxfvi\",\"data-framer-name\":\"Payment methods\",layoutDependency:layoutDependency,layoutId:\"juycKFwSw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eldx0e\",\"data-framer-name\":\"Amex\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cGMdH8jsw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 27.632 0.833 C 28.5 0.833 29.211 1.583 29.211 2.5 L 29.211 17.5 C 29.211 18.417 28.5 19.167 27.632 19.167 L 2.368 19.167 C 1.5 19.167 0.789 18.417 0.789 17.5 L 0.789 2.5 C 0.789 1.583 1.5 0.833 2.368 0.833 Z\" fill=\"rgb(0,111,207)\"></path><path d=\"M 17.378 16.613 L 17.378 9.596 L 29.211 9.607 L 29.211 11.545 L 27.843 13.088 L 29.211 14.644 L 29.211 16.623 L 27.027 16.623 L 25.866 15.272 L 24.714 16.628 L 17.378 16.612 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.168 15.843 L 18.168 10.368 L 22.567 10.368 L 22.567 11.629 L 19.592 11.629 L 19.592 12.486 L 22.496 12.486 L 22.496 13.726 L 19.592 13.726 L 19.592 14.567 L 22.567 14.567 L 22.567 15.843 Z\" fill=\"rgb(0,111,207)\"></path><path d=\"M 22.545 15.843 L 24.979 13.103 L 22.545 10.368 L 24.429 10.368 L 25.916 12.103 L 27.408 10.368 L 29.211 10.368 L 29.211 10.411 L 26.829 13.103 L 29.211 15.767 L 29.211 15.844 L 27.389 15.844 L 25.876 14.092 L 24.377 15.845 L 22.545 15.845 Z\" fill=\"rgb(0,111,207)\"></path><path d=\"M 17.929 3.367 L 20.782 3.367 L 21.784 5.767 L 21.784 3.367 L 25.305 3.367 L 25.913 5.166 L 26.522 3.367 L 29.211 3.367 L 29.211 10.384 L 15 10.384 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.47 4.129 L 16.168 9.601 L 17.747 9.601 L 18.181 8.505 L 20.533 8.505 L 20.968 9.601 L 22.586 9.601 L 20.293 4.129 Z M 18.667 7.277 L 19.358 5.535 L 20.047 7.277 Z\" fill=\"rgb(0,111,207)\"></path><path d=\"M 22.564 9.6 L 22.564 4.127 L 24.783 4.136 L 25.926 7.5 L 27.076 4.128 L 29.211 4.128 L 29.211 9.599 L 27.837 9.612 L 27.837 5.854 L 26.539 9.599 L 25.284 9.599 L 23.961 5.842 L 23.961 9.6 L 22.565 9.6 Z\" fill=\"rgb(0,111,207)\"></path></svg>',svgContentId:11972446087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d5ujfa\",\"data-framer-name\":\"Apay\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UpCKJ7k0o\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.313 0 L 2.687 0 C 2.584 0 2.481 0 2.379 0.001 C 2.292 0.001 2.206 0.002 2.12 0.005 C 1.931 0.01 1.741 0.022 1.555 0.056 C 1.369 0.09 1.188 0.152 1.019 0.24 C 0.68 0.42 0.404 0.708 0.231 1.061 C 0.146 1.237 0.086 1.426 0.054 1.62 C 0.02 1.814 0.009 2.012 0.004 2.208 C 0.002 2.297 0.001 2.387 0 2.477 C 0 2.584 0 2.691 0 2.798 L 0 17.202 C 0 17.309 0 17.416 0 17.523 C 0.001 17.613 0.002 17.703 0.004 17.793 C 0.009 17.988 0.021 18.186 0.054 18.38 C 0.086 18.574 0.145 18.762 0.231 18.938 C 0.316 19.114 0.428 19.275 0.562 19.414 C 0.696 19.554 0.85 19.67 1.019 19.759 C 1.191 19.851 1.367 19.908 1.556 19.944 C 1.741 19.978 1.931 19.99 2.12 19.995 C 2.206 19.997 2.292 19.998 2.379 19.999 C 2.481 20 2.584 20 2.687 20 L 27.313 20 C 27.416 20 27.519 20 27.621 19.999 C 27.707 19.999 27.794 19.997 27.88 19.995 C 28.068 19.99 28.258 19.978 28.445 19.944 C 28.631 19.91 28.812 19.848 28.981 19.759 C 29.32 19.579 29.596 19.292 29.769 18.938 C 29.857 18.76 29.912 18.577 29.946 18.38 C 29.979 18.186 29.99 17.988 29.995 17.793 C 29.998 17.703 29.999 17.613 29.999 17.523 C 30 17.416 30 17.309 30 17.202 L 30 2.798 C 30 2.691 30 2.584 29.999 2.477 C 29.999 2.387 29.998 2.297 29.995 2.208 C 29.99 2.012 29.979 1.814 29.946 1.62 C 29.914 1.426 29.855 1.237 29.769 1.061 C 29.596 0.708 29.32 0.42 28.981 0.24 C 28.812 0.152 28.631 0.09 28.445 0.057 C 28.258 0.022 28.068 0.01 27.88 0.005 C 27.794 0.003 27.707 0.001 27.621 0.001 C 27.519 0 27.416 0 27.313 0 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 27.313 0.667 L 27.616 0.667 C 27.698 0.668 27.78 0.669 27.863 0.671 C 28.007 0.675 28.174 0.683 28.331 0.712 C 28.467 0.738 28.581 0.777 28.691 0.835 C 28.91 0.951 29.088 1.136 29.199 1.365 C 29.254 1.478 29.291 1.596 29.316 1.739 C 29.344 1.9 29.352 2.075 29.355 2.226 C 29.358 2.311 29.359 2.396 29.359 2.483 C 29.36 2.588 29.36 2.693 29.36 2.798 L 29.36 17.202 C 29.36 17.308 29.36 17.413 29.359 17.52 C 29.359 17.605 29.358 17.69 29.355 17.775 C 29.352 17.925 29.344 18.1 29.315 18.263 C 29.295 18.393 29.255 18.519 29.199 18.636 C 29.087 18.864 28.909 19.05 28.69 19.166 C 28.581 19.224 28.467 19.262 28.332 19.288 C 28.173 19.317 27.998 19.325 27.866 19.329 C 27.783 19.331 27.701 19.332 27.616 19.333 C 27.515 19.333 27.414 19.333 27.313 19.333 L 2.683 19.333 C 2.583 19.333 2.483 19.333 2.382 19.333 C 2.3 19.332 2.219 19.331 2.137 19.329 C 2.002 19.325 1.827 19.317 1.669 19.288 C 1.543 19.266 1.422 19.225 1.309 19.165 C 1.2 19.107 1.101 19.032 1.015 18.942 C 0.929 18.853 0.856 18.749 0.801 18.636 C 0.744 18.518 0.705 18.392 0.684 18.261 C 0.656 18.098 0.648 17.924 0.644 17.775 C 0.642 17.69 0.641 17.604 0.641 17.519 L 0.64 17.269 L 0.64 2.732 L 0.641 2.482 C 0.641 2.396 0.642 2.311 0.644 2.226 C 0.648 2.076 0.656 1.902 0.684 1.737 C 0.705 1.607 0.745 1.481 0.801 1.363 C 0.857 1.25 0.929 1.147 1.015 1.057 C 1.102 0.967 1.201 0.892 1.31 0.834 C 1.423 0.775 1.544 0.734 1.669 0.712 C 1.825 0.683 1.993 0.675 2.137 0.671 C 2.219 0.669 2.301 0.668 2.383 0.667 L 2.687 0.667 L 27.313 0.667\" fill=\"rgb(255,255,255)\"></path><path d=\"M 7.886 6.751 C 8.14 6.42 8.313 5.975 8.267 5.521 C 7.895 5.54 7.441 5.776 7.178 6.108 C 6.941 6.392 6.732 6.855 6.787 7.291 C 7.205 7.328 7.622 7.073 7.886 6.751 M 8.262 7.376 C 7.655 7.338 7.139 7.734 6.85 7.734 C 6.56 7.734 6.116 7.395 5.636 7.404 C 5.011 7.413 4.431 7.781 4.114 8.367 C 3.462 9.537 3.942 11.273 4.576 12.226 C 4.884 12.698 5.255 13.217 5.744 13.199 C 6.207 13.18 6.388 12.887 6.949 12.887 C 7.51 12.887 7.674 13.199 8.163 13.189 C 8.67 13.18 8.987 12.717 9.295 12.245 C 9.648 11.707 9.793 11.188 9.802 11.16 C 9.793 11.151 8.824 10.764 8.815 9.603 C 8.806 8.631 9.576 8.168 9.612 8.14 C 9.177 7.47 8.498 7.395 8.262 7.376 M 14.314 6.06 C 15.633 6.06 16.551 7.007 16.551 8.386 C 16.551 9.769 15.614 10.721 14.281 10.721 L 12.82 10.721 L 12.82 13.14 L 11.765 13.14 L 11.765 6.06 Z M 12.82 9.799 L 14.031 9.799 C 14.95 9.799 15.472 9.284 15.472 8.391 C 15.472 7.498 14.95 6.988 14.036 6.988 L 12.82 6.988 Z M 16.813 11.673 C 16.813 10.765 17.477 10.245 18.702 10.167 L 20.017 10.084 L 20.017 9.691 C 20.017 9.117 19.654 8.803 19.009 8.803 C 18.476 8.803 18.09 9.088 18.01 9.524 L 17.058 9.524 C 17.086 8.607 17.915 7.94 19.037 7.94 C 20.243 7.94 21.03 8.597 21.03 9.618 L 21.03 13.14 L 20.054 13.14 L 20.054 12.291 L 20.031 12.291 C 19.753 12.846 19.14 13.194 18.476 13.194 C 17.496 13.194 16.813 12.586 16.813 11.673 Z M 20.017 11.217 L 20.017 10.819 L 18.844 10.898 C 18.184 10.942 17.84 11.197 17.84 11.643 C 17.84 12.075 18.198 12.355 18.759 12.355 C 19.475 12.355 20.017 11.879 20.017 11.217 Z M 21.926 15.034 L 21.926 14.185 C 21.992 14.195 22.152 14.205 22.237 14.205 C 22.703 14.205 22.967 13.999 23.128 13.469 L 23.222 13.155 L 21.436 8.003 L 22.538 8.003 L 23.782 12.183 L 23.806 12.183 L 25.05 8.003 L 26.124 8.003 L 24.272 13.415 C 23.848 14.656 23.363 15.063 22.336 15.063 C 22.256 15.063 21.997 15.053 21.926 15.034 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9356321318,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r5n7gz\",\"data-framer-name\":\"Gpay\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"h1QqtdoMR\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 27.632 0.833 C 28.5 0.833 29.211 1.583 29.211 2.5 L 29.211 17.5 C 29.211 18.417 28.5 19.167 27.632 19.167 L 2.368 19.167 C 1.5 19.167 0.789 18.417 0.789 17.5 L 0.789 2.5 C 0.789 1.583 1.5 0.833 2.368 0.833 L 27.632 0.833\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14.284 9.98 L 14.284 12.647 L 13.48 12.647 L 13.48 6.063 L 15.605 6.063 C 16.119 6.054 16.615 6.262 16.984 6.64 C 17.333 6.984 17.539 7.46 17.555 7.964 C 17.571 8.468 17.397 8.958 17.071 9.327 L 16.984 9.423 C 16.613 9.796 16.117 9.998 15.605 9.985 Z M 14.284 6.87 L 14.284 9.193 L 15.624 9.193 C 15.922 9.203 16.209 9.081 16.418 8.857 C 16.723 8.521 16.808 8.026 16.635 7.599 C 16.463 7.172 16.065 6.895 15.624 6.895 Z M 19.403 7.993 C 19.916 7.968 20.418 8.15 20.807 8.504 C 21.158 8.863 21.345 9.363 21.32 9.878 L 21.32 12.657 L 20.555 12.657 L 20.555 12.018 L 20.516 12.018 C 20.237 12.505 19.735 12.801 19.195 12.794 C 18.763 12.809 18.341 12.65 18.014 12.35 C 17.701 12.08 17.522 11.673 17.53 11.247 C 17.512 10.815 17.692 10.4 18.014 10.133 C 18.404 9.838 18.875 9.687 19.355 9.704 C 19.763 9.688 20.168 9.782 20.531 9.98 L 20.531 9.807 C 20.536 9.516 20.415 9.239 20.202 9.056 C 19.991 8.853 19.714 8.743 19.428 8.749 C 19.007 8.745 18.613 8.971 18.387 9.347 L 17.68 8.877 C 18.07 8.287 18.722 7.952 19.403 7.993 Z M 18.387 11.267 C 18.383 11.486 18.483 11.693 18.653 11.818 C 18.829 11.965 19.048 12.042 19.273 12.037 C 19.611 12.037 19.936 11.896 20.177 11.644 C 20.418 11.406 20.555 11.073 20.555 10.725 C 20.251 10.497 19.882 10.387 19.509 10.413 C 19.221 10.401 18.936 10.487 18.696 10.658 C 18.504 10.794 18.388 11.022 18.387 11.267 Z M 25.718 8.142 L 23.042 14.633 L 22.214 14.633 L 23.226 12.36 L 21.47 8.142 L 22.341 8.142 L 23.613 11.379 L 24.852 8.142 Z\" fill=\"rgb(95,99,104)\"></path><path d=\"M 11.042 9.403 C 11.042 9.147 11.023 8.89 10.984 8.637 L 7.597 8.637 L 7.597 10.092 L 9.532 10.092 C 9.453 10.56 9.196 10.973 8.822 11.237 L 8.822 12.182 L 9.977 12.182 C 10.688 11.456 11.075 10.447 11.042 9.403 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 7.602 13.101 C 8.475 13.126 9.325 12.799 9.978 12.187 L 8.821 11.237 C 8.257 11.618 7.559 11.704 6.927 11.469 C 6.296 11.235 5.802 10.706 5.589 10.037 L 4.403 10.037 L 4.403 11.012 C 5.008 12.292 6.247 13.1 7.602 13.101 Z\" fill=\"rgb(52,168,83)\"></path><path d=\"M 5.589 10.042 C 5.439 9.573 5.439 9.065 5.589 8.596 L 5.589 7.621 L 4.403 7.621 C 3.89 8.688 3.89 9.949 4.403 11.017 Z\" fill=\"rgb(251,188,4)\"></path><path d=\"M 7.602 7.033 C 8.113 7.023 8.606 7.227 8.976 7.6 L 10.002 6.523 C 9.347 5.874 8.479 5.521 7.582 5.537 C 6.235 5.544 5.006 6.349 4.403 7.62 L 5.589 8.596 C 5.873 7.673 6.683 7.045 7.602 7.033 Z\" fill=\"rgb(234,67,53)\"></path></svg>',svgContentId:11243402592,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fzfnmt\",\"data-framer-name\":\"Ppal\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KqyZuARym\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 27.632 0.833 C 28.5 0.833 29.211 1.583 29.211 2.5 L 29.211 17.5 C 29.211 18.417 28.5 19.167 27.632 19.167 L 2.368 19.167 C 1.5 19.167 0.789 18.417 0.789 17.5 L 0.789 2.5 C 0.789 1.583 1.5 0.833 2.368 0.833 L 27.632 0.833\" fill=\"rgb(255,255,255)\"></path><path d=\"M 18.868 6.917 C 19.026 6.083 18.868 5.5 18.395 5 C 17.921 4.417 17.053 4.167 15.947 4.167 L 12.711 4.167 C 12.474 4.167 12.316 4.333 12.237 4.583 L 11.053 13 C 11.053 13.167 11.132 13.333 11.289 13.333 L 13.421 13.333 L 13.737 10.5 L 15.158 8.667 Z\" fill=\"rgb(0,48,135)\"></path><path d=\"M 18.868 6.917 L 18.711 7.083 C 18.316 9.417 16.974 10.25 15.079 10.25 L 14.211 10.25 C 13.974 10.25 13.816 10.417 13.737 10.667 L 13.263 13.917 L 13.105 14.75 C 13.105 14.917 13.184 15.083 13.342 15.083 L 15 15.083 C 15.237 15.083 15.395 14.917 15.395 14.75 L 15.395 14.667 L 15.711 12.667 L 15.711 12.583 C 15.711 12.417 15.947 12.25 16.105 12.25 L 16.342 12.25 C 18 12.25 19.263 11.583 19.579 9.583 C 19.737 8.75 19.658 8.083 19.263 7.583 C 19.184 7.167 19.026 7 18.868 6.917 Z\" fill=\"rgb(48,134,200)\"></path><path d=\"M 18.395 6.75 C 18.316 6.667 18.237 6.667 18.158 6.667 C 18.079 6.667 18 6.667 17.921 6.583 C 17.684 6.5 17.368 6.5 17.053 6.5 L 14.684 6.5 C 14.605 6.5 14.526 6.5 14.526 6.583 C 14.368 6.667 14.289 6.75 14.289 6.917 L 13.737 10.583 L 13.737 10.667 C 13.737 10.417 13.974 10.25 14.211 10.25 L 15.237 10.25 C 17.211 10.25 18.474 9.417 18.868 7.083 L 18.868 6.917 C 18.789 6.833 18.632 6.75 18.474 6.75 Z\" fill=\"rgb(1,33,105)\"></path></svg>',svgContentId:8968263763,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gcha0s\",\"data-framer-name\":\"Mcard\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"gLjJwUoUz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 27.632 0.833 C 28.5 0.833 29.211 1.583 29.211 2.5 L 29.211 17.5 C 29.211 18.417 28.5 19.167 27.632 19.167 L 2.368 19.167 C 1.5 19.167 0.789 18.417 0.789 17.5 L 0.789 2.5 C 0.789 1.583 1.5 0.833 2.368 0.833 L 27.632 0.833\" fill=\"rgb(255,255,255)\"></path><path d=\"M 6.316 10 C 6.316 6.778 8.79 4.167 11.842 4.167 C 14.894 4.167 17.368 6.778 17.368 10 C 17.368 13.222 14.894 15.833 11.842 15.833 C 8.79 15.833 6.316 13.222 6.316 10 Z\" fill=\"rgb(235,0,27)\"></path><path d=\"M 12.632 10 C 12.632 6.778 15.106 4.167 18.158 4.167 C 21.21 4.167 23.684 6.778 23.684 10 C 23.684 13.222 21.21 15.833 18.158 15.833 C 15.106 15.833 12.632 13.222 12.632 10 Z\" fill=\"rgb(247,158,27)\"></path><path d=\"M 17.368 10 C 17.368 8 16.421 6.25 15 5.25 C 13.579 6.333 12.632 8.083 12.632 10 C 12.632 11.917 13.579 13.75 15 14.75 C 16.421 13.75 17.368 12 17.368 10 Z\" fill=\"rgb(255,95,0)\"></path></svg>',svgContentId:10799742043,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14gmd0v\",\"data-framer-name\":\"Visa\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ij2xNIZK2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 27.632 0.833 C 28.5 0.833 29.211 1.583 29.211 2.5 L 29.211 17.5 C 29.211 18.417 28.5 19.167 27.632 19.167 L 2.368 19.167 C 1.5 19.167 0.789 18.417 0.789 17.5 L 0.789 2.5 C 0.789 1.583 1.5 0.833 2.368 0.833 L 27.632 0.833\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.342 8.417 L 22.105 8.417 C 21.789 9.25 21.553 9.667 21.316 10.917 L 22.816 10.917 C 22.579 9.667 22.579 9.083 22.342 8.417 Z M 24.632 13.333 L 23.289 13.333 C 23.211 13.333 23.211 13.333 23.132 13.25 L 22.974 12.5 L 22.895 12.333 L 21 12.333 C 20.921 12.333 20.842 12.333 20.842 12.5 L 20.605 13.25 C 20.605 13.333 20.526 13.333 20.526 13.333 L 18.868 13.333 L 19.026 12.917 L 21.316 7.25 C 21.316 6.833 21.553 6.667 21.947 6.667 L 23.132 6.667 C 23.211 6.667 23.289 6.667 23.289 6.833 L 24.395 12.25 C 24.474 12.583 24.553 12.833 24.553 13.167 C 24.632 13.25 24.632 13.25 24.632 13.333 Z M 14.053 13.083 L 14.368 11.583 C 14.447 11.583 14.526 11.667 14.526 11.667 C 15.079 11.917 15.632 12.083 16.184 12 C 16.342 12 16.579 11.917 16.737 11.833 C 17.132 11.667 17.132 11.25 16.816 10.917 C 16.658 10.75 16.421 10.667 16.184 10.5 C 15.868 10.333 15.553 10.167 15.316 9.917 C 14.368 9.083 14.684 7.917 15.237 7.333 C 15.711 7 15.947 6.667 16.579 6.667 C 17.526 6.667 18.553 6.667 19.026 6.833 L 19.105 6.833 C 19.026 7.333 18.947 7.75 18.789 8.25 C 18.395 8.083 18 7.917 17.605 7.917 C 17.368 7.917 17.132 7.917 16.895 8 C 16.737 8 16.658 8.083 16.579 8.167 C 16.421 8.333 16.421 8.583 16.579 8.75 L 16.974 9.083 C 17.289 9.25 17.605 9.417 17.842 9.583 C 18.237 9.833 18.632 10.25 18.711 10.75 C 18.868 11.5 18.632 12.167 18 12.667 C 17.605 13 17.447 13.167 16.895 13.167 C 15.789 13.167 14.921 13.25 14.211 13 C 14.132 13.167 14.132 13.167 14.053 13.083 Z M 11.289 13.333 C 11.368 12.75 11.368 12.75 11.447 12.5 C 11.842 10.667 12.237 8.75 12.553 6.917 C 12.632 6.75 12.632 6.667 12.789 6.667 L 14.211 6.667 C 14.053 7.667 13.895 8.417 13.658 9.333 C 13.421 10.583 13.184 11.833 12.868 13.083 C 12.868 13.25 12.789 13.25 12.632 13.25 M 3.947 6.833 C 3.947 6.75 4.105 6.667 4.184 6.667 L 6.868 6.667 C 7.263 6.667 7.579 6.917 7.658 7.333 L 8.368 11 C 8.368 11.083 8.368 11.083 8.447 11.167 C 8.447 11.083 8.526 11.083 8.526 11.083 L 10.184 6.833 C 10.105 6.75 10.184 6.667 10.263 6.667 L 11.921 6.667 C 11.921 6.75 11.921 6.75 11.842 6.833 L 9.395 12.917 C 9.316 13.083 9.316 13.167 9.237 13.25 C 9.158 13.333 9 13.25 8.842 13.25 L 7.658 13.25 C 7.579 13.25 7.5 13.25 7.5 13.083 L 6.237 7.917 C 6.079 7.75 5.842 7.5 5.526 7.417 C 5.053 7.167 4.184 7 4.026 7 Z\" fill=\"rgb(20,38,136)\"></path></svg>',svgContentId:9717312870,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-usgjtd\",\"data-framer-name\":\"Shop\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"M77Fyn0tO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 20\"><path d=\"M 27.632 0 L 2.368 0 C 1.026 0 0 1.083 0 2.5 L 0 17.5 C 0 18.917 1.105 20 2.368 20 L 27.632 20 C 28.974 20 30 18.917 30 17.5 L 30 2.5 C 30 1.083 28.895 0 27.632 0 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.07\"></path><path d=\"M 28.333 0 C 29.25 0 30 0.818 30 1.818 L 30 18.182 C 30 19.182 29.25 20 28.333 20 L 1.666 20 C 0.75 20 0 19.182 0 18.182 L 0 1.818 C 0 0.818 0.75 0 1.667 0 L 28.334 0 Z\" fill=\"rgb(90,49,244)\"></path><path d=\"M 7.382 9.473 C 6.579 9.288 6.221 9.215 6.221 8.886 C 6.221 8.576 6.463 8.421 6.947 8.421 C 7.374 8.421 7.685 8.619 7.914 9.008 C 7.931 9.037 7.967 9.048 7.997 9.033 L 8.901 8.546 C 8.917 8.537 8.928 8.522 8.933 8.504 C 8.938 8.486 8.936 8.467 8.927 8.451 C 8.552 7.758 7.858 7.379 6.945 7.379 C 5.745 7.379 5 8.008 5 9.009 C 5 10.072 5.908 10.34 6.713 10.526 C 7.518 10.711 7.877 10.784 7.877 11.113 C 7.877 11.443 7.614 11.598 7.093 11.598 C 6.609 11.598 6.252 11.363 6.035 10.907 C 6.019 10.874 5.981 10.861 5.95 10.878 L 5.048 11.353 C 5.016 11.37 5.003 11.411 5.019 11.445 C 5.378 12.212 6.112 12.643 7.093 12.643 C 8.343 12.643 9.098 12.024 9.098 10.993 C 9.098 9.961 8.186 9.661 7.382 9.476 L 7.382 9.473 Z M 12.229 7.379 C 11.716 7.379 11.263 7.572 10.937 7.917 C 10.928 7.928 10.914 7.931 10.902 7.925 C 10.89 7.92 10.882 7.907 10.883 7.892 L 10.883 5.692 C 10.883 5.675 10.877 5.658 10.865 5.645 C 10.853 5.632 10.837 5.625 10.82 5.625 L 9.687 5.625 C 9.67 5.625 9.654 5.632 9.642 5.645 C 9.63 5.658 9.623 5.675 9.624 5.693 L 9.624 12.522 C 9.623 12.54 9.63 12.557 9.642 12.57 C 9.654 12.583 9.67 12.59 9.687 12.59 L 10.818 12.59 C 10.835 12.59 10.852 12.583 10.864 12.57 C 10.876 12.557 10.883 12.54 10.882 12.522 L 10.882 9.527 C 10.882 8.947 11.299 8.504 11.86 8.504 C 12.421 8.504 12.828 8.938 12.828 9.527 L 12.828 12.522 C 12.828 12.54 12.834 12.557 12.846 12.57 C 12.858 12.583 12.875 12.59 12.892 12.59 L 14.023 12.59 C 14.041 12.59 14.057 12.583 14.069 12.57 C 14.081 12.557 14.088 12.54 14.087 12.522 L 14.087 9.527 C 14.087 8.268 13.313 7.379 12.228 7.379 Z M 16.384 7.183 C 15.77 7.183 15.194 7.383 14.781 7.673 C 14.753 7.693 14.743 7.733 14.76 7.764 L 15.259 8.671 C 15.267 8.686 15.281 8.698 15.297 8.703 C 15.314 8.707 15.331 8.705 15.346 8.696 C 15.659 8.494 16.019 8.388 16.386 8.391 C 17.373 8.391 18.099 9.133 18.099 10.114 C 18.099 10.95 17.518 11.568 16.782 11.568 C 16.182 11.568 15.765 11.197 15.765 10.671 C 15.765 10.37 15.885 10.123 16.198 9.949 C 16.213 9.941 16.225 9.926 16.23 9.908 C 16.235 9.89 16.232 9.871 16.223 9.855 L 15.752 9.007 C 15.737 8.978 15.704 8.966 15.675 8.978 C 15.044 9.227 14.602 9.826 14.602 10.631 C 14.602 11.848 15.512 12.756 16.781 12.756 C 18.263 12.756 19.329 11.662 19.329 10.093 C 19.329 8.412 18.089 7.183 16.384 7.183 Z M 22.638 7.369 C 22.067 7.369 21.554 7.594 21.182 7.991 C 21.161 8.013 21.127 7.997 21.127 7.967 L 21.127 7.49 C 21.128 7.472 21.121 7.455 21.109 7.442 C 21.097 7.429 21.081 7.422 21.064 7.422 L 19.961 7.422 C 19.944 7.422 19.928 7.429 19.916 7.442 C 19.904 7.455 19.897 7.472 19.898 7.49 L 19.898 14.308 C 19.898 14.326 19.904 14.343 19.916 14.356 C 19.928 14.369 19.944 14.376 19.961 14.376 L 21.092 14.376 C 21.109 14.376 21.126 14.369 21.138 14.356 C 21.15 14.344 21.157 14.326 21.156 14.308 L 21.156 12.072 C 21.156 12.042 21.19 12.027 21.211 12.047 C 21.598 12.429 22.109 12.638 22.638 12.631 C 23.966 12.631 25.001 11.487 25.001 10 C 25.001 8.513 23.964 7.369 22.638 7.369 Z M 22.424 11.477 C 21.669 11.477 21.097 10.837 21.097 9.991 C 21.097 9.145 21.668 8.505 22.424 8.505 C 23.181 8.505 23.751 9.134 23.751 9.991 C 23.751 10.847 23.188 11.477 22.423 11.477 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10341255005,withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RGoJW.framer-12jybjf, .framer-RGoJW .framer-12jybjf { display: block; }\",\".framer-RGoJW.framer-wemmmf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 40px 0px; position: relative; width: 1200px; }\",\".framer-RGoJW .framer-xqv6as { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-RGoJW .framer-83v6ox { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-RGoJW .framer-xbvy28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-xlw7we { flex: none; height: 32px; position: relative; text-decoration: none; width: 168px; }\",\".framer-RGoJW .framer-1n727mx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-RGoJW .framer-15o1wno, .framer-RGoJW .framer-f4fmq1, .framer-RGoJW .framer-2v3kjm, .framer-RGoJW .framer-1j1huel, .framer-RGoJW .framer-h17u3o, .framer-RGoJW .framer-hergm7, .framer-RGoJW .framer-oc6wvc, .framer-RGoJW .framer-1e2qvpy, .framer-RGoJW .framer-dsji7y, .framer-RGoJW .framer-1fhq969, .framer-RGoJW .framer-iy2g44, .framer-RGoJW .framer-xf2sy2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RGoJW .framer-k2imnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-x5zxt9, .framer-RGoJW .framer-cyevxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-RGoJW .framer-ovdqsj, .framer-RGoJW .framer-ilf9lp { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-RGoJW .framer-ace737 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-emgyxf-container, .framer-RGoJW .framer-1qmhdhm-container { flex: none; height: 360px; position: relative; width: 360px; }\",\".framer-RGoJW .framer-1mg3jwc-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-RGoJW .framer-xv1d0b { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 58px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 791px; }\",\".framer-RGoJW .framer-1l2ylyn, .framer-RGoJW .framer-xz18y4, .framer-RGoJW .framer-dhurya { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RGoJW .framer-vz4xeq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-RGoJW .framer-ubbxhv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGoJW .framer-jiz4zw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RGoJW .framer-urc0oq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 744px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGoJW .framer-15s5sy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGoJW .framer-28ekui { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",'.framer-RGoJW .framer-1iirwx1 { --framer-input-focused-border-color: var(--token-743372cc-26ea-42fd-8667-4764c833b191, #ffffff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: 1 0 0px; height: 1px; position: relative; width: 180px; }',\".framer-RGoJW .framer-9msjis { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-RGoJW .framer-1ubpp9x { --framer-input-focused-border-color: var(--token-743372cc-26ea-42fd-8667-4764c833b191, #ffffff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }',\".framer-RGoJW .framer-fiwye0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RGoJW .framer-18hzcy9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-RGoJW .framer-1t76zt2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RGoJW .framer-1mnuphy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-15ck31v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-1gdxfvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-RGoJW .framer-eldx0e, .framer-RGoJW .framer-d5ujfa, .framer-RGoJW .framer-r5n7gz, .framer-RGoJW .framer-1fzfnmt, .framer-RGoJW .framer-gcha0s, .framer-RGoJW .framer-14gmd0v, .framer-RGoJW .framer-usgjtd { flex: none; height: 20px; position: relative; width: 30px; }\",\".framer-RGoJW.framer-v-qpu5ap.framer-wemmmf { padding: 80px 0px 40px 0px; width: 810px; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-xqv6as { height: 50%; left: calc(50.00000000000002% - 150% / 2); top: calc(24.96714848883051% - 50% / 2); width: 150%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-83v6ox, .framer-RGoJW.framer-v-1ibq6ns .framer-83v6ox { flex-direction: column; gap: 48px; justify-content: flex-start; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-xbvy28 { align-content: flex-start; align-items: flex-start; gap: 48px; order: 0; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-1n727mx { align-self: unset; flex-direction: row; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-ace737 { order: 1; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-emgyxf-container, .framer-RGoJW.framer-v-qpu5ap .framer-1qmhdhm-container { flex: 1 0 0px; width: 1px; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-ubbxhv, .framer-RGoJW.framer-v-1ibq6ns .framer-ubbxhv, .framer-RGoJW.framer-v-1ibq6ns .framer-15s5sy { flex-direction: column; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-jiz4zw, .framer-RGoJW.framer-v-1ibq6ns .framer-jiz4zw { flex: none; order: 1; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-urc0oq { order: 0; padding: 32px; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-1t76zt2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 16px; justify-content: flex-start; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-1mnuphy { align-content: flex-start; align-items: flex-start; gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-oc6wvc { order: 0; }\",\".framer-RGoJW.framer-v-qpu5ap .framer-15ck31v, .framer-RGoJW.framer-v-qpu5ap .framer-1gdxfvi, .framer-RGoJW.framer-v-1ibq6ns .framer-oc6wvc { order: 1; }\",\".framer-RGoJW.framer-v-1ibq6ns.framer-wemmmf { gap: 48px; padding: 64px 0px 40px 0px; width: 390px; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-xqv6as { height: 30%; left: calc(50.00000000000002% - 150% / 2); top: calc(14.97876145763472% - 30.002235636038456% / 2); width: 150%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-xbvy28 { align-content: flex-start; align-items: flex-start; gap: 48px; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1n727mx { align-content: unset; align-items: unset; align-self: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-15o1wno, .framer-RGoJW.framer-v-1ibq6ns .framer-f4fmq1, .framer-RGoJW.framer-v-1ibq6ns .framer-2v3kjm, .framer-RGoJW.framer-v-1ibq6ns .framer-1j1huel, .framer-RGoJW.framer-v-1ibq6ns .framer-h17u3o { align-self: start; height: 100%; justify-self: start; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-k2imnt { align-self: start; justify-self: start; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-ace737 { flex-direction: column; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-emgyxf-container { height: 320px; order: 0; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1qmhdhm-container { height: 320px; order: 1; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-vz4xeq { gap: 32px; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-urc0oq { order: 0; padding: 24px; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-28ekui { align-self: unset; height: 48px; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1iirwx1, .framer-RGoJW.framer-v-1ibq6ns .framer-fiwye0-container { width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-9msjis { align-self: unset; flex: none; height: 48px; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1t76zt2 { flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1mnuphy { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 0; width: 100%; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-15ck31v { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 0; }\",\".framer-RGoJW.framer-v-1ibq6ns .framer-1gdxfvi { justify-content: flex-start; order: 1; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1037\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eew8buTBj\":{\"layout\":[\"fixed\",\"auto\"]},\"Pku5PMGAC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZMdft2IVB=withCSS(Component,css,\"framer-RGoJW\");export default FramerZMdft2IVB;FramerZMdft2IVB.displayName=\"Footer\";FramerZMdft2IVB.defaultProps={height:1037,width:1200};addPropertyControls(FramerZMdft2IVB,{variant:{options:[\"FKdHRih8Z\",\"eew8buTBj\",\"Pku5PMGAC\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZMdft2IVB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ProductCardFonts,...TickerFonts,...ButtonContactFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZMdft2IVB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eew8buTBj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pku5PMGAC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1037\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZMdft2IVB.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "u4Gvws9gv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerI5pQbTlXw", "withCSS", "I5pQbTlXw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LabelsFonts", "getFonts", "I5pQbTlXw_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "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", "isDisplayed3", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "SVG", "css", "FramerfOaATCUPE", "withCSS", "fOaATCUPE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProductCardFonts", "getFonts", "fOaATCUPE_default", "TickerFonts", "Ticker", "ButtonContactFormFonts", "u9pEKDPqz_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "formVariants", "form", "currentVariant", "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", "LayoutGroup", "u", "Link", "SVG", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramerZMdft2IVB", "withCSS", "ZMdft2IVB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
