{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/saDkhXLVr9j6W5SUH52W/IwVfiQX6vInnuoy2ijxg/Xo8l2Ic_P.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Carousel1 from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Navigation from\"#framer/local/canvasComponent/eTEYY5VeP/eTEYY5VeP.js\";import metadataProvider from\"#framer/local/webPageMetadata/Xo8l2Ic_P/Xo8l2Ic_P.js\";const CarouselFonts=getFonts(Carousel);const Carousel1Fonts=getFonts(Carousel1);const NavigationFonts=getFonts(Navigation);const breakpoints={bGYmzp0Ua:\"(max-width: 809px)\",wXgmJxdWG:\"(min-width: 810px) and (max-width: 1439px)\",xIUFId72V:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-622bu\";const variantClassNames={bGYmzp0Ua:\"framer-v-3lasd\",wXgmJxdWG:\"framer-v-12mzcyi\",xIUFId72V:\"framer-v-vlkg60\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"xIUFId72V\",Phone:\"bGYmzp0Ua\",Tablet:\"wXgmJxdWG\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"xIUFId72V\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-622bu`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-622bu`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"wXgmJxdWG\",\"bGYmzp0Ua\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"bGYmzp0Ua\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"wXgmJxdWG\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"bGYmzp0Ua\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"wXgmJxdWG\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"xIUFId72V\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vlkg60\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yk0lfd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b0eo6h\",\"data-framer-name\":\"How Levl works\",name:\"How Levl works\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-199raah hidden-12mzcyi hidden-3lasd\",\"data-framer-name\":\"MODULE - FOOTER\",name:\"MODULE - FOOTER\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qfc1s\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(10549),pixelHeight:532,pixelWidth:913,positionX:\"center\",positionY:\"center\",sizes:\"315px\",src:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png\",srcSet:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png 913w\"},className:\"framer-nlamo1\",\"data-framer-name\":\"Logo\",name:\"Logo\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[\"hello@findlevl.com\",/*#__PURE__*/_jsx(\"br\",{}),\"(347) 770-2447\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"19 Morris Avenue\",/*#__PURE__*/_jsx(\"br\",{}),\"Brooklyn, NY 11205\"]})]}),className:\"framer-12qk93\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:/*#__PURE__*/_jsxs(\"code\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/privacy-policy\",nodeId:\"wqYPR4QLx\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"PRIVACY POLICY\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/terms-of-service\",nodeId:\"wqYPR4QLx\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"TERMS AND CONDITIONS\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/cookies\",nodeId:\"wqYPR4QLx\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"COOKIES\"})})]})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:/*#__PURE__*/_jsx(\"code\",{children:\"2024 \\xa9 COPYRIGHT LEVL HEALTH, LEVL\\xae \"})})]}),className:\"framer-d9i75t\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jxaf9 hidden-vlkg60 hidden-12mzcyi\",\"data-framer-name\":\"MODULE - FOOTER\",name:\"MODULE - FOOTER\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j2m00e\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(15927.5),pixelHeight:532,pixelWidth:913,positionX:\"center\",positionY:\"center\",sizes:\"304px\",src:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png\",srcSet:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png 913w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:532,pixelWidth:913,positionX:\"center\",positionY:\"center\",sizes:\"304px\",src:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png\",srcSet:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png 913w\"},className:\"framer-d83prq\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(\"code\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/privacy-policy\",nodeId:\"MQcNYWuaE\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"PRIVACY POLICY\"})}),\" \"]})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(\"code\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/terms-of-service\",nodeId:\"MQcNYWuaE\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"TERMS AND CONDITIONS\"})}),\" \"]})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"code\",{children:/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/cookies\",nodeId:\"MQcNYWuaE\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"COOKIES\"})})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"code\",{children:\"2024 \\xa9 COPYRIGHT LEVL HEALTH, LEVL\\xae \"})})]}),className:\"framer-191lmn5\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[\"hello@findlevl.com\",/*#__PURE__*/_jsx(\"br\",{}),\"(347) 770-2447\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"19 Morris Avenue\",/*#__PURE__*/_jsx(\"br\",{}),\"Brooklyn, NY 11205\"]})]}),className:\"framer-fozhpw\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dstxd3 hidden-12mzcyi\",\"data-framer-name\":\"MODULE - RECAP\",name:\"MODULE - RECAP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1av2ufr\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qwtxy\",\"data-framer-name\":\"TEXT BOXES\",name:\"TEXT BOXES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13q4k55\",\"data-framer-name\":\"ADVOCATE\",name:\"ADVOCATE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ky87bi\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\"},children:\"Become an advocate of your own mental health journey \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Become an advocate of your own mental health journey \"})}),className:\"framer-3ayzms\",\"data-framer-name\":\"Become an advocate of your own mental health journey\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Become an advocate of your own mental health journey\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Speak to your doctor with confidence about the experience you are having\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\"},children:\"Speak to your doctor with confidence about the experience you are having\"})}),className:\"framer-anyhw0\",\"data-framer-name\":\"Speak to your doctor with confidence about the experience you are having\",fonts:[\"Inter-Light\"],name:\"Speak to your doctor with confidence about the experience you are having\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xkr6z4\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5rhzl6\",\"data-framer-name\":\"OPTIMAL\",name:\"OPTIMAL\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2iu6t\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\"},children:\"Reach your optimal medication and dosage, faster\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Reach your optimal medication and dosage, faster\"})}),className:\"framer-1j9g2q0\",\"data-framer-name\":\"Reach your optimal medication and dosage, faster\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Reach your optimal medication and dosage, faster\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Helps you to adjust dosage, to find a balance between efficacy and effects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\"},children:\"Helps you to adjust dosage, to find a balance between efficacy and effects\"})}),className:\"framer-1s0zjto\",\"data-framer-name\":\"Helps you to adjust dosage, to find a balance between efficacy and effects\",fonts:[\"Inter-Light\"],name:\"Helps you to adjust dosage, to find a balance between efficacy and effects\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17k23j2\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rmbhe8\",\"data-framer-name\":\"CONFIDENT\",name:\"CONFIDENT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54ea4x\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\"},children:\"Be confident your medication is working\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Be confident your medication is working\"})}),className:\"framer-6jwnne\",\"data-framer-name\":\"Be confident your medication is working\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Be confident your medication is working\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Helps you to understand the effects your medication is having on your body\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\"},children:\"Helps you to understand the effects your medication is having on your body\"})}),className:\"framer-15a1mrj\",\"data-framer-name\":\"Helps you to understand the effects your medication is having on your body\",fonts:[\"Inter-Light\"],name:\"Helps you to understand the effects your medication is having on your body\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qowz97\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t2ybpz\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3nf6ha\",\"data-framer-name\":\"side-buttons\",name:\"side-buttons\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cocdeo\",\"data-framer-name\":\"btn\",name:\"btn\",style:{rotate:-180},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l72ozm\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-167c4h3\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-143c26z\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6i9ih\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6vys31\",\"data-framer-name\":\"highlight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:2,name:\"highlight\",style:{rotate:180},svg:'<svg width=\"2\" height=\"20\" viewBox=\"0 0 2 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_1819_17950)\">\\n<path d=\"M1.02344 18.9102C1.02344 19.1863 0.79958 19.4102 0.523437 19.4102V19.4102C0.247295 19.4102 0.0234366 19.1863 0.0234366 18.9102L0.0234375 0.410156L1.02344 0.410156L1.02344 18.9102Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_1819_17950\" x=\"-0.976562\" y=\"-0.589844\" width=\"3\" height=\"21\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.5\" result=\"effect1_foregroundBlur_1819_17950\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e1h8ax\",\"data-framer-name\":\"highlight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:2,name:\"highlight\",style:{rotate:180},svg:'<svg width=\"2\" height=\"92\" viewBox=\"0 0 2 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_1819_17951)\">\\n<path d=\"M1.02344 91.4102L0.0234324 91.4102L0.0234375 0.910153C0.0234375 0.63401 0.247296 0.410156 0.52344 0.410156V0.410156C0.799584 0.410156 1.02344 0.634015 1.02344 0.910159L1.02344 91.4102Z\" fill=\"white\" fill-opacity=\"0.8\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_1819_17951\" x=\"-0.976562\" y=\"-0.589844\" width=\"3\" height=\"93\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.5\" result=\"effect1_foregroundBlur_1819_17951\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpd5ze\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pxu6hh\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eozc76\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dcf613\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u1u0om\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8qdchp\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdduz6\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l37747\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgoftx\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gbng3p\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10foh51\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3mnm2g\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y0wgp8\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w0fdk0\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9e48a\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n9htya\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vo1sad\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16d8q7d\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h8facu\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8570bg\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ugmam\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1erxi5w\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vtaohf\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1irac4h\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkwyk1\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g4jy69\",\"data-framer-name\":\"titanium-frame\",name:\"titanium-frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ei2j6\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ex8mw\",\"data-border\":true,\"data-framer-name\":\"shadow-outer\",name:\"shadow-outer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ytzj0c\",\"data-border\":true,\"data-framer-name\":\"shadow-outer\",name:\"shadow-outer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ukh3f\",\"data-border\":true,\"data-framer-name\":\"shadow-inner\",name:\"shadow-inner\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-maszxs\",\"data-border\":true,\"data-framer-name\":\"highlight-inner\",name:\"highlight-inner\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16a7b22\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-150ut9l\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\",style:{rotate:-90}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8381vs\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bt21fg\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xskcbc\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13spoii\",\"data-framer-name\":\"screen-frame\",name:\"screen-frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asaxbq\",\"data-framer-name\":\"screen-border\",name:\"screen-border\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xswvc7\",\"data-border\":true,\"data-framer-name\":\"screen-border\",name:\"screen-border\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15nesrr\",\"data-framer-name\":\"screen-here\",name:\"screen-here\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h8x25i\",\"data-framer-name\":\"screen\",name:\"screen\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovm26d\",\"data-framer-name\":\"Insights - symptoms and adherence\",name:\"Insights - symptoms and adherence\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ev8ned\",\"data-framer-name\":\"Frame 56\",name:\"Frame 56\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s9mmhm\",\"data-framer-name\":\"Group 212\",name:\"Group 212\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a6945y\",\"data-framer-name\":\"Rectangle 766\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:246,intrinsicWidth:193,name:\"Rectangle 766\",svg:'<svg width=\"193\" height=\"246\" viewBox=\"0 0 193 246\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"67.9355\" y=\"0.419922\" width=\"130.76\" height=\"214.542\" rx=\"12\" transform=\"rotate(18.2688 67.9355 0.419922)\" fill=\"#D6D6D7\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1odq5um\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aa8hh4\",\"data-framer-name\":\"Group 29614004\",name:\"Group 29614004\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtOTAw\",\"--framer-font-family\":'\"Greed TRIAL\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Optimum dosage\"})}),className:\"framer-hdha2q\",\"data-framer-name\":\"Optimum dosage\",fonts:[\"GF;Greed TRIAL-900\"],name:\"Optimum dosage\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15euzoy\",\"data-framer-name\":\"Header - back button\",name:\"Header - back button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z7d9kk\",\"data-framer-name\":\"Ellipse 254\",name:\"Ellipse 254\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gze8g7\",\"data-framer-name\":\"Vector 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:11,name:\"Vector 26\",svg:'<svg width=\"11\" height=\"19\" viewBox=\"-1 -1 11 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.44434 0.410156L0.444336 8.41016L8.44434 16.4102\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-knmx0b\",\"data-framer-name\":\"Rectangle 33722\",name:\"Rectangle 33722\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qx6xv6\",\"data-framer-name\":\"Rectangle 33723\",name:\"Rectangle 33723\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsspha\",\"data-framer-name\":\"Group 388\",name:\"Group 388\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pw1qpj\",\"data-framer-name\":\"Group 270\",name:\"Group 270\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45xjol\",\"data-framer-name\":\"Daily Journal\",name:\"Daily Journal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1inbpy5\",\"data-framer-name\":\"Group 15098\",name:\"Group 15098\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(118, 66, 254)\"},children:\"Medication insights\"})}),className:\"framer-22csoc\",\"data-framer-name\":\"Medication insights\",fonts:[\"Inter-Medium\"],name:\"Medication insights\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nd3uz5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"Frame\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1819_18031)\">\\n<path d=\"M6.14355 12.3887C6.54124 12.3891 6.92251 12.5473 7.20371 12.8285C7.48492 13.1097 7.6431 13.491 7.64355 13.8887C7.64355 14.0213 7.69623 14.1485 7.79 14.2422C7.88377 14.336 8.01095 14.3887 8.14355 14.3887C8.27616 14.3887 8.40334 14.336 8.49711 14.2422C8.59088 14.1485 8.64355 14.0213 8.64355 13.8887C8.64401 13.491 8.80219 13.1097 9.0834 12.8285C9.3646 12.5473 9.74587 12.3891 10.1436 12.3887H14.1436C14.4087 12.3884 14.6629 12.2829 14.8503 12.0954C15.0378 11.908 15.1433 11.6538 15.1436 11.3887V3.38867C15.1433 3.12355 15.0378 2.86937 14.8503 2.6819C14.6629 2.49443 14.4087 2.38898 14.1436 2.38867H11.1436C10.4807 2.38942 9.8453 2.65306 9.37662 3.12174C8.90794 3.59041 8.64431 4.22586 8.64355 4.88867V9.88867C8.64355 10.0213 8.59088 10.1485 8.49711 10.2422C8.40334 10.336 8.27616 10.3887 8.14355 10.3887C8.01095 10.3887 7.88377 10.336 7.79 10.2422C7.69623 10.1485 7.64355 10.0213 7.64355 9.88867V4.88867C7.6428 4.22586 7.37917 3.59041 6.91049 3.12174C6.44181 2.65306 5.80636 2.38942 5.14355 2.38867H2.14355C1.87843 2.38898 1.62425 2.49443 1.43678 2.6819C1.24931 2.86937 1.14386 3.12355 1.14355 3.38867V11.3887C1.14386 11.6538 1.24931 11.908 1.43678 12.0954C1.62425 12.2829 1.87843 12.3884 2.14355 12.3887H6.14355Z\" fill=\"#7642FE\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1819_18031\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.143555 0.388672)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNjAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Your optimal dosage is 60mg once daily\"})}),className:\"framer-11isce6\",\"data-framer-name\":\"Your optimal dosage is 60mg once daily\",fonts:[\"GF;Greed TRIAL-600\"],name:\"Your optimal dosage is 60mg once daily\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bq3p38\",\"data-framer-name\":\"Group 29614086\",name:\"Group 29614086\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12x7duz\",\"data-framer-name\":\"Group 29614085\",name:\"Group 29614085\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11k2r9i\",\"data-framer-name\":\"Group 29614084\",name:\"Group 29614084\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hqc79g\",\"data-framer-name\":\"Component 1\",name:\"Component 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k8qt5k\",\"data-framer-name\":\"Ellipse 267\",name:\"Ellipse 267\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y9wb48\",\"data-framer-name\":\"Group 29614009\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,name:\"Group 29614009\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.68112 0.622372V10.2702H17.1664\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M0.195835 10.2702H8.68112V19.918\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Add note for your physician visit\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"November 8, 2:30pm\"})]}),className:\"framer-8b3ml2\",\"data-framer-name\":\"Add note for your physician visit November 8, 2:30pm\",fonts:[\"Inter-SemiBold\"],name:\"Add note for your physician visit November 8, 2:30pm\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"This dosage allows you to optimize symptom management and side effects\"})}),className:\"framer-55hf6k\",\"data-framer-name\":\"This dosage allows you to optimize symptom management and side effects\",fonts:[\"Inter\"],name:\"This dosage allows you to optimize symptom management and side effects\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cvavji\",\"data-framer-name\":\"Frame 55\",name:\"Frame 55\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"See optimal dosage for people like me\"})}),className:\"framer-nvifx2\",\"data-framer-name\":\"See optimal dosage for people like me\",fonts:[\"Inter-SemiBold\"],name:\"See optimal dosage for people like me\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123qwty\",\"data-framer-name\":\"Group 29613999\",name:\"Group 29613999\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xed2uo\",\"data-framer-name\":\"Rectangle 33720\",name:\"Rectangle 33720\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yx8wt0\",\"data-framer-name\":\"Rectangle 33745\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:165,intrinsicWidth:308,name:\"Rectangle 33745\",svg:'<svg width=\"308\" height=\"165\" viewBox=\"0 0 308 165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.662109 52.9663L48.9941 49.9755L102.495 28.0437L153.669 22.2285L207.003 0.628917L256.516 32.1975L307.642 30.8683V64.9541V68.0514V75.8876V83.5622V78.2304V73.5448V70.3134V65.7894V83.5622V103.691V164.112L94.3136 162.897L0.662109 164.064V52.9663Z\" fill=\"url(#paint0_linear_1819_18045)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18045\" x1=\"154.152\" y1=\"-29.4899\" x2=\"154.152\" y2=\"163.458\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DFFBD0\"/>\\n<stop offset=\"1\" stop-color=\"#DFFBD0\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kn2etz\",\"data-framer-name\":\"Rectangle 33746\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:308,name:\"Rectangle 33746\",svg:'<svg width=\"308\" height=\"89\" viewBox=\"0 0 308 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.651367 0.242188V88.0621L94.3141 86.8965L307.296 87.7485V37.2381L256.756 36.5652L205.056 42.3968H153.806L101.546 30.5093L48.3761 21.6643L0.651367 0.242188Z\" fill=\"url(#paint0_linear_1819_18046)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18046\" x1=\"153.974\" y1=\"0.242188\" x2=\"153.974\" y2=\"87.4067\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EADFF9\"/>\\n<stop offset=\"1\" stop-color=\"#EADFF9\" stop-opacity=\"0.4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nj55fm\",\"data-framer-name\":\"Group 29613999\",name:\"Group 29613999\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g6h37l\",\"data-framer-name\":\"Group 29613998\",name:\"Group 29613998\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152j91l\",\"data-framer-name\":\"Group 15210\",name:\"Group 15210\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g364ug\",\"data-framer-name\":\"Line 29\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 29\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.538086\" y1=\"209.588\" x2=\"0.538095\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Jan\"})}),className:\"framer-1ewmlne\",\"data-framer-name\":\"Jan\",fonts:[\"Inter-SemiBold\"],name:\"Jan\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Feb\"})}),className:\"framer-144ilnn\",\"data-framer-name\":\"Feb\",fonts:[\"Inter-SemiBold\"],name:\"Feb\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Mar\"})}),className:\"framer-3r2bek\",\"data-framer-name\":\"Mar\",fonts:[\"Inter-SemiBold\"],name:\"Mar\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Apr\"})}),className:\"framer-f79n58\",\"data-framer-name\":\"Apr\",fonts:[\"Inter-SemiBold\"],name:\"Apr\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ixynpb\",\"data-framer-name\":\"Line 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 20\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"1.08789\" x2=\"349.682\" y2=\"1.08789\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f0chf2\",\"data-framer-name\":\"Line 31\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 31\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.21973\" y1=\"209.588\" x2=\"1.21974\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oqtv6g\",\"data-framer-name\":\"Line 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 26\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.609375\" y1=\"209.588\" x2=\"0.609384\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6a0n09\",\"data-framer-name\":\"Line 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 27\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.878906\" y1=\"209.588\" x2=\"0.878916\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-104wuhf\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 21\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"0.560547\" x2=\"349.682\" y2=\"0.560547\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bbhyxu\",\"data-framer-name\":\"Line 22\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 22\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"1.03418\" x2=\"349.682\" y2=\"1.03418\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g7acd8\",\"data-framer-name\":\"Group 29613996\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:313,name:\"Group 29613996\",svg:'<svg width=\"313\" height=\"128\" viewBox=\"0 0 313 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.06593 79.7153C0.56334 79.4864 -0.0296964 79.7082 -0.258654 80.2108C-0.487612 80.7134 -0.26579 81.3064 0.2368 81.5354L1.06593 79.7153ZM49.0962 101.596L1.06593 79.7153L0.2368 81.5354L48.2671 103.416L49.0962 101.596Z\" fill=\"#7642FE\"/>\\n<path d=\"M102.304 111.495C102.85 111.576 103.359 111.199 103.44 110.653C103.522 110.107 103.145 109.598 102.598 109.517L102.304 111.495ZM48.5345 103.495L102.304 111.495L102.598 109.517L48.8288 101.517L48.5345 103.495Z\" fill=\"#7642FE\"/>\\n<path d=\"M102.677 109.532C102.139 109.407 101.602 109.742 101.477 110.28C101.352 110.818 101.687 111.355 102.225 111.48L102.677 109.532ZM154.408 121.532L102.677 109.532L102.225 111.48L153.956 123.48L154.408 121.532Z\" fill=\"#7642FE\"/>\\n<path d=\"M256.427 117.46C256.976 117.395 257.368 116.898 257.303 116.349C257.238 115.801 256.74 115.409 256.192 115.474L256.427 117.46ZM205.497 123.499L256.427 117.46L256.192 115.474L205.261 121.513L205.497 123.499Z\" fill=\"#7642FE\"/>\\n<path d=\"M153.683 121.428C153.131 121.428 152.682 121.875 152.682 122.427C152.681 122.979 153.128 123.428 153.68 123.428L153.683 121.428ZM205.38 121.506L153.683 121.428L153.68 123.428L205.377 123.506L205.38 121.506Z\" fill=\"#7642FE\"/>\\n<path d=\"M307.276 118.506C307.828 118.517 308.285 118.078 308.296 117.526C308.307 116.973 307.868 116.517 307.316 116.506L307.276 118.506ZM256.432 117.506L307.276 118.506L307.316 116.506L256.471 115.506L256.432 117.506Z\" fill=\"#7642FE\"/>\\n<line x1=\"0.0185311\" y1=\"56.5087\" x2=\"48.3447\" y2=\"53.5288\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"102.806\" y1=\"33.3636\" x2=\"49.0365\" y2=\"53.7714\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"102.355\" y1=\"31.4334\" x2=\"153.93\" y2=\"26.4334\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"205.771\" y1=\"5.341\" x2=\"154.073\" y2=\"27.3487\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"205.91\" y1=\"3.57384\" x2=\"256.983\" y2=\"35.6203\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<path d=\"M256.31 35.8623L307.72 34.5058\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<circle cx=\"205.451\" cy=\"5.50586\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"256.451\" cy=\"36.4668\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"153.951\" cy=\"26.4287\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"102.451\" cy=\"32.4287\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"48.6816\" cy=\"53.4668\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"205.451\" cy=\"122.429\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"102.451\" cy=\"110.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"307.451\" cy=\"117.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"256.451\" cy=\"116.467\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"153.951\" cy=\"122.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"48.6816\" cy=\"102.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"307.45\" cy=\"34.5059\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ljvbp0\",\"data-framer-name\":\"Line 33\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:8,name:\"Line 33\",svg:'<svg width=\"8\" height=\"113\" viewBox=\"-2 -2 8 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.93457 2.06598C3.93457 1.23755 3.263 0.565977 2.43458 0.565977C1.60615 0.565977 0.934575 1.23755 0.934575 2.06598L3.93457 2.06598ZM3.93457 108.088L3.93457 2.06598L0.934575 2.06598L0.93457 108.088L3.93457 108.088Z\" fill=\"url(#paint0_linear_1819_18087)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18087\" x1=\"4.43457\" y1=\"2.06598\" x2=\"4.43457\" y2=\"108.088\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"30mg\"})}),className:\"framer-1hpa77e\",\"data-framer-name\":\"30mg\",fonts:[\"Inter-SemiBold\"],name:\"30mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bbnasy\",\"data-framer-name\":\"Line 34\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:184,intrinsicWidth:8,name:\"Line 34\",svg:'<svg width=\"8\" height=\"184\" viewBox=\"-2 -2 8 184\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19727 1.50622C3.19727 0.677796 2.5257 0.00622312 1.69727 0.00622308C0.868846 0.00622305 0.197273 0.677796 0.197273 1.50622L3.19727 1.50622ZM3.19727 179.588L3.19727 1.50622L0.197273 1.50622L0.197266 179.588L3.19727 179.588Z\" fill=\"url(#paint0_linear_1819_18089)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18089\" x1=\"3.69727\" y1=\"1.50623\" x2=\"3.69727\" y2=\"179.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"55mg\"})}),className:\"framer-14jtd5x\",\"data-framer-name\":\"55mg\",fonts:[\"Inter-SemiBold\"],name:\"55mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18s4fp1\",\"data-framer-name\":\"Line 35\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:223,intrinsicWidth:8,name:\"Line 35\",svg:'<svg width=\"8\" height=\"223\" viewBox=\"-2 -2 8 223\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19728 2.05212C3.19728 1.2237 2.5257 0.552124 1.69728 0.552124C0.868848 0.552124 0.197275 1.2237 0.197275 2.05212L3.19728 2.05212ZM3.19727 218.588L3.19728 2.05212L0.197275 2.05212L0.197266 218.588L3.19727 218.588Z\" fill=\"url(#paint0_linear_1819_18091)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18091\" x1=\"3.69728\" y1=\"2.05212\" x2=\"3.69727\" y2=\"218.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"70mg\"})}),className:\"framer-1d2335u\",\"data-framer-name\":\"70mg\",fonts:[\"Inter-SemiBold\"],name:\"70mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-184c686\",\"data-framer-name\":\"Line 36\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:199,intrinsicWidth:8,name:\"Line 36\",svg:'<svg width=\"8\" height=\"199\" viewBox=\"-2 -2 8 199\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19727 1.62897C3.19727 0.800546 2.5257 0.128974 1.69727 0.128974C0.868847 0.128973 0.197274 0.800546 0.197274 1.62897L3.19727 1.62897ZM3.19727 194.588L3.19727 1.62897L0.197274 1.62897L0.197266 194.588L3.19727 194.588Z\" fill=\"url(#paint0_linear_1819_18093)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18093\" x1=\"3.69727\" y1=\"1.62897\" x2=\"3.69727\" y2=\"194.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"60mg\"})}),className:\"framer-8kr1pc\",\"data-framer-name\":\"60mg\",fonts:[\"Inter-SemiBold\"],name:\"60mg\",verticalAlignment:\"bottom\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Side effects\"})}),className:\"framer-1a7bdeg\",\"data-framer-name\":\"Side effects\",fonts:[\"Inter-SemiBold\"],name:\"Side effects\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Symptoms\"})}),className:\"framer-wyckvf\",\"data-framer-name\":\"Symptoms\",fonts:[\"Inter-SemiBold\"],name:\"Symptoms\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jvxrch\",\"data-framer-name\":\"Rectangle 782\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,name:\"Rectangle 782\",svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.952148 2.58008C0.952148 1.47551 1.84758 0.580078 2.95215 0.580078H12.9521C14.0567 0.580078 14.9521 1.47551 14.9521 2.58008V12.5801C14.9521 13.6846 14.0567 14.5801 12.9521 14.5801H2.95215C1.84758 14.5801 0.952148 13.6846 0.952148 12.5801V2.58008Z\" fill=\"#7642FE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mtdjxr\",\"data-framer-name\":\"Rectangle 783\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,name:\"Rectangle 783\",svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.952148 2.58008C0.952148 1.47551 1.84758 0.580078 2.95215 0.580078H12.9521C14.0567 0.580078 14.9521 1.47551 14.9521 2.58008V12.5801C14.9521 13.6846 14.0567 14.5801 12.9521 14.5801H2.95215C1.84758 14.5801 0.952148 13.6846 0.952148 12.5801V2.58008Z\" fill=\"#63B635\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysrko6\",\"data-framer-name\":\"Group 29614130\",name:\"Group 29614130\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8br8m\",\"data-border\":true,\"data-framer-name\":\"Ellipse 254\",name:\"Ellipse 254\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14luvta\",\"data-border\":true,\"data-framer-name\":\"Ellipse 261\",name:\"Ellipse 261\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yz9d5n\",\"data-framer-name\":\"dynamic-island\",name:\"dynamic-island\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xzzcfm\",\"data-framer-name\":\"cutout\",name:\"cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x04vx0\",\"data-framer-name\":\"camera-cutout\",name:\"camera-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p5ywe6\",\"data-framer-name\":\"lens\",name:\"lens\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i5fkhx\",\"data-framer-name\":\"sensor\",name:\"sensor\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ecz57n\",\"data-framer-name\":\"sensor\",name:\"sensor\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e4x046\",\"data-framer-name\":\"ui-icons\",name:\"ui-icons\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1f1qbv5\",\"data-framer-name\":\"icons-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:76,name:\"icons-right\",svg:'<svg width=\"76\" height=\"14\" viewBox=\"0 0 76 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.35\" d=\"M52.0234 0.937699H69.0234C70.9412 0.937699 72.4959 2.49237 72.4959 4.41016V9.41016C72.4959 11.3279 70.9412 12.8826 69.0234 12.8826H52.0234C50.1057 12.8826 48.551 11.3279 48.551 9.41016V4.41016C48.551 2.49237 50.1057 0.937699 52.0234 0.937699Z\" stroke=\"white\" stroke-width=\"1.05509\"/>\\n<path opacity=\"0.4\" d=\"M74.0234 5.41016V9.6305C74.8725 9.27306 75.4246 8.44156 75.4246 7.52033C75.4246 6.5991 74.8725 5.76759 74.0234 5.41016\" fill=\"white\"/>\\n<path d=\"M50.0234 4.41016C50.0234 3.30559 50.9189 2.41016 52.0234 2.41016H69.0234C70.128 2.41016 71.0234 3.30559 71.0234 4.41016V9.41016C71.0234 10.5147 70.128 11.4102 69.0234 11.4102H52.0234C50.9189 11.4102 50.0234 10.5147 50.0234 9.41016V4.41016Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.5239 2.99768C35.9905 2.99779 38.3627 3.96521 40.1503 5.69997C40.2849 5.83391 40.5001 5.83222 40.6327 5.69619L41.9194 4.37061C41.9866 4.30161 42.024 4.20816 42.0234 4.11092C42.0229 4.01368 41.9844 3.92068 41.9165 3.85249C37.2246 -0.73729 29.8225 -0.73729 25.1306 3.85249C25.0626 3.92063 25.0241 4.0136 25.0234 4.11084C25.0228 4.20808 25.0602 4.30156 25.1273 4.37061L26.4144 5.69619C26.5469 5.83242 26.7622 5.83411 26.8968 5.69997C28.6846 3.96509 31.0571 2.99768 33.5239 2.99768ZM33.5593 7.08251C34.9146 7.08243 36.2214 7.5966 37.226 8.52512C37.3618 8.6569 37.5759 8.65404 37.7083 8.51868L38.9936 7.1931C39.0613 7.12357 39.0988 7.02925 39.0979 6.93123C39.0969 6.83322 39.0575 6.73969 38.9884 6.67158C35.9293 3.76699 31.192 3.76699 28.1329 6.67158C28.0638 6.73969 28.0244 6.83326 28.0235 6.93131C28.0225 7.02936 28.0602 7.12367 28.1281 7.1931L29.413 8.51868C29.5454 8.65404 29.7595 8.6569 29.8953 8.52512C30.8992 7.59721 32.205 7.08308 33.5593 7.08251ZM36.173 9.75283C36.175 9.85112 36.1371 9.94588 36.0684 10.0147L33.8451 12.305C33.7799 12.3723 33.6911 12.4102 33.5983 12.4102C33.5056 12.4102 33.4168 12.3723 33.3516 12.305L31.128 10.0147C31.0593 9.94583 31.0215 9.85104 31.0235 9.75275C31.0256 9.65446 31.0672 9.56138 31.1387 9.4955C32.5586 8.26965 34.6381 8.26965 36.058 9.4955C36.1294 9.56143 36.171 9.65454 36.173 9.75283Z\" fill=\"white\"/>\\n<path d=\"M10.0234 3.41016C10.0234 2.85787 10.4712 2.41016 11.0234 2.41016H12.0234C12.5757 2.41016 13.0234 2.85787 13.0234 3.41016V11.4102C13.0234 11.9624 12.5757 12.4102 12.0234 12.4102H11.0234C10.4712 12.4102 10.0234 11.9624 10.0234 11.4102V3.41016Z\" fill=\"white\"/>\\n<path d=\"M15.0234 1.41016C15.0234 0.857871 15.4712 0.410156 16.0234 0.410156H17.0234C17.5757 0.410156 18.0234 0.857872 18.0234 1.41016V11.4102C18.0234 11.9624 17.5757 12.4102 17.0234 12.4102H16.0234C15.4712 12.4102 15.0234 11.9624 15.0234 11.4102V1.41016Z\" fill=\"white\"/>\\n<path d=\"M5.02344 6.91016C5.02344 6.35787 5.47115 5.91016 6.02344 5.91016H7.02344C7.57572 5.91016 8.02344 6.35787 8.02344 6.91016V11.4102C8.02344 11.9624 7.57572 12.4102 7.02344 12.4102H6.02344C5.47115 12.4102 5.02344 11.9624 5.02344 11.4102V6.91016Z\" fill=\"white\"/>\\n<path d=\"M0.0234375 9.41016C0.0234375 8.85787 0.471153 8.41016 1.02344 8.41016H2.02344C2.57572 8.41016 3.02344 8.85787 3.02344 9.41016V11.4102C3.02344 11.9624 2.57572 12.4102 2.02344 12.4102H1.02344C0.471153 12.4102 0.0234375 11.9624 0.0234375 11.4102V9.41016Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mohh33\",\"data-framer-name\":\"icons-left\",name:\"icons-left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNjAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"9:41\"})}),className:\"framer-17ohylk\",\"data-framer-name\":\"9:41\",fonts:[\"GF;SF Pro Text-600\"],name:\"9:41\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Having all of this rich data at your fingertips empowers you to take control of your medication journey.\"})}),className:\"framer-o92f7n\",\"data-framer-name\":\"INTRO\",fonts:[\"GF;Greed TRIAL-700\"],name:\"INTRO\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4my7l hidden-12mzcyi\",\"data-framer-name\":\"MODULE - BECOME AN ADVOCATE\",name:\"MODULE - BECOME AN ADVOCATE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(12105.5),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 1577px)\",src:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png\",srcSet:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png 3494w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8055.5),positionX:\"center\",positionY:\"center\",sizes:\"1746px\",src:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png\",srcSet:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png 3494w\"},className:\"framer-191enkc\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4563ww\",\"data-framer-name\":\"BLUR\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:811,intrinsicWidth:1440,name:\"BLUR\",svg:'<svg width=\"1440\" height=\"811\" viewBox=\"0 0 1440 811\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_1825_18963)\">\\n<path d=\"M0 0.607422H1440V810.607H0V0.607422Z\" fill=\"#D9E3EC\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_1825_18963\" x=\"-12\" y=\"-11.3926\" width=\"1464\" height=\"834\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"6\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_1825_18963\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_1825_18963\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Make the most of the time with your physician, by sharing an accurate perspective of your mental health experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Speak with confidence about your desired outcomes, whether that\u2019s changing dosage, managing side effects, or taking a pause from your medication.\"})]}),fonts:[\"Inter-Light\"],transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\"},children:\"Make the most of the time with your physician, by sharing an accurate perspective of your mental health experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\"},children:\"Speak with confidence about your desired outcomes, whether that\u2019s changing dosage, managing side effects, or taking a pause from your medication.\"})]}),className:\"framer-1gp02xy\",\"data-framer-name\":\"Make the most of the time with your physician, by sharing an accurate perspective of your mental health experience. Speak with confidence about your desired outcomes, whether that\u2019s changing dosage, managing side effects, or taking a pause from your medication.\",fonts:[\"Inter-Medium\"],name:\"Make the most of the time with your physician, by sharing an accurate perspective of your mental health experience. Speak with confidence about your desired outcomes, whether that\u2019s changing dosage, managing side effects, or taking a pause from your medication.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ynkfq2\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1b91q\",\"data-framer-name\":\"Rectangle 1133\",name:\"Rectangle 1133\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(12194.5849609375),sizes:\"354.2737px\",src:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png\",srcSet:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png 572w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8093.5849609375),sizes:\"354.2737px\",src:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png\",srcSet:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png 572w\"},className:\"framer-17nj596\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-06-09 a\u0300 09.57\",name:\"Capture d\u2019e\u0301cran 2024-06-09 a\u0300 09.57\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4a9h6g\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Become an advocate of your own mental health journey.\"})}),className:\"framer-1ituh03\",\"data-framer-name\":\"Become an advoate of your own mental health journey.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Become an advoate of your own mental health journey.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asc0yf hidden-12mzcyi\",\"data-framer-name\":\"MODULE - ADDITIONAL TRACKING\",name:\"MODULE - ADDITIONAL TRACKING\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eagsby\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19yhgnj\",\"data-framer-name\":\"INTRO\",name:\"INTRO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\"},children:\"Levl also tracks symptoms and dosage adherence, giving you a complete perspective on your mental health.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\"},children:\"Levl also tracks symptoms and dosage adherence, giving you a complete perspective on your mental health.\"})}),className:\"framer-ior9ux\",\"data-framer-name\":\"Title\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\"})}),fonts:[\"Inter-Light\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\"})}),className:\"framer-15j16y5\",\"data-framer-name\":\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\",fonts:[\"Inter-Medium\"],name:\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18wixwk-container hidden-vlkg60\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(49, 124, 6)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"si0gnxILU\",layoutId:\"si0gnxILU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgb(214, 228, 205)\",dotsBlur:4,dotsFill:\"rgb(49, 124, 6)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:16,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1652,pixelWidth:1014,sizes:\"338px\",src:\"https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png\",srcSet:\"https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png?scale-down-to=1024 628w,https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png 1014w\"},className:\"framer-wdb4w4\",\"data-framer-name\":\"SYMPTOMS\",name:\"SYMPTOMS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1652,pixelWidth:1015,positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png\",srcSet:\"https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png?scale-down-to=1024 629w,https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png 1015w\"},className:\"framer-cu6dcj\",\"data-framer-name\":\"ADHERENCE\",name:\"ADHERENCE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1652,pixelWidth:1015,sizes:\"338px\",src:\"https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png\",srcSet:\"https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png?scale-down-to=1024 629w,https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png 1015w\"},className:\"framer-1o7gb6h\",\"data-framer-name\":\"THERAPIES\",name:\"THERAPIES\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65ypln hidden-3lasd\",\"data-framer-name\":\"ADHERENCE\",name:\"ADHERENCE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nyp11\",\"data-framer-name\":\"BACKGROUND\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:552,intrinsicWidth:339,name:\"BACKGROUND\",svg:'<svg width=\"339\" height=\"552\" viewBox=\"0 0 339 552\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.128906 8.6123C0.128906 4.19402 3.71063 0.612305 8.12891 0.612305H330.129C334.547 0.612305 338.129 4.19403 338.129 8.6123V543.021C338.129 547.439 334.547 551.021 330.129 551.021H8.12891C3.71063 551.021 0.128906 547.439 0.128906 543.021V8.6123Z\" fill=\"#363636\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rdisix\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f3zkfb\",\"data-framer-name\":\"Rectangle 33769\",name:\"Rectangle 33769\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7401.5908203125),sizes:\"339.38px\",src:\"https://framerusercontent.com/images/YcjgO9d9igISzmD3ZR57N8TeaQ.png\",srcSet:\"https://framerusercontent.com/images/YcjgO9d9igISzmD3ZR57N8TeaQ.png 830w\"},className:\"framer-9leoee\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.31\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.31\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo1pim\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Track adherence\"})}),className:\"framer-k1ev4d\",\"data-framer-name\":\"Track adherence\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Track adherence\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"manually or via a connected pill dispenser.\"})}),className:\"framer-17bmmcp\",\"data-framer-name\":\"manually or via a connected pill dispenser.\",fonts:[\"Inter-Medium\"],name:\"manually or via a connected pill dispenser.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j35vit hidden-3lasd\",\"data-framer-name\":\"THERAPIES\",name:\"THERAPIES\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ss8dtf\",\"data-framer-name\":\"BACKGROUND\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:552,intrinsicWidth:339,name:\"BACKGROUND\",svg:'<svg width=\"339\" height=\"552\" viewBox=\"0 0 339 552\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.128906 8.6123C0.128906 4.19402 3.71063 0.612305 8.12891 0.612305H330.129C334.547 0.612305 338.129 4.19403 338.129 8.6123V543.021C338.129 547.439 334.547 551.02 330.129 551.02H8.12891C3.71063 551.02 0.128906 547.439 0.128906 543.02V8.6123Z\" fill=\"#363636\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aws65r\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvqeyp\",\"data-framer-name\":\"Rectangle 33771\",name:\"Rectangle 33771\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7292.2275390625),sizes:\"323.4109px\",src:\"https://framerusercontent.com/images/i1oL3rTLGmzP7Zg5ywDiTax7zQ.png\",srcSet:\"https://framerusercontent.com/images/i1oL3rTLGmzP7Zg5ywDiTax7zQ.png 830w\"},className:\"framer-qsiaam\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.51\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.51\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wdfzk\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Log other therapies\"})}),className:\"framer-1a2k5l6\",\"data-framer-name\":\"Log other therapies\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Log other therapies\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"that you have found to improve your mental health.\"})}),className:\"framer-4gxjzc\",\"data-framer-name\":\"that you have found to improve your mental health.\",fonts:[\"Inter-Medium\"],name:\"that you have found to improve your mental health.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15uj1ke hidden-3lasd\",\"data-framer-name\":\"SYMPTOMS\",name:\"SYMPTOMS\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sn6zkd\",\"data-framer-name\":\"BACKGROUND\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:552,intrinsicWidth:338,name:\"BACKGROUND\",svg:'<svg width=\"338\" height=\"552\" viewBox=\"0 0 338 552\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M-0.0078125 8.6123C-0.0078125 4.19402 3.57391 0.612305 7.99219 0.612305H329.992C334.41 0.612305 337.992 4.19403 337.992 8.6123V543.021C337.992 547.439 334.41 551.02 329.992 551.02H7.99219C3.57391 551.02 -0.0078125 547.439 -0.0078125 543.02V8.6123Z\" fill=\"#363636\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sldgsf\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kt11ef\",\"data-framer-name\":\"Rectangle 33770\",name:\"Rectangle 33770\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7293.591796875),sizes:\"324.5659px\",src:\"https://framerusercontent.com/images/HT5e3AWHPNQi962bOV2KBofze2s.png\",srcSet:\"https://framerusercontent.com/images/HT5e3AWHPNQi962bOV2KBofze2s.png 834w\"},className:\"framer-1848707\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.20\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 17.51.20\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rn5t0b\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Track symptoms\"})}),className:\"framer-1celxgz\",\"data-framer-name\":\"Track symptoms\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Track symptoms\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"through clinician-designed self-reporting questions.\"})}),className:\"framer-ue08ey\",\"data-framer-name\":\"through clinician-designed self-reporting questions.\",fonts:[\"Inter-Medium\"],name:\"through clinician-designed self-reporting questions.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oetzmy hidden-12mzcyi\",\"data-framer-name\":\"MODULE - WAYS TO MEASURE\",name:\"MODULE - WAYS TO MEASURE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\"},children:\"No connected scales or menstruation app? No problem. You can also self-report these data points.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\"},children:\"No connected scales or menstruation app? No problem. You can also self-report these data points.\"})}),className:\"framer-8sefgv\",\"data-framer-name\":\"No connected scales or menstruation app? No problem. You can also self-report these data points.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"No connected scales or menstruation app? No problem. You can also self-report these data points.\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xzfmla hidden-3lasd\",\"data-framer-name\":\"ANXIETY DEPRESSION\",name:\"ANXIETY DEPRESSION\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nl99jx\",\"data-framer-name\":\"DIAGRAM\",name:\"DIAGRAM\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kcylb7\",\"data-framer-name\":\"BACKGROUND\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:620,intrinsicWidth:1392,name:\"BACKGROUND\",svg:'<svg width=\"1392\" height=\"620\" viewBox=\"0 0 1392 620\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.482422 12.8931C0.482422 6.26564 5.85501 0.893066 12.4824 0.893066H1391.48V619.639H12.4824C5.85498 619.639 0.482422 614.267 0.482422 607.639V12.8931Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-df6hn7\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5851.357421875),sizes:\"229.8614px\",src:\"https://framerusercontent.com/images/Si2VYreoquuQjCMda3KCWkjupIw.png\",srcSet:\"https://framerusercontent.com/images/Si2VYreoquuQjCMda3KCWkjupIw.png 670w\"},className:\"framer-7zpk2d\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-1ne22y3\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1roj057\",\"data-framer-name\":\"APPLE HEALTH\",name:\"APPLE HEALTH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xo6g27\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"14\" viewBox=\"0 0 13 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.876 7.04053L3.59912 12.3965V1.68453L12.876 7.04053Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dacnms\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:305,name:\"Line 5\",svg:'<svg width=\"305\" height=\"5\" viewBox=\"-1 -1 305 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.155273\" y1=\"1.04053\" x2=\"302.832\" y2=\"1.0405\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-192oxtk\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:202,intrinsicWidth:154,name:\"Line 7\",svg:'<svg width=\"154\" height=\"202\" viewBox=\"-1 -1 154 202\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0504 26.625L62.4862 26.6251C73.5319 26.6252 82.4862 35.5795 82.4862 46.6251L82.4862 199.83\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-q0itlb\",\"data-framer-name\":\"Line 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:209,intrinsicWidth:160,name:\"Line 8\",svg:'<svg width=\"160\" height=\"209\" viewBox=\"-1 -1 160 209\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.0504 180.684L65.4863 180.683C76.532 180.683 85.4862 171.729 85.4863 160.684L85.4871 0.566176\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8karzk\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yukkg1\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bhrfu1\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6076.3916015625),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-hn5hyw\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qvma3\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-d5srd6\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-26xn2n\",\"data-framer-name\":\"SLEEP\",name:\"SLEEP\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-3zh2cj\",\"data-framer-name\":\"Rectangle 1126\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:282,name:\"Rectangle 1126\",svg:'<svg width=\"282\" height=\"111\" viewBox=\"0 0 282 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.749023 8.25049C0.749023 3.83221 4.33075 0.250488 8.74902 0.250488H273.788C278.206 0.250488 281.788 3.83221 281.788 8.25049V102.25C281.788 106.669 278.206 110.25 273.788 110.25H8.74903C4.33075 110.25 0.749023 106.669 0.749023 102.25V8.25049Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-101cj6z\",\"data-framer-name\":\"Group 15487\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:71,name:\"Group 15487\",svg:'<svg width=\"71\" height=\"70\" viewBox=\"0 0 71 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.1988 1.27821C22.0461 0.366035 20.4867 0.246393 19.2281 0.976978C6.85272 8.15131 -0.206081 21.4427 0.808178 35.6632C2.10698 53.8973 16.9329 68.6202 35.2947 69.9099C36.2039 69.9744 37.1087 70.0058 38.0085 70.0058C51.2896 70.0058 63.4581 63.1276 70.2238 51.6182C70.9587 50.3683 70.8399 48.8205 69.9205 47.675C69.0002 46.5295 67.5066 46.0705 66.1164 46.5015C62.3823 47.6615 58.4783 48.157 54.5178 47.9661C50.9845 47.7972 47.5196 47.0649 44.218 45.7904C42.6304 45.1761 41.5631 43.6241 41.5631 41.9271V39.4689C41.5631 36.1426 38.8382 33.4367 35.4895 33.4367H30.9198C29.4322 33.4367 28.0394 32.6297 27.2849 31.3306C24.6693 26.8275 23.1544 21.7244 22.9057 16.5738C22.7152 12.6392 23.2116 8.76395 24.3805 5.05587C24.8163 3.67446 24.3523 2.19123 23.1988 1.27821ZM25.769 32.1995C26.8354 34.0349 28.8093 35.1745 30.9198 35.1745H35.4895C37.8735 35.1745 39.8132 37.1006 39.8132 39.4689V41.9271C39.8132 44.3352 41.3281 46.538 43.5839 47.4094C47.0616 48.7527 50.712 49.524 54.434 49.7022C58.6099 49.9007 62.7096 49.3814 66.6393 48.1595C67.4861 47.8982 68.1817 48.297 68.5516 48.7586C68.9225 49.2202 69.1592 49.983 68.7131 50.7425C61.8261 62.4564 49.0517 69.1208 35.4177 68.1772C17.9207 66.9469 3.792 52.9164 2.55301 35.541C1.58746 21.9849 8.31472 9.31634 20.1099 2.47718C20.4055 2.30578 20.702 2.2362 20.9814 2.2362C21.4232 2.2362 21.8231 2.41184 22.1076 2.63755C22.5725 3.00582 22.9749 3.69737 22.7109 4.53657C21.4796 8.43981 20.9575 12.5178 21.1575 16.657C21.4198 22.0833 23.0142 27.4571 25.769 32.1995Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M13.0586 28.565C10.6601 29.3753 9.03402 31.5264 8.91696 34.0456C8.89474 34.5251 9.26815 34.9315 9.75092 34.9536C9.76459 34.9544 9.77827 34.9544 9.79194 34.9544C10.2568 34.9544 10.6438 34.5913 10.6652 34.1254C10.7489 32.3257 11.9093 30.7881 13.6225 30.2094C15.334 29.6333 17.1985 30.1441 18.3708 31.5196C18.6827 31.8861 19.2347 31.9337 19.6038 31.6222C19.973 31.3125 20.0191 30.7644 19.7072 30.3978C18.0675 28.4716 15.4562 27.7512 13.0586 28.565Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M70.669 12.4141C70.5724 12.1196 70.3263 11.8982 70.0222 11.8328L60.0445 9.68774L54.9065 0.927508C54.7493 0.66022 54.4613 0.495605 54.1503 0.495605C53.8393 0.495605 53.5513 0.660221 53.3941 0.927508L48.2553 9.68774L38.2776 11.8328C37.9734 11.8982 37.7274 12.1196 37.6308 12.4141C37.5342 12.7077 37.6035 13.031 37.8102 13.2609L44.6135 20.8213L43.5848 30.907C43.5531 31.2141 43.689 31.5154 43.9411 31.6969C44.1931 31.8794 44.5238 31.9133 44.8084 31.7894L54.1503 27.7021L63.4923 31.7894C63.6051 31.8386 63.7255 31.8633 63.8452 31.8633C64.0272 31.8633 64.2075 31.8073 64.3596 31.6969C64.6116 31.5154 64.7475 31.2141 64.7159 30.907L63.6871 20.8213L70.4895 13.2609C70.6963 13.0301 70.7655 12.7077 70.669 12.4141ZM62.1251 19.949C61.9619 20.1306 61.8824 20.3724 61.9072 20.6151L62.8232 29.5977L54.5032 25.9575C54.3904 25.9083 54.2708 25.8837 54.1503 25.8837C54.0298 25.8837 53.9102 25.9083 53.7974 25.9575L45.4774 29.5977L46.3934 20.6151C46.4182 20.3724 46.3387 20.1306 46.1755 19.949L40.1165 13.2159L49.003 11.305C49.2431 11.2533 49.4499 11.1039 49.5738 10.8927L54.1503 3.09126L58.726 10.8927C58.8499 11.1039 59.0567 11.2533 59.2968 11.305L68.1833 13.2159L62.1251 19.949Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M33.734 17.9814C33.2504 17.9814 32.859 18.3701 32.859 18.8503V21.9067H29.7812C29.2976 21.9067 28.9062 22.2954 28.9062 22.7756C28.9062 23.2559 29.2976 23.6445 29.7812 23.6445H32.859V26.7009C32.859 27.1812 33.2504 27.5698 33.734 27.5698C34.2177 27.5698 34.609 27.1812 34.609 26.7009V23.6445H37.6868C38.1704 23.6445 38.5618 23.2559 38.5618 22.7756C38.5618 22.2954 38.1704 21.9067 37.6868 21.9067H34.609V18.8503C34.609 18.3701 34.2177 17.9814 33.734 17.9814Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M54.8991 34.3828C54.4154 34.3828 54.0241 34.7714 54.0241 35.2517V38.3081H50.9463C50.4626 38.3081 50.0713 38.6967 50.0713 39.177C50.0713 39.6573 50.4626 40.0459 50.9463 40.0459H54.0241V43.1023C54.0241 43.5826 54.4154 43.9712 54.8991 43.9712C55.3827 43.9712 55.774 43.5826 55.774 43.1023V40.0459H58.8519C59.3355 40.0459 59.7268 39.6573 59.7268 39.177C59.7268 38.6967 59.3355 38.3081 58.8519 38.3081H55.774V35.2517C55.774 34.7714 55.3827 34.3828 54.8991 34.3828Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"Any connected \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"sleep tracker\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"such as\"})]}),className:\"framer-bovwou\",\"data-framer-name\":\"Any connected sleep tracker such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any connected sleep tracker such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-1x3zwj1\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-civnp1\",\"data-framer-name\":\"MENSTRUATION\",name:\"MENSTRUATION\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1d8h33m\",\"data-framer-name\":\"Rectangle 1127\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:306,name:\"Rectangle 1127\",svg:'<svg width=\"306\" height=\"111\" viewBox=\"0 0 306 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.714844 8.26611C0.714844 3.84783 4.29657 0.266113 8.71484 0.266113H297.078C301.496 0.266113 305.078 3.84784 305.078 8.26611V102.266C305.078 106.684 301.496 110.266 297.078 110.266H8.71484C4.29656 110.266 0.714844 106.684 0.714844 102.266V8.26611Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"Any \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"period tracker\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"  app such as\"})]})]}),className:\"framer-1kro2ol\",\"data-framer-name\":\"Any period tracker app such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any period tracker app such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Menstruation\"})}),className:\"framer-qv6mea\",\"data-framer-name\":\"Menstruation\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Menstruation\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-23q8m6\",\"data-framer-name\":\"ICON\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:69,name:\"ICON\",svg:'<svg width=\"69\" height=\"71\" viewBox=\"0 0 69 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.659 15.3235C22.4957 15.3235 24.8023 13.0889 24.8023 10.3406C24.8023 8.01618 22.0981 3.85525 20.6532 1.62068L20.229 0.952877C20.1097 0.760241 19.9108 0.593291 19.659 0.64466C19.4336 0.64466 19.2083 0.760241 19.0889 0.952877C18.9299 1.20972 18.731 1.53078 18.4924 1.89037C16.5703 4.89548 14.5156 8.27303 14.5156 10.3278C14.5156 13.0761 16.8222 15.3106 19.659 15.3106V15.3235ZM15.7749 10.7002C15.7749 9.86548 16.1063 8.76104 16.7957 7.32269C16.9547 7.00163 17.3392 6.86037 17.6706 7.01448C18.002 7.16858 18.1478 7.54101 17.9887 7.86207C17.3922 9.10778 17.0873 10.0581 17.0873 10.7002C17.0873 11.0598 16.7957 11.3424 16.4245 11.3424C16.0533 11.3424 15.7617 11.0598 15.7617 10.7002H15.7749Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M34.0789 15.3235C36.9157 15.3235 39.2222 13.0889 39.2222 10.3406C39.2222 8.01618 36.518 3.85525 35.0731 1.62068L34.6489 0.952877C34.5296 0.760241 34.2777 0.593291 34.0789 0.64466C33.8535 0.64466 33.6282 0.760241 33.5089 0.952877C33.3498 1.20972 33.151 1.51794 32.9123 1.89037C30.9902 4.89548 28.9355 8.27303 28.9355 10.3278C28.9355 13.0761 31.2421 15.3106 34.0789 15.3106V15.3235ZM30.1949 10.7002C30.1949 9.86548 30.5263 8.76104 31.2156 7.32269C31.3746 7.00163 31.7591 6.86037 32.0905 7.01448C32.4219 7.16858 32.5677 7.54101 32.4086 7.86207C31.8121 9.10778 31.5072 10.0581 31.5072 10.7002C31.5072 11.0598 31.2156 11.3424 30.8444 11.3424C30.4732 11.3424 30.1816 11.0598 30.1816 10.7002H30.1949Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M48.5047 15.3235C51.3414 15.3235 53.648 13.0889 53.648 10.3406C53.648 8.01618 50.9438 3.85525 49.4989 1.62068L49.0747 0.952877C48.9554 0.760241 48.73 0.593291 48.5047 0.64466C48.2793 0.64466 48.054 0.760241 47.9347 0.952877C47.7756 1.20972 47.5767 1.51794 47.3381 1.89037C45.416 4.89548 43.3613 8.27303 43.3613 10.3278C43.3613 13.0761 45.6679 15.3106 48.5047 15.3106V15.3235ZM44.6207 10.7002C44.6207 9.86548 44.9521 8.76104 45.6414 7.32269C45.8004 7.00163 46.1849 6.86037 46.5163 7.01448C46.8477 7.16858 46.9935 7.54101 46.8344 7.86207C46.2379 9.10778 45.933 10.0581 45.933 10.7002C45.933 11.0598 45.6414 11.3424 45.2702 11.3424C44.899 11.3424 44.6074 11.0598 44.6074 10.7002H44.6207Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M68.0694 42.9212C68.0694 42.9212 68.0694 42.8313 68.0694 42.7799C68.0694 42.7799 68.0694 42.7543 68.0694 42.7414C67.3138 39.2997 66.5582 36.0634 65.8159 32.9427C65.0868 29.8348 64.318 26.6242 63.5756 23.1953C63.5094 22.9 63.2442 22.6816 62.9261 22.6816H6.05781C5.75292 22.6816 5.47454 22.8871 5.40826 23.1825L0.927734 42.69C0.927734 42.69 0.927734 42.7157 0.927734 42.7286C0.927734 42.7286 0.927734 42.7286 0.927734 42.7414C0.927734 42.7414 0.927734 42.7543 0.927734 42.7671C0.927734 42.8056 0.927734 42.8442 0.927734 42.8827C0.927734 42.9341 0.927735 42.9726 0.940991 43.0239C0.940991 43.0368 0.940991 43.0496 0.954247 43.0625C0.980759 43.1524 1.03378 43.2423 1.11332 43.3065L24.6427 70.4039C24.6427 70.4039 24.7355 70.4681 24.7753 70.5066C24.8018 70.5323 24.8283 70.558 24.8681 70.5708C24.9609 70.6093 25.0537 70.635 25.1465 70.635H43.8507C43.9435 70.635 44.0495 70.6093 44.1291 70.5708C44.1556 70.558 44.1821 70.5323 44.2219 70.5066C44.2616 70.4809 44.3147 70.4552 44.3544 70.4039L67.9236 43.2551C67.9236 43.2551 67.9236 43.2423 67.9369 43.2294C67.9369 43.2294 67.9501 43.2294 67.9634 43.2166C67.9766 43.1909 67.9899 43.1524 68.0031 43.1267C68.0297 43.0882 68.0429 43.0496 68.0562 42.9983C68.0562 42.9597 68.0562 42.9212 68.0562 42.8955L68.0694 42.9212ZM44.1158 68.7215C43.2807 65.9604 43.1084 63.2764 43.6386 60.7336C45.3221 52.5273 54.1241 45.875 65.7629 43.7945L44.1158 68.7215ZM6.58805 23.9787H62.3959C62.8068 25.828 63.2045 27.6131 63.6154 29.3468H5.35524L6.58805 23.9787ZM24.8548 68.7087L3.24754 43.8202C14.714 45.952 23.4232 52.5915 25.1862 60.7464C25.7297 63.2764 25.6237 65.9604 24.8548 68.7087ZM26.0346 69.3893C26.9493 66.32 27.0951 63.3277 26.4853 60.4767C24.5499 51.5513 14.8996 44.321 2.37264 42.3433L5.06361 30.6311H63.801C63.801 30.6311 63.8805 30.6182 63.9203 30.6054C64.1324 31.4915 64.3312 32.3648 64.5433 33.2252C65.2326 36.1404 65.9485 39.1456 66.6378 42.3305C53.912 44.2568 44.1953 51.4871 42.3395 60.4767C41.7562 63.3149 41.9551 66.3072 42.936 69.3765H26.0479L26.0346 69.3893Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-skvcdg\",\"data-framer-name\":\"WEIGHT\",name:\"WEIGHT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dvvqu4\",\"data-framer-name\":\"Rectangle 1128\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:272,name:\"Rectangle 1128\",svg:'<svg width=\"272\" height=\"111\" viewBox=\"0 0 272 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.749023 8.28223C0.749023 3.86395 4.33075 0.282227 8.74902 0.282227H263.907C268.326 0.282227 271.907 3.86395 271.907 8.28223V102.282C271.907 106.701 268.326 110.282 263.907 110.282H8.74902C4.33074 110.282 0.749023 106.701 0.749023 102.282V8.28223Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a1frsc\",\"data-framer-name\":\"ICON\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:72,name:\"ICON\",svg:'<svg width=\"72\" height=\"71\" viewBox=\"0 0 72 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.2412 65.8289C21.4945 66.0536 21.5121 66.4347 21.2799 66.6798C21.0477 66.9248 20.6537 66.9419 20.4004 66.7172C20.1471 66.4926 20.1295 66.1114 20.3617 65.8664C20.5939 65.6213 20.9879 65.6043 21.2412 65.8289ZM69.1194 3.75923C70.9381 5.6584 71.8669 8.23144 71.6663 10.8148L67.6278 62.1465C67.2478 66.9864 63.0193 70.7744 58.0024 70.7744H14.4407C9.42418 70.7744 5.19535 66.9829 4.81531 62.1465L0.776764 10.8182C0.57273 8.23501 1.50145 5.66189 3.32368 3.76271C5.14239 1.86354 7.72453 0.774414 10.4017 0.774414H62.0407C64.7178 0.774414 67.2999 1.86354 69.1187 3.76271L69.1194 3.75923ZM68.1273 4.64752C66.5373 2.99004 64.3772 2.07788 62.0379 2.07788H10.4061C8.07017 2.07788 5.90671 2.99004 4.31666 4.64752C2.7266 6.30499 1.94913 8.46285 2.12853 10.716L6.16707 62.0442C6.49423 66.2067 10.1282 69.4673 14.4446 69.4673H58.0064C62.3193 69.4673 65.9567 66.2067 66.2839 62.0442L70.3225 10.716C70.4984 8.45946 69.7209 6.30499 68.1343 4.64752H68.1273ZM17.9797 65.6185H14.6095C11.9746 65.6185 9.75487 63.6274 9.55432 61.085L8.26325 44.6593C8.23511 44.2985 7.91147 44.0398 7.53857 44.0569C7.16567 44.0841 6.88776 44.3972 6.9159 44.758L8.20696 61.1837C8.46025 64.4035 11.271 66.9254 14.6095 66.9254H17.9797C18.3525 66.9254 18.6551 66.6327 18.6551 66.272C18.6551 65.9112 18.3525 65.6185 17.9797 65.6185ZM26.8201 65.6185H23.661C23.2881 65.6185 22.9856 65.9112 22.9856 66.272C22.9856 66.6327 23.2881 66.9255 23.661 66.9255H26.8201C27.193 66.9255 27.4955 66.6327 27.4955 66.272C27.4955 65.9112 27.193 65.6185 26.8201 65.6185ZM51.2302 8.5309C51.8317 9.16736 52.1307 10.0285 52.0498 10.8895L51.0613 21.4776C50.9135 23.0772 49.5451 24.2855 47.8847 24.2855H24.558C22.8975 24.2855 21.5326 23.0773 21.3814 21.4776L20.3928 10.886C20.3119 10.0249 20.6109 9.16721 21.2125 8.52742C21.8175 7.88755 22.6724 7.52342 23.5659 7.52342H48.8739C49.7675 7.52342 50.6258 7.891 51.2274 8.52742L51.2302 8.5309ZM50.706 10.7704C50.7553 10.2667 50.5864 9.7834 50.2346 9.4124C49.8828 9.03801 49.4009 8.8338 48.8767 8.8338H23.5687C23.0481 8.8338 22.5626 9.03802 22.2109 9.4124C21.8591 9.78679 21.6902 10.2667 21.7395 10.7704L22.728 21.3619C22.816 22.2843 23.6004 22.9786 24.5573 22.9786H47.884C48.8408 22.9786 49.6288 22.2843 49.7132 21.3619L50.7018 10.7704H50.706ZM37.7809 17.8463C38.1996 18.2513 38.4282 18.7857 38.4282 19.3541C38.4282 19.9225 38.1996 20.4602 37.7809 20.8619C37.3623 21.2635 36.81 21.4881 36.2225 21.4881C35.635 21.4881 35.0792 21.2669 34.6641 20.8619C34.2454 20.4603 34.0168 19.9225 34.0168 19.3541C34.0168 19.0035 34.1153 18.6666 34.2806 18.3637L30.7592 14.5348C30.4742 14.2387 30.9351 13.7962 31.2411 14.0685C31.2411 14.0685 34.664 17.0125 35.2057 17.4788C36.0324 17.0772 37.1089 17.193 37.7808 17.843L37.7809 17.8463ZM37.0774 19.3541C37.0774 19.1329 36.9894 18.9253 36.8276 18.7687C36.6658 18.6121 36.4512 18.5271 36.2225 18.5271C35.9939 18.5271 35.7793 18.6121 35.6174 18.7687C35.4556 18.9253 35.3677 19.1329 35.3677 19.3541C35.3677 19.5753 35.4556 19.783 35.6174 19.9395C35.9411 20.2526 36.5004 20.2526 36.8276 19.9395C36.9895 19.783 37.0774 19.5753 37.0774 19.3541ZM32.4865 12.3191C32.5709 12.6084 32.8418 12.7956 33.1373 12.7956C33.1971 12.7956 33.2604 12.7887 33.3202 12.7717C33.6791 12.673 33.8901 12.3123 33.7881 11.9651L33.3871 10.5833C33.2886 10.2361 32.9192 10.0319 32.5533 10.1306C32.1945 10.2293 31.9835 10.5901 32.0855 10.9373L32.4865 12.3191ZM39.9057 10.2021C39.5469 10.0931 39.1705 10.2905 39.0614 10.6343L38.6252 12.0059C38.5162 12.3497 38.7167 12.7172 39.072 12.8227C39.1388 12.8432 39.2057 12.85 39.269 12.85C39.5574 12.85 39.8248 12.6696 39.9163 12.3871L40.3525 11.0155C40.4615 10.6717 40.261 10.3042 39.9057 10.1987V10.2021ZM26.1827 18.7994L24.7158 18.5781C24.3464 18.5271 24.0017 18.7687 23.9454 19.1227C23.8891 19.4801 24.1424 19.8136 24.5082 19.8681L25.9752 20.0893C26.0104 20.0961 26.0455 20.0961 26.0807 20.0961C26.4079 20.0961 26.6964 19.8647 26.7456 19.5413C26.8019 19.1839 26.5486 18.8504 26.1827 18.7959V18.7994ZM27.6567 13.398C27.3753 13.1563 26.9496 13.1836 26.7034 13.4524C26.4571 13.7213 26.4817 14.1366 26.7597 14.3748L27.8713 15.3278C28.0015 15.4401 28.1598 15.4912 28.3181 15.4912C28.5045 15.4912 28.691 15.4163 28.8247 15.27C29.0709 15.0011 29.0463 14.5859 28.7684 14.3476L27.6567 13.3946L27.6567 13.398ZM45.8754 13.6498C45.6326 13.3742 45.207 13.3401 44.922 13.5716L43.7893 14.5007C43.5043 14.7356 43.4691 15.1474 43.7084 15.4231C43.842 15.5762 44.032 15.6545 44.222 15.6545C44.3768 15.6545 44.5315 15.6035 44.6582 15.5014L45.7909 14.5722C46.0759 14.3374 46.1111 13.9255 45.8718 13.6498L45.8754 13.6498ZM47.7398 18.8164L46.2659 19.0036C45.8965 19.0512 45.6362 19.378 45.6854 19.7387C45.7311 20.0689 46.0196 20.3071 46.3538 20.3071C46.3819 20.3071 46.4136 20.3037 46.4453 20.3003L47.9192 20.1131C48.2886 20.0655 48.5489 19.7387 48.4997 19.378C48.4504 19.0206 48.1127 18.7687 47.7398 18.8164Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Any connected \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"weight tracker\"}),\" such as\"]})}),className:\"framer-zhps50\",\"data-framer-name\":\"Any connected weight tracker such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any connected weight tracker such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-1jv1q67\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqb1fw\",\"data-framer-name\":\"DEVICES\",name:\"DEVICES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqzggc\",\"data-framer-name\":\"Group 29614163\",name:\"Group 29614163\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b98lhg\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Withings,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Fitbit,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-nqrc27\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-no6eb9\",\"data-framer-name\":\"Group 29614164\",name:\"Group 29614164\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15q6zx3\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Apple Watch, Fitbit,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-1npnahi\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fhdr5\",\"data-framer-name\":\"Group 29614165\",name:\"Group 29614165\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1keygq3\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Flo,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Clue,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Natural Cycles\"})]}),className:\"framer-9pa5fa\",\"data-framer-name\":\"Flo, Clue, Natural Cycles\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Flo, Clue, Natural Cycles\",verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ht7eqc\",\"data-framer-name\":\"INTRO\",name:\"INTRO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5774),positionX:\"center\",positionY:\"center\",sizes:\"381.0454px\",src:\"https://framerusercontent.com/images/7uC9jEuS9R4hcSyxc2yHNWd81bs.png\",srcSet:\"https://framerusercontent.com/images/7uC9jEuS9R4hcSyxc2yHNWd81bs.png?scale-down-to=1024 631w,https://framerusercontent.com/images/7uC9jEuS9R4hcSyxc2yHNWd81bs.png?scale-down-to=2048 1263w,https://framerusercontent.com/images/7uC9jEuS9R4hcSyxc2yHNWd81bs.png 1528w\"},className:\"framer-1rinf72\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15q11cl\",\"data-framer-name\":\"GRADIENT\",name:\"GRADIENT\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csiqf\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for depression or anxiety\"})}),className:\"framer-999yld\",\"data-framer-name\":\"Connected combinations for depression or anxiety\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for depression or anxiety\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\"})}),className:\"framer-ljaw37\",\"data-framer-name\":\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mj6u0q hidden-vlkg60\",\"data-framer-name\":\"ANXIETY DEPRESSION\",name:\"ANXIETY DEPRESSION\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17r0c5h\",\"data-framer-name\":\"Group 29614134\",name:\"Group 29614134\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7998.5),positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png\",srcSet:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png?scale-down-to=1024 781w,https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png\",srcSet:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png?scale-down-to=1024 781w,https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png 1560w\"},className:\"framer-1tuqufe\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lo6cex\",\"data-framer-name\":\"Rectangle 1158\",name:\"Rectangle 1158\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-am9yu7\",\"data-framer-name\":\"Group 15497\",name:\"Group 15497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for depression or anxiety\"})}),className:\"framer-5wq4zn\",\"data-framer-name\":\"Connected combinations for depression or anxiety\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for depression or anxiety\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\"})}),className:\"framer-m3njnd\",\"data-framer-name\":\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dakdg3\",\"data-framer-name\":\"Group 29614156\",name:\"Group 29614156\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6gbjco\",\"data-framer-name\":\"Group 29614135\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614135\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M31.4869 17.5653C30.3342 16.6531 28.7748 16.5335 27.5161 17.2641C15.1408 24.4384 8.08201 37.7298 9.09626 51.9503C10.3951 70.1844 25.221 84.9073 43.5828 86.197C44.4919 86.2615 45.3968 86.2929 46.2966 86.2929C59.5777 86.2929 71.7462 79.4147 78.5119 67.9053C79.2468 66.6554 79.128 65.1077 78.2086 63.9621C77.2883 62.8166 75.7947 62.3576 74.4045 62.7886C70.6704 63.9486 66.7663 64.4441 62.8059 64.2532C59.2726 64.0843 55.8077 63.352 52.506 62.0776C50.9184 61.4632 49.8512 59.9113 49.8512 58.2142V55.756C49.8512 52.4298 47.1263 49.7238 43.7776 49.7238H39.2079C37.7203 49.7238 36.3275 48.9168 35.573 47.6177C32.9574 43.1146 31.4424 38.0115 31.1938 32.8609C31.0032 28.9263 31.4997 25.0511 32.6686 21.343C33.1044 19.9616 32.6404 18.4783 31.4869 17.5653ZM34.0571 48.4866C35.1235 50.322 37.0973 51.4616 39.2079 51.4616H43.7776C46.1616 51.4616 48.1012 53.3877 48.1012 55.756V58.2142C48.1012 60.6223 49.6162 62.8251 51.872 63.6965C55.3497 65.0398 59 65.8111 62.7221 65.9893C66.8979 66.1878 70.9977 65.6685 74.9274 64.4467C75.7742 64.1853 76.4697 64.5841 76.8397 65.0457C77.2106 65.5073 77.4473 66.2701 77.0012 67.0296C70.1142 78.7435 57.3398 85.4079 43.7058 84.4643C26.2088 83.234 12.0801 69.2035 10.8411 51.8281C9.87554 38.272 16.6028 25.6034 28.398 18.7643C28.6936 18.5929 28.9901 18.5233 29.2695 18.5233C29.7113 18.5233 30.1112 18.699 30.3957 18.9247C30.8605 19.2929 31.263 19.9845 30.999 20.8237C29.7677 24.7269 29.2456 28.805 29.4455 32.9441C29.7079 38.3704 31.3023 43.7442 34.0571 48.4866Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M21.3467 44.8521C18.9482 45.6624 17.3221 47.8135 17.205 50.3328C17.1828 50.8122 17.5562 51.2186 18.039 51.2407C18.0527 51.2415 18.0664 51.2415 18.08 51.2415C18.5449 51.2415 18.9319 50.8784 18.9533 50.4125C19.037 48.6128 20.1974 47.0752 21.9106 46.4965C23.6221 45.9204 25.4866 46.4312 26.6589 47.8067C26.9708 48.1732 27.5228 48.2208 27.8919 47.9094C28.2611 47.5996 28.3072 47.0515 27.9953 46.6849C26.3556 44.7588 23.7443 44.0384 21.3467 44.8521Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M78.9571 28.7012C78.8605 28.4067 78.6144 28.1853 78.3102 28.1199L68.3326 25.9749L63.1946 17.2146C63.0374 16.9473 62.7494 16.7827 62.4384 16.7827C62.1274 16.7827 61.8394 16.9473 61.6822 17.2146L56.5434 25.9749L46.5657 28.1199C46.2615 28.1853 46.0154 28.4067 45.9189 28.7012C45.8223 28.9948 45.8915 29.3181 46.0983 29.548L52.9016 37.1084L51.8728 47.1941C51.8412 47.5012 51.9771 47.8025 52.2292 47.9841C52.4812 48.1665 52.8119 48.2004 53.0965 48.0765L62.4384 43.9892L71.7804 48.0765C71.8931 48.1258 72.0136 48.1504 72.1333 48.1504C72.3153 48.1504 72.4955 48.0944 72.6476 47.9841C72.8997 47.8025 73.0356 47.5012 73.004 47.1941L71.9752 37.1084L78.7776 29.548C78.9844 29.3172 79.0536 28.9948 78.9571 28.7012ZM70.4132 36.2361C70.25 36.4177 70.1705 36.6596 70.1953 36.9022L71.1113 45.8848L62.7913 42.2446C62.6785 42.1954 62.5589 42.1708 62.4384 42.1708C62.3179 42.1708 62.1983 42.1954 62.0855 42.2446L53.7655 45.8848L54.6815 36.9022C54.7063 36.6596 54.6268 36.4177 54.4636 36.2361L48.4045 29.503L57.2911 27.5922C57.5312 27.5404 57.7379 27.3911 57.8618 27.1798L62.4384 19.3784L67.0141 27.1798C67.138 27.3911 67.3448 27.5404 67.5849 27.5922L76.4714 29.503L70.4132 36.2361Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M42.0221 34.2686C41.5385 34.2686 41.1471 34.6572 41.1471 35.1375V38.1939H38.0693C37.5857 38.1939 37.1943 38.5825 37.1943 39.0628C37.1943 39.543 37.5857 39.9316 38.0693 39.9316H41.1471V42.9881C41.1471 43.4683 41.5385 43.857 42.0221 43.857C42.5057 43.857 42.8971 43.4683 42.8971 42.9881V39.9316H45.9749C46.4585 39.9316 46.8499 39.543 46.8499 39.0628C46.8499 38.5825 46.4585 38.1939 45.9749 38.1939H42.8971V35.1375C42.8971 34.6572 42.5057 34.2686 42.0221 34.2686Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M63.1871 50.6699C62.7035 50.6699 62.3122 51.0585 62.3122 51.5388V54.5952H59.2344C58.7507 54.5952 58.3594 54.9839 58.3594 55.4641C58.3594 55.9444 58.7507 56.333 59.2344 56.333H62.3122V59.3894C62.3122 59.8697 62.7035 60.2583 63.1871 60.2583C63.6708 60.2583 64.0621 59.8697 64.0621 59.3894V56.333H67.1399C67.6236 56.333 68.0149 55.9444 68.0149 55.4641C68.0149 54.9839 67.6236 54.5952 67.1399 54.5952H64.0621V51.5388C64.0621 51.0585 63.6708 50.6699 63.1871 50.6699Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected sleep quality tracker, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"such as\"})]}),className:\"framer-gbo4rj\",\"data-framer-name\":\"Any connected sleep quality tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected sleep quality tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-1lyzmzw\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmnmvn\",\"data-framer-name\":\"Group 29614157\",name:\"Group 29614157\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dbpa73\",\"data-framer-name\":\"Group 29614136\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614136\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M67.4794 26.5139C62.6138 26.4101 58.9546 26.462 55.9577 26.7474C55.0494 24.2173 53.3497 23.1793 52.0912 22.4268C51.0013 21.778 50.4823 21.4407 50.4823 20.6752V17.4315C50.4823 17.0682 50.1968 16.7827 49.8335 16.7827H38.1565C37.7932 16.7827 37.5078 17.0682 37.5078 17.4315V18.3138C37.5078 20.4157 37.3521 21.0904 36.846 21.2461L36.2232 21.4277C34.2251 21.9986 30.9424 22.9328 28.3345 25.7483C29.1519 23.4777 30.4105 20.8179 32.3568 17.7947C32.4865 17.6001 32.4995 17.3406 32.3827 17.133C32.2659 16.9254 32.0454 16.7956 31.8118 16.7956H27.8155C27.6079 16.7956 27.4133 16.8994 27.2836 17.0681C26.038 18.7938 24.9481 20.7011 24.2085 22.0894C24.1566 20.753 24.3642 19.6501 24.5459 18.6381C24.6107 18.2619 24.6756 17.8986 24.7275 17.5482C24.7535 17.3666 24.7016 17.172 24.5718 17.0293C24.4421 16.8865 24.2734 16.8087 24.0788 16.8087H17.5783C17.2669 16.8087 17.0074 17.0293 16.9426 17.3277C15.8008 22.7123 15.4375 29.1218 15.9175 35.3755C12.2975 38.7101 11 42.7323 11 50.5435C11 66.4116 21.2371 80.0741 37.0927 85.3554C39.1558 86.0431 43.2169 86.7827 46.8889 86.7827C48.7054 86.7827 50.4181 86.6011 51.7545 86.147C54.6739 85.1738 56.9316 83.3963 58.6702 80.6845C61.4598 76.3379 66.1956 61.793 64.5478 47.8839C64.1715 44.6531 63.2113 39.8264 59.5265 34.5842C63.5227 33.3645 67.3373 33.5203 67.4023 33.5203C67.5709 33.5333 67.7526 33.4684 67.8823 33.3387C68.0121 33.2219 68.0899 33.0402 68.0899 32.8716V27.1885C68.0899 26.8382 67.8045 26.5527 67.4542 26.5398L67.4794 26.5139ZM36.5862 22.6733L37.222 22.4917C38.8049 22.0116 38.8049 20.1302 38.8049 18.3138V18.0802H41.3999V20.5195C41.3999 20.8828 41.6853 21.1682 42.0486 21.1682C42.4119 21.1682 42.6973 20.8828 42.6973 20.5195V18.0802H45.2923V20.5195C45.2923 20.8828 45.5778 21.1682 45.9411 21.1682C46.3044 21.1682 46.5898 20.8828 46.5898 20.5195V18.0802H49.1848V20.6752C49.1848 22.2192 50.3266 22.8939 51.4295 23.5426C52.5842 24.2303 53.8688 25.0088 54.6343 26.8901C51.5593 27.2794 49.1848 27.954 46.7974 29.031L46.3303 27.8633C46.2006 27.5389 45.8373 27.3702 45.4999 27.487L40.3359 29.3684C40.0115 29.4851 39.8428 29.8355 39.9336 30.1598L40.3229 31.4313C37.3127 33.118 35.3405 35.1162 33.7187 38.0875C32.6548 37.1273 30.3062 35.2849 26.9587 34.169C26.8809 33.5462 26.7901 32.0151 27.2182 29.7315C29.5667 24.6712 33.9393 23.4127 36.5735 22.6602L36.5862 22.6733ZM17.0328 36.0892L17.2534 35.8816V35.5961C17.2534 35.5961 17.2534 35.4534 17.2275 35.2588C16.7733 29.3163 17.0847 23.2438 18.1227 18.0795H23.3257C23.3127 18.1833 23.2867 18.2871 23.2738 18.378C23.0013 19.896 22.651 21.7904 23.1959 24.3854C23.2478 24.6579 23.4813 24.8655 23.7538 24.8914C24.0263 24.9303 24.2988 24.7747 24.4156 24.5152C24.4285 24.4762 26.0504 21.0119 28.1394 18.0666H30.6306C24.2988 28.4076 25.6871 34.545 25.752 34.8041C25.752 34.83 25.7779 34.856 25.7909 34.8819C25.8039 34.9209 25.8169 34.9598 25.8428 34.9857C25.8688 35.0247 25.8947 35.0636 25.9336 35.0895C25.9596 35.1155 25.9726 35.1415 26.0115 35.1544C26.0504 35.1934 26.1023 35.2063 26.1542 35.2323C26.1672 35.2323 26.1802 35.2582 26.2061 35.2582C29.4239 36.2443 31.7205 38.0219 32.7714 38.9561C18.6804 45.6511 15.7092 58.9636 15.0865 64.0241C13.296 59.8462 12.3228 55.2659 12.3228 50.4911C12.3228 42.9396 13.5554 39.1637 17.0327 36.063L17.0328 36.0892ZM63.2884 48.0129C64.9103 61.5973 60.3172 75.7406 57.6184 79.9574C56.0484 82.3967 54.0113 84.0056 51.3775 84.8879C48.5878 85.835 43.813 85.4588 40.4005 84.797C60.408 75.676 53.6087 53.1905 51.987 48.6615C50.9749 45.82 50.2613 42.7968 51.9221 39.9938C53.4012 37.4897 55.8146 35.9456 58.2928 34.9985C61.9907 40.1236 62.9379 44.8594 63.3011 48.0125L63.2884 48.0129ZM66.8176 32.1838H66.7527C64.028 32.1838 54.7377 32.6899 50.8066 39.333C48.8734 42.6027 49.7038 46.1059 50.7677 49.0902C52.3506 53.5406 59.1888 76.1296 38.2337 84.304C37.9742 84.2391 37.7406 84.1613 37.5331 84.0964C27.8797 80.8916 20.3928 74.4688 16.1636 66.3334C16.1896 66.2555 16.2155 66.1777 16.2155 66.0998C16.2155 65.9182 16.514 47.5455 34.1596 39.7605C34.1855 39.7605 34.2115 39.7216 34.2374 39.7086C34.2763 39.6826 34.3023 39.6697 34.3282 39.6437V39.6307C34.3542 39.6048 34.3801 39.5659 34.4061 39.5269C34.4191 39.501 34.445 39.488 34.458 39.4621C36.1188 36.1146 38.0651 34.1164 41.3867 32.3388C41.6591 32.1961 41.7889 31.8717 41.6981 31.5733L41.3348 30.3796L45.331 28.9264L45.8241 30.1461C45.889 30.3148 46.0187 30.4445 46.1874 30.5094C46.3561 30.5743 46.5377 30.5613 46.7064 30.4964C51.5071 28.2129 56.0741 27.5901 66.792 27.7977V32.1831L66.8176 32.1838Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0uegz\",\"data-framer-name\":\"Group 29614141\",name:\"Group 29614141\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected period tracker, such as\"})}),className:\"framer-icwpz6\",\"data-framer-name\":\"Any connected period tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected period tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Menstruation\"})}),className:\"framer-1f75g6m\",\"data-framer-name\":\"Menstruation\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Menstruation\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xr4fjj\",\"data-framer-name\":\"Group 29614158\",name:\"Group 29614158\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hu9hhf\",\"data-framer-name\":\"Group 29614137\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:111,name:\"Group 29614137\",svg:'<svg width=\"111\" height=\"224\" viewBox=\"0 0 111 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.152344 8.54004C0.152344 4.12176 3.73407 0.540039 8.15234 0.540039H102.152C106.571 0.540039 110.152 4.12176 110.152 8.54004V215.815C110.152 220.234 106.571 223.815 102.152 223.815H8.15234C3.73406 223.815 0.152344 220.234 0.152344 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M33.3818 80.7244C33.6351 80.9491 33.6527 81.3302 33.4205 81.5753C33.1883 81.8204 32.7943 81.8374 32.541 81.6127C32.2877 81.3881 32.2702 81.0069 32.5023 80.7619C32.7345 80.5168 33.1285 80.4998 33.3818 80.7244ZM81.26 18.6547C83.0787 20.5539 84.0075 23.1269 83.8069 25.7103L79.7684 77.042C79.3884 81.8819 75.16 85.6699 70.143 85.6699H26.5813C21.5648 85.6699 17.336 81.8784 16.9559 77.042L12.9174 25.7137C12.7134 23.1305 13.6421 20.5574 15.4643 18.6582C17.283 16.759 19.8652 15.6699 22.5423 15.6699H74.1813C76.8584 15.6699 79.4405 16.759 81.2593 18.6582L81.26 18.6547ZM80.2679 19.543C78.6779 17.8856 76.5178 16.9734 74.1785 16.9734H22.5467C20.2108 16.9734 18.0473 17.8856 16.4573 19.543C14.8672 21.2005 14.0898 23.3584 14.2692 25.6115L18.3077 76.9398C18.6349 81.1022 22.2688 84.3628 26.5852 84.3628H70.147C74.4599 84.3628 78.0974 81.1022 78.4246 76.9398L82.4631 25.6115C82.639 23.355 81.8615 21.2005 80.275 19.543H80.2679ZM30.1203 80.514H26.7501C24.1152 80.514 21.8955 78.5229 21.6949 75.9805L20.4039 59.5548C20.3757 59.194 20.0521 58.9353 19.6792 58.9524C19.3063 58.9796 19.0284 59.2927 19.0565 59.6535L20.3476 76.0792C20.6009 79.299 23.4116 81.8209 26.7501 81.8209H30.1203C30.4932 81.8209 30.7957 81.5282 30.7957 81.1675C30.7957 80.8067 30.4932 80.514 30.1203 80.514ZM38.9607 80.514H35.8016C35.4288 80.514 35.1262 80.8067 35.1262 81.1675C35.1262 81.5283 35.4288 81.821 35.8016 81.821H38.9607C39.3336 81.821 39.6361 81.5283 39.6361 81.1675C39.6361 80.8067 39.3336 80.514 38.9607 80.514ZM63.3708 23.4264C63.9724 24.0629 64.2714 24.924 64.1905 25.785L63.2019 36.3731C63.0541 37.9727 61.6857 39.181 60.0253 39.181H36.6986C35.0381 39.181 33.6732 37.9728 33.522 36.3731L32.5334 25.7815C32.4525 24.9204 32.7515 24.0627 33.3531 23.4229C33.9582 22.7831 34.813 22.4189 35.7066 22.4189H61.0145C61.9081 22.4189 62.7664 22.7865 63.368 23.4229L63.3708 23.4264ZM62.8466 25.6659C62.8959 25.1622 62.727 24.6789 62.3752 24.3079C62.0234 23.9335 61.5415 23.7293 61.0173 23.7293H35.7094C35.1887 23.7293 34.7032 23.9335 34.3515 24.3079C33.9997 24.6823 33.8308 25.1622 33.8801 25.6659L34.8686 36.2574C34.9566 37.1798 35.7411 37.8741 36.6979 37.8741H60.0246C60.9815 37.8741 61.7695 37.1798 61.8539 36.2574L62.8424 25.6659H62.8466ZM49.9216 32.7418C50.3402 33.1468 50.5689 33.6812 50.5689 34.2496C50.5689 34.8181 50.3402 35.3557 49.9216 35.7574C49.5029 36.159 48.9507 36.3836 48.3631 36.3836C47.7756 36.3836 47.2198 36.1624 46.8047 35.7574C46.3861 35.3558 46.1574 34.8181 46.1574 34.2496C46.1574 33.8991 46.2559 33.5621 46.4212 33.2592L42.8998 29.4303C42.6148 29.1342 43.0757 28.6917 43.3817 28.964C43.3817 28.964 46.8047 31.908 47.3464 32.3744C48.1731 31.9727 49.2495 32.0885 49.9215 32.7385L49.9216 32.7418ZM49.218 34.2496C49.218 34.0284 49.13 33.8208 48.9682 33.6642C48.8064 33.5076 48.5918 33.4226 48.3631 33.4226C48.1345 33.4226 47.9199 33.5076 47.7581 33.6642C47.5962 33.8208 47.5083 34.0284 47.5083 34.2496C47.5083 34.4708 47.5963 34.6785 47.7581 34.835C48.0817 35.1482 48.6411 35.1482 48.9683 34.835C49.1301 34.6785 49.218 34.4708 49.218 34.2496ZM44.6271 27.2146C44.7116 27.5039 44.9824 27.6911 45.2779 27.6911C45.3377 27.6911 45.4011 27.6843 45.4609 27.6672C45.8197 27.5685 46.0308 27.2078 45.9287 26.8606L45.5277 25.4788C45.4292 25.1316 45.0598 24.9274 44.694 25.0261C44.3351 25.1248 44.1241 25.4856 44.2261 25.8328L44.6271 27.2146ZM52.0463 25.0976C51.6875 24.9887 51.3111 25.1861 51.2021 25.5298L50.7658 26.9014C50.6568 27.2452 50.8573 27.6127 51.2126 27.7183C51.2794 27.7387 51.3463 27.7455 51.4096 27.7455C51.6981 27.7455 51.9654 27.5651 52.0569 27.2826L52.4931 25.911C52.6022 25.5672 52.4016 25.1997 52.0463 25.0942V25.0976ZM38.3234 33.6949L36.8564 33.4736C36.487 33.4226 36.1423 33.6642 36.086 34.0182C36.0297 34.3756 36.283 34.7091 36.6489 34.7636L38.1158 34.9848C38.151 34.9916 38.1862 34.9916 38.2214 34.9916C38.5485 34.9916 38.837 34.7602 38.8862 34.4368C38.9425 34.0795 38.6892 33.7459 38.3234 33.6915V33.6949ZM39.7973 28.2935C39.5159 28.0518 39.0902 28.0791 38.844 28.348C38.5977 28.6168 38.6224 29.0321 38.9003 29.2703L40.0119 30.2233C40.1421 30.3357 40.3004 30.3867 40.4587 30.3867C40.6452 30.3867 40.8316 30.3118 40.9653 30.1655C41.2115 29.8966 41.1869 29.4814 40.909 29.2431L39.7973 28.2901L39.7973 28.2935ZM58.016 28.5454C57.7733 28.2697 57.3476 28.2356 57.0626 28.4671L55.9299 29.3962C55.6449 29.6311 55.6098 30.0429 55.849 30.3186C55.9827 30.4717 56.1726 30.55 56.3626 30.55C56.5174 30.55 56.6722 30.499 56.7988 30.3969L57.9316 29.4677C58.2165 29.2329 58.2517 28.821 58.0125 28.5453L58.016 28.5454ZM59.8805 33.7119L58.4065 33.8991C58.0371 33.9467 57.7768 34.2735 57.826 34.6343C57.8718 34.9644 58.1602 35.2026 58.4944 35.2026C58.5226 35.2026 58.5542 35.1992 58.5859 35.1958L60.0599 35.0086C60.4292 34.961 60.6896 34.6343 60.6403 34.2735C60.5911 33.9161 60.2533 33.6643 59.8805 33.7119Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dfnpi5\",\"data-framer-name\":\"Group 29614142\",name:\"Group 29614142\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected weight tracker, such as\"})}),className:\"framer-h7cr9s\",\"data-framer-name\":\"Any connected weight tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected weight tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-177xgea\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jvvr3c\",\"data-framer-name\":\"Group 29614159\",name:\"Group 29614159\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-p2xnjs\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:297,intrinsicWidth:4,name:\"Line 5\",svg:'<svg width=\"4\" height=\"297\" viewBox=\"-1 -1 4 297\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"294.218\" x2=\"1.00001\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oi58nu\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:5,name:\"Line 6\",svg:'<svg width=\"5\" height=\"71\" viewBox=\"-1 -1 5 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.15234\" y1=\"68.2783\" x2=\"1.15235\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-805a17\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:4,name:\"Line 7\",svg:'<svg width=\"4\" height=\"71\" viewBox=\"-1 -1 4 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"68.2783\" x2=\"1\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n40kxq\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zb9d1i\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d8zruo\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9131.04248046875),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-17ddiyz\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hfgoxh\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-1aub6vd\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kup66l\",\"data-framer-name\":\"Group 29614160\",name:\"Group 29614160\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9298.32861328125),sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"},className:\"framer-1jm7h50\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-cdi20x\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-akwc3r\",\"data-framer-name\":\"Line 55\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:392,name:\"Line 55\",svg:'<svg width=\"392\" height=\"5\" viewBox=\"-1 -1 392 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.27832\" x2=\"390\" y2=\"1.27832\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y4nv2q\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.81543 12.4028L1.45943 3.12598L12.1714 3.12598L6.81543 12.4028Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n6qdnl\",\"data-framer-name\":\"Group 29614161\",name:\"Group 29614161\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1002p\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sjl04e\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-218u12\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Fitbit\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-tcr8x4\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Flo\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Clue\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Natural Cycles\"})]}),className:\"framer-u30vxp\",\"data-framer-name\":\"Flo, Clue, Natural Cycles\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Flo, Clue, Natural Cycles\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Withings,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Fitbit,\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-ghheu4\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\"},children:\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\"},children:\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\"})}),className:\"framer-16rf0ys\",\"data-framer-name\":\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cz6p7 hidden-3lasd\",\"data-framer-name\":\"ADHA\",name:\"ADHA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xph0dd\",\"data-framer-name\":\"DIAGRAM\",name:\"DIAGRAM\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14v8a38\",\"data-framer-name\":\"BACKGROUND\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:619,intrinsicWidth:1391,name:\"BACKGROUND\",svg:'<svg width=\"1391\" height=\"619\" viewBox=\"0 0 1391 619\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.480469 12.0366C0.480469 5.4092 5.85305 0.0366211 12.4805 0.0366211H1390.98V618.974H12.4805C5.85309 618.974 0.480469 613.601 0.480469 606.974V12.0366Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9xky64\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4871.90869140625),sizes:\"229.8614px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"},className:\"framer-ky0q7t\",\"data-framer-name\":\"PHONE\",name:\"PHONE\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-1jbjksn\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r92nfv\",\"data-framer-name\":\"APPLE HEALTH\",name:\"APPLE HEALTH\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13tkhnp\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.8867 6.3877L3.60986 11.7437V1.0317L12.8867 6.3877Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kr5raa\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:305,name:\"Line 5\",svg:'<svg width=\"305\" height=\"5\" viewBox=\"-1 -1 305 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.166016\" y1=\"1.3877\" x2=\"302.843\" y2=\"1.38767\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eo8duu\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:203,intrinsicWidth:154,name:\"Line 7\",svg:'<svg width=\"154\" height=\"203\" viewBox=\"-1 -1 154 203\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0611 26.9722L62.497 26.9723C73.5426 26.9723 82.4969 35.9266 82.4969 46.9723L82.4969 200.177\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kkvo7y\",\"data-framer-name\":\"Line 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:210,intrinsicWidth:160,name:\"Line 8\",svg:'<svg width=\"160\" height=\"210\" viewBox=\"-1 -1 160 210\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.0611 181.031L65.4971 181.031C76.5427 181.031 85.497 172.076 85.497 161.031L85.4979 0.913344\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-119va52\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-en55yi\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i8lz8q\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5096.94287109375),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-4khxqk\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-erqwro\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-1o7qvms\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y7j3ko\",\"data-framer-name\":\"SLEEP\",name:\"SLEEP\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g11bvd\",\"data-framer-name\":\"Rectangle 1126\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:282,name:\"Rectangle 1126\",svg:'<svg width=\"282\" height=\"111\" viewBox=\"0 0 282 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.759766 8.59766C0.759766 4.17938 4.34149 0.597656 8.75977 0.597656H273.799C278.217 0.597656 281.799 4.17938 281.799 8.59766V102.598C281.799 107.016 278.217 110.598 273.799 110.598H8.75977C4.34149 110.598 0.759766 107.016 0.759766 102.598V8.59766Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5ctpud\",\"data-framer-name\":\"Group 15487\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:71,name:\"Group 15487\",svg:'<svg width=\"71\" height=\"71\" viewBox=\"0 0 71 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.2095 1.62537C22.0568 0.713203 20.4974 0.59356 19.2388 1.32415C6.86346 8.49847 -0.195339 21.7899 0.818921 36.0104C2.11772 54.2445 16.9437 68.9673 35.3054 70.2571C36.2146 70.3216 37.1195 70.353 38.0193 70.353C51.3003 70.353 63.4689 63.4748 70.2346 51.9653C70.9694 50.7154 70.8507 49.1677 69.9312 48.0222C69.011 46.8767 67.5174 46.4176 66.1271 46.8487C62.3931 48.0086 58.489 48.5042 54.5285 48.3132C50.9953 48.1444 47.5304 47.4121 44.2287 46.1376C42.6411 45.5233 41.5739 43.9713 41.5739 42.2742V39.8161C41.5739 36.4898 38.8489 33.7838 35.5003 33.7838H30.9305C29.4429 33.7838 28.0501 32.9769 27.2956 31.6778C24.6801 27.1746 23.1651 22.0716 22.9164 16.921C22.7259 12.9864 23.2223 9.11111 24.3913 5.40303C24.827 4.02163 24.3631 2.53839 23.2095 1.62537ZM25.7798 32.5467C26.8462 34.3821 28.82 35.5216 30.9305 35.5216H35.5003C37.8842 35.5216 39.8239 37.4478 39.8239 39.8161V42.2742C39.8239 44.6824 41.3389 46.8852 43.5947 47.7566C47.0724 49.0998 50.7227 49.8711 54.4448 50.0493C58.6206 50.2479 62.7204 49.7286 66.6501 48.5067C67.4969 48.2454 68.1924 48.6442 68.5624 49.1058C68.9332 49.5674 69.1699 50.3302 68.7239 51.0896C61.8368 62.8036 49.0625 69.468 35.4285 68.5244C17.9314 67.294 3.80274 53.2636 2.56375 35.8882C1.5982 22.3321 8.32547 9.66351 20.1206 2.82435C20.4163 2.65295 20.7128 2.58337 20.9922 2.58337C21.4339 2.58337 21.8338 2.75901 22.1184 2.98472C22.5832 3.35298 22.9857 4.04454 22.7216 4.88373C21.4903 8.78698 20.9682 12.865 21.1682 17.0041C21.4305 22.4305 23.025 27.8043 25.7798 32.5467Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M13.0693 28.9122C10.6708 29.7225 9.04476 31.8735 8.9277 34.3928C8.90548 34.8722 9.27889 35.2787 9.76167 35.3007C9.77534 35.3016 9.78901 35.3016 9.80268 35.3016C10.2675 35.3016 10.6546 34.9384 10.676 34.4726C10.7597 32.6728 11.9201 31.1353 13.6333 30.5566C15.3448 29.9805 17.2092 30.4913 18.3816 31.8667C18.6935 32.2333 19.2455 32.2808 19.6146 31.9694C19.9837 31.6597 20.0299 31.1115 19.718 30.745C18.0782 28.8188 15.467 28.0984 13.0693 28.9122Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M70.6797 12.7612C70.5832 12.4668 70.3371 12.2453 70.0329 12.18L60.0552 10.0349L54.9173 1.27468C54.76 1.00739 54.4721 0.842773 54.1611 0.842773C53.85 0.842773 53.5621 1.00739 53.4049 1.27468L48.2661 10.0349L38.2884 12.18C37.9842 12.2453 37.7381 12.4668 37.6415 12.7612C37.545 13.0548 37.6142 13.3781 37.821 13.6081L44.6243 21.1685L43.5955 31.2541C43.5639 31.5613 43.6998 31.8625 43.9518 32.0441C44.2039 32.2265 44.5346 32.2605 44.8191 32.1366L54.1611 28.0492L63.503 32.1366C63.6158 32.1858 63.7363 32.2104 63.8559 32.2104C64.0379 32.2104 64.2182 32.1544 64.3703 32.0441C64.6224 31.8625 64.7582 31.5613 64.7266 31.2541L63.6978 21.1685L70.5003 13.6081C70.7071 13.3773 70.7763 13.0548 70.6797 12.7612ZM62.1359 20.2962C61.9727 20.4778 61.8932 20.7196 61.918 20.9623L62.834 29.9448L54.514 26.3046C54.4012 26.2554 54.2815 26.2308 54.1611 26.2308C54.0406 26.2308 53.921 26.2554 53.8082 26.3046L45.4882 29.9448L46.4042 20.9623C46.4289 20.7196 46.3495 20.4778 46.1863 20.2962L40.1272 13.5631L49.0137 11.6522C49.2538 11.6005 49.4606 11.4511 49.5845 11.2398L54.1611 3.43843L58.7368 11.2398C58.8607 11.4511 59.0674 11.6005 59.3076 11.6522L68.1941 13.5631L62.1359 20.2962Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M33.7448 18.3286C33.2611 18.3286 32.8698 18.7172 32.8698 19.1975V22.2539H29.792C29.3083 22.2539 28.917 22.6425 28.917 23.1228C28.917 23.6031 29.3083 23.9917 29.792 23.9917H32.8698V27.0481C32.8698 27.5284 33.2611 27.917 33.7448 27.917C34.2284 27.917 34.6197 27.5284 34.6197 27.0481V23.9917H37.6976C38.1812 23.9917 38.5725 23.6031 38.5725 23.1228C38.5725 22.6425 38.1812 22.2539 37.6976 22.2539H34.6197V19.1975C34.6197 18.7172 34.2284 18.3286 33.7448 18.3286Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M54.9098 34.73C54.4262 34.73 54.0348 35.1186 54.0348 35.5989V38.6553H50.957C50.4734 38.6553 50.082 39.0439 50.082 39.5242C50.082 40.0044 50.4734 40.3931 50.957 40.3931H54.0348V43.4495C54.0348 43.9298 54.4262 44.3184 54.9098 44.3184C55.3934 44.3184 55.7848 43.9298 55.7848 43.4495V40.3931H58.8626C59.3462 40.3931 59.7376 40.0044 59.7376 39.5242C59.7376 39.0439 59.3462 38.6553 58.8626 38.6553H55.7848V35.5989C55.7848 35.1186 55.3934 34.73 54.9098 34.73Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"Any connected \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"sleep tracker\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"such as\"})]}),className:\"framer-if1e1p\",\"data-framer-name\":\"Any connected sleep tracker such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any connected sleep tracker such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-1txlwyl\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qblg1\",\"data-framer-name\":\"HEART RATE\",name:\"HEART RATE\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1heecfu\",\"data-framer-name\":\"Rectangle 1127\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:306,name:\"Rectangle 1127\",svg:'<svg width=\"306\" height=\"111\" viewBox=\"0 0 306 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.725586 8.61328C0.725586 4.195 4.30731 0.613281 8.72559 0.613281H297.089C301.507 0.613281 305.089 4.195 305.089 8.61328V102.613C305.089 107.032 301.507 110.613 297.089 110.613H8.72558C4.30731 110.613 0.725586 107.032 0.725586 102.613V8.61328Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-snpeet\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:58,name:\"Vector\",svg:'<svg width=\"58\" height=\"71\" viewBox=\"0 0 58 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M57.3173 9.96554C52.4517 9.86174 48.7925 9.91364 45.7956 10.1991C44.8873 7.66896 43.1876 6.63096 41.9291 5.87846C40.8392 5.22971 40.3202 4.89236 40.3202 4.12682V0.883122C40.3202 0.519823 40.0347 0.234375 39.6714 0.234375H27.9944C27.6311 0.234375 27.3457 0.519823 27.3457 0.883122V1.76542C27.3457 3.86732 27.19 4.5421 26.6839 4.69772L26.0611 4.87936C24.063 5.45026 20.7803 6.38446 18.1724 9.2C18.9898 6.92937 20.2484 4.26952 22.1946 1.24638C22.3244 1.05175 22.3374 0.792252 22.2206 0.584653C22.1038 0.377054 21.8832 0.247304 21.6497 0.247304H17.6534C17.4458 0.247304 17.2512 0.351103 17.1214 0.519774C15.8758 2.24542 14.786 4.15276 14.0464 5.5411C13.9945 4.20466 14.2021 3.10181 14.3837 2.0898C14.4486 1.71354 14.5135 1.35024 14.5654 0.999909C14.5913 0.81826 14.5394 0.62364 14.4097 0.480911C14.2799 0.338183 14.1113 0.260342 13.9167 0.260342H7.41622C7.10483 0.260342 6.84533 0.480911 6.78046 0.779339C5.63866 6.16396 5.27536 12.5735 5.75542 18.8272C2.13539 22.1617 0.837891 26.184 0.837891 33.9952C0.837891 49.8633 11.075 63.5258 26.9306 68.8071C28.9936 69.4948 33.0548 70.2344 36.7268 70.2344C38.5433 70.2344 40.256 70.0527 41.5924 69.5986C44.5118 68.6255 46.7694 66.8479 48.508 64.1362C51.2977 59.7896 56.0335 45.2447 54.3857 31.3355C54.0094 28.1048 53.0492 23.2781 49.3643 18.0359C53.3606 16.8162 57.1752 16.972 57.2402 16.972C57.4088 16.985 57.5905 16.9201 57.7202 16.7903C57.85 16.6736 57.9278 16.4919 57.9278 16.3232V10.6402C57.9278 10.2898 57.6424 10.0044 57.2921 9.99141L57.3173 9.96554ZM26.4241 6.12496L27.0599 5.94331C28.6428 5.46324 28.6428 3.58183 28.6428 1.76542V1.53187H31.2377V3.97116C31.2377 4.33446 31.5232 4.61991 31.8865 4.61991C32.2498 4.61991 32.5352 4.33446 32.5352 3.97116V1.53187H35.1302V3.97116C35.1302 4.33446 35.4157 4.61991 35.779 4.61991C36.1423 4.61991 36.4277 4.33446 36.4277 3.97116V1.53187H39.0227V4.12686C39.0227 5.6709 40.1645 6.3456 41.2674 6.9943C42.4221 7.68197 43.7066 8.46045 44.4722 10.3418C41.3971 10.731 39.0227 11.4057 36.6353 12.4826L36.1682 11.3149C36.0385 10.9906 35.6752 10.8219 35.3378 10.9387L30.1738 12.82C29.8494 12.9368 29.6807 13.2871 29.7715 13.6115L30.1608 14.883C27.1506 16.5697 25.1784 18.5679 23.5566 21.5391C22.4926 20.579 20.1441 18.7365 16.7966 17.6206C16.7188 16.9978 16.628 15.4668 17.0561 13.1832C19.4046 8.12289 23.7772 6.86435 26.4114 6.11184L26.4241 6.12496ZM6.87074 19.5408L7.09131 19.3333V19.0478C7.09131 19.0478 7.09131 18.9051 7.06536 18.7105C6.61123 12.768 6.92263 6.69544 7.96061 1.53121H13.1635C13.1506 1.635 13.1246 1.7388 13.1116 1.82963C12.8392 3.34768 12.4888 5.24206 13.0338 7.83705C13.0857 8.10952 13.3192 8.31712 13.5917 8.34308C13.8642 8.38201 14.1367 8.22631 14.2534 7.96681C14.2664 7.92789 15.8883 4.46354 17.9773 1.51828H20.4685C14.1367 11.8592 15.525 17.9967 15.5899 18.2558C15.5899 18.2817 15.6158 18.3077 15.6288 18.3336C15.6418 18.3725 15.6548 18.4115 15.6807 18.4374C15.7067 18.4763 15.7326 18.5153 15.7715 18.5412C15.7975 18.5672 15.8105 18.5931 15.8494 18.6061C15.8883 18.645 15.9402 18.658 15.9921 18.6839C16.0051 18.6839 16.0181 18.7099 16.044 18.7099C19.2618 19.696 21.5583 21.4735 22.6093 22.4077C8.5183 29.1028 5.54714 42.4153 4.92434 47.4757C3.13384 43.2978 2.1607 38.7175 2.1607 33.9428C2.1607 26.3913 3.39334 22.6153 6.87063 19.5146L6.87074 19.5408ZM53.1263 31.4645C54.7482 45.049 50.1551 59.1923 47.4563 63.409C45.8863 65.8483 43.8492 67.4572 41.2154 68.3395C38.4257 69.2867 33.6509 68.9104 30.2383 68.2487C50.2459 59.1276 43.4466 36.6421 41.8249 32.1132C40.8128 29.2716 40.0992 26.2485 41.76 23.4455C43.2391 20.9413 45.6525 19.3973 48.1307 18.4501C51.8285 23.5753 52.7758 28.3111 53.139 31.4641L53.1263 31.4645ZM56.6555 15.6355H56.5906C53.8659 15.6355 44.5756 16.1415 40.6445 22.7847C38.7113 26.0544 39.5417 29.5576 40.6056 32.5419C42.1885 36.9923 49.0266 59.5812 28.0716 67.7557C27.8121 67.6908 27.5785 67.6129 27.3709 67.5481C17.7176 64.3432 10.2307 57.9205 6.00152 49.7851C6.02747 49.7072 6.05342 49.6294 6.05342 49.5515C6.05342 49.3699 6.35185 30.9971 23.9975 23.2122C24.0234 23.2122 24.0494 23.1732 24.0753 23.1603C24.1142 23.1343 24.1402 23.1213 24.1661 23.0954V23.0824C24.1921 23.0565 24.218 23.0175 24.244 22.9786C24.257 22.9527 24.2829 22.9397 24.2959 22.9137C25.9567 19.5662 27.903 17.5681 31.2245 15.7905C31.497 15.6478 31.6268 15.3234 31.5359 15.025L31.1727 13.8313L35.1689 12.3781L35.662 13.5978C35.7269 13.7664 35.8566 13.8962 36.0253 13.9611C36.1939 14.0259 36.3756 14.013 36.5443 13.9481C41.345 11.6645 45.912 11.0417 56.6299 11.2493V15.6348L56.6555 15.6355Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:\"Any connected \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"heart rate tracker\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" such as\"})]})]}),className:\"framer-nqsnj6\",\"data-framer-name\":\"Any connected heart rate tracker such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any connected heart rate tracker such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Heart Rate\"})}),className:\"framer-16rnr05\",\"data-framer-name\":\"Heart Rate\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Heart Rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0t5yv\",\"data-framer-name\":\"WEIGHT\",name:\"WEIGHT\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bxbcer\",\"data-framer-name\":\"Rectangle 1128\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:272,name:\"Rectangle 1128\",svg:'<svg width=\"272\" height=\"111\" viewBox=\"0 0 272 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.759766 8.62939C0.759766 4.21112 4.34149 0.629395 8.75977 0.629395H263.918C268.336 0.629395 271.918 4.21112 271.918 8.62939V102.629C271.918 107.048 268.336 110.629 263.918 110.629H8.75976C4.34148 110.629 0.759766 107.048 0.759766 102.629V8.62939Z\" fill=\"#D6E5CD\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1idj14x\",\"data-framer-name\":\"ICON\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:72,name:\"ICON\",svg:'<svg width=\"72\" height=\"71\" viewBox=\"0 0 72 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.2519 65.1761C21.5052 65.4007 21.5228 65.7819 21.2906 66.027C21.0584 66.272 20.6644 66.289 20.4111 66.0644C20.1579 65.8398 20.1403 65.4586 20.3725 65.2135C20.6046 64.9685 20.9986 64.9515 21.2519 65.1761ZM69.1301 3.1064C70.9488 5.00557 71.8776 7.5786 71.677 10.1619L67.6385 61.4937C67.2586 66.3335 63.0301 70.1216 58.0132 70.1216H14.4514C9.43493 70.1216 5.20609 66.33 4.82605 61.4937L0.787506 10.1654C0.583472 7.58218 1.51219 5.00905 3.33442 3.10988C5.15314 1.21071 7.73527 0.121582 10.4124 0.121582H62.0514C64.7286 0.121582 67.3106 1.21071 69.1294 3.10988L69.1301 3.1064ZM68.1381 3.99469C66.548 2.33721 64.388 1.42505 62.0486 1.42505H10.4168C8.08091 1.42505 5.91746 2.33721 4.3274 3.99469C2.73734 5.65216 1.95988 7.81002 2.13927 10.0631L6.17781 61.3914C6.50497 65.5539 10.1389 68.8145 14.4554 68.8145H58.0171C62.3301 68.8145 65.9675 65.5539 66.2947 61.3914L70.3332 10.0631C70.5091 7.80662 69.7316 5.65216 68.1451 3.99469H68.1381ZM17.9904 64.9657H14.6203C11.9854 64.9657 9.76562 62.9746 9.56506 60.4322L8.27399 44.0065C8.24585 43.6457 7.92221 43.387 7.54931 43.404C7.17642 43.4313 6.8985 43.7444 6.92664 44.1051L8.21771 60.5309C8.47099 63.7506 11.2817 66.2726 14.6203 66.2726H17.9904C18.3633 66.2726 18.6658 65.9799 18.6658 65.6191C18.6658 65.2584 18.3633 64.9657 17.9904 64.9657ZM26.8308 64.9657H23.6718C23.2989 64.9657 22.9963 65.2584 22.9963 65.6191C22.9963 65.9799 23.2989 66.2726 23.6718 66.2726H26.8308C27.2037 66.2726 27.5062 65.9799 27.5062 65.6191C27.5062 65.2584 27.2037 64.9657 26.8308 64.9657ZM51.2409 7.87807C51.8425 8.51453 52.1415 9.37566 52.0606 10.2367L51.072 20.8247C50.9243 22.4243 49.5558 23.6327 47.8954 23.6327H24.5687C22.9082 23.6327 21.5433 22.4244 21.3921 20.8247L20.4035 10.2332C20.3226 9.37211 20.6217 8.51438 21.2232 7.87459C21.8283 7.23472 22.6831 6.87059 23.5767 6.87059H48.8847C49.7782 6.87059 50.6366 7.23817 51.2381 7.87459L51.2409 7.87807ZM50.7168 10.1176C50.766 9.61385 50.5971 9.13057 50.2453 8.75957C49.8936 8.38518 49.4116 8.18097 48.8875 8.18097H23.5795C23.0588 8.18097 22.5734 8.38519 22.2216 8.75957C21.8698 9.13396 21.701 9.61385 21.7502 10.1176L22.7388 20.7091C22.8267 21.6315 23.6112 22.3258 24.568 22.3258H47.8947C48.8516 22.3258 49.6396 21.6315 49.724 20.7091L50.7125 10.1176H50.7168ZM37.7917 17.1935C38.2103 17.5985 38.439 18.1328 38.439 18.7013C38.439 19.2697 38.2103 19.8074 37.7917 20.2091C37.3731 20.6107 36.8208 20.8353 36.2332 20.8353C35.6457 20.8353 35.09 20.6141 34.6748 20.2091C34.2562 19.8074 34.0275 19.2697 34.0275 18.7013C34.0275 18.3507 34.126 18.0138 34.2913 17.7109L30.7699 13.8819C30.485 13.5858 30.9458 13.1434 31.2519 13.4157C31.2519 13.4157 34.6748 16.3597 35.2165 16.826C36.0432 16.4244 37.1197 16.5401 37.7916 17.1902L37.7917 17.1935ZM37.0881 18.7013C37.0881 18.48 37.0002 18.2724 36.8383 18.1159C36.6765 17.9593 36.4619 17.8742 36.2333 17.8742C36.0046 17.8742 35.79 17.9593 35.6282 18.1159C35.4664 18.2724 35.3784 18.48 35.3784 18.7013C35.3784 18.9225 35.4664 19.1301 35.6282 19.2867C35.9518 19.5998 36.5112 19.5998 36.8384 19.2867C37.0002 19.1301 37.0881 18.9225 37.0881 18.7013ZM32.4972 11.6662C32.5817 11.9555 32.8525 12.1427 33.1481 12.1427C33.2079 12.1427 33.2712 12.1359 33.331 12.1189C33.6898 12.0202 33.9009 11.6594 33.7989 11.3123L33.3978 9.93047C33.2993 9.58331 32.9299 9.3791 32.5641 9.4778C32.2053 9.5765 31.9942 9.93727 32.0962 10.2844L32.4972 11.6662ZM39.9165 9.54923C39.5576 9.44031 39.1812 9.63771 39.0722 9.98147L38.6359 11.3531C38.5269 11.6968 38.7274 12.0644 39.0827 12.1699C39.1496 12.1903 39.2164 12.1971 39.2797 12.1971C39.5682 12.1971 39.8355 12.0168 39.927 11.7343L40.3632 10.3627C40.4723 10.0189 40.2718 9.65132 39.9165 9.54582V9.54923ZM26.1935 18.1465L24.7265 17.9253C24.3572 17.8742 24.0124 18.1159 23.9561 18.4699C23.8998 18.8272 24.1531 19.1608 24.519 19.2152L25.9859 19.4365C26.0211 19.4433 26.0563 19.4433 26.0915 19.4433C26.4186 19.4433 26.7071 19.2118 26.7563 18.8885C26.8126 18.5311 26.5593 18.1976 26.1935 18.1431V18.1465ZM27.6675 12.7452C27.386 12.5035 26.9604 12.5307 26.7141 12.7996C26.4679 13.0685 26.4925 13.4837 26.7704 13.722L27.8821 14.675C28.0122 14.7873 28.1705 14.8384 28.3288 14.8384C28.5153 14.8384 28.7017 14.7635 28.8354 14.6171C29.0817 14.3483 29.057 13.933 28.7791 13.6948L27.6674 12.7417L27.6675 12.7452ZM45.8861 12.997C45.6434 12.7213 45.2177 12.6873 44.9328 12.9187L43.8 13.8479C43.5151 14.0827 43.4799 14.4946 43.7191 14.7702C43.8528 14.9234 44.0427 15.0017 44.2327 15.0017C44.3875 15.0017 44.5423 14.9506 44.6689 14.8485L45.8017 13.9194C46.0866 13.6845 46.1218 13.2727 45.8826 12.997L45.8861 12.997ZM47.7506 18.1636L46.2766 18.3508C45.9072 18.3984 45.6469 18.7251 45.6961 19.0859C45.7419 19.4161 46.0303 19.6543 46.3645 19.6543C46.3927 19.6543 46.4243 19.6509 46.456 19.6475L47.93 19.4603C48.2994 19.4126 48.5597 19.0859 48.5104 18.7251C48.4612 18.3678 48.1235 18.1159 47.7506 18.1636Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Any connected \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"weight tracker\"}),\" such as\"]})}),className:\"framer-nwrby5\",\"data-framer-name\":\"Any connected weight tracker such as\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Any connected weight tracker such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-1rc3bv2\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1co5wxs\",\"data-framer-name\":\"DEVICES\",name:\"DEVICES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqv5kd\",\"data-framer-name\":\"Group 29614163\",name:\"Group 29614163\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q6t4yn\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\" Apple Watch, Whoop,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Garmin\"})]}),className:\"framer-alvgwr\",\"data-framer-name\":\"Apple Watch, Whoop, Garmin\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Whoop, Garmin\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17jmcvs\",\"data-framer-name\":\"Group 29614164\",name:\"Group 29614164\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12h7y6r\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Apple Watch, Fitbit,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-qyj8ff\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7mlzq\",\"data-framer-name\":\"Group 29614165\",name:\"Group 29614165\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6d9l7k\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Withings,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Fitbit,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-1u80pxp\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxn7kt\",\"data-framer-name\":\"INTRO\",name:\"INTRO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4794),positionX:\"center\",positionY:\"center\",sizes:\"380px\",src:\"https://framerusercontent.com/images/UBH779BeRkeV4dplQPpfdT3ChQ.png\",srcSet:\"https://framerusercontent.com/images/UBH779BeRkeV4dplQPpfdT3ChQ.png?scale-down-to=1024 627w,https://framerusercontent.com/images/UBH779BeRkeV4dplQPpfdT3ChQ.png?scale-down-to=2048 1255w,https://framerusercontent.com/images/UBH779BeRkeV4dplQPpfdT3ChQ.png 1520w\"},className:\"framer-16lyqpy\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7wdbek\",\"data-framer-name\":\"GRADIENT\",name:\"GRADIENT\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ltqj70\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for ADHD\"})}),className:\"framer-1c1g24f\",\"data-framer-name\":\"Connected combinations for ADHD\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for ADHD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\"})}),className:\"framer-fx5hbp\",\"data-framer-name\":\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwsoez hidden-vlkg60\",\"data-framer-name\":\"ADHD\",name:\"ADHD\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9j9m5\",\"data-framer-name\":\"Group 29614134\",name:\"Group 29614134\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5533.5),positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png\",srcSet:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png?scale-down-to=1024 781w,https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png\",srcSet:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png?scale-down-to=1024 781w,https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png 1560w\"},className:\"framer-14jhgy2\",\"data-framer-name\":\"premium_photo-1664461665857-43cb2ebd3209 1\",name:\"premium_photo-1664461665857-43cb2ebd3209 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e2m64c\",\"data-framer-name\":\"Rectangle 1158\",name:\"Rectangle 1158\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nh9v56\",\"data-framer-name\":\"Group 15497\",name:\"Group 15497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for ADHD\"})}),className:\"framer-1rzcob4\",\"data-framer-name\":\"Connected combinations for ADHD\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for ADHD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\"})}),className:\"framer-ce6p1s\",\"data-framer-name\":\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9sumy\",\"data-framer-name\":\"Group 29614156\",name:\"Group 29614156\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wh7fj2\",\"data-framer-name\":\"Group 29614135\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614135\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M31.4869 17.5653C30.3342 16.6531 28.7748 16.5335 27.5161 17.2641C15.1408 24.4384 8.08201 37.7298 9.09626 51.9503C10.3951 70.1844 25.221 84.9073 43.5828 86.1971C44.4919 86.2615 45.3968 86.2929 46.2966 86.2929C59.5777 86.2929 71.7462 79.4147 78.5119 67.9053C79.2468 66.6554 79.128 65.1077 78.2086 63.9621C77.2883 62.8166 75.7947 62.3576 74.4045 62.7886C70.6704 63.9486 66.7663 64.4441 62.8059 64.2532C59.2726 64.0843 55.8077 63.352 52.5061 62.0776C50.9184 61.4632 49.8512 59.9113 49.8512 58.2142V55.756C49.8512 52.4298 47.1263 49.7238 43.7776 49.7238H39.2079C37.7203 49.7238 36.3275 48.9168 35.573 47.6177C32.9574 43.1146 31.4424 38.0115 31.1938 32.8609C31.0032 28.9263 31.4997 25.0511 32.6686 21.343C33.1044 19.9616 32.6404 18.4783 31.4869 17.5653ZM34.0571 48.4866C35.1235 50.322 37.0973 51.4616 39.2079 51.4616H43.7776C46.1616 51.4616 48.1012 53.3877 48.1012 55.756V58.2142C48.1012 60.6223 49.6162 62.8251 51.872 63.6965C55.3497 65.0398 59 65.8111 62.7221 65.9893C66.8979 66.1878 70.9977 65.6685 74.9274 64.4467C75.7742 64.1853 76.4697 64.5841 76.8397 65.0457C77.2106 65.5073 77.4473 66.2701 77.0012 67.0296C70.1142 78.7435 57.3398 85.4079 43.7058 84.4643C26.2088 83.234 12.0801 69.2035 10.8411 51.8281C9.87554 38.272 16.6028 25.6034 28.398 18.7643C28.6936 18.5929 28.9901 18.5233 29.2695 18.5233C29.7113 18.5233 30.1112 18.699 30.3957 18.9247C30.8605 19.2929 31.263 19.9845 30.999 20.8237C29.7677 24.7269 29.2456 28.805 29.4455 32.9441C29.7079 38.3704 31.3023 43.7442 34.0571 48.4866Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M21.3467 44.8521C18.9482 45.6624 17.3221 47.8135 17.205 50.3328C17.1828 50.8122 17.5562 51.2186 18.039 51.2407C18.0527 51.2415 18.0664 51.2415 18.08 51.2415C18.5449 51.2415 18.9319 50.8784 18.9533 50.4125C19.037 48.6128 20.1974 47.0752 21.9106 46.4965C23.6221 45.9204 25.4866 46.4312 26.6589 47.8067C26.9708 48.1732 27.5228 48.2208 27.8919 47.9094C28.2611 47.5996 28.3072 47.0515 27.9953 46.6849C26.3556 44.7588 23.7443 44.0384 21.3467 44.8521Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M78.9571 28.7012C78.8605 28.4067 78.6144 28.1853 78.3102 28.1199L68.3326 25.9749L63.1946 17.2146C63.0374 16.9473 62.7494 16.7827 62.4384 16.7827C62.1274 16.7827 61.8394 16.9473 61.6822 17.2146L56.5434 25.9749L46.5657 28.1199C46.2615 28.1853 46.0154 28.4067 45.9189 28.7012C45.8223 28.9948 45.8915 29.3181 46.0983 29.548L52.9016 37.1084L51.8728 47.1941C51.8412 47.5012 51.9771 47.8025 52.2292 47.9841C52.4812 48.1665 52.8119 48.2004 53.0965 48.0765L62.4384 43.9892L71.7804 48.0765C71.8931 48.1258 72.0136 48.1504 72.1333 48.1504C72.3153 48.1504 72.4956 48.0944 72.6476 47.9841C72.8997 47.8025 73.0356 47.5012 73.004 47.1941L71.9752 37.1084L78.7776 29.548C78.9844 29.3172 79.0536 28.9948 78.9571 28.7012ZM70.4132 36.2361C70.25 36.4177 70.1705 36.6596 70.1953 36.9022L71.1113 45.8848L62.7913 42.2446C62.6785 42.1954 62.5589 42.1708 62.4384 42.1708C62.3179 42.1708 62.1983 42.1954 62.0855 42.2446L53.7655 45.8848L54.6815 36.9022C54.7063 36.6596 54.6268 36.4177 54.4636 36.2361L48.4045 29.503L57.2911 27.5922C57.5312 27.5404 57.738 27.3911 57.8618 27.1798L62.4384 19.3784L67.0141 27.1798C67.138 27.3911 67.3448 27.5404 67.5849 27.5922L76.4714 29.503L70.4132 36.2361Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M42.0221 34.2686C41.5385 34.2686 41.1471 34.6572 41.1471 35.1375V38.1939H38.0693C37.5857 38.1939 37.1943 38.5825 37.1943 39.0628C37.1943 39.543 37.5857 39.9316 38.0693 39.9316H41.1471V42.9881C41.1471 43.4683 41.5385 43.857 42.0221 43.857C42.5057 43.857 42.8971 43.4683 42.8971 42.9881V39.9316H45.9749C46.4585 39.9316 46.8499 39.543 46.8499 39.0628C46.8499 38.5825 46.4585 38.1939 45.9749 38.1939H42.8971V35.1375C42.8971 34.6572 42.5057 34.2686 42.0221 34.2686Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M63.1871 50.6699C62.7035 50.6699 62.3122 51.0585 62.3122 51.5388V54.5952H59.2344C58.7507 54.5952 58.3594 54.9839 58.3594 55.4641C58.3594 55.9444 58.7507 56.333 59.2344 56.333H62.3122V59.3894C62.3122 59.8697 62.7035 60.2583 63.1871 60.2583C63.6708 60.2583 64.0621 59.8697 64.0621 59.3894V56.333H67.1399C67.6236 56.333 68.0149 55.9444 68.0149 55.4641C68.0149 54.9839 67.6236 54.5952 67.1399 54.5952H64.0621V51.5388C64.0621 51.0585 63.6708 50.6699 63.1871 50.6699Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected sleep quality tracker, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"such as\"})]}),className:\"framer-zhh26e\",\"data-framer-name\":\"Any connected sleep quality tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected sleep quality tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-s01p5q\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-83iidu\",\"data-framer-name\":\"Group 29614157\",name:\"Group 29614157\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b18a72\",\"data-framer-name\":\"Group 29614136\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614136\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M67.4794 26.5139C62.6138 26.4101 58.9546 26.462 55.9577 26.7474C55.0494 24.2173 53.3497 23.1793 52.0912 22.4268C51.0013 21.778 50.4823 21.4407 50.4823 20.6752V17.4315C50.4823 17.0682 50.1968 16.7827 49.8335 16.7827H38.1565C37.7932 16.7827 37.5078 17.0682 37.5078 17.4315V18.3138C37.5078 20.4157 37.3521 21.0904 36.846 21.2461L36.2232 21.4277C34.2251 21.9986 30.9424 22.9328 28.3345 25.7483C29.1519 23.4777 30.4105 20.8179 32.3568 17.7947C32.4865 17.6001 32.4995 17.3406 32.3827 17.133C32.2659 16.9254 32.0454 16.7956 31.8118 16.7956H27.8155C27.6079 16.7956 27.4133 16.8994 27.2836 17.0681C26.038 18.7938 24.9481 20.7011 24.2085 22.0894C24.1566 20.753 24.3642 19.6501 24.5459 18.6381C24.6107 18.2619 24.6756 17.8986 24.7275 17.5482C24.7535 17.3666 24.7016 17.172 24.5718 17.0293C24.4421 16.8865 24.2734 16.8087 24.0788 16.8087H17.5783C17.2669 16.8087 17.0074 17.0293 16.9426 17.3277C15.8008 22.7123 15.4375 29.1218 15.9175 35.3755C12.2975 38.7101 11 42.7323 11 50.5435C11 66.4116 21.2371 80.0741 37.0927 85.3554C39.1558 86.0431 43.2169 86.7827 46.8889 86.7827C48.7054 86.7827 50.4181 86.6011 51.7545 86.147C54.6739 85.1738 56.9316 83.3963 58.6702 80.6845C61.4598 76.3379 66.1956 61.793 64.5478 47.8839C64.1715 44.6531 63.2113 39.8264 59.5265 34.5842C63.5227 33.3645 67.3373 33.5203 67.4023 33.5203C67.5709 33.5333 67.7526 33.4684 67.8823 33.3387C68.0121 33.2219 68.0899 33.0402 68.0899 32.8716V27.1885C68.0899 26.8382 67.8045 26.5527 67.4542 26.5398L67.4794 26.5139ZM36.5862 22.6733L37.222 22.4917C38.8049 22.0116 38.8049 20.1302 38.8049 18.3138V18.0802H41.3999V20.5195C41.3999 20.8828 41.6853 21.1682 42.0486 21.1682C42.4119 21.1682 42.6973 20.8828 42.6973 20.5195V18.0802H45.2923V20.5195C45.2923 20.8828 45.5778 21.1682 45.9411 21.1682C46.3044 21.1682 46.5898 20.8828 46.5898 20.5195V18.0802H49.1848V20.6752C49.1848 22.2192 50.3266 22.8939 51.4295 23.5426C52.5842 24.2303 53.8688 25.0088 54.6343 26.8901C51.5593 27.2794 49.1848 27.954 46.7974 29.031L46.3303 27.8633C46.2006 27.5389 45.8373 27.3702 45.4999 27.487L40.3359 29.3684C40.0115 29.4851 39.8428 29.8355 39.9336 30.1598L40.3229 31.4313C37.3127 33.118 35.3405 35.1162 33.7187 38.0875C32.6548 37.1273 30.3062 35.2849 26.9587 34.169C26.8809 33.5462 26.7901 32.0151 27.2182 29.7315C29.5667 24.6712 33.9393 23.4127 36.5735 22.6602L36.5862 22.6733ZM17.0328 36.0892L17.2534 35.8816V35.5961C17.2534 35.5961 17.2534 35.4534 17.2275 35.2588C16.7733 29.3163 17.0847 23.2438 18.1227 18.0795H23.3257C23.3127 18.1833 23.2867 18.2871 23.2738 18.378C23.0013 19.896 22.651 21.7904 23.1959 24.3854C23.2478 24.6579 23.4813 24.8655 23.7538 24.8914C24.0263 24.9303 24.2988 24.7747 24.4156 24.5152C24.4285 24.4762 26.0504 21.0119 28.1394 18.0666H30.6306C24.2988 28.4076 25.6871 34.545 25.752 34.8041C25.752 34.83 25.7779 34.856 25.7909 34.8819C25.8039 34.9209 25.8169 34.9598 25.8428 34.9858C25.8688 35.0247 25.8947 35.0636 25.9336 35.0896C25.9596 35.1155 25.9726 35.1415 26.0115 35.1544C26.0504 35.1933 26.1023 35.2063 26.1542 35.2323C26.1672 35.2323 26.1802 35.2582 26.2061 35.2582C29.4239 36.2443 31.7205 38.0219 32.7714 38.9561C18.6804 45.6511 15.7092 58.9636 15.0865 64.0241C13.296 59.8462 12.3228 55.2659 12.3228 50.4911C12.3228 42.9396 13.5554 39.1637 17.0327 36.063L17.0328 36.0892ZM63.2884 48.0129C64.9103 61.5973 60.3172 75.7406 57.6184 79.9574C56.0484 82.3967 54.0113 84.0056 51.3775 84.8879C48.5878 85.835 43.813 85.4588 40.4005 84.797C60.408 75.676 53.6087 53.1905 51.987 48.6615C50.9749 45.82 50.2613 42.7968 51.9221 39.9938C53.4012 37.4897 55.8146 35.9456 58.2928 34.9985C61.9907 40.1236 62.9379 44.8594 63.3011 48.0125L63.2884 48.0129ZM66.8176 32.1838H66.7527C64.028 32.1838 54.7377 32.6899 50.8066 39.333C48.8734 42.6027 49.7038 46.1059 50.7677 49.0902C52.3506 53.5406 59.1888 76.1296 38.2337 84.304C37.9742 84.2391 37.7407 84.1613 37.5331 84.0964C27.8797 80.8916 20.3928 74.4688 16.1636 66.3334C16.1896 66.2555 16.2155 66.1777 16.2155 66.0998C16.2155 65.9182 16.514 47.5455 34.1596 39.7605C34.1855 39.7605 34.2115 39.7216 34.2374 39.7086C34.2763 39.6826 34.3023 39.6697 34.3282 39.6437V39.6307C34.3542 39.6048 34.3801 39.5659 34.4061 39.5269C34.4191 39.501 34.445 39.488 34.458 39.4621C36.1188 36.1146 38.0651 34.1164 41.3867 32.3388C41.6591 32.1961 41.7889 31.8717 41.6981 31.5733L41.3348 30.3796L45.331 28.9264L45.8241 30.1461C45.889 30.3148 46.0187 30.4445 46.1874 30.5094C46.3561 30.5743 46.5377 30.5613 46.7064 30.4964C51.5071 28.2129 56.0741 27.5901 66.792 27.7977V32.1831L66.8176 32.1838Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ullkcv\",\"data-framer-name\":\"Group 29614141\",name:\"Group 29614141\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected heart rate tracker, such as\"})}),className:\"framer-16yzynk\",\"data-framer-name\":\"Any connected heart rate tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected heart rate tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Heart Rate\"})}),className:\"framer-jq9r97\",\"data-framer-name\":\"Heart Rate\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Heart Rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gv1ujf\",\"data-framer-name\":\"Group 29614158\",name:\"Group 29614158\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qj3aq9\",\"data-framer-name\":\"Group 29614137\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:111,name:\"Group 29614137\",svg:'<svg width=\"111\" height=\"224\" viewBox=\"0 0 111 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.152344 8.54004C0.152344 4.12176 3.73407 0.540039 8.15234 0.540039H102.152C106.571 0.540039 110.152 4.12176 110.152 8.54004V215.815C110.152 220.234 106.571 223.815 102.152 223.815H8.15234C3.73406 223.815 0.152344 220.234 0.152344 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M33.3818 80.7244C33.6351 80.9491 33.6527 81.3302 33.4205 81.5753C33.1883 81.8204 32.7943 81.8374 32.541 81.6127C32.2877 81.3881 32.2702 81.0069 32.5023 80.7619C32.7345 80.5168 33.1285 80.4998 33.3818 80.7244ZM81.26 18.6547C83.0787 20.5539 84.0075 23.1269 83.8069 25.7103L79.7684 77.042C79.3885 81.8819 75.16 85.6699 70.143 85.6699H26.5813C21.5648 85.6699 17.336 81.8784 16.9559 77.042L12.9174 25.7137C12.7134 23.1305 13.6421 20.5574 15.4643 18.6582C17.283 16.759 19.8652 15.6699 22.5423 15.6699H74.1813C76.8584 15.6699 79.4405 16.759 81.2593 18.6582L81.26 18.6547ZM80.2679 19.543C78.6779 17.8856 76.5178 16.9734 74.1785 16.9734H22.5467C20.2108 16.9734 18.0473 17.8856 16.4573 19.543C14.8672 21.2005 14.0898 23.3584 14.2692 25.6115L18.3077 76.9398C18.6349 81.1022 22.2688 84.3628 26.5852 84.3628H70.147C74.4599 84.3628 78.0974 81.1022 78.4246 76.9398L82.4631 25.6115C82.639 23.355 81.8615 21.2005 80.275 19.543H80.2679ZM30.1203 80.514H26.7501C24.1152 80.514 21.8955 78.5229 21.6949 75.9805L20.4039 59.5548C20.3757 59.194 20.0521 58.9353 19.6792 58.9524C19.3063 58.9796 19.0284 59.2927 19.0565 59.6535L20.3476 76.0792C20.6009 79.299 23.4116 81.8209 26.7501 81.8209H30.1203C30.4932 81.8209 30.7957 81.5282 30.7957 81.1675C30.7957 80.8067 30.4932 80.514 30.1203 80.514ZM38.9607 80.514H35.8016C35.4288 80.514 35.1262 80.8067 35.1262 81.1675C35.1262 81.5283 35.4288 81.821 35.8016 81.821H38.9607C39.3336 81.821 39.6361 81.5283 39.6361 81.1675C39.6361 80.8067 39.3336 80.514 38.9607 80.514ZM63.3708 23.4264C63.9724 24.0629 64.2714 24.924 64.1905 25.785L63.2019 36.3731C63.0541 37.9727 61.6857 39.181 60.0253 39.181H36.6986C35.0381 39.181 33.6732 37.9728 33.522 36.3731L32.5334 25.7815C32.4525 24.9204 32.7515 24.0627 33.3531 23.4229C33.9582 22.7831 34.813 22.4189 35.7066 22.4189H61.0145C61.9081 22.4189 62.7664 22.7865 63.368 23.4229L63.3708 23.4264ZM62.8466 25.6659C62.8959 25.1622 62.727 24.6789 62.3752 24.3079C62.0234 23.9335 61.5415 23.7293 61.0173 23.7293H35.7094C35.1887 23.7293 34.7032 23.9335 34.3515 24.3079C33.9997 24.6823 33.8308 25.1622 33.8801 25.6659L34.8686 36.2574C34.9566 37.1798 35.7411 37.8741 36.6979 37.8741H60.0246C60.9815 37.8741 61.7695 37.1798 61.8539 36.2574L62.8424 25.6659H62.8466ZM49.9216 32.7418C50.3402 33.1468 50.5689 33.6812 50.5689 34.2496C50.5689 34.8181 50.3402 35.3557 49.9216 35.7574C49.5029 36.159 48.9507 36.3836 48.3631 36.3836C47.7756 36.3836 47.2198 36.1624 46.8047 35.7574C46.3861 35.3558 46.1574 34.8181 46.1574 34.2496C46.1574 33.8991 46.2559 33.5621 46.4212 33.2592L42.8998 29.4303C42.6148 29.1342 43.0757 28.6917 43.3818 28.964C43.3818 28.964 46.8047 31.908 47.3464 32.3744C48.1731 31.9727 49.2495 32.0885 49.9215 32.7385L49.9216 32.7418ZM49.218 34.2496C49.218 34.0284 49.13 33.8208 48.9682 33.6642C48.8064 33.5076 48.5918 33.4226 48.3631 33.4226C48.1345 33.4226 47.9199 33.5076 47.7581 33.6642C47.5962 33.8208 47.5083 34.0284 47.5083 34.2496C47.5083 34.4708 47.5963 34.6785 47.7581 34.835C48.0817 35.1482 48.6411 35.1482 48.9683 34.835C49.1301 34.6785 49.218 34.4708 49.218 34.2496ZM44.6271 27.2146C44.7116 27.5039 44.9824 27.6911 45.2779 27.6911C45.3377 27.6911 45.4011 27.6843 45.4609 27.6672C45.8197 27.5685 46.0308 27.2078 45.9287 26.8606L45.5277 25.4788C45.4292 25.1316 45.0598 24.9274 44.694 25.0261C44.3351 25.1248 44.1241 25.4856 44.2261 25.8328L44.6271 27.2146ZM52.0463 25.0976C51.6875 24.9887 51.3111 25.1861 51.2021 25.5298L50.7658 26.9014C50.6568 27.2452 50.8573 27.6127 51.2126 27.7183C51.2794 27.7387 51.3463 27.7455 51.4096 27.7455C51.6981 27.7455 51.9654 27.5651 52.0569 27.2826L52.4931 25.911C52.6022 25.5672 52.4016 25.1997 52.0463 25.0942V25.0976ZM38.3234 33.6949L36.8564 33.4736C36.487 33.4226 36.1423 33.6642 36.086 34.0182C36.0297 34.3756 36.283 34.7091 36.6489 34.7636L38.1158 34.9848C38.151 34.9916 38.1862 34.9916 38.2214 34.9916C38.5485 34.9916 38.837 34.7602 38.8862 34.4368C38.9425 34.0795 38.6892 33.7459 38.3234 33.6915V33.6949ZM39.7973 28.2935C39.5159 28.0518 39.0902 28.0791 38.844 28.3479C38.5977 28.6168 38.6224 29.0321 38.9003 29.2703L40.0119 30.2233C40.1421 30.3357 40.3004 30.3867 40.4587 30.3867C40.6452 30.3867 40.8316 30.3118 40.9653 30.1655C41.2115 29.8966 41.1869 29.4814 40.909 29.2431L39.7973 28.2901L39.7973 28.2935ZM58.016 28.5454C57.7733 28.2697 57.3476 28.2356 57.0626 28.4671L55.9299 29.3962C55.6449 29.6311 55.6098 30.0429 55.849 30.3186C55.9827 30.4717 56.1726 30.55 56.3626 30.55C56.5174 30.55 56.6722 30.499 56.7988 30.3969L57.9316 29.4677C58.2165 29.2329 58.2517 28.821 58.0125 28.5453L58.016 28.5454ZM59.8805 33.7119L58.4065 33.8991C58.0371 33.9467 57.7768 34.2735 57.826 34.6343C57.8718 34.9644 58.1602 35.2026 58.4944 35.2026C58.5226 35.2026 58.5542 35.1992 58.5859 35.1958L60.0599 35.0086C60.4292 34.961 60.6896 34.6343 60.6403 34.2735C60.5911 33.9161 60.2533 33.6643 59.8805 33.7119Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-171wjvx\",\"data-framer-name\":\"Group 29614142\",name:\"Group 29614142\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected weight tracker, such as\"})}),className:\"framer-1dzs9ri\",\"data-framer-name\":\"Any connected weight tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected weight tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-dgg7aq\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p9us3z\",\"data-framer-name\":\"Group 29614159\",name:\"Group 29614159\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18ffm8j\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:297,intrinsicWidth:4,name:\"Line 5\",svg:'<svg width=\"4\" height=\"297\" viewBox=\"-1 -1 4 297\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"294.218\" x2=\"1.00001\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kjuvyt\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:5,name:\"Line 6\",svg:'<svg width=\"5\" height=\"71\" viewBox=\"-1 -1 5 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.15234\" y1=\"68.2783\" x2=\"1.15235\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-112xccp\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:4,name:\"Line 7\",svg:'<svg width=\"4\" height=\"71\" viewBox=\"-1 -1 4 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"68.2783\" x2=\"1\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14srae4\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rz6cb\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vk6swo\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6665.04248046875),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-f6jj9p\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19f9bgi\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-1wwvnrb\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvhpjo\",\"data-framer-name\":\"Group 29614160\",name:\"Group 29614160\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6832.32861328125),sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"},className:\"framer-lpturi\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-6xeykk\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k9yle\",\"data-framer-name\":\"Line 55\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:392,name:\"Line 55\",svg:'<svg width=\"392\" height=\"5\" viewBox=\"-1 -1 392 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.27832\" x2=\"390\" y2=\"1.27832\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19vtlil\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.81543 12.4028L1.45943 3.12598L12.1714 3.12598L6.81543 12.4028Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1blyp6r\",\"data-framer-name\":\"Group 29614161\",name:\"Group 29614161\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sujdc7\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x5o4xu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1imdzi6\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Fitbit\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-6hdmsp\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Whoop\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Garmin\"]})}),className:\"framer-187y2tv\",\"data-framer-name\":\"Apple Watch, Whoop, Garmin\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Whoop, Garmin\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Withings,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Fitbit,\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-15t9zgk\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\"},children:\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\"},children:\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\"})}),className:\"framer-1azyvs3\",\"data-framer-name\":\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u18qel hidden-12mzcyi\",\"data-framer-name\":\"MODULE - HOW MEASURE MEDS\",name:\"MODULE - HOW MEASURE MEDS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3984.5),pixelHeight:811,pixelWidth:1441,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 419px)\",src:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png\",srcSet:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png 1441w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3432),pixelHeight:811,pixelWidth:1441,positionX:\"center\",positionY:\"center\",sizes:\"1440px\",src:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png\",srcSet:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png 1441w\"},className:\"framer-14moe3\",\"data-framer-name\":\"BACKGROUND IMAGE\",name:\"BACKGROUND IMAGE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-syiqyh\",\"data-framer-name\":\"APPLE HEALTH\",name:\"APPLE HEALTH\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k276j5\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4667.6005859375),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3839.514404296875),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-wjly1m\",\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(40, 40, 40)\"},children:\"+\"})}),className:\"framer-1ob3q4s hidden-3lasd\",\"data-framer-name\":\"+\",fonts:[\"GF;Greed TRIAL-700\"],name:\"+\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\"})}),fonts:[\"Inter-Medium\"],transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\"})}),className:\"framer-i3455p\",\"data-framer-name\":\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"How do you measure your medication data using Levl?\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"How do you measure your medication data using Levl?\"})}),className:\"framer-16lmc94\",\"data-framer-name\":\"How do you measure your medication data using Levl?\",fonts:[\"GF;Greed TRIAL-700\"],name:\"How do you measure your medication data using Levl?\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-657xi hidden-12mzcyi\",\"data-framer-name\":\"MODULE - WHY MEASURE MEDS\",name:\"MODULE - WHY MEASURE MEDS\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2191),positionX:\"center\",positionY:\"center\",sizes:\"1441px\",src:\"https://framerusercontent.com/images/ba4N2MmyuJA1OM235GQgsySzY8.png\",srcSet:\"https://framerusercontent.com/images/ba4N2MmyuJA1OM235GQgsySzY8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ba4N2MmyuJA1OM235GQgsySzY8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ba4N2MmyuJA1OM235GQgsySzY8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ba4N2MmyuJA1OM235GQgsySzY8.png 2882w\"},className:\"framer-mkhazf hidden-3lasd\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2145.5),pixelHeight:1601,pixelWidth:2883,sizes:\"2087.5px\",src:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png\",srcSet:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png 2883w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1601,pixelWidth:2883,src:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png\",srcSet:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png 2883w\"},className:\"framer-hlpx35 hidden-vlkg60\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\"})}),className:\"framer-1yej3kz\",\"data-framer-name\":\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\"})}),className:\"framer-x70bwq\",\"data-framer-name\":\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hm65s3\",\"data-framer-name\":\"FACT 1\",name:\"FACT 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ociufw\",\"data-framer-name\":\"Ellipse 2\",name:\"Ellipse 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\"},children:\"The number of mental health medications the average person trials before finding what works best for them\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"27px\"},children:\"The number of mental health medications the average person trials before finding what works best for them\"})}),className:\"framer-5pquij\",\"data-framer-name\":\"The number of mental health medications the average person trials before finding what works best for them\",fonts:[\"Inter-Medium\"],name:\"The number of mental health medications the average person trials before finding what works best for them\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:[\"x\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"150px\"},children:\"3\"})]})}),className:\"framer-8accx2\",\"data-framer-name\":\"x3\",fonts:[\"GF;Greed TRIAL-700\"],name:\"x3\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pbof7\",\"data-framer-name\":\"FACT 2\",name:\"FACT 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-32nj7t\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\"},children:\"How many people stop taking mental health medication prematurely, because they do not believe it is working\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"27px\"},children:\"How many people stop taking mental health medication prematurely, because they do not believe it is working\"})}),className:\"framer-1vxxc2v\",\"data-framer-name\":\"How many people stop taking mental health medication prematurely, because they do not believe it is working\",fonts:[\"Inter-Medium\"],name:\"How many people stop taking mental health medication prematurely, because they do not believe it is working\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"110px\"},children:\"6\"}),\" out of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"110px\"},children:\"10\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"120px\"},children:\"6\"}),\" out of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"120px\"},children:\"10\"})]})}),className:\"framer-1bzgslo\",\"data-framer-name\":\"6 out of 10\",fonts:[\"GF;Greed TRIAL-700\"],name:\"6 out of 10\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Why measure your symptoms and side effects when taking mental health medication?\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Why measure your symptoms and side effects when taking mental health medication?\"})}),className:\"framer-q8673t\",\"data-framer-name\":\"Why measure your symptoms and side effects when taking mental health medication?\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Why measure your symptoms and side effects when taking mental health medication?\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6z58h hidden-12mzcyi\",\"data-framer-name\":\"MODULE - INTRO\",name:\"MODULE - INTRO\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2aqq8e\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbrhd8\",\"data-framer-name\":\"Background carousel\",name:\"Background carousel\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-164d425-container\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(49, 124, 6)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"eNSdPhXsV\",layoutId:\"eNSdPhXsV\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgb(214, 228, 205)\",dotsBlur:4,dotsFill:\"rgb(49, 124, 6)\",dotsGap:10,dotsInset:40,dotSize:16,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aj60j1\",\"data-framer-name\":\"Carousel two module - weight\",name:\"Carousel two module - weight\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5l1tr2\",\"data-framer-name\":\"Text - weight\",name:\"Text - weight\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\"},children:\"See how your medication is causing weight changes.\"})}),className:\"framer-uqor9h\",\"data-framer-name\":\"See how your medication is causing weight changes.\",fonts:[\"Inter-Bold\"],name:\"See how your medication is causing weight changes.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\"})}),className:\"framer-vq5hjn\",\"data-framer-name\":\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\",fonts:[\"Inter-Light\"],name:\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuwp1\",\"data-framer-name\":\"Levl screen - weight\",name:\"Levl screen - weight\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png\",srcSet:\"https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png 1245w\"},className:\"framer-14hbjtq\",\"data-framer-name\":\"Screen Weight\",name:\"Screen Weight\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8lvex7\",\"data-framer-name\":\"Carousel one module - sleep\",name:\"Carousel one module - sleep\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oey5f5\",\"data-framer-name\":\"Text - sleep\",name:\"Text - sleep\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"See how dosage changes influence your sleep quality.\"})}),className:\"framer-vk2kl9\",\"data-framer-name\":\"See how dosage changes influence your sleep quality.\",fonts:[\"Inter-Bold\"],name:\"See how dosage changes influence your sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\"})}),className:\"framer-rpnwvk\",\"data-framer-name\":\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\",fonts:[\"Inter-Light\"],name:\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16sdrv2\",\"data-framer-name\":\"Levl screen - sleep\",name:\"Levl screen - sleep\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png\",srcSet:\"https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png 1245w\"},className:\"framer-1ced4gp\",\"data-framer-name\":\"Screen Sleep\",name:\"Screen Sleep\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v1jo0b\",\"data-framer-name\":\"Carousel three module - heart rate\",name:\"Carousel three module - heart rate\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gig3h3\",\"data-framer-name\":\"Text - heart rate\",name:\"Text - heart rate\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"See how medication can impact your heart rate.\"})}),className:\"framer-1myv58l\",\"data-framer-name\":\"See how dosage changes influence your sleep quality.\",fonts:[\"Inter-Bold\"],name:\"See how dosage changes influence your sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Levl will flag when there are changes in your heart rate over time, which could be linked to your medication.\"})}),className:\"framer-57q86z\",\"data-framer-name\":\"See how medication can have an impact on your heart rate\",fonts:[\"Inter-Light\"],name:\"See how medication can have an impact on your heart rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15v3yne\",\"data-framer-name\":\"Levl screen - heart rate\",name:\"Levl screen - heart rate\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png\",srcSet:\"https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png 1245w\"},className:\"framer-tm9qaw\",\"data-framer-name\":\"Screen Heart rate\",name:\"Screen Heart rate\"})})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\"})}),className:\"framer-acvn4k\",\"data-framer-name\":\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwmyqa hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - FOOTER\",name:\"MODULE - FOOTER\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c0eg52\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(14073),pixelHeight:532,pixelWidth:913,positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 502px)\",src:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png\",srcSet:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png 913w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:532,pixelWidth:913,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png\",srcSet:\"https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png?scale-down-to=512 512w,https://framerusercontent.com/images/u1tfEVoL1z66dabqwrdHfjnbnUs.png 913w\"},className:\"framer-1yxg3np\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"code\",{children:\"2024 \\xa9 COPYRIGHT LEVL HEALTH, LEVL\\xae \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(\"code\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/privacy-policy\",nodeId:\"mBYsE7vNr\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"PRIVACY POLICY\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/terms-of-service\",nodeId:\"mBYsE7vNr\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"TERMS AND CONDITIONS\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:\"https://www.findlevl.com/cookies\",nodeId:\"mBYsE7vNr\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"COOKIES\"})})]})})]}),className:\"framer-76u4gr\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[\"hello@findlevl.com\",/*#__PURE__*/_jsx(\"br\",{}),\"(347) 770-2447\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"29px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"19 Morris Avenue\",/*#__PURE__*/_jsx(\"br\",{}),\"Brooklyn, NY 11205\"]})]}),className:\"framer-mzkn6r\",\"data-framer-name\":\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",fonts:[\"Inter-Medium\"],name:\"There are just three steps to setting up Levl, for you gain immediate insights into your medication, mind, and body.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t8n2gj hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - RECAP\",name:\"MODULE - RECAP\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ruis3h\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1irpryu\",\"data-framer-name\":\"TEXT BOXES\",name:\"TEXT BOXES\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgvsxi\",\"data-framer-name\":\"ADVOCATE\",name:\"ADVOCATE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xqikiy\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Become an advocate of your own mental health journey \"})}),className:\"framer-dzeajo\",\"data-framer-name\":\"Become an advocate of your own mental health journey\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Become an advocate of your own mental health journey\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Speak to your doctor with confidence about the experience you are having\"})}),className:\"framer-8m66ij\",\"data-framer-name\":\"Speak to your doctor with confidence about the experience you are having\",fonts:[\"Inter-Light\"],name:\"Speak to your doctor with confidence about the experience you are having\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mfhdio\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12svj3y\",\"data-framer-name\":\"OPTIMAL\",name:\"OPTIMAL\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5gwigy\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Reach your optimal medication and dosage, faster\"})}),className:\"framer-1ygw188\",\"data-framer-name\":\"Reach your optimal medication and dosage, faster\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Reach your optimal medication and dosage, faster\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Helps you to adjust dosage, to find a balance between efficacy and effects\"})}),className:\"framer-4rftds\",\"data-framer-name\":\"Helps you to adjust dosage, to find a balance between efficacy and effects\",fonts:[\"Inter-Light\"],name:\"Helps you to adjust dosage, to find a balance between efficacy and effects\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n8o6ss\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lv33bs\",\"data-framer-name\":\"CONFIDENT\",name:\"CONFIDENT\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frk5ck\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Be confident your medication is working\"})}),className:\"framer-fk51t\",\"data-framer-name\":\"Be confident your medication is working\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Be confident your medication is working\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Helps you to understand the effects your medication is having on your body\"})}),className:\"framer-g6r6oi\",\"data-framer-name\":\"Helps you to understand the effects your medication is having on your body\",fonts:[\"Inter-Light\"],name:\"Helps you to understand the effects your medication is having on your body\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-otyad9\",\"data-framer-name\":\"COPY\",name:\"COPY\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5y7cd\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nis3xr\",\"data-framer-name\":\"side-buttons\",name:\"side-buttons\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-79f1is\",\"data-framer-name\":\"btn\",name:\"btn\",style:{rotate:-180},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wxgkl4\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-molnq\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-59xing\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vmav8c\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bfqdmn\",\"data-framer-name\":\"highlight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:2,name:\"highlight\",style:{rotate:180},svg:'<svg width=\"2\" height=\"20\" viewBox=\"0 0 2 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_1819_17950)\">\\n<path d=\"M1.02344 18.9102C1.02344 19.1863 0.79958 19.4102 0.523437 19.4102V19.4102C0.247295 19.4102 0.0234366 19.1863 0.0234366 18.9102L0.0234375 0.410156L1.02344 0.410156L1.02344 18.9102Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_1819_17950\" x=\"-0.976562\" y=\"-0.589844\" width=\"3\" height=\"21\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.5\" result=\"effect1_foregroundBlur_1819_17950\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15ynyaz\",\"data-framer-name\":\"highlight\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:92,intrinsicWidth:2,name:\"highlight\",style:{rotate:180},svg:'<svg width=\"2\" height=\"92\" viewBox=\"0 0 2 92\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_1819_17951)\">\\n<path d=\"M1.02344 91.4102L0.0234324 91.4102L0.0234375 0.910153C0.0234375 0.63401 0.247296 0.410156 0.52344 0.410156V0.410156C0.799584 0.410156 1.02344 0.634015 1.02344 0.910159L1.02344 91.4102Z\" fill=\"white\" fill-opacity=\"0.8\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_1819_17951\" x=\"-0.976562\" y=\"-0.589844\" width=\"3\" height=\"93\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.5\" result=\"effect1_foregroundBlur_1819_17951\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u82dbu\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3c5u2\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-49kqgm\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sxn3t5\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urceiw\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-126gt69\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f7q5lc\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ca80p\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pzxj7s\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117aacn\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvl68y\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g7bvt3\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-umvdja\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5vg7ik\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n587q5\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fx6v4l\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-36qt1\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ugl0bw\",\"data-framer-name\":\"btn\",name:\"btn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o2why5\",\"data-framer-name\":\"base\",name:\"base\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b6bo96\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bplmon\",\"data-framer-name\":\"frame-shadow\",name:\"frame-shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d1gc40\",\"data-framer-name\":\"shadow\",name:\"shadow\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pru2zh\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6dv0cc\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvu57r\",\"data-framer-name\":\"side-shadow\",name:\"side-shadow\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j1c6e6\",\"data-framer-name\":\"titanium-frame\",name:\"titanium-frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zmgms\",\"data-framer-name\":\"highlight\",name:\"highlight\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v1u80a\",\"data-border\":true,\"data-framer-name\":\"shadow-outer\",name:\"shadow-outer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-69mykf\",\"data-border\":true,\"data-framer-name\":\"shadow-outer\",name:\"shadow-outer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nrgwh\",\"data-border\":true,\"data-framer-name\":\"shadow-inner\",name:\"shadow-inner\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3g8nt0\",\"data-border\":true,\"data-framer-name\":\"highlight-inner\",name:\"highlight-inner\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vfb44z\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-69kjkn\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\",style:{rotate:-90}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5azpsf\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6qi4ht\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r50syq\",\"data-framer-name\":\"signal-cutout\",name:\"signal-cutout\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsdjc6\",\"data-framer-name\":\"screen-frame\",name:\"screen-frame\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-120gauv\",\"data-framer-name\":\"screen-border\",name:\"screen-border\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sy5ioj\",\"data-border\":true,\"data-framer-name\":\"screen-border\",name:\"screen-border\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqjtap\",\"data-framer-name\":\"screen-here\",name:\"screen-here\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjqo69\",\"data-framer-name\":\"screen\",name:\"screen\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40zc72\",\"data-framer-name\":\"Insights - symptoms and adherence\",name:\"Insights - symptoms and adherence\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15lcpke\",\"data-framer-name\":\"Frame 56\",name:\"Frame 56\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n6ispj\",\"data-framer-name\":\"Group 212\",name:\"Group 212\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l6dzow\",\"data-framer-name\":\"Rectangle 766\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:246,intrinsicWidth:193,name:\"Rectangle 766\",svg:'<svg width=\"193\" height=\"246\" viewBox=\"0 0 193 246\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"67.9355\" y=\"0.419922\" width=\"130.76\" height=\"214.542\" rx=\"12\" transform=\"rotate(18.2688 67.9355 0.419922)\" fill=\"#D6D6D7\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2u0q1d\",\"data-framer-name\":\"Frame 64\",name:\"Frame 64\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17hism\",\"data-framer-name\":\"Group 29614004\",name:\"Group 29614004\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtOTAw\",\"--framer-font-family\":'\"Greed TRIAL\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Optimum dosage\"})}),className:\"framer-1ys1zmw\",\"data-framer-name\":\"Optimum dosage\",fonts:[\"GF;Greed TRIAL-900\"],name:\"Optimum dosage\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gqcgk\",\"data-framer-name\":\"Header - back button\",name:\"Header - back button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tjkf7a\",\"data-framer-name\":\"Ellipse 254\",name:\"Ellipse 254\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u682ko\",\"data-framer-name\":\"Vector 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:11,name:\"Vector 26\",svg:'<svg width=\"11\" height=\"19\" viewBox=\"-1 -1 11 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.44434 0.410156L0.444336 8.41016L8.44434 16.4102\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7vmt8\",\"data-framer-name\":\"Rectangle 33722\",name:\"Rectangle 33722\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oq680g\",\"data-framer-name\":\"Rectangle 33723\",name:\"Rectangle 33723\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ar236\",\"data-framer-name\":\"Group 388\",name:\"Group 388\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145wlmm\",\"data-framer-name\":\"Group 270\",name:\"Group 270\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lfkjd1\",\"data-framer-name\":\"Daily Journal\",name:\"Daily Journal\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x8swfq\",\"data-framer-name\":\"Group 15098\",name:\"Group 15098\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(118, 66, 254)\"},children:\"Medication insights\"})}),className:\"framer-ln6wwb\",\"data-framer-name\":\"Medication insights\",fonts:[\"Inter-Medium\"],name:\"Medication insights\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ucolf6\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,name:\"Frame\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1819_18031)\">\\n<path d=\"M6.14355 12.3887C6.54124 12.3891 6.92251 12.5473 7.20371 12.8285C7.48492 13.1097 7.6431 13.491 7.64355 13.8887C7.64355 14.0213 7.69623 14.1485 7.79 14.2422C7.88377 14.336 8.01095 14.3887 8.14355 14.3887C8.27616 14.3887 8.40334 14.336 8.49711 14.2422C8.59088 14.1485 8.64355 14.0213 8.64355 13.8887C8.64401 13.491 8.80219 13.1097 9.0834 12.8285C9.3646 12.5473 9.74587 12.3891 10.1436 12.3887H14.1436C14.4087 12.3884 14.6629 12.2829 14.8503 12.0954C15.0378 11.908 15.1433 11.6538 15.1436 11.3887V3.38867C15.1433 3.12355 15.0378 2.86937 14.8503 2.6819C14.6629 2.49443 14.4087 2.38898 14.1436 2.38867H11.1436C10.4807 2.38942 9.8453 2.65306 9.37662 3.12174C8.90794 3.59041 8.64431 4.22586 8.64355 4.88867V9.88867C8.64355 10.0213 8.59088 10.1485 8.49711 10.2422C8.40334 10.336 8.27616 10.3887 8.14355 10.3887C8.01095 10.3887 7.88377 10.336 7.79 10.2422C7.69623 10.1485 7.64355 10.0213 7.64355 9.88867V4.88867C7.6428 4.22586 7.37917 3.59041 6.91049 3.12174C6.44181 2.65306 5.80636 2.38942 5.14355 2.38867H2.14355C1.87843 2.38898 1.62425 2.49443 1.43678 2.6819C1.24931 2.86937 1.14386 3.12355 1.14355 3.38867V11.3887C1.14386 11.6538 1.24931 11.908 1.43678 12.0954C1.62425 12.2829 1.87843 12.3884 2.14355 12.3887H6.14355Z\" fill=\"#7642FE\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1819_18031\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0.143555 0.388672)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNjAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Your optimal dosage is 60mg once daily\"})}),className:\"framer-zhjcm7\",\"data-framer-name\":\"Your optimal dosage is 60mg once daily\",fonts:[\"GF;Greed TRIAL-600\"],name:\"Your optimal dosage is 60mg once daily\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10w8sdy\",\"data-framer-name\":\"Group 29614086\",name:\"Group 29614086\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j6qco\",\"data-framer-name\":\"Group 29614085\",name:\"Group 29614085\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgcz3w\",\"data-framer-name\":\"Group 29614084\",name:\"Group 29614084\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ophvc\",\"data-framer-name\":\"Component 1\",name:\"Component 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ic01wb\",\"data-framer-name\":\"Ellipse 267\",name:\"Ellipse 267\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r55taw\",\"data-framer-name\":\"Group 29614009\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,name:\"Group 29614009\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.68112 0.622372V10.2702H17.1664\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M0.195835 10.2702H8.68112V19.918\" stroke=\"#363636\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Add note for your physician visit\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"November 8, 2:30pm\"})]}),className:\"framer-skm2l0\",\"data-framer-name\":\"Add note for your physician visit November 8, 2:30pm\",fonts:[\"Inter-SemiBold\"],name:\"Add note for your physician visit November 8, 2:30pm\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"This dosage allows you to optimize symptom management and side effects\"})}),className:\"framer-p2xu3u\",\"data-framer-name\":\"This dosage allows you to optimize symptom management and side effects\",fonts:[\"Inter\"],name:\"This dosage allows you to optimize symptom management and side effects\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w185pl\",\"data-framer-name\":\"Frame 55\",name:\"Frame 55\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"See optimal dosage for people like me\"})}),className:\"framer-n7axcv\",\"data-framer-name\":\"See optimal dosage for people like me\",fonts:[\"Inter-SemiBold\"],name:\"See optimal dosage for people like me\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-69hju\",\"data-framer-name\":\"Group 29613999\",name:\"Group 29613999\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rc1zn1\",\"data-framer-name\":\"Rectangle 33720\",name:\"Rectangle 33720\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jv5avk\",\"data-framer-name\":\"Rectangle 33745\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:165,intrinsicWidth:308,name:\"Rectangle 33745\",svg:'<svg width=\"308\" height=\"165\" viewBox=\"0 0 308 165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.662109 52.9663L48.9941 49.9755L102.495 28.0437L153.669 22.2285L207.003 0.628917L256.516 32.1975L307.642 30.8683V64.9541V68.0514V75.8876V83.5622V78.2304V73.5448V70.3134V65.7894V83.5622V103.691V164.112L94.3136 162.897L0.662109 164.064V52.9663Z\" fill=\"url(#paint0_linear_1819_18045)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18045\" x1=\"154.152\" y1=\"-29.4899\" x2=\"154.152\" y2=\"163.458\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#DFFBD0\"/>\\n<stop offset=\"1\" stop-color=\"#DFFBD0\" stop-opacity=\"0.2\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-90tpid\",\"data-framer-name\":\"Rectangle 33746\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:308,name:\"Rectangle 33746\",svg:'<svg width=\"308\" height=\"89\" viewBox=\"0 0 308 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.651367 0.242188V88.0621L94.3141 86.8965L307.296 87.7485V37.2381L256.756 36.5652L205.056 42.3968H153.806L101.546 30.5093L48.3761 21.6643L0.651367 0.242188Z\" fill=\"url(#paint0_linear_1819_18046)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18046\" x1=\"153.974\" y1=\"0.242188\" x2=\"153.974\" y2=\"87.4067\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#EADFF9\"/>\\n<stop offset=\"1\" stop-color=\"#EADFF9\" stop-opacity=\"0.4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6qora\",\"data-framer-name\":\"Group 29613999\",name:\"Group 29613999\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ifpft8\",\"data-framer-name\":\"Group 29613998\",name:\"Group 29613998\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d15mdq\",\"data-framer-name\":\"Group 15210\",name:\"Group 15210\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9mma8h\",\"data-framer-name\":\"Line 29\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 29\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.538086\" y1=\"209.588\" x2=\"0.538095\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Jan\"})}),className:\"framer-1fp0v9a\",\"data-framer-name\":\"Jan\",fonts:[\"Inter-SemiBold\"],name:\"Jan\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Feb\"})}),className:\"framer-131z53e\",\"data-framer-name\":\"Feb\",fonts:[\"Inter-SemiBold\"],name:\"Feb\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Mar\"})}),className:\"framer-1366gk2\",\"data-framer-name\":\"Mar\",fonts:[\"Inter-SemiBold\"],name:\"Mar\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(54, 54, 54, 0.7)\"},children:\"Apr\"})}),className:\"framer-jexiy1\",\"data-framer-name\":\"Apr\",fonts:[\"Inter-SemiBold\"],name:\"Apr\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hsnabz\",\"data-framer-name\":\"Line 20\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 20\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"1.08789\" x2=\"349.682\" y2=\"1.08789\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tkgm20\",\"data-framer-name\":\"Line 31\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 31\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.21973\" y1=\"209.588\" x2=\"1.21974\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12ui61b\",\"data-framer-name\":\"Line 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 26\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.609375\" y1=\"209.588\" x2=\"0.609384\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fsmmvd\",\"data-framer-name\":\"Line 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:212,intrinsicWidth:4,name:\"Line 27\",svg:'<svg width=\"4\" height=\"212\" viewBox=\"-1 -1 4 212\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.878906\" y1=\"209.588\" x2=\"0.878916\" y2=\"0.572983\" stroke=\"#A6A6A7\" stroke-opacity=\"0.4\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nw6hx5\",\"data-framer-name\":\"Line 21\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 21\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"0.560547\" x2=\"349.682\" y2=\"0.560547\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rdj78o\",\"data-framer-name\":\"Line 22\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:352,name:\"Line 22\",svg:'<svg width=\"352\" height=\"4\" viewBox=\"-1 -1 352 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.681641\" y1=\"1.03418\" x2=\"349.682\" y2=\"1.03418\" stroke=\"#A6A6A7\" stroke-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tyfspt\",\"data-framer-name\":\"Group 29613996\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:128,intrinsicWidth:313,name:\"Group 29613996\",svg:'<svg width=\"313\" height=\"128\" viewBox=\"0 0 313 128\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.06593 79.7153C0.56334 79.4864 -0.0296964 79.7082 -0.258654 80.2108C-0.487612 80.7134 -0.26579 81.3064 0.2368 81.5354L1.06593 79.7153ZM49.0962 101.596L1.06593 79.7153L0.2368 81.5354L48.2671 103.416L49.0962 101.596Z\" fill=\"#7642FE\"/>\\n<path d=\"M102.304 111.495C102.85 111.576 103.359 111.199 103.44 110.653C103.522 110.107 103.145 109.598 102.598 109.517L102.304 111.495ZM48.5345 103.495L102.304 111.495L102.598 109.517L48.8288 101.517L48.5345 103.495Z\" fill=\"#7642FE\"/>\\n<path d=\"M102.677 109.532C102.139 109.407 101.602 109.742 101.477 110.28C101.352 110.818 101.687 111.355 102.225 111.48L102.677 109.532ZM154.408 121.532L102.677 109.532L102.225 111.48L153.956 123.48L154.408 121.532Z\" fill=\"#7642FE\"/>\\n<path d=\"M256.427 117.46C256.976 117.395 257.368 116.898 257.303 116.349C257.238 115.801 256.74 115.409 256.192 115.474L256.427 117.46ZM205.497 123.499L256.427 117.46L256.192 115.474L205.261 121.513L205.497 123.499Z\" fill=\"#7642FE\"/>\\n<path d=\"M153.683 121.428C153.131 121.428 152.682 121.875 152.682 122.427C152.681 122.979 153.128 123.428 153.68 123.428L153.683 121.428ZM205.38 121.506L153.683 121.428L153.68 123.428L205.377 123.506L205.38 121.506Z\" fill=\"#7642FE\"/>\\n<path d=\"M307.276 118.506C307.828 118.517 308.285 118.078 308.296 117.526C308.307 116.973 307.868 116.517 307.316 116.506L307.276 118.506ZM256.432 117.506L307.276 118.506L307.316 116.506L256.471 115.506L256.432 117.506Z\" fill=\"#7642FE\"/>\\n<line x1=\"0.0185311\" y1=\"56.5087\" x2=\"48.3447\" y2=\"53.5288\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"102.806\" y1=\"33.3636\" x2=\"49.0365\" y2=\"53.7714\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"102.355\" y1=\"31.4334\" x2=\"153.93\" y2=\"26.4334\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"205.771\" y1=\"5.341\" x2=\"154.073\" y2=\"27.3487\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<line x1=\"205.91\" y1=\"3.57384\" x2=\"256.983\" y2=\"35.6203\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<path d=\"M256.31 35.8623L307.72 34.5058\" stroke=\"#63B635\" stroke-width=\"2\"/>\\n<circle cx=\"205.451\" cy=\"5.50586\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"256.451\" cy=\"36.4668\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"153.951\" cy=\"26.4287\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"102.451\" cy=\"32.4287\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"48.6816\" cy=\"53.4668\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n<circle cx=\"205.451\" cy=\"122.429\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"102.451\" cy=\"110.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"307.451\" cy=\"117.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"256.451\" cy=\"116.467\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"153.951\" cy=\"122.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"48.6816\" cy=\"102.506\" r=\"4.3\" fill=\"#EADFF9\" stroke=\"#7642FE\" stroke-width=\"1.4\"/>\\n<circle cx=\"307.45\" cy=\"34.5059\" r=\"4.3\" fill=\"#DFFBD0\" stroke=\"#63B635\" stroke-width=\"1.4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t8sps1\",\"data-framer-name\":\"Line 33\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:113,intrinsicWidth:8,name:\"Line 33\",svg:'<svg width=\"8\" height=\"113\" viewBox=\"-2 -2 8 113\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.93457 2.06598C3.93457 1.23755 3.263 0.565977 2.43458 0.565977C1.60615 0.565977 0.934575 1.23755 0.934575 2.06598L3.93457 2.06598ZM3.93457 108.088L3.93457 2.06598L0.934575 2.06598L0.93457 108.088L3.93457 108.088Z\" fill=\"url(#paint0_linear_1819_18087)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18087\" x1=\"4.43457\" y1=\"2.06598\" x2=\"4.43457\" y2=\"108.088\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"30mg\"})}),className:\"framer-r6jx4a\",\"data-framer-name\":\"30mg\",fonts:[\"Inter-SemiBold\"],name:\"30mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rnzs57\",\"data-framer-name\":\"Line 34\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:184,intrinsicWidth:8,name:\"Line 34\",svg:'<svg width=\"8\" height=\"184\" viewBox=\"-2 -2 8 184\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19727 1.50622C3.19727 0.677796 2.5257 0.00622312 1.69727 0.00622308C0.868846 0.00622305 0.197273 0.677796 0.197273 1.50622L3.19727 1.50622ZM3.19727 179.588L3.19727 1.50622L0.197273 1.50622L0.197266 179.588L3.19727 179.588Z\" fill=\"url(#paint0_linear_1819_18089)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18089\" x1=\"3.69727\" y1=\"1.50623\" x2=\"3.69727\" y2=\"179.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"55mg\"})}),className:\"framer-1o7k1dy\",\"data-framer-name\":\"55mg\",fonts:[\"Inter-SemiBold\"],name:\"55mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-baj8ko\",\"data-framer-name\":\"Line 35\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:223,intrinsicWidth:8,name:\"Line 35\",svg:'<svg width=\"8\" height=\"223\" viewBox=\"-2 -2 8 223\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19728 2.05212C3.19728 1.2237 2.5257 0.552124 1.69728 0.552124C0.868848 0.552124 0.197275 1.2237 0.197275 2.05212L3.19728 2.05212ZM3.19727 218.588L3.19728 2.05212L0.197275 2.05212L0.197266 218.588L3.19727 218.588Z\" fill=\"url(#paint0_linear_1819_18091)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18091\" x1=\"3.69728\" y1=\"2.05212\" x2=\"3.69727\" y2=\"218.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"70mg\"})}),className:\"framer-1b6lor\",\"data-framer-name\":\"70mg\",fonts:[\"Inter-SemiBold\"],name:\"70mg\",verticalAlignment:\"bottom\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mixthh\",\"data-framer-name\":\"Line 36\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:199,intrinsicWidth:8,name:\"Line 36\",svg:'<svg width=\"8\" height=\"199\" viewBox=\"-2 -2 8 199\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.19727 1.62897C3.19727 0.800546 2.5257 0.128974 1.69727 0.128974C0.868847 0.128973 0.197274 0.800546 0.197274 1.62897L3.19727 1.62897ZM3.19727 194.588L3.19727 1.62897L0.197274 1.62897L0.197266 194.588L3.19727 194.588Z\" fill=\"url(#paint0_linear_1819_18093)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_1819_18093\" x1=\"3.69727\" y1=\"1.62897\" x2=\"3.69727\" y2=\"194.588\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4DB3F4\" stop-opacity=\"0.4\"/>\\n<stop offset=\"1\" stop-color=\"#4DB3F4\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(77, 179, 244)\"},children:\"60mg\"})}),className:\"framer-gwjjfc\",\"data-framer-name\":\"60mg\",fonts:[\"Inter-SemiBold\"],name:\"60mg\",verticalAlignment:\"bottom\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Side effects\"})}),className:\"framer-j4dp5o\",\"data-framer-name\":\"Side effects\",fonts:[\"Inter-SemiBold\"],name:\"Side effects\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"Symptoms\"})}),className:\"framer-p5p2ji\",\"data-framer-name\":\"Symptoms\",fonts:[\"Inter-SemiBold\"],name:\"Symptoms\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y0ja92\",\"data-framer-name\":\"Rectangle 782\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,name:\"Rectangle 782\",svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.952148 2.58008C0.952148 1.47551 1.84758 0.580078 2.95215 0.580078H12.9521C14.0567 0.580078 14.9521 1.47551 14.9521 2.58008V12.5801C14.9521 13.6846 14.0567 14.5801 12.9521 14.5801H2.95215C1.84758 14.5801 0.952148 13.6846 0.952148 12.5801V2.58008Z\" fill=\"#7642FE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmp78q\",\"data-framer-name\":\"Rectangle 783\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:15,name:\"Rectangle 783\",svg:'<svg width=\"15\" height=\"15\" viewBox=\"0 0 15 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.952148 2.58008C0.952148 1.47551 1.84758 0.580078 2.95215 0.580078H12.9521C14.0567 0.580078 14.9521 1.47551 14.9521 2.58008V12.5801C14.9521 13.6846 14.0567 14.5801 12.9521 14.5801H2.95215C1.84758 14.5801 0.952148 13.6846 0.952148 12.5801V2.58008Z\" fill=\"#63B635\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hd99qw\",\"data-framer-name\":\"Group 29614130\",name:\"Group 29614130\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yr4w97\",\"data-border\":true,\"data-framer-name\":\"Ellipse 254\",name:\"Ellipse 254\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1prudsw\",\"data-border\":true,\"data-framer-name\":\"Ellipse 261\",name:\"Ellipse 261\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-duz81\",\"data-framer-name\":\"dynamic-island\",name:\"dynamic-island\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xqnb79\",\"data-framer-name\":\"cutout\",name:\"cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pizl8e\",\"data-framer-name\":\"camera-cutout\",name:\"camera-cutout\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18mi03y\",\"data-framer-name\":\"lens\",name:\"lens\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hqikx5\",\"data-framer-name\":\"sensor\",name:\"sensor\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-612op2\",\"data-framer-name\":\"sensor\",name:\"sensor\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11rrli9\",\"data-framer-name\":\"ui-icons\",name:\"ui-icons\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mlvb6n\",\"data-framer-name\":\"icons-right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:76,name:\"icons-right\",svg:'<svg width=\"76\" height=\"14\" viewBox=\"0 0 76 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.35\" d=\"M52.0234 0.937699H69.0234C70.9412 0.937699 72.4959 2.49237 72.4959 4.41016V9.41016C72.4959 11.3279 70.9412 12.8826 69.0234 12.8826H52.0234C50.1057 12.8826 48.551 11.3279 48.551 9.41016V4.41016C48.551 2.49237 50.1057 0.937699 52.0234 0.937699Z\" stroke=\"white\" stroke-width=\"1.05509\"/>\\n<path opacity=\"0.4\" d=\"M74.0234 5.41016V9.6305C74.8725 9.27306 75.4246 8.44156 75.4246 7.52033C75.4246 6.5991 74.8725 5.76759 74.0234 5.41016\" fill=\"white\"/>\\n<path d=\"M50.0234 4.41016C50.0234 3.30559 50.9189 2.41016 52.0234 2.41016H69.0234C70.128 2.41016 71.0234 3.30559 71.0234 4.41016V9.41016C71.0234 10.5147 70.128 11.4102 69.0234 11.4102H52.0234C50.9189 11.4102 50.0234 10.5147 50.0234 9.41016V4.41016Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.5239 2.99768C35.9905 2.99779 38.3627 3.96521 40.1503 5.69997C40.2849 5.83391 40.5001 5.83222 40.6327 5.69619L41.9194 4.37061C41.9866 4.30161 42.024 4.20816 42.0234 4.11092C42.0229 4.01368 41.9844 3.92068 41.9165 3.85249C37.2246 -0.73729 29.8225 -0.73729 25.1306 3.85249C25.0626 3.92063 25.0241 4.0136 25.0234 4.11084C25.0228 4.20808 25.0602 4.30156 25.1273 4.37061L26.4144 5.69619C26.5469 5.83242 26.7622 5.83411 26.8968 5.69997C28.6846 3.96509 31.0571 2.99768 33.5239 2.99768ZM33.5593 7.08251C34.9146 7.08243 36.2214 7.5966 37.226 8.52512C37.3618 8.6569 37.5759 8.65404 37.7083 8.51868L38.9936 7.1931C39.0613 7.12357 39.0988 7.02925 39.0979 6.93123C39.0969 6.83322 39.0575 6.73969 38.9884 6.67158C35.9293 3.76699 31.192 3.76699 28.1329 6.67158C28.0638 6.73969 28.0244 6.83326 28.0235 6.93131C28.0225 7.02936 28.0602 7.12367 28.1281 7.1931L29.413 8.51868C29.5454 8.65404 29.7595 8.6569 29.8953 8.52512C30.8992 7.59721 32.205 7.08308 33.5593 7.08251ZM36.173 9.75283C36.175 9.85112 36.1371 9.94588 36.0684 10.0147L33.8451 12.305C33.7799 12.3723 33.6911 12.4102 33.5983 12.4102C33.5056 12.4102 33.4168 12.3723 33.3516 12.305L31.128 10.0147C31.0593 9.94583 31.0215 9.85104 31.0235 9.75275C31.0256 9.65446 31.0672 9.56138 31.1387 9.4955C32.5586 8.26965 34.6381 8.26965 36.058 9.4955C36.1294 9.56143 36.171 9.65454 36.173 9.75283Z\" fill=\"white\"/>\\n<path d=\"M10.0234 3.41016C10.0234 2.85787 10.4712 2.41016 11.0234 2.41016H12.0234C12.5757 2.41016 13.0234 2.85787 13.0234 3.41016V11.4102C13.0234 11.9624 12.5757 12.4102 12.0234 12.4102H11.0234C10.4712 12.4102 10.0234 11.9624 10.0234 11.4102V3.41016Z\" fill=\"white\"/>\\n<path d=\"M15.0234 1.41016C15.0234 0.857871 15.4712 0.410156 16.0234 0.410156H17.0234C17.5757 0.410156 18.0234 0.857872 18.0234 1.41016V11.4102C18.0234 11.9624 17.5757 12.4102 17.0234 12.4102H16.0234C15.4712 12.4102 15.0234 11.9624 15.0234 11.4102V1.41016Z\" fill=\"white\"/>\\n<path d=\"M5.02344 6.91016C5.02344 6.35787 5.47115 5.91016 6.02344 5.91016H7.02344C7.57572 5.91016 8.02344 6.35787 8.02344 6.91016V11.4102C8.02344 11.9624 7.57572 12.4102 7.02344 12.4102H6.02344C5.47115 12.4102 5.02344 11.9624 5.02344 11.4102V6.91016Z\" fill=\"white\"/>\\n<path d=\"M0.0234375 9.41016C0.0234375 8.85787 0.471153 8.41016 1.02344 8.41016H2.02344C2.57572 8.41016 3.02344 8.85787 3.02344 9.41016V11.4102C3.02344 11.9624 2.57572 12.4102 2.02344 12.4102H1.02344C0.471153 12.4102 0.0234375 11.9624 0.0234375 11.4102V9.41016Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ea86jt\",\"data-framer-name\":\"icons-left\",name:\"icons-left\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U0YgUHJvIFRleHQtNjAw\",\"--framer-font-family\":'\"SF Pro Text\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"599\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"9:41\"})}),className:\"framer-1gsg6rk\",\"data-framer-name\":\"9:41\",fonts:[\"GF;SF Pro Text-600\"],name:\"9:41\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Having all of this rich data at your fingertips empowers you to take control of your medication journey.\"})}),className:\"framer-xjqkvv\",\"data-framer-name\":\"INTRO\",fonts:[\"GF;Greed TRIAL-700\"],name:\"INTRO\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p469ci hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - BECOME AN ADVOCATE\",name:\"MODULE - BECOME AN ADVOCATE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(10563),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 1787px)\",src:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png\",srcSet:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png 3494w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png\",srcSet:\"https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GE3rKOXEzINfbDPQgGggEqu1qtU.png 3494w\"},className:\"framer-1r9gxlx\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14j59wx\",\"data-framer-name\":\"BLUR\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:811,intrinsicWidth:1440,name:\"BLUR\",svg:'<svg width=\"1440\" height=\"811\" viewBox=\"0 0 1440 811\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_b_1825_18963)\">\\n<path d=\"M0 0.607422H1440V810.607H0V0.607422Z\" fill=\"#D9E3EC\" fill-opacity=\"0.6\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_b_1825_18963\" x=\"-12\" y=\"-11.3926\" width=\"1464\" height=\"834\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feGaussianBlur in=\"BackgroundImageFix\" stdDeviation=\"6\"/>\\n<feComposite in2=\"SourceAlpha\" operator=\"in\" result=\"effect1_backgroundBlur_1825_18963\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_backgroundBlur_1825_18963\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Make the most of the time with your physician, by sharing an accurate perspective of your mental health experience.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Speak with confidence about your desired outcomes, whether that's changing dosage, managing side effects, or taking a pause from your medication.\"})]}),className:\"framer-7mehy1\",\"data-framer-name\":\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-47irl5\",\"data-framer-name\":\"PHONE\",name:\"PHONE\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fw1kdf\",\"data-framer-name\":\"Rectangle 1133\",name:\"Rectangle 1133\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10652.5849609375),sizes:\"354.2737px\",src:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png\",srcSet:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png 572w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"354.2737px\",src:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png\",srcSet:\"https://framerusercontent.com/images/5JuJNbWoQ0JHU3nFiDnrtFsATao.png 572w\"},className:\"framer-cxh02d\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-06-09 a\u0300 09.57\",name:\"Capture d\u2019e\u0301cran 2024-06-09 a\u0300 09.57\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jielhs\",\"data-framer-name\":\"COPY\",name:\"COPY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Become an advocate of your own mental health journey.\"})}),className:\"framer-1mgw9er\",\"data-framer-name\":\"Become an advoate of your own mental health journey.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Become an advoate of your own mental health journey.\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oqpyi5 hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - ADDITIONAL TRACKING\",name:\"MODULE - ADDITIONAL TRACKING\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bsr16m\",\"data-framer-name\":\"Background\",name:\"Background\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1boywo2\",\"data-framer-name\":\"INTRO\",name:\"INTRO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Levl also tracks symptoms and dosage adherence, giving you a complete perspective on your mental health.\"})}),className:\"framer-18tz8j4\",\"data-framer-name\":\"Title\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\"})}),className:\"framer-1y3go8u\",\"data-framer-name\":\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\",fonts:[\"Inter-Light\"],name:\"We know that you want to the most complete picture possible of your mental health management. That\u2019s why we also help you track when you take your medication, and the symptoms you are experiencing.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jvjpcs-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(49, 124, 6)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"J3DopEd2q\",layoutId:\"J3DopEd2q\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgb(214, 228, 205)\",dotsBlur:4,dotsFill:\"rgb(49, 124, 6)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:16,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1652,pixelWidth:1014,sizes:\"338px\",src:\"https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png\",srcSet:\"https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png?scale-down-to=1024 628w,https://framerusercontent.com/images/xjwFksJlZIuBssJ9AQhnEvw0qg.png 1014w\"},className:\"framer-wdb4w4\",\"data-framer-name\":\"SYMPTOMS\",name:\"SYMPTOMS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1652,pixelWidth:1015,positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png\",srcSet:\"https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png?scale-down-to=1024 629w,https://framerusercontent.com/images/WQgkG8hB0I0gyEo6XPG9LaKtSII.png 1015w\"},className:\"framer-cu6dcj\",\"data-framer-name\":\"ADHERENCE\",name:\"ADHERENCE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1652,pixelWidth:1015,sizes:\"338px\",src:\"https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png\",srcSet:\"https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png?scale-down-to=1024 629w,https://framerusercontent.com/images/eJDEZAwzU6YfFzvNsKbqPApikg.png 1015w\"},className:\"framer-1o7gb6h\",\"data-framer-name\":\"THERAPIES\",name:\"THERAPIES\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfaw1m hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - WAYS TO MEASURE\",name:\"MODULE - WAYS TO MEASURE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"No connected scales or menstruation app? No problem. You can also self-report these data points.\"})}),className:\"framer-pfp7v8\",\"data-framer-name\":\"No connected scales or menstruation app? No problem. You can also self-report these data points.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"No connected scales or menstruation app? No problem. You can also self-report these data points.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dv9r9g\",\"data-framer-name\":\"ANXIETY DEPRESSION\",name:\"ANXIETY DEPRESSION\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cu3xn1\",\"data-framer-name\":\"Group 29614134\",name:\"Group 29614134\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6938.5),positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png\",srcSet:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png?scale-down-to=1024 781w,https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png\",srcSet:\"https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png?scale-down-to=1024 781w,https://framerusercontent.com/images/4pfdV5JDk2pDWTKGhsmYkEKY2qM.png 1560w\"},className:\"framer-1ensavs\",\"data-framer-name\":\"IMAGE\",name:\"IMAGE\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14u18hl\",\"data-framer-name\":\"Rectangle 1158\",name:\"Rectangle 1158\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lunoj0\",\"data-framer-name\":\"Group 15497\",name:\"Group 15497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for depression or anxiety\"})}),className:\"framer-p9ycmp\",\"data-framer-name\":\"Connected combinations for depression or anxiety\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for depression or anxiety\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\"})}),className:\"framer-1c6hxh8\",\"data-framer-name\":\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how weight, sleep, and menstruation cycles are impacted by medication such as Remeron or Lexapro.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19hoczy\",\"data-framer-name\":\"Group 29614156\",name:\"Group 29614156\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nf61x0\",\"data-framer-name\":\"Group 29614135\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614135\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M31.4869 17.5653C30.3342 16.6531 28.7748 16.5335 27.5161 17.2641C15.1408 24.4384 8.08201 37.7298 9.09626 51.9503C10.3951 70.1844 25.221 84.9073 43.5828 86.197C44.4919 86.2615 45.3968 86.2929 46.2966 86.2929C59.5777 86.2929 71.7462 79.4147 78.5119 67.9053C79.2468 66.6554 79.128 65.1077 78.2086 63.9621C77.2883 62.8166 75.7947 62.3576 74.4045 62.7886C70.6704 63.9486 66.7663 64.4441 62.8059 64.2532C59.2726 64.0843 55.8077 63.352 52.506 62.0776C50.9184 61.4632 49.8512 59.9113 49.8512 58.2142V55.756C49.8512 52.4298 47.1263 49.7238 43.7776 49.7238H39.2079C37.7203 49.7238 36.3275 48.9168 35.573 47.6177C32.9574 43.1146 31.4424 38.0115 31.1938 32.8609C31.0032 28.9263 31.4997 25.0511 32.6686 21.343C33.1044 19.9616 32.6404 18.4783 31.4869 17.5653ZM34.0571 48.4866C35.1235 50.322 37.0973 51.4616 39.2079 51.4616H43.7776C46.1616 51.4616 48.1012 53.3877 48.1012 55.756V58.2142C48.1012 60.6223 49.6162 62.8251 51.872 63.6965C55.3497 65.0398 59 65.8111 62.7221 65.9893C66.8979 66.1878 70.9977 65.6685 74.9274 64.4467C75.7742 64.1853 76.4697 64.5841 76.8397 65.0457C77.2106 65.5073 77.4473 66.2701 77.0012 67.0296C70.1142 78.7435 57.3398 85.4079 43.7058 84.4643C26.2088 83.234 12.0801 69.2035 10.8411 51.8281C9.87554 38.272 16.6028 25.6034 28.398 18.7643C28.6936 18.5929 28.9901 18.5233 29.2695 18.5233C29.7113 18.5233 30.1112 18.699 30.3957 18.9247C30.8605 19.2929 31.263 19.9845 30.999 20.8237C29.7677 24.7269 29.2456 28.805 29.4455 32.9441C29.7079 38.3704 31.3023 43.7442 34.0571 48.4866Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M21.3467 44.8521C18.9482 45.6624 17.3221 47.8135 17.205 50.3328C17.1828 50.8122 17.5562 51.2186 18.039 51.2407C18.0527 51.2415 18.0664 51.2415 18.08 51.2415C18.5449 51.2415 18.9319 50.8784 18.9533 50.4125C19.037 48.6128 20.1974 47.0752 21.9106 46.4965C23.6221 45.9204 25.4866 46.4312 26.6589 47.8067C26.9708 48.1732 27.5228 48.2208 27.8919 47.9094C28.2611 47.5996 28.3072 47.0515 27.9953 46.6849C26.3556 44.7588 23.7443 44.0384 21.3467 44.8521Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M78.9571 28.7012C78.8605 28.4067 78.6144 28.1853 78.3102 28.1199L68.3326 25.9749L63.1946 17.2146C63.0374 16.9473 62.7494 16.7827 62.4384 16.7827C62.1274 16.7827 61.8394 16.9473 61.6822 17.2146L56.5434 25.9749L46.5657 28.1199C46.2615 28.1853 46.0154 28.4067 45.9189 28.7012C45.8223 28.9948 45.8915 29.3181 46.0983 29.548L52.9016 37.1084L51.8728 47.1941C51.8412 47.5012 51.9771 47.8025 52.2292 47.9841C52.4812 48.1665 52.8119 48.2004 53.0965 48.0765L62.4384 43.9892L71.7804 48.0765C71.8931 48.1258 72.0136 48.1504 72.1333 48.1504C72.3153 48.1504 72.4955 48.0944 72.6476 47.9841C72.8997 47.8025 73.0356 47.5012 73.004 47.1941L71.9752 37.1084L78.7776 29.548C78.9844 29.3172 79.0536 28.9948 78.9571 28.7012ZM70.4132 36.2361C70.25 36.4177 70.1705 36.6596 70.1953 36.9022L71.1113 45.8848L62.7913 42.2446C62.6785 42.1954 62.5589 42.1708 62.4384 42.1708C62.3179 42.1708 62.1983 42.1954 62.0855 42.2446L53.7655 45.8848L54.6815 36.9022C54.7063 36.6596 54.6268 36.4177 54.4636 36.2361L48.4045 29.503L57.2911 27.5922C57.5312 27.5404 57.7379 27.3911 57.8618 27.1798L62.4384 19.3784L67.0141 27.1798C67.138 27.3911 67.3448 27.5404 67.5849 27.5922L76.4714 29.503L70.4132 36.2361Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M42.0221 34.2686C41.5385 34.2686 41.1471 34.6572 41.1471 35.1375V38.1939H38.0693C37.5857 38.1939 37.1943 38.5825 37.1943 39.0628C37.1943 39.543 37.5857 39.9316 38.0693 39.9316H41.1471V42.9881C41.1471 43.4683 41.5385 43.857 42.0221 43.857C42.5057 43.857 42.8971 43.4683 42.8971 42.9881V39.9316H45.9749C46.4585 39.9316 46.8499 39.543 46.8499 39.0628C46.8499 38.5825 46.4585 38.1939 45.9749 38.1939H42.8971V35.1375C42.8971 34.6572 42.5057 34.2686 42.0221 34.2686Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M63.1871 50.6699C62.7035 50.6699 62.3122 51.0585 62.3122 51.5388V54.5952H59.2344C58.7507 54.5952 58.3594 54.9839 58.3594 55.4641C58.3594 55.9444 58.7507 56.333 59.2344 56.333H62.3122V59.3894C62.3122 59.8697 62.7035 60.2583 63.1871 60.2583C63.6708 60.2583 64.0621 59.8697 64.0621 59.3894V56.333H67.1399C67.6236 56.333 68.0149 55.9444 68.0149 55.4641C68.0149 54.9839 67.6236 54.5952 67.1399 54.5952H64.0621V51.5388C64.0621 51.0585 63.6708 50.6699 63.1871 50.6699Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected sleep quality tracker, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"such as\"})]}),className:\"framer-1ns8fkw\",\"data-framer-name\":\"Any connected sleep quality tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected sleep quality tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-1rvqnyf\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15cp608\",\"data-framer-name\":\"Group 29614157\",name:\"Group 29614157\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jkllva\",\"data-framer-name\":\"Group 29614136\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614136\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M67.4794 26.5139C62.6138 26.4101 58.9546 26.462 55.9577 26.7474C55.0494 24.2173 53.3497 23.1793 52.0912 22.4268C51.0013 21.778 50.4823 21.4407 50.4823 20.6752V17.4315C50.4823 17.0682 50.1968 16.7827 49.8335 16.7827H38.1565C37.7932 16.7827 37.5078 17.0682 37.5078 17.4315V18.3138C37.5078 20.4157 37.3521 21.0904 36.846 21.2461L36.2232 21.4277C34.2251 21.9986 30.9424 22.9328 28.3345 25.7483C29.1519 23.4777 30.4105 20.8179 32.3568 17.7947C32.4865 17.6001 32.4995 17.3406 32.3827 17.133C32.2659 16.9254 32.0454 16.7956 31.8118 16.7956H27.8155C27.6079 16.7956 27.4133 16.8994 27.2836 17.0681C26.038 18.7938 24.9481 20.7011 24.2085 22.0894C24.1566 20.753 24.3642 19.6501 24.5459 18.6381C24.6107 18.2619 24.6756 17.8986 24.7275 17.5482C24.7535 17.3666 24.7016 17.172 24.5718 17.0293C24.4421 16.8865 24.2734 16.8087 24.0788 16.8087H17.5783C17.2669 16.8087 17.0074 17.0293 16.9426 17.3277C15.8008 22.7123 15.4375 29.1218 15.9175 35.3755C12.2975 38.7101 11 42.7323 11 50.5435C11 66.4116 21.2371 80.0741 37.0927 85.3554C39.1558 86.0431 43.2169 86.7827 46.8889 86.7827C48.7054 86.7827 50.4181 86.6011 51.7545 86.147C54.6739 85.1738 56.9316 83.3963 58.6702 80.6845C61.4598 76.3379 66.1956 61.793 64.5478 47.8839C64.1715 44.6531 63.2113 39.8264 59.5265 34.5842C63.5227 33.3645 67.3373 33.5203 67.4023 33.5203C67.5709 33.5333 67.7526 33.4684 67.8823 33.3387C68.0121 33.2219 68.0899 33.0402 68.0899 32.8716V27.1885C68.0899 26.8382 67.8045 26.5527 67.4542 26.5398L67.4794 26.5139ZM36.5862 22.6733L37.222 22.4917C38.8049 22.0116 38.8049 20.1302 38.8049 18.3138V18.0802H41.3999V20.5195C41.3999 20.8828 41.6853 21.1682 42.0486 21.1682C42.4119 21.1682 42.6973 20.8828 42.6973 20.5195V18.0802H45.2923V20.5195C45.2923 20.8828 45.5778 21.1682 45.9411 21.1682C46.3044 21.1682 46.5898 20.8828 46.5898 20.5195V18.0802H49.1848V20.6752C49.1848 22.2192 50.3266 22.8939 51.4295 23.5426C52.5842 24.2303 53.8688 25.0088 54.6343 26.8901C51.5593 27.2794 49.1848 27.954 46.7974 29.031L46.3303 27.8633C46.2006 27.5389 45.8373 27.3702 45.4999 27.487L40.3359 29.3684C40.0115 29.4851 39.8428 29.8355 39.9336 30.1598L40.3229 31.4313C37.3127 33.118 35.3405 35.1162 33.7187 38.0875C32.6548 37.1273 30.3062 35.2849 26.9587 34.169C26.8809 33.5462 26.7901 32.0151 27.2182 29.7315C29.5667 24.6712 33.9393 23.4127 36.5735 22.6602L36.5862 22.6733ZM17.0328 36.0892L17.2534 35.8816V35.5961C17.2534 35.5961 17.2534 35.4534 17.2275 35.2588C16.7733 29.3163 17.0847 23.2438 18.1227 18.0795H23.3257C23.3127 18.1833 23.2867 18.2871 23.2738 18.378C23.0013 19.896 22.651 21.7904 23.1959 24.3854C23.2478 24.6579 23.4813 24.8655 23.7538 24.8914C24.0263 24.9303 24.2988 24.7747 24.4156 24.5152C24.4285 24.4762 26.0504 21.0119 28.1394 18.0666H30.6306C24.2988 28.4076 25.6871 34.545 25.752 34.8041C25.752 34.83 25.7779 34.856 25.7909 34.8819C25.8039 34.9209 25.8169 34.9598 25.8428 34.9857C25.8688 35.0247 25.8947 35.0636 25.9336 35.0895C25.9596 35.1155 25.9726 35.1415 26.0115 35.1544C26.0504 35.1934 26.1023 35.2063 26.1542 35.2323C26.1672 35.2323 26.1802 35.2582 26.2061 35.2582C29.4239 36.2443 31.7205 38.0219 32.7714 38.9561C18.6804 45.6511 15.7092 58.9636 15.0865 64.0241C13.296 59.8462 12.3228 55.2659 12.3228 50.4911C12.3228 42.9396 13.5554 39.1637 17.0327 36.063L17.0328 36.0892ZM63.2884 48.0129C64.9103 61.5973 60.3172 75.7406 57.6184 79.9574C56.0484 82.3967 54.0113 84.0056 51.3775 84.8879C48.5878 85.835 43.813 85.4588 40.4005 84.797C60.408 75.676 53.6087 53.1905 51.987 48.6615C50.9749 45.82 50.2613 42.7968 51.9221 39.9938C53.4012 37.4897 55.8146 35.9456 58.2928 34.9985C61.9907 40.1236 62.9379 44.8594 63.3011 48.0125L63.2884 48.0129ZM66.8176 32.1838H66.7527C64.028 32.1838 54.7377 32.6899 50.8066 39.333C48.8734 42.6027 49.7038 46.1059 50.7677 49.0902C52.3506 53.5406 59.1888 76.1296 38.2337 84.304C37.9742 84.2391 37.7406 84.1613 37.5331 84.0964C27.8797 80.8916 20.3928 74.4688 16.1636 66.3334C16.1896 66.2555 16.2155 66.1777 16.2155 66.0998C16.2155 65.9182 16.514 47.5455 34.1596 39.7605C34.1855 39.7605 34.2115 39.7216 34.2374 39.7086C34.2763 39.6826 34.3023 39.6697 34.3282 39.6437V39.6307C34.3542 39.6048 34.3801 39.5659 34.4061 39.5269C34.4191 39.501 34.445 39.488 34.458 39.4621C36.1188 36.1146 38.0651 34.1164 41.3867 32.3388C41.6591 32.1961 41.7889 31.8717 41.6981 31.5733L41.3348 30.3796L45.331 28.9264L45.8241 30.1461C45.889 30.3148 46.0187 30.4445 46.1874 30.5094C46.3561 30.5743 46.5377 30.5613 46.7064 30.4964C51.5071 28.2129 56.0741 27.5901 66.792 27.7977V32.1831L66.8176 32.1838Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ai0wen\",\"data-framer-name\":\"Group 29614141\",name:\"Group 29614141\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected period tracker, such as\"})}),className:\"framer-1r9ojaj\",\"data-framer-name\":\"Any connected period tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected period tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Menstruation\"})}),className:\"framer-1vjcpq2\",\"data-framer-name\":\"Menstruation\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Menstruation\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-391o4l\",\"data-framer-name\":\"Group 29614158\",name:\"Group 29614158\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u0ye5d\",\"data-framer-name\":\"Group 29614137\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:111,name:\"Group 29614137\",svg:'<svg width=\"111\" height=\"224\" viewBox=\"0 0 111 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.152344 8.54004C0.152344 4.12176 3.73407 0.540039 8.15234 0.540039H102.152C106.571 0.540039 110.152 4.12176 110.152 8.54004V215.815C110.152 220.234 106.571 223.815 102.152 223.815H8.15234C3.73406 223.815 0.152344 220.234 0.152344 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M33.3818 80.7244C33.6351 80.9491 33.6527 81.3302 33.4205 81.5753C33.1883 81.8204 32.7943 81.8374 32.541 81.6127C32.2877 81.3881 32.2702 81.0069 32.5023 80.7619C32.7345 80.5168 33.1285 80.4998 33.3818 80.7244ZM81.26 18.6547C83.0787 20.5539 84.0075 23.1269 83.8069 25.7103L79.7684 77.042C79.3884 81.8819 75.16 85.6699 70.143 85.6699H26.5813C21.5648 85.6699 17.336 81.8784 16.9559 77.042L12.9174 25.7137C12.7134 23.1305 13.6421 20.5574 15.4643 18.6582C17.283 16.759 19.8652 15.6699 22.5423 15.6699H74.1813C76.8584 15.6699 79.4405 16.759 81.2593 18.6582L81.26 18.6547ZM80.2679 19.543C78.6779 17.8856 76.5178 16.9734 74.1785 16.9734H22.5467C20.2108 16.9734 18.0473 17.8856 16.4573 19.543C14.8672 21.2005 14.0898 23.3584 14.2692 25.6115L18.3077 76.9398C18.6349 81.1022 22.2688 84.3628 26.5852 84.3628H70.147C74.4599 84.3628 78.0974 81.1022 78.4246 76.9398L82.4631 25.6115C82.639 23.355 81.8615 21.2005 80.275 19.543H80.2679ZM30.1203 80.514H26.7501C24.1152 80.514 21.8955 78.5229 21.6949 75.9805L20.4039 59.5548C20.3757 59.194 20.0521 58.9353 19.6792 58.9524C19.3063 58.9796 19.0284 59.2927 19.0565 59.6535L20.3476 76.0792C20.6009 79.299 23.4116 81.8209 26.7501 81.8209H30.1203C30.4932 81.8209 30.7957 81.5282 30.7957 81.1675C30.7957 80.8067 30.4932 80.514 30.1203 80.514ZM38.9607 80.514H35.8016C35.4288 80.514 35.1262 80.8067 35.1262 81.1675C35.1262 81.5283 35.4288 81.821 35.8016 81.821H38.9607C39.3336 81.821 39.6361 81.5283 39.6361 81.1675C39.6361 80.8067 39.3336 80.514 38.9607 80.514ZM63.3708 23.4264C63.9724 24.0629 64.2714 24.924 64.1905 25.785L63.2019 36.3731C63.0541 37.9727 61.6857 39.181 60.0253 39.181H36.6986C35.0381 39.181 33.6732 37.9728 33.522 36.3731L32.5334 25.7815C32.4525 24.9204 32.7515 24.0627 33.3531 23.4229C33.9582 22.7831 34.813 22.4189 35.7066 22.4189H61.0145C61.9081 22.4189 62.7664 22.7865 63.368 23.4229L63.3708 23.4264ZM62.8466 25.6659C62.8959 25.1622 62.727 24.6789 62.3752 24.3079C62.0234 23.9335 61.5415 23.7293 61.0173 23.7293H35.7094C35.1887 23.7293 34.7032 23.9335 34.3515 24.3079C33.9997 24.6823 33.8308 25.1622 33.8801 25.6659L34.8686 36.2574C34.9566 37.1798 35.7411 37.8741 36.6979 37.8741H60.0246C60.9815 37.8741 61.7695 37.1798 61.8539 36.2574L62.8424 25.6659H62.8466ZM49.9216 32.7418C50.3402 33.1468 50.5689 33.6812 50.5689 34.2496C50.5689 34.8181 50.3402 35.3557 49.9216 35.7574C49.5029 36.159 48.9507 36.3836 48.3631 36.3836C47.7756 36.3836 47.2198 36.1624 46.8047 35.7574C46.3861 35.3558 46.1574 34.8181 46.1574 34.2496C46.1574 33.8991 46.2559 33.5621 46.4212 33.2592L42.8998 29.4303C42.6148 29.1342 43.0757 28.6917 43.3817 28.964C43.3817 28.964 46.8047 31.908 47.3464 32.3744C48.1731 31.9727 49.2495 32.0885 49.9215 32.7385L49.9216 32.7418ZM49.218 34.2496C49.218 34.0284 49.13 33.8208 48.9682 33.6642C48.8064 33.5076 48.5918 33.4226 48.3631 33.4226C48.1345 33.4226 47.9199 33.5076 47.7581 33.6642C47.5962 33.8208 47.5083 34.0284 47.5083 34.2496C47.5083 34.4708 47.5963 34.6785 47.7581 34.835C48.0817 35.1482 48.6411 35.1482 48.9683 34.835C49.1301 34.6785 49.218 34.4708 49.218 34.2496ZM44.6271 27.2146C44.7116 27.5039 44.9824 27.6911 45.2779 27.6911C45.3377 27.6911 45.4011 27.6843 45.4609 27.6672C45.8197 27.5685 46.0308 27.2078 45.9287 26.8606L45.5277 25.4788C45.4292 25.1316 45.0598 24.9274 44.694 25.0261C44.3351 25.1248 44.1241 25.4856 44.2261 25.8328L44.6271 27.2146ZM52.0463 25.0976C51.6875 24.9887 51.3111 25.1861 51.2021 25.5298L50.7658 26.9014C50.6568 27.2452 50.8573 27.6127 51.2126 27.7183C51.2794 27.7387 51.3463 27.7455 51.4096 27.7455C51.6981 27.7455 51.9654 27.5651 52.0569 27.2826L52.4931 25.911C52.6022 25.5672 52.4016 25.1997 52.0463 25.0942V25.0976ZM38.3234 33.6949L36.8564 33.4736C36.487 33.4226 36.1423 33.6642 36.086 34.0182C36.0297 34.3756 36.283 34.7091 36.6489 34.7636L38.1158 34.9848C38.151 34.9916 38.1862 34.9916 38.2214 34.9916C38.5485 34.9916 38.837 34.7602 38.8862 34.4368C38.9425 34.0795 38.6892 33.7459 38.3234 33.6915V33.6949ZM39.7973 28.2935C39.5159 28.0518 39.0902 28.0791 38.844 28.348C38.5977 28.6168 38.6224 29.0321 38.9003 29.2703L40.0119 30.2233C40.1421 30.3357 40.3004 30.3867 40.4587 30.3867C40.6452 30.3867 40.8316 30.3118 40.9653 30.1655C41.2115 29.8966 41.1869 29.4814 40.909 29.2431L39.7973 28.2901L39.7973 28.2935ZM58.016 28.5454C57.7733 28.2697 57.3476 28.2356 57.0626 28.4671L55.9299 29.3962C55.6449 29.6311 55.6098 30.0429 55.849 30.3186C55.9827 30.4717 56.1726 30.55 56.3626 30.55C56.5174 30.55 56.6722 30.499 56.7988 30.3969L57.9316 29.4677C58.2165 29.2329 58.2517 28.821 58.0125 28.5453L58.016 28.5454ZM59.8805 33.7119L58.4065 33.8991C58.0371 33.9467 57.7768 34.2735 57.826 34.6343C57.8718 34.9644 58.1602 35.2026 58.4944 35.2026C58.5226 35.2026 58.5542 35.1992 58.5859 35.1958L60.0599 35.0086C60.4292 34.961 60.6896 34.6343 60.6403 34.2735C60.5911 33.9161 60.2533 33.6643 59.8805 33.7119Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8c05v4\",\"data-framer-name\":\"Group 29614142\",name:\"Group 29614142\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected weight tracker, such as\"})}),className:\"framer-1iue8fh\",\"data-framer-name\":\"Any connected weight tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected weight tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-ww9oxm\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rp7cou\",\"data-framer-name\":\"Group 29614159\",name:\"Group 29614159\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8pcs9g\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:297,intrinsicWidth:4,name:\"Line 5\",svg:'<svg width=\"4\" height=\"297\" viewBox=\"-1 -1 4 297\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"294.218\" x2=\"1.00001\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r1tw4o\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:5,name:\"Line 6\",svg:'<svg width=\"5\" height=\"71\" viewBox=\"-1 -1 5 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.15234\" y1=\"68.2783\" x2=\"1.15235\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1odlrvc\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:4,name:\"Line 7\",svg:'<svg width=\"4\" height=\"71\" viewBox=\"-1 -1 4 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"68.2783\" x2=\"1\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197evqh\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ratv5k\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xfwzbt\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7930.4453125),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-1q30nsm\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bjmu2m\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-ealpee\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oighge\",\"data-framer-name\":\"Group 29614160\",name:\"Group 29614160\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8098.5),sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"},className:\"framer-1wz5i32\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-f85ka3\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-139kn9x\",\"data-framer-name\":\"Line 55\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:392,name:\"Line 55\",svg:'<svg width=\"392\" height=\"5\" viewBox=\"-1 -1 392 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.27832\" x2=\"390\" y2=\"1.27832\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vl9k9h\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.81543 12.4028L1.45943 3.12598L12.1714 3.12598L6.81543 12.4028Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3aya57\",\"data-framer-name\":\"Group 29614161\",name:\"Group 29614161\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dp8qlu\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vzn217\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b8dgkp\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Fitbit\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-1gclosn\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Flo\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Clue\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Natural Cycles\"})]}),className:\"framer-1e9f8aw\",\"data-framer-name\":\"Flo, Clue, Natural Cycles\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Flo, Clue, Natural Cycles\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Withings,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Fitbit,\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-1oaul2e\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\"},children:\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\"})}),className:\"framer-r6lj44\",\"data-framer-name\":\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl uses the connected devices you already own, so you don\u2019t need to purchase costly specialized medical devices.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y8w97x\",\"data-framer-name\":\"ADHD\",name:\"ADHD\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exi2gx\",\"data-framer-name\":\"Group 29614134\",name:\"Group 29614134\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4943.5),positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png\",srcSet:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png?scale-down-to=1024 781w,https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png\",srcSet:\"https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png?scale-down-to=1024 781w,https://framerusercontent.com/images/Q9luDkiVtVBm58ThSeqxRkv56w.png 1560w\"},className:\"framer-p8z5is\",\"data-framer-name\":\"premium_photo-1664461665857-43cb2ebd3209 1\",name:\"premium_photo-1664461665857-43cb2ebd3209 1\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15rojos\",\"data-framer-name\":\"Rectangle 1158\",name:\"Rectangle 1158\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q3mkrj\",\"data-framer-name\":\"Group 15497\",name:\"Group 15497\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connected combinations for ADHD\"})}),className:\"framer-x8hn7f\",\"data-framer-name\":\"Connected combinations for ADHD\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Connected combinations for ADHD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\"})}),className:\"framer-9vuor7\",\"data-framer-name\":\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",fonts:[\"Inter-Medium\"],name:\"Levl helps you to understand how heart rate, sleep, and weight are impacted by medication such as Adderall or Vyvanse.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0vcnq\",\"data-framer-name\":\"Group 29614156\",name:\"Group 29614156\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12fy4ml\",\"data-framer-name\":\"Group 29614135\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614135\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M31.4869 17.5653C30.3342 16.6531 28.7748 16.5335 27.5161 17.2641C15.1408 24.4384 8.08201 37.7298 9.09626 51.9503C10.3951 70.1844 25.221 84.9073 43.5828 86.1971C44.4919 86.2615 45.3968 86.2929 46.2966 86.2929C59.5777 86.2929 71.7462 79.4147 78.5119 67.9053C79.2468 66.6554 79.128 65.1077 78.2086 63.9621C77.2883 62.8166 75.7947 62.3576 74.4045 62.7886C70.6704 63.9486 66.7663 64.4441 62.8059 64.2532C59.2726 64.0843 55.8077 63.352 52.5061 62.0776C50.9184 61.4632 49.8512 59.9113 49.8512 58.2142V55.756C49.8512 52.4298 47.1263 49.7238 43.7776 49.7238H39.2079C37.7203 49.7238 36.3275 48.9168 35.573 47.6177C32.9574 43.1146 31.4424 38.0115 31.1938 32.8609C31.0032 28.9263 31.4997 25.0511 32.6686 21.343C33.1044 19.9616 32.6404 18.4783 31.4869 17.5653ZM34.0571 48.4866C35.1235 50.322 37.0973 51.4616 39.2079 51.4616H43.7776C46.1616 51.4616 48.1012 53.3877 48.1012 55.756V58.2142C48.1012 60.6223 49.6162 62.8251 51.872 63.6965C55.3497 65.0398 59 65.8111 62.7221 65.9893C66.8979 66.1878 70.9977 65.6685 74.9274 64.4467C75.7742 64.1853 76.4697 64.5841 76.8397 65.0457C77.2106 65.5073 77.4473 66.2701 77.0012 67.0296C70.1142 78.7435 57.3398 85.4079 43.7058 84.4643C26.2088 83.234 12.0801 69.2035 10.8411 51.8281C9.87554 38.272 16.6028 25.6034 28.398 18.7643C28.6936 18.5929 28.9901 18.5233 29.2695 18.5233C29.7113 18.5233 30.1112 18.699 30.3957 18.9247C30.8605 19.2929 31.263 19.9845 30.999 20.8237C29.7677 24.7269 29.2456 28.805 29.4455 32.9441C29.7079 38.3704 31.3023 43.7442 34.0571 48.4866Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M21.3467 44.8521C18.9482 45.6624 17.3221 47.8135 17.205 50.3328C17.1828 50.8122 17.5562 51.2186 18.039 51.2407C18.0527 51.2415 18.0664 51.2415 18.08 51.2415C18.5449 51.2415 18.9319 50.8784 18.9533 50.4125C19.037 48.6128 20.1974 47.0752 21.9106 46.4965C23.6221 45.9204 25.4866 46.4312 26.6589 47.8067C26.9708 48.1732 27.5228 48.2208 27.8919 47.9094C28.2611 47.5996 28.3072 47.0515 27.9953 46.6849C26.3556 44.7588 23.7443 44.0384 21.3467 44.8521Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M78.9571 28.7012C78.8605 28.4067 78.6144 28.1853 78.3102 28.1199L68.3326 25.9749L63.1946 17.2146C63.0374 16.9473 62.7494 16.7827 62.4384 16.7827C62.1274 16.7827 61.8394 16.9473 61.6822 17.2146L56.5434 25.9749L46.5657 28.1199C46.2615 28.1853 46.0154 28.4067 45.9189 28.7012C45.8223 28.9948 45.8915 29.3181 46.0983 29.548L52.9016 37.1084L51.8728 47.1941C51.8412 47.5012 51.9771 47.8025 52.2292 47.9841C52.4812 48.1665 52.8119 48.2004 53.0965 48.0765L62.4384 43.9892L71.7804 48.0765C71.8931 48.1258 72.0136 48.1504 72.1333 48.1504C72.3153 48.1504 72.4956 48.0944 72.6476 47.9841C72.8997 47.8025 73.0356 47.5012 73.004 47.1941L71.9752 37.1084L78.7776 29.548C78.9844 29.3172 79.0536 28.9948 78.9571 28.7012ZM70.4132 36.2361C70.25 36.4177 70.1705 36.6596 70.1953 36.9022L71.1113 45.8848L62.7913 42.2446C62.6785 42.1954 62.5589 42.1708 62.4384 42.1708C62.3179 42.1708 62.1983 42.1954 62.0855 42.2446L53.7655 45.8848L54.6815 36.9022C54.7063 36.6596 54.6268 36.4177 54.4636 36.2361L48.4045 29.503L57.2911 27.5922C57.5312 27.5404 57.738 27.3911 57.8618 27.1798L62.4384 19.3784L67.0141 27.1798C67.138 27.3911 67.3448 27.5404 67.5849 27.5922L76.4714 29.503L70.4132 36.2361Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M42.0221 34.2686C41.5385 34.2686 41.1471 34.6572 41.1471 35.1375V38.1939H38.0693C37.5857 38.1939 37.1943 38.5825 37.1943 39.0628C37.1943 39.543 37.5857 39.9316 38.0693 39.9316H41.1471V42.9881C41.1471 43.4683 41.5385 43.857 42.0221 43.857C42.5057 43.857 42.8971 43.4683 42.8971 42.9881V39.9316H45.9749C46.4585 39.9316 46.8499 39.543 46.8499 39.0628C46.8499 38.5825 46.4585 38.1939 45.9749 38.1939H42.8971V35.1375C42.8971 34.6572 42.5057 34.2686 42.0221 34.2686Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n<path d=\"M63.1871 50.6699C62.7035 50.6699 62.3122 51.0585 62.3122 51.5388V54.5952H59.2344C58.7507 54.5952 58.3594 54.9839 58.3594 55.4641C58.3594 55.9444 58.7507 56.333 59.2344 56.333H62.3122V59.3894C62.3122 59.8697 62.7035 60.2583 63.1871 60.2583C63.6708 60.2583 64.0621 59.8697 64.0621 59.3894V56.333H67.1399C67.6236 56.333 68.0149 55.9444 68.0149 55.4641C68.0149 54.9839 67.6236 54.5952 67.1399 54.5952H64.0621V51.5388C64.0621 51.0585 63.6708 50.6699 63.1871 50.6699Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected sleep quality tracker, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"such as\"})]}),className:\"framer-uu826a\",\"data-framer-name\":\"Any connected sleep quality tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected sleep quality tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Sleep\"})}),className:\"framer-74ewoc\",\"data-framer-name\":\"Sleep\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Sleep\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3mjm5i\",\"data-framer-name\":\"Group 29614157\",name:\"Group 29614157\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u1ldvo\",\"data-framer-name\":\"Group 29614136\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:110,name:\"Group 29614136\",svg:'<svg width=\"110\" height=\"224\" viewBox=\"0 0 110 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 8.54004C0 4.12176 3.58172 0.540039 8 0.540039H102C106.418 0.540039 110 4.12176 110 8.54004V215.815C110 220.234 106.418 223.815 102 223.815H8C3.58172 223.815 0 220.234 0 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M67.4794 26.5139C62.6138 26.4101 58.9546 26.462 55.9577 26.7474C55.0494 24.2173 53.3497 23.1793 52.0912 22.4268C51.0013 21.778 50.4823 21.4407 50.4823 20.6752V17.4315C50.4823 17.0682 50.1968 16.7827 49.8335 16.7827H38.1565C37.7932 16.7827 37.5078 17.0682 37.5078 17.4315V18.3138C37.5078 20.4157 37.3521 21.0904 36.846 21.2461L36.2232 21.4277C34.2251 21.9986 30.9424 22.9328 28.3345 25.7483C29.1519 23.4777 30.4105 20.8179 32.3568 17.7947C32.4865 17.6001 32.4995 17.3406 32.3827 17.133C32.2659 16.9254 32.0454 16.7956 31.8118 16.7956H27.8155C27.6079 16.7956 27.4133 16.8994 27.2836 17.0681C26.038 18.7938 24.9481 20.7011 24.2085 22.0894C24.1566 20.753 24.3642 19.6501 24.5459 18.6381C24.6107 18.2619 24.6756 17.8986 24.7275 17.5482C24.7535 17.3666 24.7016 17.172 24.5718 17.0293C24.4421 16.8865 24.2734 16.8087 24.0788 16.8087H17.5783C17.2669 16.8087 17.0074 17.0293 16.9426 17.3277C15.8008 22.7123 15.4375 29.1218 15.9175 35.3755C12.2975 38.7101 11 42.7323 11 50.5435C11 66.4116 21.2371 80.0741 37.0927 85.3554C39.1558 86.0431 43.2169 86.7827 46.8889 86.7827C48.7054 86.7827 50.4181 86.6011 51.7545 86.147C54.6739 85.1738 56.9316 83.3963 58.6702 80.6845C61.4598 76.3379 66.1956 61.793 64.5478 47.8839C64.1715 44.6531 63.2113 39.8264 59.5265 34.5842C63.5227 33.3645 67.3373 33.5203 67.4023 33.5203C67.5709 33.5333 67.7526 33.4684 67.8823 33.3387C68.0121 33.2219 68.0899 33.0402 68.0899 32.8716V27.1885C68.0899 26.8382 67.8045 26.5527 67.4542 26.5398L67.4794 26.5139ZM36.5862 22.6733L37.222 22.4917C38.8049 22.0116 38.8049 20.1302 38.8049 18.3138V18.0802H41.3999V20.5195C41.3999 20.8828 41.6853 21.1682 42.0486 21.1682C42.4119 21.1682 42.6973 20.8828 42.6973 20.5195V18.0802H45.2923V20.5195C45.2923 20.8828 45.5778 21.1682 45.9411 21.1682C46.3044 21.1682 46.5898 20.8828 46.5898 20.5195V18.0802H49.1848V20.6752C49.1848 22.2192 50.3266 22.8939 51.4295 23.5426C52.5842 24.2303 53.8688 25.0088 54.6343 26.8901C51.5593 27.2794 49.1848 27.954 46.7974 29.031L46.3303 27.8633C46.2006 27.5389 45.8373 27.3702 45.4999 27.487L40.3359 29.3684C40.0115 29.4851 39.8428 29.8355 39.9336 30.1598L40.3229 31.4313C37.3127 33.118 35.3405 35.1162 33.7187 38.0875C32.6548 37.1273 30.3062 35.2849 26.9587 34.169C26.8809 33.5462 26.7901 32.0151 27.2182 29.7315C29.5667 24.6712 33.9393 23.4127 36.5735 22.6602L36.5862 22.6733ZM17.0328 36.0892L17.2534 35.8816V35.5961C17.2534 35.5961 17.2534 35.4534 17.2275 35.2588C16.7733 29.3163 17.0847 23.2438 18.1227 18.0795H23.3257C23.3127 18.1833 23.2867 18.2871 23.2738 18.378C23.0013 19.896 22.651 21.7904 23.1959 24.3854C23.2478 24.6579 23.4813 24.8655 23.7538 24.8914C24.0263 24.9303 24.2988 24.7747 24.4156 24.5152C24.4285 24.4762 26.0504 21.0119 28.1394 18.0666H30.6306C24.2988 28.4076 25.6871 34.545 25.752 34.8041C25.752 34.83 25.7779 34.856 25.7909 34.8819C25.8039 34.9209 25.8169 34.9598 25.8428 34.9858C25.8688 35.0247 25.8947 35.0636 25.9336 35.0896C25.9596 35.1155 25.9726 35.1415 26.0115 35.1544C26.0504 35.1933 26.1023 35.2063 26.1542 35.2323C26.1672 35.2323 26.1802 35.2582 26.2061 35.2582C29.4239 36.2443 31.7205 38.0219 32.7714 38.9561C18.6804 45.6511 15.7092 58.9636 15.0865 64.0241C13.296 59.8462 12.3228 55.2659 12.3228 50.4911C12.3228 42.9396 13.5554 39.1637 17.0327 36.063L17.0328 36.0892ZM63.2884 48.0129C64.9103 61.5973 60.3172 75.7406 57.6184 79.9574C56.0484 82.3967 54.0113 84.0056 51.3775 84.8879C48.5878 85.835 43.813 85.4588 40.4005 84.797C60.408 75.676 53.6087 53.1905 51.987 48.6615C50.9749 45.82 50.2613 42.7968 51.9221 39.9938C53.4012 37.4897 55.8146 35.9456 58.2928 34.9985C61.9907 40.1236 62.9379 44.8594 63.3011 48.0125L63.2884 48.0129ZM66.8176 32.1838H66.7527C64.028 32.1838 54.7377 32.6899 50.8066 39.333C48.8734 42.6027 49.7038 46.1059 50.7677 49.0902C52.3506 53.5406 59.1888 76.1296 38.2337 84.304C37.9742 84.2391 37.7407 84.1613 37.5331 84.0964C27.8797 80.8916 20.3928 74.4688 16.1636 66.3334C16.1896 66.2555 16.2155 66.1777 16.2155 66.0998C16.2155 65.9182 16.514 47.5455 34.1596 39.7605C34.1855 39.7605 34.2115 39.7216 34.2374 39.7086C34.2763 39.6826 34.3023 39.6697 34.3282 39.6437V39.6307C34.3542 39.6048 34.3801 39.5659 34.4061 39.5269C34.4191 39.501 34.445 39.488 34.458 39.4621C36.1188 36.1146 38.0651 34.1164 41.3867 32.3388C41.6591 32.1961 41.7889 31.8717 41.6981 31.5733L41.3348 30.3796L45.331 28.9264L45.8241 30.1461C45.889 30.3148 46.0187 30.4445 46.1874 30.5094C46.3561 30.5743 46.5377 30.5613 46.7064 30.4964C51.5071 28.2129 56.0741 27.5901 66.792 27.7977V32.1831L66.8176 32.1838Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nr4vyp\",\"data-framer-name\":\"Group 29614141\",name:\"Group 29614141\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected heart rate tracker, such as\"})}),className:\"framer-1o84huv\",\"data-framer-name\":\"Any connected heart rate tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected heart rate tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Heart Rate\"})}),className:\"framer-1r56xow\",\"data-framer-name\":\"Heart Rate\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Heart Rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rtd3ga\",\"data-framer-name\":\"Group 29614158\",name:\"Group 29614158\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1aney3c\",\"data-framer-name\":\"Group 29614137\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:224,intrinsicWidth:111,name:\"Group 29614137\",svg:'<svg width=\"111\" height=\"224\" viewBox=\"0 0 111 224\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.152344 8.54004C0.152344 4.12176 3.73407 0.540039 8.15234 0.540039H102.152C106.571 0.540039 110.152 4.12176 110.152 8.54004V215.815C110.152 220.234 106.571 223.815 102.152 223.815H8.15234C3.73406 223.815 0.152344 220.234 0.152344 215.815V8.54004Z\" fill=\"#D6E5CD\"/>\\n<path d=\"M33.3818 80.7244C33.6351 80.9491 33.6527 81.3302 33.4205 81.5753C33.1883 81.8204 32.7943 81.8374 32.541 81.6127C32.2877 81.3881 32.2702 81.0069 32.5023 80.7619C32.7345 80.5168 33.1285 80.4998 33.3818 80.7244ZM81.26 18.6547C83.0787 20.5539 84.0075 23.1269 83.8069 25.7103L79.7684 77.042C79.3885 81.8819 75.16 85.6699 70.143 85.6699H26.5813C21.5648 85.6699 17.336 81.8784 16.9559 77.042L12.9174 25.7137C12.7134 23.1305 13.6421 20.5574 15.4643 18.6582C17.283 16.759 19.8652 15.6699 22.5423 15.6699H74.1813C76.8584 15.6699 79.4405 16.759 81.2593 18.6582L81.26 18.6547ZM80.2679 19.543C78.6779 17.8856 76.5178 16.9734 74.1785 16.9734H22.5467C20.2108 16.9734 18.0473 17.8856 16.4573 19.543C14.8672 21.2005 14.0898 23.3584 14.2692 25.6115L18.3077 76.9398C18.6349 81.1022 22.2688 84.3628 26.5852 84.3628H70.147C74.4599 84.3628 78.0974 81.1022 78.4246 76.9398L82.4631 25.6115C82.639 23.355 81.8615 21.2005 80.275 19.543H80.2679ZM30.1203 80.514H26.7501C24.1152 80.514 21.8955 78.5229 21.6949 75.9805L20.4039 59.5548C20.3757 59.194 20.0521 58.9353 19.6792 58.9524C19.3063 58.9796 19.0284 59.2927 19.0565 59.6535L20.3476 76.0792C20.6009 79.299 23.4116 81.8209 26.7501 81.8209H30.1203C30.4932 81.8209 30.7957 81.5282 30.7957 81.1675C30.7957 80.8067 30.4932 80.514 30.1203 80.514ZM38.9607 80.514H35.8016C35.4288 80.514 35.1262 80.8067 35.1262 81.1675C35.1262 81.5283 35.4288 81.821 35.8016 81.821H38.9607C39.3336 81.821 39.6361 81.5283 39.6361 81.1675C39.6361 80.8067 39.3336 80.514 38.9607 80.514ZM63.3708 23.4264C63.9724 24.0629 64.2714 24.924 64.1905 25.785L63.2019 36.3731C63.0541 37.9727 61.6857 39.181 60.0253 39.181H36.6986C35.0381 39.181 33.6732 37.9728 33.522 36.3731L32.5334 25.7815C32.4525 24.9204 32.7515 24.0627 33.3531 23.4229C33.9582 22.7831 34.813 22.4189 35.7066 22.4189H61.0145C61.9081 22.4189 62.7664 22.7865 63.368 23.4229L63.3708 23.4264ZM62.8466 25.6659C62.8959 25.1622 62.727 24.6789 62.3752 24.3079C62.0234 23.9335 61.5415 23.7293 61.0173 23.7293H35.7094C35.1887 23.7293 34.7032 23.9335 34.3515 24.3079C33.9997 24.6823 33.8308 25.1622 33.8801 25.6659L34.8686 36.2574C34.9566 37.1798 35.7411 37.8741 36.6979 37.8741H60.0246C60.9815 37.8741 61.7695 37.1798 61.8539 36.2574L62.8424 25.6659H62.8466ZM49.9216 32.7418C50.3402 33.1468 50.5689 33.6812 50.5689 34.2496C50.5689 34.8181 50.3402 35.3557 49.9216 35.7574C49.5029 36.159 48.9507 36.3836 48.3631 36.3836C47.7756 36.3836 47.2198 36.1624 46.8047 35.7574C46.3861 35.3558 46.1574 34.8181 46.1574 34.2496C46.1574 33.8991 46.2559 33.5621 46.4212 33.2592L42.8998 29.4303C42.6148 29.1342 43.0757 28.6917 43.3818 28.964C43.3818 28.964 46.8047 31.908 47.3464 32.3744C48.1731 31.9727 49.2495 32.0885 49.9215 32.7385L49.9216 32.7418ZM49.218 34.2496C49.218 34.0284 49.13 33.8208 48.9682 33.6642C48.8064 33.5076 48.5918 33.4226 48.3631 33.4226C48.1345 33.4226 47.9199 33.5076 47.7581 33.6642C47.5962 33.8208 47.5083 34.0284 47.5083 34.2496C47.5083 34.4708 47.5963 34.6785 47.7581 34.835C48.0817 35.1482 48.6411 35.1482 48.9683 34.835C49.1301 34.6785 49.218 34.4708 49.218 34.2496ZM44.6271 27.2146C44.7116 27.5039 44.9824 27.6911 45.2779 27.6911C45.3377 27.6911 45.4011 27.6843 45.4609 27.6672C45.8197 27.5685 46.0308 27.2078 45.9287 26.8606L45.5277 25.4788C45.4292 25.1316 45.0598 24.9274 44.694 25.0261C44.3351 25.1248 44.1241 25.4856 44.2261 25.8328L44.6271 27.2146ZM52.0463 25.0976C51.6875 24.9887 51.3111 25.1861 51.2021 25.5298L50.7658 26.9014C50.6568 27.2452 50.8573 27.6127 51.2126 27.7183C51.2794 27.7387 51.3463 27.7455 51.4096 27.7455C51.6981 27.7455 51.9654 27.5651 52.0569 27.2826L52.4931 25.911C52.6022 25.5672 52.4016 25.1997 52.0463 25.0942V25.0976ZM38.3234 33.6949L36.8564 33.4736C36.487 33.4226 36.1423 33.6642 36.086 34.0182C36.0297 34.3756 36.283 34.7091 36.6489 34.7636L38.1158 34.9848C38.151 34.9916 38.1862 34.9916 38.2214 34.9916C38.5485 34.9916 38.837 34.7602 38.8862 34.4368C38.9425 34.0795 38.6892 33.7459 38.3234 33.6915V33.6949ZM39.7973 28.2935C39.5159 28.0518 39.0902 28.0791 38.844 28.3479C38.5977 28.6168 38.6224 29.0321 38.9003 29.2703L40.0119 30.2233C40.1421 30.3357 40.3004 30.3867 40.4587 30.3867C40.6452 30.3867 40.8316 30.3118 40.9653 30.1655C41.2115 29.8966 41.1869 29.4814 40.909 29.2431L39.7973 28.2901L39.7973 28.2935ZM58.016 28.5454C57.7733 28.2697 57.3476 28.2356 57.0626 28.4671L55.9299 29.3962C55.6449 29.6311 55.6098 30.0429 55.849 30.3186C55.9827 30.4717 56.1726 30.55 56.3626 30.55C56.5174 30.55 56.6722 30.499 56.7988 30.3969L57.9316 29.4677C58.2165 29.2329 58.2517 28.821 58.0125 28.5453L58.016 28.5454ZM59.8805 33.7119L58.4065 33.8991C58.0371 33.9467 57.7768 34.2735 57.826 34.6343C57.8718 34.9644 58.1602 35.2026 58.4944 35.2026C58.5226 35.2026 58.5542 35.1992 58.5859 35.1958L60.0599 35.0086C60.4292 34.961 60.6896 34.6343 60.6403 34.2735C60.5911 33.9161 60.2533 33.6643 59.8805 33.7119Z\" fill=\"#317C07\" fill-opacity=\"0.2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rfoe9f\",\"data-framer-name\":\"Group 29614142\",name:\"Group 29614142\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"15px\",\"--framer-text-alignment\":\"center\"},children:\"Any connected weight tracker, such as\"})}),className:\"framer-o3vfm4\",\"data-framer-name\":\"Any connected weight tracker, such as\",fonts:[\"GF;Greed TRIAL-regular\"],name:\"Any connected weight tracker, such as\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:\"Weight\"})}),className:\"framer-1igu6sh\",\"data-framer-name\":\"Weight\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Weight\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-43ave6\",\"data-framer-name\":\"Group 29614159\",name:\"Group 29614159\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1s97e0g\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:297,intrinsicWidth:4,name:\"Line 5\",svg:'<svg width=\"4\" height=\"297\" viewBox=\"-1 -1 4 297\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"294.218\" x2=\"1.00001\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mw5ihb\",\"data-framer-name\":\"Line 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:5,name:\"Line 6\",svg:'<svg width=\"5\" height=\"71\" viewBox=\"-1 -1 5 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1.15234\" y1=\"68.2783\" x2=\"1.15235\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c4rg8b\",\"data-framer-name\":\"Line 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:4,name:\"Line 7\",svg:'<svg width=\"4\" height=\"71\" viewBox=\"-1 -1 4 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"1\" y1=\"68.2783\" x2=\"1\" y2=\"0.81543\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14bd9dr\",\"data-framer-name\":\"Group 15447\",name:\"Group 15447\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r80rdj\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gbf52k\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5936.4453125),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-1bg8lep\",\"data-border\":true,\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rizy7c\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1147\",name:\"Rectangle 1147\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"19px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\"Connect your \"}),\"Levl app\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-weight\":\"400\"},children:\" with \"}),\"Apple Health\"]})}),className:\"framer-1qs33mz\",\"data-framer-name\":\"Connect your Levl app with Apple Health\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-regular\"],name:\"Connect your Levl app with Apple Health\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13n3dx4\",\"data-framer-name\":\"Group 29614160\",name:\"Group 29614160\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6104.5),sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"206.0021px\",src:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png\",srcSet:\"https://framerusercontent.com/images/q4oZ3U7uj0igyp9TAlNQ51bdHo.png 706w\"},className:\"framer-1y18a59\",\"data-framer-name\":\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\",name:\"Capture d\u2019e\u0301cran 2024-11-02 a\u0300 13.23.57 1\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtcmVndWxhcg==\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"19px\",\"--framer-text-alignment\":\"right\"},children:[\"Get real-time insights into your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\"symptoms\"}),\" and\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-weight\":\"700\"},children:\" side effects\"})]})}),className:\"framer-vzzqxc\",\"data-framer-name\":\"Get real-time insights into your symptoms and side effects\",fonts:[\"GF;Greed TRIAL-regular\",\"GF;Greed TRIAL-700\"],name:\"Get real-time insights into your symptoms and side effects\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k0wx8j\",\"data-framer-name\":\"Line 55\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:5,intrinsicWidth:392,name:\"Line 55\",svg:'<svg width=\"392\" height=\"5\" viewBox=\"-1 -1 392 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"1.27832\" x2=\"390\" y2=\"1.27832\" stroke=\"#317C07\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1buoad1\",\"data-framer-name\":\"Polygon 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,name:\"Polygon 5\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.81543 12.4028L1.45943 3.12598L12.1714 3.12598L6.81543 12.4028Z\" fill=\"#317C07\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3jg7cd\",\"data-framer-name\":\"Group 29614161\",name:\"Group 29614161\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fwdm3f\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1148\",name:\"Rectangle 1148\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uzu6oz\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1149\",name:\"Rectangle 1149\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7czfa\",\"data-border\":true,\"data-framer-name\":\"Rectangle 1150\",name:\"Rectangle 1150\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Fitbit\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Oura\"})]}),className:\"framer-r44xce\",\"data-framer-name\":\"Apple Watch, Fitbit, Oura\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Fitbit, Oura\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Apple Watch\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Whoop\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\", \"}),\"Garmin\"]})}),className:\"framer-1naiv2p\",\"data-framer-name\":\"Apple Watch, Whoop, Garmin\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Apple Watch, Whoop, Garmin\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:[\"Withings,\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNTAw\",\"--framer-font-weight\":\"500\"},children:\" \"}),\"Fitbit,\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Eufy\"})]}),className:\"framer-79shov\",\"data-framer-name\":\"Withings, Fitbit, Eufy\",fonts:[\"GF;Greed TRIAL-700\",\"GF;Greed TRIAL-500\"],name:\"Withings, Fitbit, Eufy\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\"},children:\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\"})}),className:\"framer-1g5equ0\",\"data-framer-name\":\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl customises the data points it uses to your diagnosis and medication, giving you insights tailored to you.\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hi9mfr hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - HOW MEASURE MEDS\",name:\"MODULE - HOW MEASURE MEDS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3924.5),pixelHeight:811,pixelWidth:1441,positionX:\"center\",positionY:\"center\",sizes:\"810px\",src:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png\",srcSet:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png 1441w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:811,pixelWidth:1441,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png\",srcSet:\"https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=512 512w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vzr59lsEHqxnpS0OfW14ae8AKT0.png 1441w\"},className:\"framer-11i2trx\",\"data-framer-name\":\"BACKGROUND IMAGE\",name:\"BACKGROUND IMAGE\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iiazp3\",\"data-framer-name\":\"APPLE HEALTH\",name:\"APPLE HEALTH\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13x9wqq\",\"data-framer-name\":\"Rectangle 1143\",name:\"Rectangle 1143\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4287.6005859375),src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/eSmd0FPhHk1CS4pVDTSlncmdbg.jpg\"},className:\"framer-12j9dih\",\"data-framer-name\":\"Apple_Health-512 1\",name:\"Apple_Health-512 1\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\"},children:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\"})}),className:\"framer-17rrjkp\",\"data-framer-name\":\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Measuring your data couldn\u2019t be easier. Simply connect your Levl app to Apple Health. Your Levl app will do the rest.\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"How do you measure your medication data using Levl?\"})}),className:\"framer-11q4ge7\",\"data-framer-name\":\"How do you measure your medication data using Levl?\",fonts:[\"GF;Greed TRIAL-700\"],name:\"How do you measure your medication data using Levl?\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5mrnc hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - WHY MEASURE MEDS\",name:\"MODULE - WHY MEASURE MEDS\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(2145.5),pixelHeight:1601,pixelWidth:2883,sizes:\"2087.5px\",src:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png\",srcSet:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png 2883w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1601,pixelWidth:2883,src:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png\",srcSet:\"https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tNEE44FDmzb3LPp8l2pex6t20PI.png 2883w\"},className:\"framer-11tw0us\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\"})}),className:\"framer-1256u8v\",\"data-framer-name\":\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl speeds up the process of finding the right medication, by providing trusted data on how they impact you.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\"})}),className:\"framer-61nta8\",\"data-framer-name\":\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Levl helps you to clearly understand the effect your medication is having on you, so you decide if it is working.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16acbz5\",\"data-framer-name\":\"FACT 1\",name:\"FACT 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e9ngff\",\"data-framer-name\":\"Ellipse 2\",name:\"Ellipse 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\"},children:\"The number of mental health medications the average person trials before finding what works best for them\"})}),className:\"framer-y0qyej\",\"data-framer-name\":\"The number of mental health medications the average person trials before finding what works best for them\",fonts:[\"Inter-Medium\"],name:\"The number of mental health medications the average person trials before finding what works best for them\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:[\"x\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"150px\"},children:\"3\"})]})}),className:\"framer-1tqpq4e\",\"data-framer-name\":\"x3\",fonts:[\"GF;Greed TRIAL-700\"],name:\"x3\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5sc0o8\",\"data-framer-name\":\"FACT 2\",name:\"FACT 2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lyfeg3\",\"data-framer-name\":\"Ellipse 1\",name:\"Ellipse 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\"},children:\"How many people stop taking mental health medication prematurely, because they do not believe it is working\"})}),className:\"framer-1d7zh0u\",\"data-framer-name\":\"How many people stop taking mental health medication prematurely, because they do not believe it is working\",fonts:[\"Inter-Medium\"],name:\"How many people stop taking mental health medication prematurely, because they do not believe it is working\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(49, 124, 7)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"110px\"},children:\"6\"}),\" out of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"110px\"},children:\"10\"})]})}),className:\"framer-b6ldsv\",\"data-framer-name\":\"6 out of 10\",fonts:[\"GF;Greed TRIAL-700\"],name:\"6 out of 10\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Why measure your symptoms and side effects when taking mental health medication?\"})}),className:\"framer-xmepcc\",\"data-framer-name\":\"Why measure your symptoms and side effects when taking mental health medication?\",fonts:[\"GF;Greed TRIAL-700\"],name:\"Why measure your symptoms and side effects when taking mental health medication?\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nczrjt hidden-vlkg60 hidden-3lasd\",\"data-framer-name\":\"MODULE - INTRO\",name:\"MODULE - INTRO\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-holams\",\"data-framer-name\":\"BACKGROUND\",name:\"BACKGROUND\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjq83b\",\"data-framer-name\":\"Background carousel\",name:\"Background carousel\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12idtxz-container\",children:/*#__PURE__*/_jsx(Carousel1,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(49, 124, 6)\",arrowPadding:20,arrowRadius:40,arrowSize:60,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:40,height:\"100%\",id:\"STAuoGbki\",layoutId:\"STAuoGbki\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgb(214, 228, 205)\",dotsBlur:4,dotsFill:\"rgb(49, 124, 6)\",dotsGap:10,dotsInset:40,dotSize:16,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aj60j1\",\"data-framer-name\":\"Carousel two module - weight\",name:\"Carousel two module - weight\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5l1tr2\",\"data-framer-name\":\"Text - weight\",name:\"Text - weight\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\"},children:\"See how your medication is causing weight changes.\"})}),className:\"framer-uqor9h\",\"data-framer-name\":\"See how your medication is causing weight changes.\",fonts:[\"Inter-Bold\"],name:\"See how your medication is causing weight changes.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\"})}),className:\"framer-vq5hjn\",\"data-framer-name\":\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\",fonts:[\"Inter-Light\"],name:\"Levl will give you trusted insights into when weight changes could be caused by new medication doses.\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuwp1\",\"data-framer-name\":\"Levl screen - weight\",name:\"Levl screen - weight\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png\",srcSet:\"https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/KsNiyRshsjY2RaM77vnUB9nJbE.png 1245w\"},className:\"framer-14hbjtq\",\"data-framer-name\":\"Screen Weight\",name:\"Screen Weight\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8lvex7\",\"data-framer-name\":\"Carousel one module - sleep\",name:\"Carousel one module - sleep\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oey5f5\",\"data-framer-name\":\"Text - sleep\",name:\"Text - sleep\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"See how dosage changes influence your sleep quality.\"})}),className:\"framer-vk2kl9\",\"data-framer-name\":\"See how dosage changes influence your sleep quality.\",fonts:[\"Inter-Bold\"],name:\"See how dosage changes influence your sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\"})}),className:\"framer-rpnwvk\",\"data-framer-name\":\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\",fonts:[\"Inter-Light\"],name:\"Medication can both decrease and increase your REM sleep. Levl will help you understand trends in sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16sdrv2\",\"data-framer-name\":\"Levl screen - sleep\",name:\"Levl screen - sleep\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png\",srcSet:\"https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/hDgwy8NKrXN8vhZZJZLqmFkUWyM.png 1245w\"},className:\"framer-1ced4gp\",\"data-framer-name\":\"Screen Sleep\",name:\"Screen Sleep\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v1jo0b\",\"data-framer-name\":\"Carousel three module - heart rate\",name:\"Carousel three module - heart rate\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gig3h3\",\"data-framer-name\":\"Text - heart rate\",name:\"Text - heart rate\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"See how medication can impact your heart rate.\"})}),className:\"framer-1myv58l\",\"data-framer-name\":\"See how dosage changes influence your sleep quality.\",fonts:[\"Inter-Bold\"],name:\"See how dosage changes influence your sleep quality.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"26px\"},children:\"Levl will flag when there are changes in your heart rate over time, which could be linked to your medication.\"})}),className:\"framer-57q86z\",\"data-framer-name\":\"See how medication can have an impact on your heart rate\",fonts:[\"Inter-Light\"],name:\"See how medication can have an impact on your heart rate\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15v3yne\",\"data-framer-name\":\"Levl screen - heart rate\",name:\"Levl screen - heart rate\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:2529,pixelWidth:1245,positionX:\"center\",positionY:\"center\",sizes:\"282.02px\",src:\"https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png\",srcSet:\"https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png?scale-down-to=2048 1008w,https://framerusercontent.com/images/awbyREzfhAq0RzRcAVhqUESUK4.png 1245w\"},className:\"framer-tm9qaw\",\"data-framer-name\":\"Screen Heart rate\",name:\"Screen Heart rate\"})})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R3JlZWQgVFJJQUwtNzAw\",\"--framer-font-family\":'\"Greed TRIAL\", \"Greed TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\"})}),className:\"framer-pjwi9d\",\"data-framer-name\":\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\",fonts:[\"GF;Greed TRIAL-700\"],name:\"You deserve to feel in control of your medication. Levl gives you the insights you need to know if your medication is working.\",transformTemplate:transformTemplate1,verticalAlignment:\"bottom\",withExternalLayout:true})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"1728px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hu0k3z-container hidden-12mzcyi hidden-3lasd\",layoutScroll:true,children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"DftIdBtKj\",layoutId:\"DftIdBtKj\",style:{height:\"100%\",width:\"100%\"},variant:\"shajuMpdl\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGYmzp0Ua:{height:70,width:\"810px\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lsbk68-container hidden-vlkg60 hidden-12mzcyi\",layoutScroll:true,children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"ab_Kdukk2\",layoutId:\"ab_Kdukk2\",style:{width:\"100%\"},variant:\"QImmNSBeX\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wXgmJxdWG:{height:70,width:\"1439px\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h8u120-container hidden-vlkg60 hidden-3lasd\",layoutScroll:true,children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"pE3VTN_uV\",layoutId:\"pE3VTN_uV\",style:{height:\"100%\",width:\"100%\"},variant:\"dEtxFy5V0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-622bu { background: rgb(255, 245, 237); }`,\".framer-622bu.framer-2tqsey, .framer-622bu .framer-2tqsey { display: block; }\",\".framer-622bu.framer-vlkg60 { align-content: center; align-items: center; background-color: #fff5ed; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 11058px; justify-content: flex-start; overflow: hidden; padding: 868px 0px 868px 0px; position: relative; width: 1440px; }\",\".framer-622bu .framer-yk0lfd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 11058px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-622bu .framer-b0eo6h { background-color: #fff5ed; flex: none; height: 11577px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-622bu .framer-199raah { bottom: 518px; flex: none; height: 630px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-622bu .framer-5qfc1s { background-color: #ffffff; bottom: 0px; flex: none; left: -150px; position: absolute; right: -150px; top: 0px; }\",\".framer-622bu .framer-nlamo1 { flex: none; height: 237px; left: 1159px; position: absolute; top: 120px; width: 315px; }\",\".framer-622bu .framer-12qk93 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 230px; position: absolute; top: 167px; white-space: pre-wrap; width: 479px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-d9i75t { --framer-paragraph-spacing: 0px; bottom: 81px; flex: none; height: auto; left: 230px; position: absolute; white-space: pre-wrap; width: 1074px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-13jxaf9 { bottom: 1817px; flex: none; height: 720px; left: 0px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-622bu .framer-1j2m00e { background-color: #ffffff; flex: none; height: 720px; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-622bu .framer-d83prq { bottom: 313px; flex: none; left: 250px; position: absolute; top: 293px; width: 304px; }\",\".framer-622bu .framer-191lmn5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 484px; transform: translateX(-50%); white-space: pre-wrap; width: 358px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-fozhpw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 80px; transform: translateX(-50%); white-space: pre-wrap; width: 213px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1dstxd3 { bottom: 1374px; flex: none; height: 1048px; left: calc(41.66666666666669% - 1210.5px / 2); overflow: visible; position: absolute; width: 1211px; }\",\".framer-622bu .framer-1av2ufr { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: -1px; flex: none; height: 860px; left: -150px; position: absolute; width: 1360px; }\",\".framer-622bu .framer-8qwtxy { flex: none; height: 643px; left: 639px; overflow: visible; position: absolute; top: 302px; width: 460px; }\",\".framer-622bu .framer-13q4k55 { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; top: 453px; width: 460px; }\",\".framer-622bu .framer-ky87bi, .framer-622bu .framer-1x2iu6t, .framer-622bu .framer-54ea4x { background-color: rgba(77, 179, 244, 0.6); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 190px; left: 0px; position: absolute; top: 0px; width: 460px; }\",\".framer-622bu .framer-3ayzms, .framer-622bu .framer-1j9g2q0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52%; position: absolute; top: 27px; transform: translateX(-50%); white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-anyhw0 { --framer-paragraph-spacing: 0px; bottom: 37px; flex: none; height: auto; left: 52%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1xkr6z4 { flex: none; height: 126px; left: 30px; overflow: visible; position: absolute; top: 27px; width: 400px; }\",\".framer-622bu .framer-5rhzl6 { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; top: 226px; width: 460px; }\",\".framer-622bu .framer-1s0zjto, .framer-622bu .framer-15a1mrj { --framer-paragraph-spacing: 0px; bottom: 41px; flex: none; height: auto; left: 52%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-17k23j2 { flex: none; height: 122px; left: 30px; overflow: visible; position: absolute; top: 34px; width: 400px; }\",\".framer-622bu .framer-rmbhe8 { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 460px; }\",\".framer-622bu .framer-6jwnne { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 52%; position: absolute; top: 29px; transform: translateX(-50%); white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-qowz97 { flex: none; height: 120px; left: 30px; overflow: visible; position: absolute; top: 35px; width: 400px; }\",\".framer-622bu .framer-1t2ybpz { flex: none; height: 843px; left: 113px; overflow: visible; position: absolute; top: calc(50.22080678020136% - 843px / 2); width: 409px; }\",\".framer-622bu .framer-3nf6ha, .framer-622bu .framer-1nis3xr { flex: none; height: 669px; left: -3px; overflow: visible; position: absolute; top: 149px; width: 415px; }\",\".framer-622bu .framer-cocdeo, .framer-622bu .framer-79f1is { border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 100px; left: 410px; overflow: hidden; position: absolute; top: 97px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-l72ozm, .framer-622bu .framer-wxgkl4 { background-color: #f0ece3; border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 99px; left: 0px; position: absolute; top: 1px; width: 5px; }\",\".framer-622bu .framer-167c4h3, .framer-622bu .framer-molnq { background: linear-gradient(179.99999974702587deg, #000000 0%, rgba(0, 0, 0, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 99px; left: 0px; opacity: 0.76; position: absolute; top: 1px; width: 5px; }\",\".framer-622bu .framer-143c26z, .framer-622bu .framer-59xing { background: linear-gradient(-89.99999999999815deg, #000000 0%, rgba(174, 174, 174, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 99px; left: 0px; position: absolute; top: 1px; width: 5px; }\",\".framer-622bu .framer-1w6i9ih, .framer-622bu .framer-vmav8c { background: linear-gradient(179.99999974701993deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 99px; left: 0px; opacity: 0.48; position: absolute; top: 1px; width: 5px; }\",\".framer-622bu .framer-6vys31, .framer-622bu .framer-1bfqdmn { flex: none; height: 20px; left: 1px; position: absolute; top: 78px; width: 2px; }\",\".framer-622bu .framer-1e1h8ax, .framer-622bu .framer-15ynyaz { flex: none; height: 92px; left: 1px; position: absolute; top: 6px; width: 2px; }\",\".framer-622bu .framer-1wpd5ze, .framer-622bu .framer-u82dbu { -webkit-filter: blur(1px); background-color: #61605d; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; filter: blur(1px); flex: none; height: 95px; left: 0px; position: absolute; top: 5px; width: 1px; }\",\".framer-622bu .framer-pxu6hh, .framer-622bu .framer-c3c5u2 { border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 31px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-1eozc76, .framer-622bu .framer-49kqgm { background-color: #f0ece3; border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 31px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-1dcf613, .framer-622bu .framer-1sxn3t5 { background: linear-gradient(180.00000000000833deg, #000000 0%, rgba(0, 0, 0, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 31px; left: 0px; opacity: 0.76; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-u1u0om, .framer-622bu .framer-1urceiw { background: linear-gradient(-89.99999999999815deg, #000000 0%, rgba(174, 174, 174, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 31px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-8qdchp, .framer-622bu .framer-126gt69 { background: linear-gradient(179.99999999999682deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 31px; left: 0px; opacity: 0.48; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-mdduz6, .framer-622bu .framer-1f7q5lc { -webkit-filter: blur(0.5px); background-color: #ffffff; border-top-left-radius: 1px; border-top-right-radius: 1px; filter: blur(0.5px); flex: none; height: 6px; left: 1px; position: absolute; top: 1px; width: 1px; }\",\".framer-622bu .framer-l37747, .framer-622bu .framer-10ca80p { -webkit-filter: blur(0.5px); background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; filter: blur(0.5px); flex: none; height: 26px; left: 1px; position: absolute; top: 3px; width: 1px; }\",\".framer-622bu .framer-1jgoftx, .framer-622bu .framer-1pzxj7s { -webkit-filter: blur(1px); background-color: #61605d; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; filter: blur(1px); flex: none; height: 34px; left: 0px; position: absolute; top: -1px; width: 1px; }\",\".framer-622bu .framer-gbng3p, .framer-622bu .framer-117aacn { border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; overflow: hidden; position: absolute; top: 60px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-10foh51, .framer-622bu .framer-h8facu, .framer-622bu .framer-uvl68y, .framer-622bu .framer-o2why5 { background-color: #f0ece3; border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-3mnm2g, .framer-622bu .framer-8570bg, .framer-622bu .framer-g7bvt3, .framer-622bu .framer-1b6bo96 { background: linear-gradient(180.00000000000568deg, #000000 0%, rgba(0, 0, 0, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; opacity: 0.76; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-y0wgp8, .framer-622bu .framer-2ugmam, .framer-622bu .framer-umvdja, .framer-622bu .framer-bplmon { background: linear-gradient(-89.99999999999815deg, #000000 0%, rgba(174, 174, 174, 0) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-w0fdk0, .framer-622bu .framer-1erxi5w, .framer-622bu .framer-5vg7ik, .framer-622bu .framer-1d1gc40 { background: linear-gradient(179.99999999999682deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; opacity: 0.48; position: absolute; top: 0px; width: 5px; }\",\".framer-622bu .framer-1o9e48a, .framer-622bu .framer-1vtaohf, .framer-622bu .framer-n587q5, .framer-622bu .framer-1pru2zh { -webkit-filter: blur(0.5px); background-color: #ffffff; border-top-left-radius: 1px; border-top-right-radius: 1px; filter: blur(0.5px); flex: none; height: 11px; left: 1px; position: absolute; top: 2px; width: 1px; }\",\".framer-622bu .framer-n9htya, .framer-622bu .framer-1irac4h, .framer-622bu .framer-fx6v4l, .framer-622bu .framer-6dv0cc { -webkit-filter: blur(0.5px); background-color: rgba(255, 255, 255, 0.8); border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; filter: blur(0.5px); flex: none; height: 52px; left: 1px; position: absolute; top: 3px; width: 1px; }\",\".framer-622bu .framer-1vo1sad, .framer-622bu .framer-1nkwyk1, .framer-622bu .framer-36qt1, .framer-622bu .framer-1fvu57r { -webkit-filter: blur(1px); background-color: #61605d; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; filter: blur(1px); flex: none; height: 58px; left: 0px; position: absolute; top: 0px; width: 1px; }\",\".framer-622bu .framer-16d8q7d, .framer-622bu .framer-ugl0bw { border-bottom-left-radius: 2px; border-top-left-radius: 2px; flex: none; height: 56px; left: 0px; overflow: hidden; position: absolute; top: 133px; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-1g4jy69, .framer-622bu .framer-j1c6e6 { border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; flex: none; height: 843px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 409px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-14ei2j6, .framer-622bu .framer-16zmgms { background-color: #e7e3bf; border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; flex: none; height: 843px; left: 0px; position: absolute; top: 0px; width: 409px; }\",\".framer-622bu .framer-1ex8mw, .framer-622bu .framer-1v1u80a { --border-bottom-width: 3px; --border-color: #c2c2c2; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; -webkit-filter: blur(2px); border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; filter: blur(2px); flex: none; height: 843px; left: 0px; position: absolute; top: 0px; width: 409px; }\",\".framer-622bu .framer-1ytzj0c, .framer-622bu .framer-69mykf { --border-bottom-width: 1px; --border-color: #514a40; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: blur(1px); border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; filter: blur(1px); flex: none; height: 843px; left: 0px; position: absolute; top: 0px; width: 409px; }\",\".framer-622bu .framer-8ukh3f, .framer-622bu .framer-10nrgwh { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: blur(1px); border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; filter: blur(1px); flex: none; height: 832px; left: 5px; position: absolute; top: 5px; width: 399px; }\",\".framer-622bu .framer-maszxs, .framer-622bu .framer-3g8nt0 { --border-bottom-width: 0.4000000059604645px; --border-color: #ffffff; --border-left-width: 0.4000000059604645px; --border-right-width: 0.4000000059604645px; --border-style: solid; --border-top-width: 0.4000000059604645px; border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; flex: none; height: 830px; left: 6px; position: absolute; top: calc(49.940688018979834% - 830px / 2); width: 397px; }\",\".framer-622bu .framer-16a7b22, .framer-622bu .framer-vfb44z { background: linear-gradient(180deg, #817d72 0%, rgba(194, 190, 172, 1) 100%); flex: none; height: 4px; left: 318px; position: absolute; top: 0px; width: 6px; }\",\".framer-622bu .framer-150ut9l, .framer-622bu .framer-69kjkn { background: linear-gradient(180deg, #817d72 0%, rgba(194, 190, 172, 1) 100%); flex: none; height: 4px; left: -1px; position: absolute; top: 82px; width: 6px; }\",\".framer-622bu .framer-8381vs, .framer-622bu .framer-5azpsf { background: linear-gradient(89.99999999999999deg, #817d72 0%, rgba(194, 190, 172, 1) 100%); flex: none; height: 6px; left: 0px; position: absolute; top: 756px; width: 4px; }\",\".framer-622bu .framer-1bt21fg, .framer-622bu .framer-6qi4ht { background: linear-gradient(-1.4210854715202004e-14deg, #817d72 0%, rgba(194, 190, 172, 1) 100%); flex: none; height: 4px; left: 63px; position: absolute; top: 839px; width: 5px; }\",\".framer-622bu .framer-xskcbc, .framer-622bu .framer-1r50syq { background: linear-gradient(270deg, #817d72 0%, rgba(194, 190, 172, 1) 100%); flex: none; height: 6px; left: 405px; position: absolute; top: 756px; width: 4px; }\",\".framer-622bu .framer-13spoii, .framer-622bu .framer-fsdjc6 { border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; flex: none; height: 835px; left: 4px; overflow: hidden; position: absolute; top: 4px; width: 401px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-1asaxbq, .framer-622bu .framer-120gauv { background-color: #000100; border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; flex: none; height: 835px; left: 0px; position: absolute; top: 0px; width: 401px; }\",\".framer-622bu .framer-xswvc7, .framer-622bu .framer-sy5ioj { --border-bottom-width: 4px; --border-color: #000000; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; -webkit-filter: blur(3.5px); border-bottom-left-radius: 58px; border-bottom-right-radius: 58px; border-top-left-radius: 58px; border-top-right-radius: 58px; filter: blur(3.5px); flex: none; height: 835px; left: 0px; position: absolute; top: 0px; width: 401px; }\",\".framer-622bu .framer-15nesrr, .framer-622bu .framer-zqjtap { border-bottom-left-radius: 52px; border-bottom-right-radius: 52px; border-top-left-radius: 52px; border-top-right-radius: 52px; flex: none; height: 819px; left: 12px; overflow: hidden; position: absolute; top: 12px; width: 385px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-h8x25i, .framer-622bu .framer-1rjqo69 { background-color: #dae2d3; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 805px; left: 0px; position: absolute; top: 0px; width: 370px; }\",\".framer-622bu .framer-ovm26d, .framer-622bu .framer-40zc72 { background-color: #fff5ed; flex: none; height: 931px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 390px; }\",\".framer-622bu .framer-1ev8ned, .framer-622bu .framer-15lcpke { background-color: #363636; flex: none; height: 140px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 390px; }\",\".framer-622bu .framer-s9mmhm, .framer-622bu .framer-1n6ispj { flex: none; height: 245px; left: 234px; overflow: visible; position: absolute; top: 38px; width: 191px; }\",\".framer-622bu .framer-a6945y, .framer-622bu .framer-l6dzow { bottom: 31px; flex: none; height: 246px; left: -1px; position: absolute; width: 193px; }\",\".framer-622bu .framer-1odq5um, .framer-622bu .framer-2u0q1d { background-color: #ffffff; flex: none; height: 457px; left: 0px; overflow: hidden; position: absolute; top: 178px; width: 390px; }\",\".framer-622bu .framer-1aa8hh4, .framer-622bu .framer-17hism { flex: none; height: 80px; left: 71px; overflow: visible; position: absolute; top: 50px; width: 248px; }\",\".framer-622bu .framer-hdha2q, .framer-622bu .framer-1ys1zmw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 248px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-15euzoy, .framer-622bu .framer-16gqcgk { flex: none; height: 44px; left: 12px; overflow: visible; position: absolute; top: 71px; width: 44px; }\",\".framer-622bu .framer-z7d9kk, .framer-622bu .framer-1tjkf7a { aspect-ratio: 1 / 1; background-color: #d9d9d9; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 44px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-1gze8g7, .framer-622bu .framer-1u682ko { bottom: 16px; flex: none; left: 14px; position: absolute; right: 22px; top: 13px; }\",\".framer-622bu .framer-knmx0b, .framer-622bu .framer-i7vmt8 { flex: none; height: 78px; left: 0px; position: absolute; top: 51px; width: 71px; }\",\".framer-622bu .framer-1qx6xv6, .framer-622bu .framer-1oq680g { flex: none; height: 78px; left: 320px; position: absolute; top: 51px; width: 71px; }\",\".framer-622bu .framer-jsspha, .framer-622bu .framer-14ar236 { flex: none; height: 681px; left: 16px; overflow: visible; position: absolute; top: 160px; width: 358px; }\",\".framer-622bu .framer-1pw1qpj, .framer-622bu .framer-145wlmm { flex: none; height: 681px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 358px; }\",\".framer-622bu .framer-45xjol, .framer-622bu .framer-1lfkjd1 { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08); flex: none; height: 681px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 358px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-1inbpy5, .framer-622bu .framer-1x8swfq { flex: none; height: 24px; left: 23px; overflow: visible; position: absolute; top: 13px; width: 149px; }\",\".framer-622bu .framer-22csoc, .framer-622bu .framer-ln6wwb { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 23px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-622bu .framer-nd3uz5, .framer-622bu .framer-1ucolf6 { flex: none; height: 17px; left: 0px; position: absolute; top: 4px; width: 17px; }\",\".framer-622bu .framer-11isce6, .framer-622bu .framer-zhjcm7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 24px; position: absolute; top: 47px; white-space: pre-wrap; width: 310px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1bq3p38, .framer-622bu .framer-10w8sdy { flex: none; height: 50px; left: 24px; overflow: visible; position: absolute; top: 591px; width: 310px; }\",\".framer-622bu .framer-12x7duz, .framer-622bu .framer-11k2r9i, .framer-622bu .framer-hqc79g, .framer-622bu .framer-1j6qco, .framer-622bu .framer-kgcz3w, .framer-622bu .framer-19ophvc { flex: none; height: 50px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 50px; }\",\".framer-622bu .framer-k8qt5k, .framer-622bu .framer-ic01wb { aspect-ratio: 1 / 1; background-color: #fad93c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 50px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-y9wb48, .framer-622bu .framer-r55taw { flex: none; height: 20px; left: 16px; position: absolute; top: 15px; width: 18px; }\",\".framer-622bu .framer-8b3ml2, .framer-622bu .framer-skm2l0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 60%; position: absolute; top: 9px; transform: translateX(-50%); white-space: pre-wrap; width: 250px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-55hf6k, .framer-622bu .framer-p2xu3u { --framer-paragraph-spacing: 10px; flex: none; height: auto; left: 23px; position: absolute; top: 113px; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-cvavji, .framer-622bu .framer-w185pl { background-color: #eadff9; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 50px; left: 24px; overflow: hidden; position: absolute; top: 521px; width: 309px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-nvifx2, .framer-622bu .framer-n7axcv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-622bu .framer-123qwty, .framer-622bu .framer-69hju { flex: none; height: 328px; left: 4px; overflow: visible; position: absolute; top: 173px; width: 350px; }\",\".framer-622bu .framer-1xed2uo, .framer-622bu .framer-1rc1zn1 { background-color: rgba(255, 245, 237, 0.4); flex: none; height: 328px; left: 0px; position: absolute; top: 0px; width: 349px; }\",\".framer-622bu .framer-1yx8wt0, .framer-622bu .framer-jv5avk { flex: none; height: 165px; left: 21px; position: absolute; top: 67px; width: 308px; }\",\".framer-622bu .framer-1kn2etz, .framer-622bu .framer-90tpid { flex: none; height: 89px; left: 21px; position: absolute; top: 143px; width: 308px; }\",\".framer-622bu .framer-1nj55fm, .framer-622bu .framer-v6qora { flex: none; height: 244px; left: 1px; overflow: visible; position: absolute; top: 44px; width: 349px; }\",\".framer-622bu .framer-1g6h37l, .framer-622bu .framer-152j91l, .framer-622bu .framer-ifpft8, .framer-622bu .framer-1d15mdq { flex: none; height: 244px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 349px; }\",\".framer-622bu .framer-g364ug, .framer-622bu .framer-9mma8h { flex: none; height: 212px; left: 121px; position: absolute; top: -1px; width: 4px; }\",\".framer-622bu .framer-1ewmlne, .framer-622bu .framer-1fp0v9a { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 25px; position: absolute; top: 193px; white-space: pre; width: auto; }\",\".framer-622bu .framer-144ilnn, .framer-622bu .framer-131z53e { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 128px; position: absolute; top: 193px; white-space: pre-wrap; width: 34px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-3r2bek, .framer-622bu .framer-1366gk2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 230px; position: absolute; top: 193px; white-space: pre-wrap; width: 34px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-f79n58, .framer-622bu .framer-jexiy1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 289px; position: absolute; top: 193px; white-space: pre-wrap; width: 34px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-ixynpb, .framer-622bu .framer-1hsnabz { flex: none; height: 4px; left: -1px; position: absolute; top: -1px; width: 352px; }\",\".framer-622bu .framer-f0chf2, .framer-622bu .framer-1tkgm20 { flex: none; height: 212px; left: 326px; position: absolute; top: -1px; width: 4px; }\",\".framer-622bu .framer-1oqtv6g, .framer-622bu .framer-12ui61b { flex: none; height: 212px; left: 19px; position: absolute; top: -1px; width: 4px; }\",\".framer-622bu .framer-6a0n09, .framer-622bu .framer-fsmmvd { flex: none; height: 212px; left: 224px; position: absolute; top: -1px; width: 4px; }\",\".framer-622bu .framer-104wuhf, .framer-622bu .framer-1nw6hx5 { flex: none; height: 4px; left: -1px; position: absolute; top: 92px; width: 352px; }\",\".framer-622bu .framer-bbhyxu, .framer-622bu .framer-rdj78o { flex: none; height: 4px; left: -1px; position: absolute; top: 185px; width: 352px; }\",\".framer-622bu .framer-1g7acd8, .framer-622bu .framer-tyfspt { flex: none; height: 128px; left: 20px; position: absolute; top: 19px; width: 313px; }\",\".framer-622bu .framer-ljvbp0, .framer-622bu .framer-t8sps1 { flex: none; height: 113px; left: 18px; position: absolute; top: 109px; width: 8px; }\",\".framer-622bu .framer-1hpa77e, .framer-622bu .framer-r6jx4a { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 9px; position: absolute; top: 218px; white-space: pre; width: auto; }\",\".framer-622bu .framer-bbnasy, .framer-622bu .framer-1rnzs57 { flex: none; height: 184px; left: 97px; position: absolute; top: 35px; width: 8px; }\",\".framer-622bu .framer-14jtd5x, .framer-622bu .framer-1o7k1dy { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 88px; position: absolute; top: 218px; white-space: pre; width: auto; }\",\".framer-622bu .framer-18s4fp1, .framer-622bu .framer-baj8ko { flex: none; height: 223px; left: 180px; position: absolute; top: -3px; width: 8px; }\",\".framer-622bu .framer-1d2335u, .framer-622bu .framer-1b6lor { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 172px; position: absolute; top: 220px; white-space: pre; width: auto; }\",\".framer-622bu .framer-184c686, .framer-622bu .framer-1mixthh { flex: none; height: 199px; left: 256px; position: absolute; top: 21px; width: 8px; }\",\".framer-622bu .framer-8kr1pc, .framer-622bu .framer-gwjjfc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 248px; position: absolute; top: 220px; white-space: pre; width: auto; }\",\".framer-622bu .framer-1a7bdeg, .framer-622bu .framer-j4dp5o { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 113px; position: absolute; top: 25px; white-space: pre; width: auto; }\",\".framer-622bu .framer-wyckvf, .framer-622bu .framer-p5p2ji { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 20px; position: absolute; top: 24px; white-space: pre; width: auto; }\",\".framer-622bu .framer-jvxrch, .framer-622bu .framer-y0ja92 { flex: none; height: 15px; left: 4px; position: absolute; top: 25px; width: 15px; }\",\".framer-622bu .framer-1mtdjxr, .framer-622bu .framer-1vmp78q { flex: none; height: 15px; left: 96px; position: absolute; top: 25px; width: 15px; }\",\".framer-622bu .framer-ysrko6, .framer-622bu .framer-1hd99qw { flex: none; height: 33px; left: 37px; overflow: visible; position: absolute; top: 469px; width: 10px; }\",\".framer-622bu .framer-1u8br8m, .framer-622bu .framer-yr4w97 { --border-bottom-width: 1.399999976158142px; --border-color: #63b635; --border-left-width: 1.399999976158142px; --border-right-width: 1.399999976158142px; --border-style: solid; --border-top-width: 1.399999976158142px; aspect-ratio: 1 / 1; background-color: #dffbcf; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 10px); left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-622bu .framer-14luvta, .framer-622bu .framer-1prudsw { --border-bottom-width: 1.399999976158142px; --border-color: #7642fe; --border-left-width: 1.399999976158142px; --border-right-width: 1.399999976158142px; --border-style: solid; --border-top-width: 1.399999976158142px; aspect-ratio: 1 / 1; background-color: #eadff9; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 10px); left: 0px; position: absolute; top: 23px; width: 10px; }\",\".framer-622bu .framer-1yz9d5n, .framer-622bu .framer-duz81 { flex: none; height: 31px; left: 149px; overflow: visible; position: absolute; top: 24px; width: 111px; }\",\".framer-622bu .framer-1xzzcfm, .framer-622bu .framer-1xqnb79 { background-color: #030303; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 31px; left: 0px; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-1x04vx0 { aspect-ratio: 1 / 1; background-color: #0e0b0f; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 84px; position: absolute; top: 6px; width: 19px; }\",\".framer-622bu .framer-p5ywe6, .framer-622bu .framer-18mi03y { aspect-ratio: 1 / 1; background-color: #161424; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: 88px; position: absolute; top: 10px; width: 11px; }\",\".framer-622bu .framer-i5fkhx, .framer-622bu .framer-hqikx5 { aspect-ratio: 1 / 1; background-color: #0f0f2a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 7px); left: 90px; position: absolute; top: 12px; width: 6px; }\",\".framer-622bu .framer-1ecz57n { aspect-ratio: 1 / 1; background-color: #393752; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 93px; position: absolute; top: 13px; width: 2px; }\",\".framer-622bu .framer-1e4x046, .framer-622bu .framer-11rrli9 { flex: none; height: 22px; left: 68px; overflow: visible; position: absolute; top: 29px; width: 292px; }\",\".framer-622bu .framer-1f1qbv5, .framer-622bu .framer-mlvb6n { flex: none; height: 14px; left: 217px; position: absolute; top: 4px; width: 76px; }\",\".framer-622bu .framer-1mohh33, .framer-622bu .framer-ea86jt { flex: none; height: 22px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 35px; }\",\".framer-622bu .framer-17ohylk, .framer-622bu .framer-1gsg6rk { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-622bu .framer-o92f7n { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 639px; position: absolute; top: 0px; white-space: pre-wrap; width: 572px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-z4my7l { bottom: 2711px; flex: none; height: 810px; left: 0px; overflow: visible; position: absolute; width: 1440px; }\",\".framer-622bu .framer-191enkc { flex: none; height: 810px; left: 0px; position: absolute; top: 0px; width: 1746px; }\",\".framer-622bu .framer-4563ww { flex: none; height: 811px; left: 0px; position: absolute; right: -306px; top: 0px; }\",\".framer-622bu .framer-1gp02xy { --framer-paragraph-spacing: 10px; flex: none; height: auto; left: 111px; position: absolute; top: 249px; white-space: pre-wrap; width: 443px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1ynkfq2 { flex: none; height: 698px; left: 627px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 698px / 2); width: 340px; }\",\".framer-622bu .framer-x1b91q, .framer-622bu .framer-1fw1kdf { border-bottom-left-radius: 49px; border-bottom-right-radius: 49px; border-top-left-radius: 49px; border-top-right-radius: 49px; flex: none; height: 699px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-17nj596, .framer-622bu .framer-cxh02d { aspect-ratio: 0.4880545838332084 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 726px); left: -9px; position: absolute; top: -18px; width: 354px; }\",\".framer-622bu .framer-4a9h6g { flex: none; height: 307px; left: 111px; overflow: visible; position: absolute; top: 134px; width: 444px; }\",\".framer-622bu .framer-1ituh03 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: -50px; white-space: pre-wrap; width: 445px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-asc0yf { bottom: 3521px; flex: none; height: 1201px; left: calc(50.00000000000002% - 1440px / 2); overflow: visible; position: absolute; width: 1440px; }\",\".framer-622bu .framer-1eagsby { background-color: #ffffff; flex: none; height: 1200px; left: -180px; position: absolute; top: 0px; width: 1800px; }\",\".framer-622bu .framer-19yhgnj { flex: none; height: 300px; left: calc(49.83333333333336% - 1104px / 2); overflow: visible; position: absolute; top: 120px; width: 1104px; }\",\".framer-622bu .framer-ior9ux { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 1114px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-15j16y5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 362px; transform: translateX(-50%); white-space: pre-wrap; width: 1114px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-18wixwk-container { flex: none; height: 547px; left: 209px; position: absolute; right: 210px; top: 585px; }\",\".framer-622bu .framer-wdb4w4, .framer-622bu .framer-cu6dcj, .framer-622bu .framer-1o7gb6h { height: 550px; position: relative; width: 338px; }\",\".framer-622bu .framer-65ypln { bottom: 134px; flex: none; height: 550px; left: calc(49.861111111111136% - 338px / 2); overflow: visible; position: absolute; width: 338px; }\",\".framer-622bu .framer-nyp11, .framer-622bu .framer-1ss8dtf { flex: none; height: 552px; left: 0px; position: absolute; top: -1px; width: 339px; }\",\".framer-622bu .framer-rdisix { aspect-ratio: 0.916923076923077 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 325px); left: 20px; overflow: visible; position: absolute; top: 30px; width: 298px; }\",\".framer-622bu .framer-f3zkfb, .framer-622bu .framer-rvqeyp, .framer-622bu .framer-1kt11ef { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 325px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 298px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-9leoee { aspect-ratio: 0.46524662354521584 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 730px); left: 0px; position: absolute; top: 0px; width: 339px; }\",\".framer-622bu .framer-xo1pim { flex: none; height: 100px; left: 37px; overflow: visible; position: absolute; top: 387px; width: 251px; }\",\".framer-622bu .framer-k1ev4d { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 251px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-17bmmcp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 46px; white-space: pre-wrap; width: 251px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-j35vit { bottom: 134px; flex: none; height: 550px; left: 939px; overflow: visible; position: absolute; width: 338px; }\",\".framer-622bu .framer-aws65r, .framer-622bu .framer-sldgsf { flex: none; height: 325px; left: 20px; overflow: visible; position: absolute; top: 30px; width: 298px; }\",\".framer-622bu .framer-qsiaam { aspect-ratio: 0.4911282020338748 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 659px); left: -13px; position: absolute; top: -109px; width: 323px; }\",\".framer-622bu .framer-3wdfzk { flex: none; height: 127px; left: 37px; overflow: visible; position: absolute; top: 387px; width: 264px; }\",\".framer-622bu .framer-1a2k5l6, .framer-622bu .framer-1celxgz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-4gxjzc, .framer-622bu .framer-ue08ey { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 46px; white-space: pre-wrap; width: 264px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-15uj1ke { bottom: 134px; flex: none; height: 550px; left: 163px; overflow: visible; position: absolute; width: 338px; }\",\".framer-622bu .framer-sn6zkd { flex: none; height: 552px; left: 0px; position: absolute; top: -1px; width: 338px; }\",\".framer-622bu .framer-1848707 { aspect-ratio: 0.531037773401136 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 612px); left: -13px; position: absolute; top: -108px; width: 325px; }\",\".framer-622bu .framer-1rn5t0b { flex: none; height: 100px; left: 37px; overflow: visible; position: absolute; top: 387px; width: 264px; }\",\".framer-622bu .framer-oetzmy { bottom: 4816px; flex: none; height: 2241px; left: calc(49.861111111111136% - 1442.5px / 2); overflow: visible; position: absolute; width: 1443px; }\",\".framer-622bu .framer-8sefgv { --framer-paragraph-spacing: 0px; bottom: 100px; flex: none; height: auto; left: 80px; position: absolute; white-space: pre-wrap; width: 810px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1xzfmla { bottom: 367px; flex: none; height: 620px; overflow: visible; position: absolute; right: 0px; width: 1393px; }\",\".framer-622bu .framer-1nl99jx { flex: none; height: 619px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 1391px; }\",\".framer-622bu .framer-1kcylb7 { flex: none; height: 620px; left: -1px; position: absolute; top: -1px; width: 1392px; }\",\".framer-622bu .framer-df6hn7 { flex: none; height: 464px; left: 561px; overflow: visible; position: absolute; top: 77px; width: 400px; }\",\".framer-622bu .framer-7zpk2d, .framer-622bu .framer-ky0q7t { aspect-ratio: 0.49858743149974466 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 461px); left: 170px; position: absolute; top: 0px; width: 230px; }\",\".framer-622bu .framer-1ne22y3, .framer-622bu .framer-1jbjksn { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 388px; white-space: pre-wrap; width: 151px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1roj057 { flex: none; height: 404px; left: 410px; overflow: visible; position: absolute; top: 111px; width: 328px; }\",\".framer-622bu .framer-xo6g27 { flex: none; height: 14px; left: 316px; position: absolute; top: 191px; width: 13px; }\",\".framer-622bu .framer-dacnms, .framer-622bu .framer-kr5raa { flex: none; height: 5px; left: 17px; position: absolute; top: 196px; width: 305px; }\",\".framer-622bu .framer-192oxtk { flex: none; height: 202px; left: 1px; position: absolute; top: -1px; width: 154px; }\",\".framer-622bu .framer-q0itlb { flex: none; height: 209px; left: -2px; position: absolute; top: 197px; width: 160px; }\",\".framer-622bu .framer-8karzk, .framer-622bu .framer-119va52 { flex: none; height: 100px; left: 156px; overflow: visible; position: absolute; top: 198px; width: 100px; }\",\".framer-622bu .framer-1yukkg1, .framer-622bu .framer-zb9d1i, .framer-622bu .framer-en55yi, .framer-622bu .framer-1rz6cb, .framer-622bu .framer-ratv5k, .framer-622bu .framer-1r80rdj { aspect-ratio: 1.0000004577722634 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 100px; }\",\".framer-622bu .framer-bhrfu1, .framer-622bu .framer-d8zruo, .framer-622bu .framer-1i8lz8q, .framer-622bu .framer-vk6swo, .framer-622bu .framer-1xfwzbt, .framer-622bu .framer-gbf52k { border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 100px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-hn5hyw, .framer-622bu .framer-17ddiyz, .framer-622bu .framer-4khxqk, .framer-622bu .framer-f6jj9p, .framer-622bu .framer-1q30nsm, .framer-622bu .framer-1bg8lep { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: -6px; position: absolute; top: -6px; width: 112px; }\",\".framer-622bu .framer-qvma3, .framer-622bu .framer-erqwro, .framer-622bu .framer-bjmu2m { --border-bottom-width: 2px; --border-color: #317c07; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.0000004577722634 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-622bu .framer-d5srd6, .framer-622bu .framer-1o7qvms { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 156px; position: absolute; top: 114px; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-26xn2n { flex: none; height: 110px; left: 74px; overflow: visible; position: absolute; top: 247px; width: 281px; }\",\".framer-622bu .framer-3zh2cj, .framer-622bu .framer-g11bvd { flex: none; height: 111px; left: 0px; position: absolute; top: 0px; width: 282px; }\",\".framer-622bu .framer-101cj6z { flex: none; height: 70px; left: 20px; position: absolute; top: 24px; width: 71px; }\",\".framer-622bu .framer-bovwou, .framer-622bu .framer-if1e1p { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 85px; position: absolute; top: 38px; white-space: pre-wrap; width: 147px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1x3zwj1, .framer-622bu .framer-1txlwyl { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 16px; position: absolute; top: 10px; white-space: pre; width: auto; }\",\".framer-622bu .framer-civnp1 { flex: none; height: 110px; left: 69px; overflow: visible; position: absolute; top: 429px; width: 304px; }\",\".framer-622bu .framer-1d8h33m, .framer-622bu .framer-1heecfu { flex: none; height: 111px; left: -1px; position: absolute; top: 0px; width: 306px; }\",\".framer-622bu .framer-1kro2ol { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 93px; position: absolute; top: 41px; white-space: pre-wrap; width: 144px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-qv6mea { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 15px; position: absolute; top: 11px; white-space: pre-wrap; width: 173px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-23q8m6 { flex: none; height: 71px; left: 15px; position: absolute; top: 26px; width: 69px; }\",\".framer-622bu .framer-skvcdg { flex: none; height: 110px; left: 74px; overflow: visible; position: absolute; top: 77px; width: 271px; }\",\".framer-622bu .framer-dvvqu4, .framer-622bu .framer-1bxbcer { flex: none; height: 111px; left: 0px; position: absolute; top: 0px; width: 272px; }\",\".framer-622bu .framer-a1frsc, .framer-622bu .framer-1idj14x { flex: none; height: 71px; left: 22px; position: absolute; top: 26px; width: 72px; }\",\".framer-622bu .framer-zhps50, .framer-622bu .framer-nwrby5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 107px; position: absolute; top: 38px; white-space: pre-wrap; width: 126px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1jv1q67, .framer-622bu .framer-1rc3bv2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 13px; position: absolute; top: 11px; white-space: pre; width: auto; }\",\".framer-622bu .framer-iqb1fw { flex: none; height: 460px; left: 319px; overflow: visible; position: absolute; top: 77px; width: 110px; }\",\".framer-622bu .framer-iqzggc, .framer-622bu .framer-gqv5kd { flex: none; height: 110px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-1b98lhg, .framer-622bu .framer-15q6zx3, .framer-622bu .framer-1keygq3, .framer-622bu .framer-1s1002p, .framer-622bu .framer-1q6t4yn, .framer-622bu .framer-12h7y6r, .framer-622bu .framer-6d9l7k, .framer-622bu .framer-sujdc7, .framer-622bu .framer-dp8qlu, .framer-622bu .framer-1fwdm3f { --border-bottom-width: 2px; --border-color: #317c07; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.0000004855071605 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: 0px; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-nqrc27, .framer-622bu .framer-1npnahi, .framer-622bu .framer-9pa5fa, .framer-622bu .framer-alvgwr, .framer-622bu .framer-qyj8ff, .framer-622bu .framer-1u80pxp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 5px; position: absolute; top: 27px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-no6eb9, .framer-622bu .framer-17jmcvs { flex: none; height: 110px; left: 0px; overflow: visible; position: absolute; top: 172px; width: 110px; }\",\".framer-622bu .framer-9fhdr5, .framer-622bu .framer-1p7mlzq { flex: none; height: 110px; left: 0px; overflow: visible; position: absolute; top: 350px; width: 110px; }\",\".framer-622bu .framer-1ht7eqc { flex: none; height: 620px; left: 1011px; overflow: visible; position: absolute; top: 0px; width: 381px; }\",\".framer-622bu .framer-1rinf72 { aspect-ratio: 0.6158348423290588 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 619px); left: 0px; position: absolute; top: 0px; width: 381px; }\",\".framer-622bu .framer-15q11cl { background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, rgba(38, 38, 38, 1) 100%); flex: none; height: 620px; left: 0px; position: absolute; top: 0px; width: 380px; }\",\".framer-622bu .framer-1csiqf { flex: none; height: 169px; left: 24px; overflow: visible; position: absolute; top: 418px; width: 333px; }\",\".framer-622bu .framer-999yld { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 321px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-ljaw37 { --framer-paragraph-spacing: 10px; flex: none; height: auto; left: 0px; position: absolute; top: 73px; white-space: pre-wrap; width: 333px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-mj6u0q { background-color: #ffffff; flex: none; height: 1907px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 2808px; }\",\".framer-622bu .framer-17r0c5h { flex: none; height: 511px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-1tuqufe, .framer-622bu .framer-1ensavs { aspect-ratio: 0.7632575287014722 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 511px); left: 0px; position: absolute; top: 0px; width: 390px; }\",\".framer-622bu .framer-1lo6cex, .framer-622bu .framer-14u18hl { background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, rgba(38, 38, 38, 1) 100%); flex: none; height: 510px; left: 0px; position: absolute; top: 1px; width: 390px; }\",\".framer-622bu .framer-am9yu7, .framer-622bu .framer-1nh9v56 { flex: none; height: 164px; left: calc(50.00000000000002% - 326px / 2); overflow: visible; position: absolute; top: 315px; width: 326px; }\",\".framer-622bu .framer-5wq4zn, .framer-622bu .framer-1rzcob4, .framer-622bu .framer-p9ycmp, .framer-622bu .framer-x8hn7f { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-m3njnd, .framer-622bu .framer-ce6p1s, .framer-622bu .framer-1c6hxh8, .framer-622bu .framer-9vuor7 { --framer-paragraph-spacing: 10px; flex: none; height: auto; left: 0px; position: absolute; top: 68px; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1dakdg3 { flex: none; height: 223px; left: 13px; overflow: visible; position: absolute; top: 712px; width: 110px; }\",\".framer-622bu .framer-6gbjco, .framer-622bu .framer-1dbpa73, .framer-622bu .framer-1wh7fj2, .framer-622bu .framer-1b18a72, .framer-622bu .framer-1nf61x0, .framer-622bu .framer-jkllva, .framer-622bu .framer-12fy4ml, .framer-622bu .framer-u1ldvo { flex: none; height: 224px; left: 0px; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-gbo4rj, .framer-622bu .framer-zhh26e, .framer-622bu .framer-1ns8fkw, .framer-622bu .framer-uu826a { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 5px; position: absolute; top: 103px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1lyzmzw, .framer-622bu .framer-s01p5q, .framer-622bu .framer-1rvqnyf, .framer-622bu .framer-74ewoc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 23px; position: absolute; top: 46px; white-space: pre; width: auto; }\",\".framer-622bu .framer-nmnmvn, .framer-622bu .framer-83iidu { flex: none; height: 223px; left: calc(50.00000000000002% - 110px / 2); overflow: visible; position: absolute; top: 712px; width: 110px; }\",\".framer-622bu .framer-1l0uegz, .framer-622bu .framer-dfnpi5, .framer-622bu .framer-ullkcv, .framer-622bu .framer-171wjvx, .framer-622bu .framer-1ai0wen, .framer-622bu .framer-8c05v4, .framer-622bu .framer-nr4vyp, .framer-622bu .framer-1rfoe9f { aspect-ratio: 2.2222222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 5px; overflow: visible; position: absolute; top: 103px; width: 100px; }\",\".framer-622bu .framer-icwpz6, .framer-622bu .framer-h7cr9s, .framer-622bu .framer-16yzynk, .framer-622bu .framer-1dzs9ri, .framer-622bu .framer-1r9ojaj, .framer-622bu .framer-1iue8fh, .framer-622bu .framer-1o84huv, .framer-622bu .framer-o3vfm4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1f75g6m, .framer-622bu .framer-1vjcpq2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 6px; position: absolute; top: 53px; white-space: pre-wrap; width: 98px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1xr4fjj { flex: none; height: 223px; left: 268px; overflow: visible; position: absolute; top: 712px; width: 110px; }\",\".framer-622bu .framer-1hu9hhf, .framer-622bu .framer-1qj3aq9, .framer-622bu .framer-1aney3c { flex: none; height: 224px; left: 0px; position: absolute; top: 0px; width: 111px; }\",\".framer-622bu .framer-177xgea, .framer-622bu .framer-dgg7aq, .framer-622bu .framer-ww9oxm, .framer-622bu .framer-1igu6sh { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 16px; position: absolute; top: 46px; white-space: pre; width: auto; }\",\".framer-622bu .framer-1jvvr3c, .framer-622bu .framer-p9us3z { bottom: 610px; flex: none; height: 293px; left: calc(51.2820512820513% - 265.15234375px / 2); overflow: visible; position: absolute; width: 265px; }\",\".framer-622bu .framer-p2xnjs, .framer-622bu .framer-18ffm8j, .framer-622bu .framer-8pcs9g, .framer-622bu .framer-1s97e0g { flex: none; height: 297px; left: 125px; position: absolute; top: -2px; width: 4px; }\",\".framer-622bu .framer-1oi58nu, .framer-622bu .framer-kjuvyt, .framer-622bu .framer-1r1tw4o, .framer-622bu .framer-mw5ihb { flex: none; height: 71px; left: 253px; position: absolute; top: -2px; width: 5px; }\",\".framer-622bu .framer-805a17, .framer-622bu .framer-112xccp, .framer-622bu .framer-1odlrvc, .framer-622bu .framer-1c4rg8b { flex: none; height: 71px; left: -2px; position: absolute; top: -2px; width: 4px; }\",\".framer-622bu .framer-n40kxq, .framer-622bu .framer-14srae4, .framer-622bu .framer-197evqh, .framer-622bu .framer-14bd9dr { flex: none; height: 100px; left: 26px; overflow: visible; position: absolute; top: 135px; width: 100px; }\",\".framer-622bu .framer-hfgoxh, .framer-622bu .framer-19f9bgi, .framer-622bu .framer-1rizy7c { --border-bottom-width: 2px; --border-color: #317c07; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.0000004577722634 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; position: absolute; right: -2px; top: 0px; width: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-622bu .framer-1aub6vd, .framer-622bu .framer-1wwvnrb, .framer-622bu .framer-ealpee, .framer-622bu .framer-1qs33mz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 150px; position: absolute; top: 153px; white-space: pre-wrap; width: 115px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-kup66l, .framer-622bu .framer-kvhpjo { bottom: 194px; flex: none; height: 413px; left: calc(49.230769230769255% - 337.3702392578125px / 2); overflow: visible; position: absolute; width: 337px; }\",\".framer-622bu .framer-1jm7h50, .framer-622bu .framer-lpturi, .framer-622bu .framer-1wz5i32, .framer-622bu .framer-1y18a59 { aspect-ratio: 0.49858743020060864 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 413px); left: 131px; position: absolute; top: 0px; width: 206px; }\",\".framer-622bu .framer-cdi20x, .framer-622bu .framer-6xeykk, .framer-622bu .framer-f85ka3, .framer-622bu .framer-vzzqxc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 70px; white-space: pre-wrap; width: 109px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-akwc3r, .framer-622bu .framer-1k9yle { bottom: 835px; flex: none; height: 5px; left: -1px; position: absolute; right: -1px; }\",\".framer-622bu .framer-1y4nv2q, .framer-622bu .framer-19vtlil { bottom: 604px; flex: none; height: 13px; left: calc(49.48717948717951% - 13px / 2); position: absolute; width: 13px; }\",\".framer-622bu .framer-1n6qdnl, .framer-622bu .framer-1blyp6r { flex: none; height: 110px; left: calc(50.00000000000002% - 365.15234375px / 2); overflow: visible; position: absolute; top: calc(49.711588883062426% - 109.99994659423828px / 2); width: 365px; }\",\".framer-622bu .framer-sjl04e, .framer-622bu .framer-x5o4xu, .framer-622bu .framer-1vzn217, .framer-622bu .framer-uzu6oz { --border-bottom-width: 2px; --border-color: #317c07; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.0000004855071605 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: 127px; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-218u12, .framer-622bu .framer-1imdzi6, .framer-622bu .framer-b8dgkp, .framer-622bu .framer-1y7czfa { --border-bottom-width: 2px; --border-color: #317c07; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; aspect-ratio: 1.0000004855071605 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 110px); left: 255px; position: absolute; top: 0px; width: 110px; }\",\".framer-622bu .framer-tcr8x4, .framer-622bu .framer-6hdmsp, .framer-622bu .framer-1gclosn, .framer-622bu .framer-r44xce { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 5px; position: absolute; top: 25px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-u30vxp, .framer-622bu .framer-1e9f8aw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 132px; position: absolute; top: 15px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-ghheu4, .framer-622bu .framer-15t9zgk, .framer-622bu .framer-1oaul2e, .framer-622bu .framer-79shov { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 260px; position: absolute; top: 25px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-16rf0ys { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 483px; position: absolute; top: 48%; transform: translateY(-50%); white-space: pre-wrap; width: 880px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-16cz6p7 { flex: none; height: 619px; left: 0px; overflow: visible; position: absolute; top: 274px; width: 1392px; }\",\".framer-622bu .framer-xph0dd { flex: none; height: 619px; left: 1px; overflow: visible; position: absolute; top: 0px; width: 1390px; }\",\".framer-622bu .framer-14v8a38 { flex: none; height: 619px; left: 0px; position: absolute; top: 0px; width: 1391px; }\",\".framer-622bu .framer-9xky64 { flex: none; height: 464px; left: 941px; overflow: visible; position: absolute; top: 78px; width: 400px; }\",\".framer-622bu .framer-r92nfv { flex: none; height: 404px; left: 790px; overflow: visible; position: absolute; top: 111px; width: 328px; }\",\".framer-622bu .framer-13tkhnp { flex: none; height: 13px; left: 316px; position: absolute; top: 191px; width: 13px; }\",\".framer-622bu .framer-1eo8duu { flex: none; height: 203px; left: 1px; position: absolute; top: -2px; width: 154px; }\",\".framer-622bu .framer-1kkvo7y { flex: none; height: 210px; left: -2px; position: absolute; top: 196px; width: 160px; }\",\".framer-622bu .framer-y7j3ko { flex: none; height: 110px; left: 454px; overflow: visible; position: absolute; top: 249px; width: 281px; }\",\".framer-622bu .framer-5ctpud { flex: none; height: 71px; left: 20px; position: absolute; top: 24px; width: 71px; }\",\".framer-622bu .framer-11qblg1 { flex: none; height: 110px; left: 454px; overflow: visible; position: absolute; top: 78px; width: 304px; }\",\".framer-622bu .framer-snpeet { flex: none; height: 71px; left: 20px; position: absolute; top: 23px; width: 58px; }\",\".framer-622bu .framer-nqsnj6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 88px; position: absolute; top: 41px; white-space: pre-wrap; width: 144px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-16rnr05 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 15px; position: absolute; top: 11px; white-space: pre-wrap; width: 98px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1w0t5yv { flex: none; height: 110px; left: 454px; overflow: visible; position: absolute; top: 428px; width: 271px; }\",\".framer-622bu .framer-1co5wxs { flex: none; height: 460px; left: 699px; overflow: visible; position: absolute; top: 78px; width: 110px; }\",\".framer-622bu .framer-cxn7kt { flex: none; height: 619px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 381px; }\",\".framer-622bu .framer-16lyqpy { aspect-ratio: 0.6136111261958844 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 620px); left: 1px; position: absolute; top: 0px; width: 380px; }\",\".framer-622bu .framer-7wdbek { background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, rgba(38, 38, 38, 1) 100%); flex: none; height: 619px; left: 0px; position: absolute; top: 1px; width: 381px; }\",\".framer-622bu .framer-ltqj70 { flex: none; height: 171px; left: 42px; overflow: visible; position: absolute; top: 387px; width: 296px; }\",\".framer-622bu .framer-1c1g24f { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-fx5hbp { --framer-paragraph-spacing: 10px; flex: none; height: auto; left: 0px; position: absolute; top: 75px; white-space: pre-wrap; width: 296px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-pwsoez { background-color: #ffffff; flex: none; height: 1907px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 342px; }\",\".framer-622bu .framer-1j9j9m5 { flex: none; height: 511px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 1px; }\",\".framer-622bu .framer-14jhgy2 { flex: none; height: 511px; left: 0px; position: absolute; top: 0px; width: 390px; }\",\".framer-622bu .framer-1e2m64c { background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, rgba(38, 38, 38, 1) 100%); flex: none; height: 510px; left: 0px; position: absolute; top: 0px; width: 390px; }\",\".framer-622bu .framer-1b9sumy { flex: none; height: 223px; left: 13px; overflow: visible; position: absolute; top: 711px; width: 110px; }\",\".framer-622bu .framer-jq9r97, .framer-622bu .framer-1r56xow { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 6px; position: absolute; top: 35px; white-space: pre-wrap; width: 98px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-gv1ujf { flex: none; height: 223px; left: 268px; overflow: visible; position: absolute; top: 711px; width: 110px; }\",\".framer-622bu .framer-187y2tv, .framer-622bu .framer-1naiv2p { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 132px; position: absolute; top: 25px; white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1azyvs3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 80px; position: absolute; top: 0px; white-space: pre-wrap; width: 810px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1u18qel { bottom: 7373px; flex: none; height: 1030px; left: calc(49.93055555555558% - 1440px / 2); overflow: visible; position: absolute; width: 1440px; }\",\".framer-622bu .framer-14moe3 { bottom: -39px; flex: none; height: 811px; left: 0px; position: absolute; right: 0px; }\",\".framer-622bu .framer-syiqyh { bottom: 228px; flex: none; height: 166px; left: 1110px; overflow: visible; position: absolute; width: 166px; }\",\".framer-622bu .framer-k276j5, .framer-622bu .framer-13x9wqq { border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; flex: none; height: 166px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 166px; will-change: var(--framer-will-change-override, transform); }\",\".framer-622bu .framer-wjly1m, .framer-622bu .framer-12j9dih { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 186px); left: -10px; position: absolute; top: -10px; width: 186px; }\",\".framer-622bu .framer-1ob3q4s { --framer-paragraph-spacing: 0px; bottom: 264px; flex: none; height: auto; left: 996px; position: absolute; white-space: pre; width: auto; }\",\".framer-622bu .framer-i3455p { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 80px; position: absolute; top: 48%; transform: translateY(-50%); white-space: pre-wrap; width: 415px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-16lmc94 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre-wrap; width: 860px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-657xi { flex: none; height: 1014px; left: calc(49.93055555555558% - 1441px / 2); overflow: visible; position: absolute; top: 1852px; width: 1441px; }\",\".framer-622bu .framer-mkhazf { bottom: -126px; flex: none; height: 801px; left: 0px; position: absolute; right: 0px; }\",\".framer-622bu .framer-hlpx35, .framer-622bu .framer-11tw0us { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1566px); left: -849px; position: absolute; right: -848px; top: 324px; }\",\".framer-622bu .framer-1yej3kz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 156px; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre-wrap; width: 470px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-x70bwq { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 831px; position: absolute; top: 49%; transform: translateY(-50%); white-space: pre-wrap; width: 470px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1hm65s3 { bottom: -63px; flex: none; height: 470px; left: 156px; overflow: visible; position: absolute; width: 470px; }\",\".framer-622bu .framer-ociufw, .framer-622bu .framer-32nj7t { aspect-ratio: 1 / 1; background-color: #d6e5cd; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 470px); left: 0px; position: absolute; top: 0px; width: 470px; }\",\".framer-622bu .framer-5pquij { --framer-paragraph-spacing: 0px; bottom: 107px; flex: none; height: auto; left: 53%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-8accx2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 88px; position: absolute; top: 55px; white-space: pre; width: auto; }\",\".framer-622bu .framer-10pbof7 { bottom: -63px; flex: none; height: 470px; left: 831px; overflow: visible; position: absolute; width: 470px; }\",\".framer-622bu .framer-1vxxc2v { --framer-paragraph-spacing: 0px; bottom: 106px; flex: none; height: auto; left: 121px; position: absolute; white-space: pre-wrap; width: 291px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1bzgslo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 47%; position: absolute; top: 91px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-622bu .framer-q8673t { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre-wrap; width: 1052px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-i6z58h { flex: none; height: 1468px; left: calc(50.00000000000002% - 1440px / 2); overflow: visible; position: absolute; top: 177px; width: 1440px; }\",\".framer-622bu .framer-2aqq8e { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; flex: none; height: 989px; left: -180px; position: absolute; width: 1800px; }\",\".framer-622bu .framer-1nbrhd8 { background: linear-gradient(180deg, #e4d9ff 0%, rgba(217, 203, 254, 1) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 430px; flex: none; height: 380px; left: -180px; position: absolute; right: -180px; }\",\".framer-622bu .framer-164d425-container { bottom: 21px; flex: none; height: 872px; left: 115px; position: absolute; right: 138px; }\",\".framer-622bu .framer-1aj60j1 { height: 772px; overflow: visible; position: relative; width: 361px; }\",\".framer-622bu .framer-5l1tr2 { bottom: 10px; flex: none; height: 183px; overflow: visible; position: absolute; right: 0px; width: 340px; }\",\".framer-622bu .framer-uqor9h { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: -10px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-vq5hjn { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 54%; transform: translateY(-50%); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-yuwp1, .framer-622bu .framer-16sdrv2, .framer-622bu .framer-15v3yne { flex: none; height: 576px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 302px; }\",\".framer-622bu .framer-14hbjtq, .framer-622bu .framer-1ced4gp, .framer-622bu .framer-tm9qaw { aspect-ratio: 0.524413609606921 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 538px); left: 0px; position: absolute; right: 20px; top: 0px; }\",\".framer-622bu .framer-8lvex7, .framer-622bu .framer-1v1jo0b { height: 798px; overflow: visible; position: relative; width: 361px; }\",\".framer-622bu .framer-1oey5f5, .framer-622bu .framer-1gig3h3 { bottom: 20px; flex: none; height: 209px; overflow: visible; position: absolute; right: 0px; width: 340px; }\",\".framer-622bu .framer-vk2kl9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre-wrap; width: 340px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-rpnwvk, .framer-622bu .framer-57q86z { --framer-paragraph-spacing: 0px; bottom: 36px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1myv58l, .framer-622bu .framer-xjqkvv, .framer-622bu .framer-18tz8j4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-acvn4k { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 64px; transform: translateX(-50%); white-space: pre-wrap; width: 789px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-pwmyqa { bottom: 1738px; flex: none; height: 600px; left: -315px; overflow: visible; position: absolute; right: -315px; z-index: 1; }\",\".framer-622bu .framer-c0eg52 { background-color: #ffffff; flex: none; height: 600px; left: 315px; position: absolute; right: 320px; top: 0px; }\",\".framer-622bu .framer-1yxg3np { flex: none; height: 317px; left: 747px; position: absolute; right: 379px; top: calc(35.66666666666669% - 317px / 2); }\",\".framer-622bu .framer-76u4gr { --framer-paragraph-spacing: 0px; bottom: 97px; flex: none; height: auto; left: 385px; position: absolute; right: 567px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-mzkn6r { --framer-paragraph-spacing: 0px; flex: none; height: 145px; left: 385px; position: absolute; right: 836px; top: calc(35.66666666666669% - 145px / 2); white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-t8n2gj { bottom: 2442px; flex: none; height: 1956px; left: calc(50.034746351633096% - 530px / 2); overflow: visible; position: absolute; width: 530px; }\",\".framer-622bu .framer-1ruis3h { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 1236px; left: -453px; position: absolute; right: -456px; top: 252px; }\",\".framer-622bu .framer-1irpryu { flex: none; height: 643px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 313px; }\",\".framer-622bu .framer-pgvsxi { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 453px; }\",\".framer-622bu .framer-xqikiy, .framer-622bu .framer-5gwigy, .framer-622bu .framer-1frk5ck { background-color: rgba(77, 179, 244, 0.6); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 190px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-dzeajo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 29px; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-8m66ij { --framer-paragraph-spacing: 0px; bottom: 38px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-mfhdio { flex: none; height: 126px; left: 20px; overflow: visible; position: absolute; right: 20px; top: 27px; }\",\".framer-622bu .framer-12svj3y { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 226px; }\",\".framer-622bu .framer-1ygw188 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 30px; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-4rftds { --framer-paragraph-spacing: 0px; bottom: 40px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1n8o6ss { flex: none; height: 122px; left: 20px; overflow: visible; position: absolute; right: 20px; top: 34px; }\",\".framer-622bu .framer-1lv33bs { flex: none; height: 190px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-fk51t { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 17px; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-g6r6oi { --framer-paragraph-spacing: 0px; bottom: 24px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 318px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-otyad9 { flex: none; height: 120px; left: 20px; overflow: visible; position: absolute; right: 20px; top: 35px; }\",\".framer-622bu .framer-r5y7cd { aspect-ratio: 0.4851720047449585 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1070px); left: 63px; overflow: visible; position: absolute; right: -52px; top: 1015px; }\",\".framer-622bu .framer-pizl8e { aspect-ratio: 1 / 1; background-color: #0e0b0f; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 19px); left: 84px; position: absolute; top: 6px; width: 19px; }\",\".framer-622bu .framer-612op2 { aspect-ratio: 1 / 1; background-color: #393752; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 3px); left: 93px; position: absolute; top: 13px; width: 2px; }\",\".framer-622bu .framer-1p469ci { bottom: 4541px; flex: none; height: 1401px; left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-622bu .framer-1r9gxlx { aspect-ratio: 2.1556303047839505 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1205px); left: -579px; position: absolute; right: -579px; top: 54%; transform: translateY(-50%); }\",\".framer-622bu .framer-14j59wx { flex: none; height: 1206px; left: 0px; position: absolute; right: 0px; top: calc(53.74732334047111% - 1206px / 2); }\",\".framer-622bu .framer-7mehy1 { --framer-paragraph-spacing: 0px; bottom: 129px; flex: none; height: auto; left: 369px; position: absolute; white-space: pre-wrap; width: 476px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-47irl5 { flex: none; height: 699px; left: calc(49.82626824183463% - 339.5px / 2); overflow: visible; position: absolute; top: 257px; width: 340px; }\",\".framer-622bu .framer-jielhs { flex: none; height: 161px; left: 369px; overflow: visible; position: absolute; right: 435px; top: 0px; }\",\".framer-622bu .framer-1mgw9er { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; right: 183px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1oqpyi5 { flex: none; height: 1213px; left: -15px; overflow: visible; position: absolute; right: 15px; top: 9068px; }\",\".framer-622bu .framer-bsr16m { background-color: #ffffff; flex: none; height: 1106px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-622bu .framer-1boywo2 { flex: none; height: 300px; left: 384px; overflow: visible; position: absolute; right: 370px; top: 108px; }\",\".framer-622bu .framer-1y3go8u { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 284px; transform: translateX(-50%); white-space: pre-wrap; width: 635px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-jvjpcs-container { flex: none; height: 674px; left: 361px; position: absolute; right: 314px; top: 365px; }\",\".framer-622bu .framer-1xfaw1m { flex: none; height: 5152px; left: calc(50.034746351633096% - 810px / 2); overflow: visible; position: absolute; top: 4747px; width: 810px; }\",\".framer-622bu .framer-pfp7v8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50px; position: absolute; right: 174px; top: 3935px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-dv9r9g { background-color: #ffffff; flex: none; height: 1694px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 2192px; }\",\".framer-622bu .framer-1cu3xn1 { flex: none; height: 511px; left: 370px; overflow: visible; position: absolute; right: 50px; top: 0px; }\",\".framer-622bu .framer-lunoj0 { flex: none; height: 164px; left: 412px; overflow: visible; position: absolute; right: 72px; top: 315px; }\",\".framer-622bu .framer-19hoczy { flex: none; height: 224px; left: 223px; overflow: visible; position: absolute; right: 477px; top: 572px; }\",\".framer-622bu .framer-15cp608 { flex: none; height: 224px; left: 350px; overflow: visible; position: absolute; right: 350px; top: 572px; }\",\".framer-622bu .framer-391o4l { flex: none; height: 224px; left: 478px; overflow: visible; position: absolute; right: 222px; top: 572px; }\",\".framer-622bu .framer-u0ye5d { bottom: -1px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-622bu .framer-1rp7cou { flex: none; height: 294px; left: 278px; overflow: visible; position: absolute; right: 267px; top: 863px; }\",\".framer-622bu .framer-oighge { flex: none; height: 413px; left: 231px; overflow: visible; position: absolute; right: 242px; top: 1160px; }\",\".framer-622bu .framer-139kn9x { flex: none; height: 5px; left: -1px; position: absolute; right: -1px; top: 928px; }\",\".framer-622bu .framer-vl9k9h { flex: none; height: 13px; left: 395px; position: absolute; right: 402px; top: 1150px; }\",\".framer-622bu .framer-3aya57 { flex: none; height: 110px; left: calc(50.00000000000002% - 365.15234375px / 2); overflow: visible; position: absolute; top: 753px; width: 365px; }\",\".framer-622bu .framer-r6lj44 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 172px; position: absolute; right: 50px; top: 1946px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-y8w97x { background-color: #ffffff; flex: none; height: 1700px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 197px; }\",\".framer-622bu .framer-exi2gx { flex: none; height: 511px; left: calc(30.246913580246936% - 810px / 2); overflow: visible; position: absolute; top: 0px; width: 810px; }\",\".framer-622bu .framer-p8z5is { aspect-ratio: 0.7639569049951028 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 511px); left: 210px; position: absolute; right: 210px; top: 0px; }\",\".framer-622bu .framer-15rojos { background: linear-gradient(180deg, rgba(55, 55, 55, 0) 0%, rgba(38, 38, 38, 1) 100%); flex: none; height: 510px; left: 210px; position: absolute; right: 210px; top: 0px; }\",\".framer-622bu .framer-q3mkrj { flex: none; height: 164px; left: calc(30.246913580246936% - 326px / 2); overflow: visible; position: absolute; top: 314px; width: 326px; }\",\".framer-622bu .framer-z0vcnq { flex: none; height: 224px; left: calc(34.32098765432101% - 110px / 2); overflow: visible; position: absolute; top: 572px; width: 110px; }\",\".framer-622bu .framer-3mjm5i { flex: none; height: 224px; left: calc(50.00000000000002% - 110px / 2); overflow: visible; position: absolute; top: 573px; width: 110px; }\",\".framer-622bu .framer-1rtd3ga { flex: none; height: 224px; left: calc(65.80246913580248% - 110px / 2); overflow: visible; position: absolute; top: 572px; width: 110px; }\",\".framer-622bu .framer-43ave6 { flex: none; height: 294px; left: calc(50.00000000000002% - 265.15234375px / 2); overflow: visible; position: absolute; top: 864px; width: 265px; }\",\".framer-622bu .framer-13n3dx4 { flex: none; height: 413px; left: calc(49.01234567901237% - 337.3702392578125px / 2); overflow: visible; position: absolute; top: 1161px; width: 337px; }\",\".framer-622bu .framer-1k0wx8j { flex: none; height: 5px; left: calc(50.00000000000002% - 812px / 2); position: absolute; top: 929px; width: 812px; }\",\".framer-622bu .framer-1buoad1 { flex: none; height: 13px; left: calc(49.382716049382736% - 13px / 2); position: absolute; top: 1151px; width: 13px; }\",\".framer-622bu .framer-3jg7cd { flex: none; height: 110px; left: calc(49.382716049382736% - 365.15234375px / 2); overflow: visible; position: absolute; top: 754px; width: 365px; }\",\".framer-622bu .framer-1g5equ0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50px; position: absolute; right: 140px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1hi9mfr { flex: none; height: 1100px; left: calc(49.96525364836694% - 810px / 2); overflow: visible; position: absolute; top: 3898px; width: 810px; }\",\".framer-622bu .framer-11i2trx { flex: none; height: 811px; left: 0px; position: absolute; right: 0px; top: 27px; }\",\".framer-622bu .framer-1iiazp3 { aspect-ratio: 1.003030303030303 / 1; bottom: 273px; flex: none; height: var(--framer-aspect-ratio-supported, 165px); left: 592px; overflow: visible; position: absolute; width: 166px; }\",\".framer-622bu .framer-17rrjkp { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56px; position: absolute; top: 218px; white-space: pre-wrap; width: 236px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-11q4ge7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 211px; position: absolute; right: 210px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-j5mrnc { flex: none; height: 1889px; left: calc(49.938195302843035% - 390px / 2); overflow: visible; position: absolute; top: 1822px; width: 390px; }\",\".framer-622bu .framer-1256u8v { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32px; position: absolute; right: 32px; top: 437px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-61nta8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32px; position: absolute; right: 32px; top: 1157px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-16acbz5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 378px); left: 6px; overflow: visible; position: absolute; right: 6px; top: 673px; }\",\".framer-622bu .framer-1e9ngff, .framer-622bu .framer-lyfeg3 { aspect-ratio: 1 / 1; background-color: #d6e5cd; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 378px); left: 0px; position: absolute; top: 0px; width: 378px; }\",\".framer-622bu .framer-y0qyej { --framer-paragraph-spacing: 0px; bottom: 88px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1tqpq4e { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 47%; position: absolute; top: 19px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-622bu .framer-5sc0o8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 378px); left: 6px; overflow: visible; position: absolute; right: 6px; top: 1393px; }\",\".framer-622bu .framer-1d7zh0u { --framer-paragraph-spacing: 0px; bottom: 78px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 291px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-b6ldsv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 70px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-622bu .framer-xmepcc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 16px; position: absolute; right: 16px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-1nczrjt { flex: none; height: 1484px; left: 315px; overflow: visible; position: absolute; right: 314px; top: 160px; }\",\".framer-622bu .framer-holams { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 21px; flex: none; height: 989px; left: -300px; position: absolute; right: -329px; }\",\".framer-622bu .framer-1rjq83b { background: linear-gradient(180deg, #e4d9ff 0%, rgba(217, 203, 254, 1) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 451px; flex: none; height: 380px; left: 0px; position: absolute; right: 0px; }\",\".framer-622bu .framer-12idtxz-container { bottom: 42px; flex: none; height: 877px; left: 45px; position: absolute; right: 44px; }\",\".framer-622bu .framer-pjwi9d { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 120px; transform: translateX(-50%); white-space: pre-wrap; width: 482px; word-break: break-word; word-wrap: break-word; }\",\".framer-622bu .framer-hu0k3z-container { flex: none; height: 70px; left: calc(50.00000000000002% - 1728px / 2); position: fixed; top: 0px; width: 1728px; z-index: 1; }\",\".framer-622bu .framer-1lsbk68-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 810px; z-index: 1; }\",\".framer-622bu .framer-h8u120-container { flex: none; height: 70px; left: calc(50.00000000000002% - 1439px / 2); position: fixed; top: 0px; width: 1439px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-622bu.framer-vlkg60, .framer-622bu .framer-yk0lfd { gap: 0px; } .framer-622bu.framer-vlkg60 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-622bu.framer-vlkg60 > :first-child { margin-top: 0px; } .framer-622bu.framer-vlkg60 > :last-child { margin-bottom: 0px; } .framer-622bu .framer-yk0lfd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-622bu .framer-yk0lfd > :first-child { margin-left: 0px; } .framer-622bu .framer-yk0lfd > :last-child { margin-right: 0px; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-622bu { background: rgb(255, 245, 237); } .framer-622bu.framer-vlkg60 { height: 14618px; width: 810px; } .framer-622bu .framer-yk0lfd { height: 14618px; left: -315px; order: 0; right: -314px; } .framer-622bu .framer-b0eo6h { height: 16356px; } .framer-622bu .framer-612op2 { height: var(--framer-aspect-ratio-supported, 2px); } .framer-622bu .framer-h8u120-container { order: 1; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-622bu { background: rgb(255, 245, 237); } .framer-622bu.framer-vlkg60 { height: 16355px; width: 390px; } .framer-622bu .framer-yk0lfd { flex-direction: column; height: 16355px; left: -210px; order: 0; right: -209px; } .framer-622bu .framer-b0eo6h { height: 18172px; } .framer-622bu .framer-1dstxd3 { bottom: unset; height: 1956px; left: 209px; right: 210px; top: 13486px; width: unset; } .framer-622bu .framer-1av2ufr { bottom: unset; height: 1237px; left: 0px; right: 0px; top: 341px; width: unset; } .framer-622bu .framer-8qwtxy { height: 643px; left: 16px; right: 16px; top: 401px; width: unset; } .framer-622bu .framer-13q4k55 { right: 0px; top: 453px; width: unset; } .framer-622bu .framer-ky87bi, .framer-622bu .framer-1x2iu6t, .framer-622bu .framer-rmbhe8, .framer-622bu .framer-54ea4x, .framer-622bu .framer-ior9ux { right: 0px; width: unset; } .framer-622bu .framer-3ayzms { left: 50%; top: 29px; width: 318px; } .framer-622bu .framer-anyhw0 { bottom: 38px; left: 50%; width: 318px; } .framer-622bu .framer-1xkr6z4 { height: 126px; left: 20px; right: 20px; top: 27px; width: unset; } .framer-622bu .framer-5rhzl6 { right: 0px; top: 226px; width: unset; } .framer-622bu .framer-1j9g2q0 { left: 50%; top: 30px; width: 318px; } .framer-622bu .framer-1s0zjto { bottom: 40px; left: 50%; width: 318px; } .framer-622bu .framer-17k23j2 { height: 122px; left: 20px; right: 20px; top: 34px; width: unset; } .framer-622bu .framer-6jwnne { left: 50%; top: 27px; width: 318px; } .framer-622bu .framer-15a1mrj { bottom: 24px; left: 50%; width: 318px; } .framer-622bu .framer-qowz97 { left: 20px; right: 20px; width: unset; } .framer-622bu .framer-1t2ybpz { aspect-ratio: 0.4851720047449585 / 1; height: var(--framer-aspect-ratio-supported, 781px); left: 63px; right: -52px; top: 1105px; width: unset; } .framer-622bu .framer-1x04vx0 { height: var(--framer-aspect-ratio-supported, 19px); } .framer-622bu .framer-o92f7n { left: 16px; right: 16px; width: unset; } .framer-622bu .framer-z4my7l { bottom: unset; height: 1401px; right: 0px; top: 11907px; width: unset; } .framer-622bu .framer-191enkc { aspect-ratio: 2.1556303047839505 / 1; height: var(--framer-aspect-ratio-supported, 913px); left: -579px; right: -579px; top: 199px; width: unset; } .framer-622bu .framer-4563ww { height: 912px; right: 0px; top: 199px; } .framer-622bu .framer-1gp02xy { left: 50%; top: 1166px; transform: translateX(-50%); width: 358px; } .framer-622bu .framer-1ynkfq2 { height: 699px; left: calc(49.81458590852907% - 339.5px / 2); top: 306px; width: 340px; } .framer-622bu .framer-4a9h6g { height: 161px; left: 225px; right: 226px; top: 0px; width: unset; } .framer-622bu .framer-1ituh03 { right: 0px; top: 0px; width: unset; } .framer-622bu .framer-asc0yf { bottom: 6463px; height: 1213px; left: calc(49.938195302843035% - 809px / 2); width: 809px; } .framer-622bu .framer-1eagsby { height: 1211px; left: 0px; right: 0px; width: unset; } .framer-622bu .framer-19yhgnj { left: calc(50.06180469715701% - 358px / 2); top: 48px; width: 358px; } .framer-622bu .framer-15j16y5 { left: 50%; top: 354px; width: 358px; } .framer-622bu .framer-oetzmy { bottom: unset; height: 5152px; left: calc(50.06180469715701% - 390px / 2); top: 5191px; width: 390px; } .framer-622bu .framer-8sefgv { bottom: unset; left: 16px; right: 48px; top: 4823px; width: unset; } .framer-622bu .framer-17ddiyz, .framer-622bu .framer-f6jj9p { height: var(--framer-aspect-ratio-supported, 113px); } .framer-622bu .framer-16rf0ys { left: 48px; right: 16px; top: 2358px; transform: unset; width: unset; } .framer-622bu .framer-1azyvs3 { left: 16px; right: 48px; width: unset; } .framer-622bu .framer-1u18qel { bottom: unset; height: 1100px; left: 0px; right: 0px; top: 3898px; width: unset; } .framer-622bu .framer-14moe3 { bottom: unset; top: 87px; } .framer-622bu .framer-syiqyh { bottom: -47px; height: 165px; left: calc(49.938195302843035% - 165.5px / 2); width: 166px; } .framer-622bu .framer-i3455p { left: 226px; right: 225px; top: 975px; transform: unset; width: unset; } .framer-622bu .framer-16lmc94 { left: 226px; right: 225px; transform: unset; width: unset; } .framer-622bu .framer-657xi { height: 1889px; left: calc(49.938195302843035% - 390px / 2); top: 1822px; width: 390px; } .framer-622bu .framer-1yej3kz { left: 32px; right: 32px; top: 437px; transform: unset; width: unset; } .framer-622bu .framer-x70bwq { left: 32px; right: 32px; top: 1157px; transform: unset; width: unset; } .framer-622bu .framer-1hm65s3 { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 378px); left: 6px; right: 6px; top: 673px; width: unset; } .framer-622bu .framer-ociufw, .framer-622bu .framer-32nj7t { height: var(--framer-aspect-ratio-supported, 378px); width: 378px; } .framer-622bu .framer-5pquij { bottom: 88px; left: 50%; } .framer-622bu .framer-8accx2 { left: 47%; top: 19px; transform: translateX(-50%); } .framer-622bu .framer-10pbof7 { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 378px); left: 6px; right: 6px; top: 1393px; width: unset; } .framer-622bu .framer-1vxxc2v { bottom: 78px; left: 50%; transform: translateX(-50%); } .framer-622bu .framer-1bzgslo { left: 49%; top: 70px; } .framer-622bu .framer-q8673t { left: 16px; right: 16px; transform: unset; width: unset; } .framer-622bu .framer-i6z58h { height: 1484px; left: calc(49.938195302843035% - 809px / 2); top: 160px; width: 809px; } .framer-622bu .framer-2aqq8e { bottom: 21px; left: 0px; width: 809px; } .framer-622bu .framer-1nbrhd8 { bottom: 451px; left: 0px; right: 0px; } .framer-622bu .framer-164d425-container { bottom: 42px; height: 877px; left: 210px; right: 209px; } .framer-622bu .framer-acvn4k { left: 50%; top: 0px; width: 358px; } .framer-622bu .framer-1lsbk68-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-622bu .framer-yk0lfd { gap: 0px; } .framer-622bu .framer-yk0lfd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-622bu .framer-yk0lfd > :first-child { margin-top: 0px; } .framer-622bu .framer-yk0lfd > :last-child { margin-bottom: 0px; } }}`,'.framer-622bu[data-border=\"true\"]::after, .framer-622bu [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 11058\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wXgmJxdWG\":{\"layout\":[\"fixed\",\"fixed\"]},\"bGYmzp0Ua\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerXo8l2Ic_P=withCSS(Component,css,\"framer-622bu\");export default FramerXo8l2Ic_P;FramerXo8l2Ic_P.displayName=\"Page\";FramerXo8l2Ic_P.defaultProps={height:11058,width:1440};addFonts(FramerXo8l2Ic_P,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...CarouselFonts,...Carousel1Fonts,...NavigationFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXo8l2Ic_P\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"11058\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wXgmJxdWG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bGYmzp0Ua\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "CarouselFonts", "getFonts", "Carousel", "Carousel1Fonts", "NavigationFonts", "eTEYY5VeP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "Link", "PropertyOverrides2", "SVG", "ComponentViewportProvider", "Container", "css", "FramerXo8l2Ic_P", "withCSS", "Xo8l2Ic_P_default", "addFonts", "__FramerMetadata__"]
}
