{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/tYHc4MpDPE0F3teGMidm/eDARpKNyyJuFdyUHrrkJ/RVBsFqKgk.js", "ssg:https://framerusercontent.com/modules/eV9h9sT2o8zJlaSN7N1S/0AN91NWlS33x2qUsOUgz/TMwqSpcwo-0.js", "ssg:https://framerusercontent.com/modules/eV9h9sT2o8zJlaSN7N1S/0AN91NWlS33x2qUsOUgz/TMwqSpcwo.js", "ssg:https://framerusercontent.com/modules/tnmLUFEy0r9BTUW7KT54/eREO4AXhL6ajsu6aXBZ2/TMwqSpcwo.js", "ssg:https://framerusercontent.com/modules/h20bbFzWV7y4Hip8wTXm/ZV35TraMhhRkIF3FCUNt/UHdh30HVh-0.js", "ssg:https://framerusercontent.com/modules/h20bbFzWV7y4Hip8wTXm/ZV35TraMhhRkIF3FCUNt/UHdh30HVh.js", "ssg:https://framerusercontent.com/modules/AsUPWOJm5SGDxjVZIpJK/gV6Yxxdc0j8KCRz2HMUJ/UHdh30HVh.js", "ssg:https://framerusercontent.com/modules/Hjih9Gn9jG6hMfxRgbPx/u52SLILkahNtNKdFSGfb/B3_Gvs9DL.js", "ssg:https://framerusercontent.com/modules/uZbHcGbUruWeXiNEY8lK/D2TJKmAM20beY9IYy9O6/augiA20Il.js", "ssg:https://framerusercontent.com/modules/a4CXTByuOw16UvYtEMul/kiitvenq12tNG8ggLwBX/augiA20Il.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (890879b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Family Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Family Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/WHlNy8h50F9JUfvRIWqcXMnUEw.woff2\"}]}];export const css=[\".framer-yE5Zu .framer-styles-preset-o34vnx:not(.rich-text-wrapper), .framer-yE5Zu .framer-styles-preset-o34vnx.rich-text-wrapper p { --framer-font-family: \\\"Family Medium\\\", \\\"Family Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'ss01' on, 'ss07' on, 'ss08' on, 'cv10' on; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 1.6); --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.015em; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, #171515); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-yE5Zu\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Summer Health es un cambio total para m\\xed. Es realmente incre\\xedble tener un recurso confiable disponible a cualquier hora del d\\xeda.\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Samantha\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"madre de 2 ni\\xf1os\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Summer Health es un verdadero salvavidas para los padres. Es mi primer paso cuando necesito una opini\\xf3n m\\xe9dica.\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Toby\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Summer Health nos da acceso a un pediatra real a cualquier hora. \\xa1Lo recomiendo a cada padre que conozco!\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"David\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"padre de tres hijos\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Personal amable y soluciones \\xfatiles. \\xa1Servicio fenomenal!\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Est\\xe1bamos al otro lado del pa\\xeds cuando mi hijo contrajo conjuntivitis. Sin tiempo para ir a una cl\\xednica, estaba desesperado. Me comuniqu\\xe9 con Summer Health de inmediato y la respuesta fue r\\xe1pida, profesional y resolvi\\xf3 completamente el problema. Nuestra receta estuvo lista para ser recogida de inmediato.\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Melissa\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"nueva madre\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Buscar en Google solo ayuda hasta cierto punto en situaciones del mundo real donde cada minuto cuenta. Poder hablar r\\xe1pidamente con un m\\xe9dico nos da tanta confianza como nuevos padres.\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Aaron\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"padre de 1 ni\\xf1o\"})});export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Summer Health nos ha brindado lo que la mayor\\xeda de los padres necesitan cuando se trata de la salud de sus hijos: tranquilidad.\"})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Jonathan\"})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Me encanta la tranquilidad que viene con saber que un \\xa0m\\xe9dico podr\\xeda ayudar con cualquier pregunta en cualquier momento del d\\xeda.\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Rami\"})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"madre de 3\"})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Es como tener un pediatra en mi bolsillo. Recientemente, mi beb\\xe9 de 3 meses no se sent\\xeda bien, y pude obtener atenci\\xf3n experta en 15 minutos y todo comenz\\xf3 con un simple mensaje de texto.\"})});export const v21=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Chazity\"})});export const v22=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Su equipo de atenci\\xf3n ofrece soporte personalizado para que nunca me sienta solo en este viaje de crianza.\"})});export const v23=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Yasmen\"})});export const v24=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:\"Como una mam\\xe1 ocupada de cuatro hijos, Summer Health ha sido un cambio total para mi familia.\"})});export const v25=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Karina\"})});export const v26=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"madre de cuatro\"})});export const v27=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Surgen cosas todo el tiempo y no s\\xe9 si es una emergencia o no, saber que puedo enviar un mensaje de texto a un m\\xe9dico y obtener su opini\\xf3n en 15 minutos me da tranquilidad.\"})});export const v28=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Katherine\"})});export const v29=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"madre de 2 ni\\xf1os\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v27\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v29\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v26\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v23\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v22\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v21\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v24\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v25\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v28\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8f9ffef)\nimport*as localizedValues from\"./TMwqSpcwo-0.js\";const valuesByLocaleId={TPCjLV9S0:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8f9ffef)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/aK6qJt2CvRGXMu7bjMk0/3Gv0lNorzONr03hF7FVS/koz4ds5z3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aeqHbxwpZvdxfP387umC/jy2qPu4jO8U3mEjq9dmb/L4hSYwTpw.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/tYHc4MpDPE0F3teGMidm/eDARpKNyyJuFdyUHrrkJ/RVBsFqKgk.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/eV9h9sT2o8zJlaSN7N1S/0AN91NWlS33x2qUsOUgz/TMwqSpcwo.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"T7RehjVD6\",\"VntLFj41A\",\"jo_zUZh4v\"];const serializationHash=\"framer-hJlz9\";const variantClassNames={jo_zUZh4v:\"framer-v-9qqcwj\",T7RehjVD6:\"framer-v-imc26d\",VntLFj41A:\"framer-v-6l0fwy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"T7RehjVD6\",Mobile:\"jo_zUZh4v\",Tablet:\"VntLFj41A\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"T7RehjVD6\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"T7RehjVD6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-imc26d\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"T7RehjVD6\",ref:refBinding,style:{...style},...addPropertyOverrides({jo_zUZh4v:{\"data-framer-name\":\"Mobile\"},VntLFj41A:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u25ast-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KJC0A1W5H-container\",nodeId:\"KJC0A1W5H\",rendersWithMotion:true,scopeId:\"TMwqSpcwo\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:40,arrowPadding:20,arrowPaddingBottom:-100,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/57TcIfoNZHYZOWDUlwTmXareF2I.svg\",rightArrow:\"https://framerusercontent.com/images/lvTj6EsyUQDOGOoFqwEOo0QUZM.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:30,height:\"100%\",id:\"KJC0A1W5H\",intervalControl:1.5,itemAmount:3,layoutId:\"KJC0A1W5H\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-80,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6i8qqv\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"Nlz41cuXU\",style:{backgroundColor:\"var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kfqwhk\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"FZTjFMVYa\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:562.5,pixelHeight:1500,pixelWidth:1125,positionX:\"48.2%\",positionY:\"10.5%\",sizes:\"360px\",src:\"https://framerusercontent.com/images/849eSU0O6gYs9V4SF1FqiH9RfDM.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/849eSU0O6gYs9V4SF1FqiH9RfDM.webp?scale-down-to=1024 768w,https://framerusercontent.com/images/849eSU0O6gYs9V4SF1FqiH9RfDM.webp 1125w\"},className:\"framer-1gv4dvg\",\"data-framer-name\":\"COMP 6c63840e87712ddc792afec20c4caf37\",layoutDependency:layoutDependency,layoutId:\"ZzCjAIuMW\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10b0uxf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"xKfjEZyfW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1im7sa4\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"uIik8pNC_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Summer Health is a game-changer for me. It's truly amazing to have a trusted resource available to me around the clock.\"})}),className:\"framer-17u4lah\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yi1sR3iWC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ozk7p4\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"gFZEll4h6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Samantha\"})}),className:\"framer-1wf8qi3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wslsqdpna\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"mother of two\"})}),className:\"framer-1rnjpdp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Tt_ZOI3vu\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gzipqa\",\"data-framer-name\":\"Card Stack\",layoutDependency:layoutDependency,layoutId:\"cJhpxogeN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mqwc46\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"qNhbEOPzL\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-clllo6\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"hKM1AZxpV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e1vgeu\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"sCofRw4VD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"Summer Health is a true lifeline for parents.\"}),\" It\u2019s my first step when I need a medical opinion.\"]})}),className:\"framer-1nqoxz8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FQyP7cai9\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qidigq\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"yc8Dr13dj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Toby\"})}),className:\"framer-16z70ty\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MQ0MVOU58\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"mother of two\"})}),className:\"framer-7sukst\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kILYW3Hkr\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lxagwb\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"wFrnnVQFa\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1om4e1n\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Y5BIW9ivm\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zxrc4l\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"yHqj0lNGG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"Summer Health gives us access to a real pediatrician at all hours. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"I recommend it to every parent I know!\"})]})}),className:\"framer-1mqw8md\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RLvUiDPHm\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-182jwdv\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"HIRJlWmXd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"David\"})}),className:\"framer-2n4xn7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ItkZNcWGS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"father of three\"})}),className:\"framer-8gav4v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eLQ1V9zix\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p8gs9k\",\"data-framer-name\":\"Card Stack\",layoutDependency:layoutDependency,layoutId:\"cIJomJ8cA\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cw55qi\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"so0Ffi2fj\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nx1zmt\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"wfl6HsJui\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r9v8ov\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"K_eayINGE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"Kind staff & helpful solutions. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"Phenomenal service!\"})]})}),className:\"framer-hoanpn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UeI760FLz\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"We were across the country when my son came down with pink eye. With no time to go to a clinic, I was desperate. I reached out to Summer Health immediately and the response was quick, professional and completely addressed the problem. Our prescription was ready for pickup immediately.\"})}),className:\"framer-qebcpq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dbenT2Uek\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17y29ok\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"q0oaBvIPs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Melissa\"})}),className:\"framer-s86xgc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ttG2Q7se1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"new mother\"})}),className:\"framer-13w9kjj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gvY7w8R8e\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ifr354\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"IRGHxyRXg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t0xug1\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"RDmdkT8zd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onrevr\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"HUWx8ar7I\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Googling only helps so much in real-world situations where the minutes count. Being able to quickly chat with a doctor gives us so much confidence as new parents.\"})}),className:\"framer-1dlc9e1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bncycYxFC\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kilto0\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"obqKJLBk1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Aaron\"})}),className:\"framer-ujo5vt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HSyqgVzUx\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"father of one\"})}),className:\"framer-wjp2d3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nHtHffZ8x\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jy4wk7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qHxKZQRCe\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:562.5,pixelHeight:1078,pixelWidth:1500,sizes:\"360px\",src:\"https://framerusercontent.com/images/qAdg4zztLZJN2Q38xGvSvyh9T98.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qAdg4zztLZJN2Q38xGvSvyh9T98.webp?scale-down-to=512 512w,https://framerusercontent.com/images/qAdg4zztLZJN2Q38xGvSvyh9T98.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/qAdg4zztLZJN2Q38xGvSvyh9T98.webp 1500w\"},className:\"framer-1770wh4\",\"data-framer-name\":\"COMP 6c63840e87712ddc792afec20c4caf37\",layoutDependency:layoutDependency,layoutId:\"tJA6X9Tq0\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c1d4ha\",\"data-framer-name\":\"Card Stack\",layoutDependency:layoutDependency,layoutId:\"sGzDXDUS4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fmwuvb\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"SOf1psuUi\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qftnzu\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"xCPeTszhS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fvtn9m\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"vNSD9_uU8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"Summer Health has given us what most parents need when it comes to their kids' health: \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"peace of mind.\"})]})}),className:\"framer-au5r7u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rKOJvvq8l\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izcay3\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"LKAA1NV1W\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Jonathan\"})}),className:\"framer-5svpsq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Swg7HsZGq\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"father of three\"})}),className:\"framer-1nkpzlr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iiBHzHRXC\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18e84vl\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"if_kS2dAi\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q2bbb0\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"U7LLNjk_E\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y2yt2g\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"LaAiclivZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"I love the comfort that comes with knowing that a \\xa0doctor could help with any question \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"at\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"any time of day.\"})]})}),className:\"framer-1iovyr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jBKZ46K3m\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--extracted-3sq8v0\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jqnlj6\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"F3HPR6Xwy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Rami\"})}),className:\"framer-5u64w8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BbswSn6ho\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"mother of three\"})}),className:\"framer-1o43snu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ACwGOZPM1\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t1fsg9\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"kfOp7kvc6\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pxrit5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Sex2nHJOB\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:562.5,pixelHeight:1500,pixelWidth:862,sizes:\"360px\",src:\"https://framerusercontent.com/images/UVgtYLXkf9C0ZpNf1JQaxl3xUiw.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UVgtYLXkf9C0ZpNf1JQaxl3xUiw.webp?scale-down-to=1024 588w,https://framerusercontent.com/images/UVgtYLXkf9C0ZpNf1JQaxl3xUiw.webp 862w\"},className:\"framer-7wrikb\",\"data-framer-name\":\"COMP 6c63840e87712ddc792afec20c4caf37\",layoutDependency:layoutDependency,layoutId:\"rdhK0KTdK\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c0v4a0\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"AwuLBWxsx\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b57qn6\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"zV2_4u8jE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"It\u2019s like having a pediatrician in my pocket. Recently, my 3-month-old wasn\u2019t feeling the best, and I was able to get expert care in 15 minutes and it all started with a simple text.\"})}),className:\"framer-i15cd3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZPukFbeZv\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bmae5d\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"eT1txATfW\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Chazity\"})}),className:\"framer-137c72v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hQVF0X55u\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"new mother\"})}),className:\"framer-nsx775\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mN1l6ZwjN\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1anzkjv\",\"data-framer-name\":\"Card Stack\",layoutDependency:layoutDependency,layoutId:\"adEAUmQVp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1claxjx\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"cDh4Qh291\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1reu86u\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"RSylXvO0H\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c5wj2q\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"sgUuzPbU6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"Their care team provides \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"personalized support\"}),\" so I never feel alone in this parenting journey.\"]})}),className:\"framer-1adni1f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GOKTHTL2e\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ap0co\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"nlReK9iEq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Yasmen\"})}),className:\"framer-1limzis\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"urMVAx20M\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"new mother\"})}),className:\"framer-qo31ct\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eHYSyUrJi\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ia8toq\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"YpDkdE1si\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kwcr1d\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Zpz7Oiyn5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14v9vs1\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"phxuCbhe9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-o34vnx\",\"data-styles-preset\":\"RVBsFqKgk\",children:[\"As a busy Mom of four, Summer Health has been a \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"game-changer \"}),\"for my family.\"]})}),className:\"framer-118d6ld\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zidDET3iY\",style:{\"--extracted-1w3ko1f\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ftljz\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"jPn1eq4Hw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Karina\"})}),className:\"framer-10nh7b9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"A1mGB9W2u\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"mother of four\"})}),className:\"framer-1vs9qiq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yst8zXyXz\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ncwif8\",\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"rUP4sNl3f\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vaagxx\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"avfNe4lNr\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dg5yma\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"hsgW10ryG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Things come up all the time and I don\u2019t know whether it\u2019s an emergency or not, knowing that I can text a doctor and get their input in 15 minutes gives me peace of mind.\"})}),className:\"framer-1wgl3ll\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FzXzNGGHX\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ubiyoh\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"KWkhCLlMU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",children:\"Katherine\"})}),className:\"framer-olpbnp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MXnPPh0Uc\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102)))\"},children:\"mother of four\"})}),className:\"framer-hguypr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LMkVJdFcP\",style:{\"--extracted-r6o4lv\":\"var(--token-be4363bb-5b54-4101-a88d-4f1be57561a7, rgb(110, 108, 102))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e8rkcg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XGpPd24SQ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:750,intrinsicWidth:562.5,pixelHeight:1080,pixelWidth:1080,positionX:\"48.8%\",positionY:\"24.1%\",sizes:\"360px\",src:\"https://framerusercontent.com/images/7QBEnofL7IhyP95pSEcTn4uHEA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7QBEnofL7IhyP95pSEcTn4uHEA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/7QBEnofL7IhyP95pSEcTn4uHEA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/7QBEnofL7IhyP95pSEcTn4uHEA.webp 1080w\"},className:\"framer-17gxony\",\"data-framer-name\":\"COMP 6c63840e87712ddc792afec20c4caf37\",layoutDependency:layoutDependency,layoutId:\"IppWwANq3\"})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"},width:\"100%\",...addPropertyOverrides({jo_zUZh4v:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:50,arrowPadding:20,arrowPaddingBottom:-100,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/57TcIfoNZHYZOWDUlwTmXareF2I.svg\",rightArrow:\"https://framerusercontent.com/images/lvTj6EsyUQDOGOoFqwEOo0QUZM.svg\",showMouseControls:true},itemAmount:1},VntLFj41A:{gap:20,itemAmount:2}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hJlz9.framer-1od5gmz, .framer-hJlz9 .framer-1od5gmz { display: block; }\",\".framer-hJlz9.framer-imc26d { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1250px; }\",\".framer-hJlz9 .framer-u25ast-container { flex: 1 0 0px; height: 550px; position: relative; width: 1px; }\",\".framer-hJlz9 .framer-6i8qqv, .framer-hJlz9 .framer-1ifr354, .framer-hJlz9 .framer-1t1fsg9, .framer-hJlz9 .framer-ncwif8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hJlz9 .framer-kfqwhk, .framer-hJlz9 .framer-jy4wk7, .framer-hJlz9 .framer-pxrit5, .framer-hJlz9 .framer-e8rkcg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 50%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hJlz9 .framer-1gv4dvg, .framer-hJlz9 .framer-1770wh4, .framer-hJlz9 .framer-7wrikb, .framer-hJlz9 .framer-17gxony { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-hJlz9 .framer-10b0uxf, .framer-hJlz9 .framer-t0xug1, .framer-hJlz9 .framer-c0v4a0, .framer-hJlz9 .framer-vaagxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 50%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hJlz9 .framer-1im7sa4, .framer-hJlz9 .framer-1e1vgeu, .framer-hJlz9 .framer-zxrc4l, .framer-hJlz9 .framer-onrevr, .framer-hJlz9 .framer-1fvtn9m, .framer-hJlz9 .framer-1y2yt2g, .framer-hJlz9 .framer-1b57qn6, .framer-hJlz9 .framer-1c5wj2q, .framer-hJlz9 .framer-14v9vs1, .framer-hJlz9 .framer-1dg5yma { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-hJlz9 .framer-17u4lah, .framer-hJlz9 .framer-1nqoxz8, .framer-hJlz9 .framer-1mqw8md, .framer-hJlz9 .framer-hoanpn, .framer-hJlz9 .framer-qebcpq, .framer-hJlz9 .framer-1dlc9e1, .framer-hJlz9 .framer-au5r7u, .framer-hJlz9 .framer-1iovyr, .framer-hJlz9 .framer-i15cd3, .framer-hJlz9 .framer-1adni1f, .framer-hJlz9 .framer-118d6ld, .framer-hJlz9 .framer-1wgl3ll { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hJlz9 .framer-1ozk7p4, .framer-hJlz9 .framer-qidigq, .framer-hJlz9 .framer-182jwdv, .framer-hJlz9 .framer-17y29ok, .framer-hJlz9 .framer-kilto0, .framer-hJlz9 .framer-1izcay3, .framer-hJlz9 .framer-1jqnlj6, .framer-hJlz9 .framer-1bmae5d, .framer-hJlz9 .framer-5ap0co, .framer-hJlz9 .framer-6ftljz, .framer-hJlz9 .framer-1ubiyoh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hJlz9 .framer-1wf8qi3, .framer-hJlz9 .framer-1rnjpdp, .framer-hJlz9 .framer-16z70ty, .framer-hJlz9 .framer-7sukst, .framer-hJlz9 .framer-2n4xn7, .framer-hJlz9 .framer-8gav4v, .framer-hJlz9 .framer-s86xgc, .framer-hJlz9 .framer-13w9kjj, .framer-hJlz9 .framer-ujo5vt, .framer-hJlz9 .framer-wjp2d3, .framer-hJlz9 .framer-5svpsq, .framer-hJlz9 .framer-1nkpzlr, .framer-hJlz9 .framer-5u64w8, .framer-hJlz9 .framer-1o43snu, .framer-hJlz9 .framer-137c72v, .framer-hJlz9 .framer-nsx775, .framer-hJlz9 .framer-1limzis, .framer-hJlz9 .framer-qo31ct, .framer-hJlz9 .framer-10nh7b9, .framer-hJlz9 .framer-1vs9qiq, .framer-hJlz9 .framer-olpbnp, .framer-hJlz9 .framer-hguypr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hJlz9 .framer-1gzipqa, .framer-hJlz9 .framer-p8gs9k, .framer-hJlz9 .framer-1c1d4ha, .framer-hJlz9 .framer-1anzkjv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 550px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 360px; }\",\".framer-hJlz9 .framer-1mqwc46, .framer-hJlz9 .framer-1lxagwb, .framer-hJlz9 .framer-cw55qi, .framer-hJlz9 .framer-fmwuvb, .framer-hJlz9 .framer-18e84vl, .framer-hJlz9 .framer-1claxjx, .framer-hJlz9 .framer-1ia8toq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hJlz9 .framer-clllo6, .framer-hJlz9 .framer-1om4e1n, .framer-hJlz9 .framer-1qftnzu, .framer-hJlz9 .framer-q2bbb0, .framer-hJlz9 .framer-1reu86u, .framer-hJlz9 .framer-1kwcr1d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-hJlz9 .framer-nx1zmt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: 1px; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-hJlz9 .framer-1r9v8ov { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hJlz9.framer-v-6l0fwy.framer-imc26d { gap: 0px; justify-content: center; width: 700px; }\",\".framer-hJlz9.framer-v-6l0fwy .framer-u25ast-container { height: 480px; }\",\".framer-hJlz9.framer-v-9qqcwj.framer-imc26d { gap: 0px; justify-content: center; width: 350px; }\",\".framer-hJlz9.framer-v-9qqcwj .framer-u25ast-container { height: 470px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 1250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VntLFj41A\":{\"layout\":[\"fixed\",\"auto\"]},\"jo_zUZh4v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTMwqSpcwo=withCSS(Component,css,\"framer-hJlz9\");export default FramerTMwqSpcwo;FramerTMwqSpcwo.displayName=\"Testimonial Carousel\";FramerTMwqSpcwo.defaultProps={height:550,width:1250};addPropertyControls(FramerTMwqSpcwo,{variant:{options:[\"T7RehjVD6\",\"VntLFj41A\",\"jo_zUZh4v\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTMwqSpcwo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTMwqSpcwo\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1250\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VntLFj41A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jo_zUZh4v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"erupciones\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"estrenimiento\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"costra l\\xe1ctea\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"congesti\\xf3n\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"dolor de o\\xeddo\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"virus\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"fiebres\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport*as localizedValues from\"./UHdh30HVh-0.js\";const valuesByLocaleId={TPCjLV9S0:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/iMlMCWNTF6om09bXZbAW/p3LKGXPMj0s00Ak9QD0S/xC3cBtY94.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/h20bbFzWV7y4Hip8wTXm/ZV35TraMhhRkIF3FCUNt/UHdh30HVh.js\";const cycleOrder=[\"o_99LSmnL\",\"bxZmCEWyB\",\"SJJN9MOA2\",\"an0aQawRS\",\"uIGFlreBE\",\"XmAFo6o8K\",\"qdwUiLzVd\",\"nEAORyqc5\",\"pxf8qDXvO\",\"yvDGDmoEb\",\"fd0pA5UOj\",\"P3md31e1m\",\"bz7dktF7V\",\"dUzLeqdHi\"];const serializationHash=\"framer-BdlMU\";const variantClassNames={an0aQawRS:\"framer-v-jxpgu9\",bxZmCEWyB:\"framer-v-1sfnxdt\",bz7dktF7V:\"framer-v-bn04c6\",dUzLeqdHi:\"framer-v-b0m5iy\",fd0pA5UOj:\"framer-v-1rrwn8e\",nEAORyqc5:\"framer-v-1r4opwx\",o_99LSmnL:\"framer-v-gdd0z4\",P3md31e1m:\"framer-v-l7t3ko\",pxf8qDXvO:\"framer-v-g7o5r\",qdwUiLzVd:\"framer-v-1974pko\",SJJN9MOA2:\"framer-v-lv42kz\",uIGFlreBE:\"framer-v-1dtsbcd\",XmAFo6o8K:\"framer-v-g2wjzj\",yvDGDmoEb:\"framer-v-1240f1g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"congestion (mobile)\":\"an0aQawRS\",\"congrstion (desktop)\":\"fd0pA5UOj\",\"constipation (desktop)\":\"pxf8qDXvO\",\"constipation (mobile)\":\"bxZmCEWyB\",\"cradle cap (desktop)\":\"yvDGDmoEb\",\"cradle cap (mobile)\":\"SJJN9MOA2\",\"ear pain (desktop)\":\"P3md31e1m\",\"ear pain (mobile)\":\"uIGFlreBE\",\"fevers (desktop)\":\"dUzLeqdHi\",\"fevers (mobile)\":\"qdwUiLzVd\",\"rashes (desktop)\":\"nEAORyqc5\",\"rashes (mobile)\":\"o_99LSmnL\",\"viruses (desktop)\":\"bz7dktF7V\",\"viruses (mobile)\":\"XmAFo6o8K\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"o_99LSmnL\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o_99LSmnL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1a2vbif=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),1500);});const onAppear1yto9f2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"o_99LSmnL\"),1500);});const onAppeariw2tu7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nEAORyqc5\"),1500);});useOnVariantChange(baseVariant,{default:onAppear1a2vbif,dUzLeqdHi:onAppeariw2tu7,qdwUiLzVd:onAppear1yto9f2});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gdd0z4\",className,classNames),\"data-framer-name\":\"rashes (mobile)\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"o_99LSmnL\",ref:refBinding,style:{...style},...addPropertyOverrides({an0aQawRS:{\"data-framer-name\":\"congestion (mobile)\"},bxZmCEWyB:{\"data-framer-name\":\"constipation (mobile)\"},bz7dktF7V:{\"data-framer-name\":\"viruses (desktop)\"},dUzLeqdHi:{\"data-framer-name\":\"fevers (desktop)\"},fd0pA5UOj:{\"data-framer-name\":\"congrstion (desktop)\"},nEAORyqc5:{\"data-framer-name\":\"rashes (desktop)\"},P3md31e1m:{\"data-framer-name\":\"ear pain (desktop)\"},pxf8qDXvO:{\"data-framer-name\":\"constipation (desktop)\"},qdwUiLzVd:{\"data-framer-name\":\"fevers (mobile)\"},SJJN9MOA2:{\"data-framer-name\":\"cradle cap (mobile)\"},uIGFlreBE:{\"data-framer-name\":\"ear pain (mobile)\"},XmAFo6o8K:{\"data-framer-name\":\"viruses (mobile)\"},yvDGDmoEb:{\"data-framer-name\":\"cradle cap (desktop)\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-efr1ap\",layoutDependency:layoutDependency,layoutId:\"Vw85qbwNJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"rashes\"})}),className:\"framer-6rutpl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ihD3sflQW\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({an0aQawRS:{value:undefined},bxZmCEWyB:{value:undefined},bz7dktF7V:{value:undefined},dUzLeqdHi:{value:undefined},fd0pA5UOj:{value:undefined},P3md31e1m:{value:undefined},pxf8qDXvO:{value:undefined},qdwUiLzVd:{value:undefined},SJJN9MOA2:{value:undefined},uIGFlreBE:{value:undefined},XmAFo6o8K:{value:undefined},yvDGDmoEb:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"constipation\"})}),className:\"framer-1ywwmwr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q7PPMIklW\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({an0aQawRS:{value:undefined},bxZmCEWyB:{value:undefined},bz7dktF7V:{value:undefined},dUzLeqdHi:{value:undefined},fd0pA5UOj:{value:undefined},P3md31e1m:{value:undefined},pxf8qDXvO:{value:undefined},qdwUiLzVd:{value:undefined},SJJN9MOA2:{value:undefined},uIGFlreBE:{value:undefined},XmAFo6o8K:{value:undefined},yvDGDmoEb:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"cradle cap\"})}),className:\"framer-1ezt8x5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vox55Ip7S\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({an0aQawRS:{value:undefined},bxZmCEWyB:{value:undefined},bz7dktF7V:{value:undefined},dUzLeqdHi:{value:undefined},fd0pA5UOj:{value:undefined},P3md31e1m:{value:undefined},pxf8qDXvO:{value:undefined},qdwUiLzVd:{value:undefined},SJJN9MOA2:{value:undefined},uIGFlreBE:{value:undefined},XmAFo6o8K:{value:undefined},yvDGDmoEb:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"congestion\"})}),className:\"framer-1gsro0y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fyicoAbpl\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({an0aQawRS:{value:undefined},bxZmCEWyB:{value:undefined},bz7dktF7V:{value:undefined},dUzLeqdHi:{value:undefined},fd0pA5UOj:{value:undefined},P3md31e1m:{value:undefined},pxf8qDXvO:{value:undefined},qdwUiLzVd:{value:undefined},SJJN9MOA2:{value:undefined},uIGFlreBE:{value:undefined},XmAFo6o8K:{value:undefined},yvDGDmoEb:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"ear pain\"})}),className:\"framer-cx1os8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C8q05HmRf\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({an0aQawRS:{value:undefined},bxZmCEWyB:{value:undefined},bz7dktF7V:{value:undefined},dUzLeqdHi:{value:undefined},fd0pA5UOj:{value:undefined},P3md31e1m:{value:undefined},pxf8qDXvO:{value:undefined},qdwUiLzVd:{value:undefined},SJJN9MOA2:{value:undefined},uIGFlreBE:{value:undefined},XmAFo6o8K:{value:undefined},yvDGDmoEb:{value:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"viruses\"})}),className:\"framer-ym6eb8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Nyz4dqF_a\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255)))\"},children:\"fevers\"})}),className:\"framer-123x8on\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B_oh17l7E\",style:{\"--extracted-1of0zx5\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BdlMU.framer-198q8e, .framer-BdlMU .framer-198q8e { display: block; }\",\".framer-BdlMU.framer-gdd0z4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 300px; }\",\".framer-BdlMU .framer-efr1ap { align-content: center; align-items: center; aspect-ratio: 5 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 60px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 300px; z-index: 1; }\",\".framer-BdlMU .framer-6rutpl { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BdlMU .framer-1ywwmwr, .framer-BdlMU .framer-1ezt8x5, .framer-BdlMU .framer-1gsro0y, .framer-BdlMU .framer-cx1os8, .framer-BdlMU .framer-ym6eb8 { aspect-ratio: 5 / 1; bottom: -60px; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BdlMU .framer-123x8on { aspect-ratio: 5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 0px; position: absolute; right: 0px; top: -60px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BdlMU.framer-v-1sfnxdt.framer-gdd0z4, .framer-BdlMU.framer-v-lv42kz.framer-gdd0z4, .framer-BdlMU.framer-v-jxpgu9.framer-gdd0z4, .framer-BdlMU.framer-v-1dtsbcd.framer-gdd0z4, .framer-BdlMU.framer-v-g2wjzj.framer-gdd0z4, .framer-BdlMU.framer-v-1974pko.framer-gdd0z4 { aspect-ratio: 5 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\",\".framer-BdlMU.framer-v-1sfnxdt .framer-6rutpl, .framer-BdlMU.framer-v-lv42kz .framer-6rutpl, .framer-BdlMU.framer-v-jxpgu9 .framer-6rutpl { top: -60px; }\",\".framer-BdlMU.framer-v-1sfnxdt .framer-1ywwmwr { bottom: 0px; }\",\".framer-BdlMU.framer-v-1sfnxdt .framer-123x8on { left: unset; right: -300px; width: 300px; }\",\".framer-BdlMU.framer-v-lv42kz .framer-1ywwmwr, .framer-BdlMU.framer-v-jxpgu9 .framer-1ywwmwr, .framer-BdlMU.framer-v-jxpgu9 .framer-1ezt8x5, .framer-BdlMU.framer-v-1dtsbcd .framer-1ywwmwr, .framer-BdlMU.framer-v-1dtsbcd .framer-1ezt8x5, .framer-BdlMU.framer-v-1dtsbcd .framer-1gsro0y, .framer-BdlMU.framer-v-g2wjzj .framer-1ywwmwr, .framer-BdlMU.framer-v-g2wjzj .framer-1ezt8x5, .framer-BdlMU.framer-v-g2wjzj .framer-1gsro0y, .framer-BdlMU.framer-v-g2wjzj .framer-cx1os8, .framer-BdlMU.framer-v-1974pko .framer-1ywwmwr, .framer-BdlMU.framer-v-1974pko .framer-1ezt8x5, .framer-BdlMU.framer-v-1974pko .framer-1gsro0y, .framer-BdlMU.framer-v-1974pko .framer-cx1os8, .framer-BdlMU.framer-v-1974pko .framer-ym6eb8 { bottom: unset; top: -60px; }\",\".framer-BdlMU.framer-v-lv42kz .framer-1ezt8x5, .framer-BdlMU.framer-v-jxpgu9 .framer-1gsro0y, .framer-BdlMU.framer-v-1dtsbcd .framer-cx1os8, .framer-BdlMU.framer-v-g2wjzj .framer-ym6eb8 { bottom: unset; top: 0px; }\",\".framer-BdlMU.framer-v-lv42kz .framer-123x8on, .framer-BdlMU.framer-v-g2wjzj .framer-6rutpl { bottom: -60px; left: unset; right: -300px; top: unset; width: 300px; }\",\".framer-BdlMU.framer-v-jxpgu9 .framer-123x8on, .framer-BdlMU.framer-v-1dtsbcd .framer-123x8on, .framer-BdlMU.framer-v-g2wjzj .framer-123x8on, .framer-BdlMU.framer-v-1974pko .framer-6rutpl { bottom: -60px; top: unset; }\",\".framer-BdlMU.framer-v-1dtsbcd .framer-6rutpl { left: unset; right: -300px; top: -60px; width: 300px; }\",\".framer-BdlMU.framer-v-1974pko .framer-123x8on { top: 0px; }\",\".framer-BdlMU.framer-v-1r4opwx.framer-gdd0z4, .framer-BdlMU.framer-v-g7o5r.framer-gdd0z4, .framer-BdlMU.framer-v-1240f1g.framer-gdd0z4, .framer-BdlMU.framer-v-1rrwn8e.framer-gdd0z4, .framer-BdlMU.framer-v-l7t3ko.framer-gdd0z4, .framer-BdlMU.framer-v-bn04c6.framer-gdd0z4, .framer-BdlMU.framer-v-b0m5iy.framer-gdd0z4 { aspect-ratio: 5 / 1; height: var(--framer-aspect-ratio-supported, 70px); width: 350px; }\",\".framer-BdlMU.framer-v-1r4opwx .framer-efr1ap, .framer-BdlMU.framer-v-g7o5r .framer-efr1ap, .framer-BdlMU.framer-v-1240f1g .framer-efr1ap, .framer-BdlMU.framer-v-1rrwn8e .framer-efr1ap, .framer-BdlMU.framer-v-l7t3ko .framer-efr1ap, .framer-BdlMU.framer-v-bn04c6 .framer-efr1ap, .framer-BdlMU.framer-v-b0m5iy .framer-efr1ap { height: var(--framer-aspect-ratio-supported, 70px); width: 350px; }\",\".framer-BdlMU.framer-v-1r4opwx .framer-6rutpl { height: var(--framer-aspect-ratio-supported, 80px); }\",\".framer-BdlMU.framer-v-1r4opwx .framer-1ywwmwr, .framer-BdlMU.framer-v-1r4opwx .framer-1ezt8x5, .framer-BdlMU.framer-v-1r4opwx .framer-1gsro0y, .framer-BdlMU.framer-v-1r4opwx .framer-cx1os8, .framer-BdlMU.framer-v-1r4opwx .framer-ym6eb8, .framer-BdlMU.framer-v-g7o5r .framer-1ezt8x5, .framer-BdlMU.framer-v-g7o5r .framer-1gsro0y, .framer-BdlMU.framer-v-g7o5r .framer-cx1os8, .framer-BdlMU.framer-v-g7o5r .framer-ym6eb8, .framer-BdlMU.framer-v-1240f1g .framer-1gsro0y, .framer-BdlMU.framer-v-1240f1g .framer-cx1os8, .framer-BdlMU.framer-v-1240f1g .framer-ym6eb8, .framer-BdlMU.framer-v-1rrwn8e .framer-cx1os8, .framer-BdlMU.framer-v-1rrwn8e .framer-ym6eb8, .framer-BdlMU.framer-v-l7t3ko .framer-ym6eb8 { bottom: -70px; height: var(--framer-aspect-ratio-supported, 70px); }\",\".framer-BdlMU.framer-v-1r4opwx .framer-123x8on, .framer-BdlMU.framer-v-g7o5r .framer-6rutpl, .framer-BdlMU.framer-v-1240f1g .framer-6rutpl, .framer-BdlMU.framer-v-1rrwn8e .framer-6rutpl { height: var(--framer-aspect-ratio-supported, 70px); top: -70px; }\",\".framer-BdlMU.framer-v-g7o5r .framer-1ywwmwr { bottom: 0px; height: var(--framer-aspect-ratio-supported, 70px); }\",\".framer-BdlMU.framer-v-g7o5r .framer-123x8on, .framer-BdlMU.framer-v-l7t3ko .framer-6rutpl { height: var(--framer-aspect-ratio-supported, 70px); left: unset; right: -350px; top: -70px; width: 350px; }\",\".framer-BdlMU.framer-v-1240f1g .framer-1ywwmwr, .framer-BdlMU.framer-v-1rrwn8e .framer-1ywwmwr, .framer-BdlMU.framer-v-1rrwn8e .framer-1ezt8x5, .framer-BdlMU.framer-v-l7t3ko .framer-1ywwmwr, .framer-BdlMU.framer-v-l7t3ko .framer-1ezt8x5, .framer-BdlMU.framer-v-l7t3ko .framer-1gsro0y, .framer-BdlMU.framer-v-bn04c6 .framer-1ywwmwr, .framer-BdlMU.framer-v-bn04c6 .framer-1ezt8x5, .framer-BdlMU.framer-v-bn04c6 .framer-1gsro0y, .framer-BdlMU.framer-v-bn04c6 .framer-cx1os8, .framer-BdlMU.framer-v-b0m5iy .framer-1ywwmwr, .framer-BdlMU.framer-v-b0m5iy .framer-1ezt8x5, .framer-BdlMU.framer-v-b0m5iy .framer-1gsro0y, .framer-BdlMU.framer-v-b0m5iy .framer-cx1os8, .framer-BdlMU.framer-v-b0m5iy .framer-ym6eb8 { bottom: unset; height: var(--framer-aspect-ratio-supported, 70px); top: -70px; }\",\".framer-BdlMU.framer-v-1240f1g .framer-1ezt8x5, .framer-BdlMU.framer-v-1rrwn8e .framer-1gsro0y, .framer-BdlMU.framer-v-l7t3ko .framer-cx1os8, .framer-BdlMU.framer-v-bn04c6 .framer-ym6eb8 { bottom: unset; height: var(--framer-aspect-ratio-supported, 70px); top: 0px; }\",\".framer-BdlMU.framer-v-1240f1g .framer-123x8on, .framer-BdlMU.framer-v-bn04c6 .framer-6rutpl { bottom: -70px; height: var(--framer-aspect-ratio-supported, 70px); left: unset; right: -350px; top: unset; width: 350px; }\",\".framer-BdlMU.framer-v-1rrwn8e .framer-123x8on, .framer-BdlMU.framer-v-l7t3ko .framer-123x8on, .framer-BdlMU.framer-v-bn04c6 .framer-123x8on, .framer-BdlMU.framer-v-b0m5iy .framer-6rutpl { bottom: -70px; height: var(--framer-aspect-ratio-supported, 70px); top: unset; }\",\".framer-BdlMU.framer-v-b0m5iy .framer-123x8on { height: var(--framer-aspect-ratio-supported, 70px); top: 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bxZmCEWyB\":{\"layout\":[\"fixed\",\"fixed\"]},\"SJJN9MOA2\":{\"layout\":[\"fixed\",\"fixed\"]},\"an0aQawRS\":{\"layout\":[\"fixed\",\"fixed\"]},\"uIGFlreBE\":{\"layout\":[\"fixed\",\"fixed\"]},\"XmAFo6o8K\":{\"layout\":[\"fixed\",\"fixed\"]},\"qdwUiLzVd\":{\"layout\":[\"fixed\",\"fixed\"]},\"nEAORyqc5\":{\"layout\":[\"fixed\",\"fixed\"]},\"pxf8qDXvO\":{\"layout\":[\"fixed\",\"fixed\"]},\"yvDGDmoEb\":{\"layout\":[\"fixed\",\"fixed\"]},\"fd0pA5UOj\":{\"layout\":[\"fixed\",\"fixed\"]},\"P3md31e1m\":{\"layout\":[\"fixed\",\"fixed\"]},\"bz7dktF7V\":{\"layout\":[\"fixed\",\"fixed\"]},\"dUzLeqdHi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUHdh30HVh=withCSS(Component,css,\"framer-BdlMU\");export default FramerUHdh30HVh;FramerUHdh30HVh.displayName=\"Conditions Changer\";FramerUHdh30HVh.defaultProps={height:60,width:300};addPropertyControls(FramerUHdh30HVh,{variant:{options:[\"o_99LSmnL\",\"bxZmCEWyB\",\"SJJN9MOA2\",\"an0aQawRS\",\"uIGFlreBE\",\"XmAFo6o8K\",\"qdwUiLzVd\",\"nEAORyqc5\",\"pxf8qDXvO\",\"yvDGDmoEb\",\"fd0pA5UOj\",\"P3md31e1m\",\"bz7dktF7V\",\"dUzLeqdHi\"],optionTitles:[\"rashes (mobile)\",\"constipation (mobile)\",\"cradle cap (mobile)\",\"congestion (mobile)\",\"ear pain (mobile)\",\"viruses (mobile)\",\"fevers (mobile)\",\"rashes (desktop)\",\"constipation (desktop)\",\"cradle cap (desktop)\",\"congrstion (desktop)\",\"ear pain (desktop)\",\"viruses (desktop)\",\"fevers (desktop)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUHdh30HVh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUHdh30HVh\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"300\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bxZmCEWyB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SJJN9MOA2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"an0aQawRS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uIGFlreBE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XmAFo6o8K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qdwUiLzVd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nEAORyqc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pxf8qDXvO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yvDGDmoEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fd0pA5UOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P3md31e1m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bz7dktF7V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dUzLeqdHi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (890879b)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Family Medium\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Family Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/WHlNy8h50F9JUfvRIWqcXMnUEw.woff2\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-IpBsC .framer-styles-preset-1vv10l8:not(.rich-text-wrapper), .framer-IpBsC .framer-styles-preset-1vv10l8.rich-text-wrapper h1 { --framer-font-family: \"Family Medium\", \"Family Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: calc(var(--framer-root-font-size, 1rem) * 6); --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.01em; --framer-line-height: 100%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, #171515); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-IpBsC\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b6d5dad)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={TPCjLV9S0:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b6d5dad)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Button from\"#framer/local/canvasComponent/cNIAWY2Bn/cNIAWY2Bn.js\";import ImageTicker from\"#framer/local/canvasComponent/oZ8PGjbKw/oZ8PGjbKw.js\";import TestimonialCarousel from\"#framer/local/canvasComponent/TMwqSpcwo/TMwqSpcwo.js\";import ConditionsChanger from\"#framer/local/canvasComponent/UHdh30HVh/UHdh30HVh.js\";import ExpertsSlider from\"#framer/local/canvasComponent/ulNGcTfnI/ulNGcTfnI.js\";import*as sharedStyle from\"#framer/local/css/am7rLCc_O/am7rLCc_O.js\";import*as sharedStyle1 from\"#framer/local/css/B3_Gvs9DL/B3_Gvs9DL.js\";import*as sharedStyle6 from\"#framer/local/css/EcU7jBySi/EcU7jBySi.js\";import*as sharedStyle5 from\"#framer/local/css/JglBgUZvz/JglBgUZvz.js\";import*as sharedStyle3 from\"#framer/local/css/koz4ds5z3/koz4ds5z3.js\";import*as sharedStyle7 from\"#framer/local/css/L4hSYwTpw/L4hSYwTpw.js\";import*as sharedStyle9 from\"#framer/local/css/nZ57VjhJN/nZ57VjhJN.js\";import*as sharedStyle2 from\"#framer/local/css/tlvNP_KsT/tlvNP_KsT.js\";import*as sharedStyle8 from\"#framer/local/css/vSWlf2UrS/vSWlf2UrS.js\";import*as sharedStyle4 from\"#framer/local/css/xC3cBtY94/xC3cBtY94.js\";import*as sharedStyle10 from\"#framer/local/css/zaqwiO1HA/zaqwiO1HA.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const ButtonFonts=getFonts(Button);const ConditionsChangerFonts=getFonts(ConditionsChanger);const ConditionsChangerWithVariantAppearEffect=withVariantAppearEffect(ConditionsChanger);const ImageTickerFonts=getFonts(ImageTicker);const ExpertsSliderFonts=getFonts(ExpertsSlider);const TestimonialCarouselFonts=getFonts(TestimonialCarousel);const breakpoints={fy0KIUpLf:\"(min-width: 1500px)\",IEZU5TTqB:\"(max-width: 799px)\",OxA4DRxJE:\"(min-width: 800px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1499px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ttWyQ\";const variantClassNames={fy0KIUpLf:\"framer-v-1fd6rc6\",IEZU5TTqB:\"framer-v-1cw6edp\",OxA4DRxJE:\"framer-v-1lje5o3\",WQLkyLRf1:\"framer-v-72rtr7\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"https://care.summerhealth.com/signup/welcome\";case\"TPCjLV9S0\":return\"https://care.summerhealth.com/es/signup/welcome\";default:return undefined;}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"https://care.summerhealth.com/signup/welcome?interval=ONETIME\";case\"TPCjLV9S0\":return\"https://care.summerhealth.com/es/signup/welcome?interval=ONETIME\";default:return undefined;}};const transition1={damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:20};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"fy0KIUpLf\",Desktop:\"WQLkyLRf1\",Phone:\"IEZU5TTqB\",Tablet:\"OxA4DRxJE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const isDisplayed=()=>{if(!isBrowser())return true;if([\"OxA4DRxJE\",\"IEZU5TTqB\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"OxA4DRxJE\",\"IEZU5TTqB\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"IEZU5TTqB\")return true;return false;};const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"IEZU5TTqB\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, rgb(253, 255, 250)); }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"main\",{className:\"framer-bdxal6\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-19bwyvf\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-186du26\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16713p1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yx5bba\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x2hazl\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1vv10l8\",\"data-styles-preset\":\"B3_Gvs9DL\",children:\"Pediatric care is just a text away.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-mbunoq\",\"data-styles-preset\":\"am7rLCc_O\",children:\"Pediatric care is just a text away.\"})}),className:\"framer-15hqvc1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Text us 24/7 for answers on everything from urgent issues to everyday questions about your child's health & development.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a4x95g\",\"data-styles-preset\":\"tlvNP_KsT\",children:\"Text us 24/7 for answers on everything from urgent issues to everyday questions about your child's health and development.\"})}),className:\"framer-law9hn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+0+286.75+20+0+0+298.5},IEZU5TTqB:{y:undefined},OxA4DRxJE:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+0+294.75+20+0+0+282.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kyb8p7-container\",\"data-framer-name\":\"Signup Button\",name:\"Signup Button\",nodeId:\"tKuSL1leV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks[3]},IEZU5TTqB:{Mb2SBziNG:resolvedLinks[2]},OxA4DRxJE:{Mb2SBziNG:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v4\",activeLocale)??\"Sign up\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"tKuSL1leV\",layoutId:\"tKuSL1leV\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks[0],name:\"Signup Button\",qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-assmwj\",\"data-framer-name\":\"Background\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxl9o7 hidden-1lje5o3 hidden-1cw6edp\",\"data-framer-name\":\"Image Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1336,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0+0),pixelHeight:1476,pixelWidth:1500,positionX:\"left\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/K5NzGz7ptBpnmW5iax3yXWNWLY.webp\",srcSet:\"https://framerusercontent.com/images/K5NzGz7ptBpnmW5iax3yXWNWLY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/K5NzGz7ptBpnmW5iax3yXWNWLY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/K5NzGz7ptBpnmW5iax3yXWNWLY.webp 1500w\"},className:\"framer-11nr88s\",\"data-framer-name\":\"Image\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:572,pixelHeight:1888,pixelWidth:1144,positionX:\"center\",positionY:\"top\",sizes:`max(max(${componentViewport?.width||\"100vw\"}, ${componentViewport?.width||\"100vw\"} / 2) - 50px, 1px)`,src:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024 620w,https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png 1144w\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:572,pixelHeight:1888,pixelWidth:1144,sizes:\"236.3136px\",src:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024 620w,https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png 1144w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:944,intrinsicWidth:572,pixelHeight:1888,pixelWidth:1144,src:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png?scale-down-to=1024 620w,https://framerusercontent.com/images/vrRG7BDrjVxbVQLFpbSlaEA7l4.png 1144w\"},className:\"framer-2ueqcg hidden-72rtr7 hidden-1fd6rc6\",\"data-framer-name\":\"Hero Phone\"})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1hcp2yq\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o148bc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ywxdsc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wv0n6r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Where parents get answers about\u2026\"})}),className:\"framer-1vycv4u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{width:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,y:undefined},OxA4DRxJE:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+0+0+1e3+0+0+100+0+0+0+0+66,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2032f-container\",nodeId:\"OJHo8Z9iY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{variant:\"fd0pA5UOj\"},IEZU5TTqB:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ConditionsChangerWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"OJHo8Z9iY\",layoutId:\"OJHo8Z9iY\",variant:\"nEAORyqc5\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ynh8w4\",\"data-framer-name\":\"3-Item Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sbf39n\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/LBpfwWPFYyePWY3HMWiYYI7xOfU.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/LBpfwWPFYyePWY3HMWiYYI7xOfU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+100+0+0+226+0+0+0+9.5),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/LBpfwWPFYyePWY3HMWiYYI7xOfU.svg\"},className:\"framer-1wmhgq6\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"24/7 care in under 15 minutes\"})}),className:\"framer-1txcs1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Text anytime, anywhere and get answers from doctors within 15 minutes. Get same-day prescriptions called into your local pharmacy.\"})}),className:\"framer-1ijqwyp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-93n0d4\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/eav7ZJLuB2ZBJXuBdmLCR6LZjDc.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/eav7ZJLuB2ZBJXuBdmLCR6LZjDc.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+100+0+0+226+0+0+0+25.5),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/eav7ZJLuB2ZBJXuBdmLCR6LZjDc.svg\"},className:\"framer-1fcm0oy\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Text directly with experts\"})}),className:\"framer-13q0out\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Specialists at your fingertips \u2014 get lactation support, nutrition advice, and developmental advice from our experts all via text.\"})}),className:\"framer-1r0hc8o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gg5cam\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/FdSpZXCW6194qrmkA1yvg9oWsU4.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/FdSpZXCW6194qrmkA1yvg9oWsU4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1e3+0+0+100+0+0+226+0+0+0+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/FdSpZXCW6194qrmkA1yvg9oWsU4.svg\"},className:\"framer-2vxe4r\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Prepare for the future\"})}),className:\"framer-a0zo03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"We've got you covered from newborn to teenagers with personalized milestone tracking and pediatric check-ins in between visits.\"})}),className:\"framer-16mrmj9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{y:undefined},OxA4DRxJE:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1e3+0+725,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16i9yht-container\",nodeId:\"PO1VnGEzl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ImageTicker,{height:\"100%\",id:\"PO1VnGEzl\",layoutId:\"PO1VnGEzl\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-yp5ok1\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1be2pm3\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m357r0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125vcvv\",\"data-framer-name\":\"Heading Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our pediatric team works 24/7, just like you\"})}),className:\"framer-1suo1uj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a4x95g\",\"data-styles-preset\":\"tlvNP_KsT\",style:{\"--framer-text-alignment\":\"center\"},children:\"We provide unlimited pediatric care for your family anytime, anywhere via text\u2014answers are always just a message away.\"})}),className:\"framer-nz09hu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19h5l1c\",\"data-framer-name\":\"Gif\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/aoTBm0MCG4B1jJKiTYHYMaxZSI.gif\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/aoTBm0MCG4B1jJKiTYHYMaxZSI.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:160,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2075+0+125+0+0+278.5+0),pixelHeight:320,pixelWidth:320,src:\"https://framerusercontent.com/images/aoTBm0MCG4B1jJKiTYHYMaxZSI.gif\"},className:\"framer-1988qx8\",\"data-framer-name\":\"Clock\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pm3zc6\",\"data-framer-name\":\"Items\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-reount\",\"data-framer-name\":\"3-Item Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4bkyrr\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vu85sx\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p9iq1x\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-b0pi58\",\"data-styles-preset\":\"EcU7jBySi\",style:{\"--framer-text-alignment\":\"center\"},children:\"1\"})}),className:\"framer-1p0i83t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Sign up\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sign up\"})}),className:\"framer-yh31v2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Set up an account and share your insurance to see if you are eligible for free access.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Set up an account and share your insurance to see if you are eligible for free access.\"})}),className:\"framer-11mvn6p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bnbvkw\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0ob5p\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eolt5t\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-b0pi58\",\"data-styles-preset\":\"EcU7jBySi\",style:{\"--framer-text-alignment\":\"center\"},children:\"2\"})}),className:\"framer-fixaac\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Meet your care team\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Meet your care team\"})}),className:\"framer-1vc5rku\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Your dedicated pediatrician will text you to introduce themselves and meet your family.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Your dedicated pediatrician will text you to introduce themselves and meet your family.\"})}),className:\"framer-j09pg7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-olpu16\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzu6s\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vumx37\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-b0pi58\",\"data-styles-preset\":\"EcU7jBySi\",style:{\"--framer-text-alignment\":\"center\"},children:\"3\"})}),className:\"framer-oq7wgy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Text us any time\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Text us any time\"})}),className:\"framer-1lma7xo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"We\u2019re here to help you through all of your children\u2019s needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re here to help you through all of your children\u2019s needs.\"})}),className:\"framer-1vs5zhi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2h97fl hidden-72rtr7 hidden-1lje5o3 hidden-1fd6rc6\",\"data-framer-name\":\"Divider\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6uyded hidden-72rtr7 hidden-1lje5o3 hidden-1fd6rc6\",\"data-framer-name\":\"Divider\"})]})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-zlkbrr\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-766epb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1imsdlp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4fqm8\",\"data-framer-name\":\"Heading Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-qe1w43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a4x95g\",\"data-styles-preset\":\"tlvNP_KsT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Every Summer Health account comes with the same features and access. \\u2028\\u2028Unlimited visits, anytime.\"})}),className:\"framer-85yef6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13hgkch\",\"data-framer-name\":\"Card Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19zz3as\",\"data-framer-name\":\"Price Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qlsxi4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rkyzoe\",\"data-styles-preset\":\"vSWlf2UrS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, rgb(255, 255, 255))\"},children:\"HSA / FSA eligible\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, rgb(255, 255, 255))\"},children:\"HSA / FSA eligible\"})}),className:\"framer-jc4zkx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w49vbs\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmlpy7\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})}),className:\"framer-urqc7p\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"40\"})}),className:\"framer-ap6wvh\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"165%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"Pay per visit\"})}),fonts:[\"CUSTOM;S\\xf6hne Buch\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Pay per visit\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-1v7drw2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum1(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum1(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum1(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum1(activeLocale?.id,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+0+30+194},IEZU5TTqB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 800px) - 30px)`,y:undefined},OxA4DRxJE:{width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 20px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+0+30+206,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3sgqi-container\",nodeId:\"EsP6viMNF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks1[3]},IEZU5TTqB:{Mb2SBziNG:resolvedLinks1[2],variant:\"FDJ1c0bfK\"},OxA4DRxJE:{Mb2SBziNG:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v4\",activeLocale)??\"Sign up\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"EsP6viMNF\",layoutId:\"EsP6viMNF\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks1[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",style:{width:\"100%\"},variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgjpc1\",\"data-framer-name\":\"Price Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d9vr93\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hqz0n0\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wk9nlq\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})}),className:\"framer-bzcnm9\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"20\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"20\"})}),className:\"framer-x33qn8\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"165%\",\"--framer-text-alignment\":\"center\"},children:[\"per month \",/*#__PURE__*/_jsx(\"br\",{}),\"without insurance\"]})}),fonts:[\"CUSTOM;S\\xf6hne Buch\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"per month \",/*#__PURE__*/_jsx(\"br\",{}),\"without insurance\"]})}),className:\"framer-wid3h1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+4+30+174},IEZU5TTqB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 800px) - 30px)`,y:undefined},OxA4DRxJE:{width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 20px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+16+30+174,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q1mbw8-container\",nodeId:\"g9kxFWGbD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks2[3]},IEZU5TTqB:{Mb2SBziNG:resolvedLinks2[2],variant:\"FDJ1c0bfK\"},OxA4DRxJE:{Mb2SBziNG:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v4\",activeLocale)??\"Sign up\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"g9kxFWGbD\",layoutId:\"g9kxFWGbD\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks2[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",style:{width:\"100%\"},variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqe1sm\",\"data-framer-name\":\"Price Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16r8jp\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kew3fm\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xe0n2b\",\"data-framer-name\":\"Price\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"$\"})}),className:\"framer-1280lm2\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ZhbWlseSBNZWRpdW0=\",\"--framer-font-family\":'\"Family Medium\", \"Family Medium Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(26, 27, 24))\"},children:\"0\"})}),className:\"framer-69ohoj\",fonts:[\"CUSTOM;Family Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"165%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\"},children:\"w/ certain Medicaid + Insurance plans\"})}),fonts:[\"CUSTOM;S\\xf6hne Buch\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"with certain \",/*#__PURE__*/_jsx(\"br\",{}),\"Medicaid plans*\"]})}),className:\"framer-1hzexjs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+0+30+182},IEZU5TTqB:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 800px) - 30px)`,y:undefined},OxA4DRxJE:{width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 20px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:`calc(max((min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 800px) - 50px) / 3, 1px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+288.5+12+30+182,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bv263f-container\",nodeId:\"nwq1g55pR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks3[3]},IEZU5TTqB:{Mb2SBziNG:resolvedLinks3[2],variant:\"FDJ1c0bfK\"},OxA4DRxJE:{Mb2SBziNG:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v4\",activeLocale)??\"Sign up\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"nwq1g55pR\",layoutId:\"nwq1g55pR\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks3[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",style:{width:\"100%\"},variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7cqbj\",\"data-framer-name\":\"6-Item Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96ir9c\",\"data-framer-name\":\"Col\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtqw6s\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+30+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DpnCGvyxnf69SUa9yCUQv0L8vMw.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DpnCGvyxnf69SUa9yCUQv0L8vMw.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DpnCGvyxnf69SUa9yCUQv0L8vMw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+30+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DpnCGvyxnf69SUa9yCUQv0L8vMw.svg\"},className:\"framer-vcs8sx\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Guaranteed response within 15 min, 24/7\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Guaranteed response within 15 min, 24/7\"})}),className:\"framer-1oyxhg2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hbr9e\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+30+0+277.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/GwlipFrfFzJv9bmGugZkzJOvW0.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/GwlipFrfFzJv9bmGugZkzJOvW0.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/GwlipFrfFzJv9bmGugZkzJOvW0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+30+0+277.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/GwlipFrfFzJv9bmGugZkzJOvW0.svg\"},className:\"framer-pqk54v\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:\"100% follow-up after each visit\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:\"100% follow-up after each visit\"})}),className:\"framer-nx3vii\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mtu6h2\",\"data-framer-name\":\"Col\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14qsqur\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+0+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oKXj8b0oP9KeiwIh6Vw48P2XhwY.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oKXj8b0oP9KeiwIh6Vw48P2XhwY.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oKXj8b0oP9KeiwIh6Vw48P2XhwY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+0+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/oKXj8b0oP9KeiwIh6Vw48P2XhwY.svg\"},className:\"framer-bktwkr\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlimited visits for all of your children\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Unlimited visits for all of your children\"})}),className:\"framer-1qegxct\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12z51ky\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+0+0+287.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DqOQ64HNFkiqNRudW0kWxKhNIbE.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DqOQ64HNFkiqNRudW0kWxKhNIbE.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DqOQ64HNFkiqNRudW0kWxKhNIbE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+0+0+287.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/DqOQ64HNFkiqNRudW0kWxKhNIbE.svg\"},className:\"framer-y89exm\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Access to unlimited \",/*#__PURE__*/_jsx(\"br\",{}),\"specialist visits\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Access to unlimited \",/*#__PURE__*/_jsx(\"br\",{}),\"specialist visits\"]})}),className:\"framer-1yglh5j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ficje\",\"data-framer-name\":\"Col\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qeyur5\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+25+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/72EGi8ZOiEUA2sR8SkpG692teKQ.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/72EGi8ZOiEUA2sR8SkpG692teKQ.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/72EGi8ZOiEUA2sR8SkpG692teKQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+25+0+0+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/72EGi8ZOiEUA2sR8SkpG692teKQ.svg\"},className:\"framer-659xq1\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:\" Prescriptions \\u2028\\u2028& Excuse notes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:\" Prescriptions \\u2028\\u2028& Excuse notes\"})}),className:\"framer-34wyol\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sqduit\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+628.5+25+0+237.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/f7Ac2OmD8WImASPANit8avZv2c.svg\"}},IEZU5TTqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/f7Ac2OmD8WImASPANit8avZv2c.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/f7Ac2OmD8WImASPANit8avZv2c.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3015.5+0+125+0+0+652.5+25+0+237.5+0+0),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/f7Ac2OmD8WImASPANit8avZv2c.svg\"},className:\"framer-1wvy3d3\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-2m2a7b\",\"data-styles-preset\":\"L4hSYwTpw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Serving families in \",/*#__PURE__*/_jsx(\"br\",{}),\"Spanish and English\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ph233o\",\"data-styles-preset\":\"nZ57VjhJN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Serving families in \",/*#__PURE__*/_jsx(\"br\",{}),\"Spanish and English\"]})}),className:\"framer-7vu1at\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1PDtmhuZSBCdWNo\",\"--framer-font-family\":'\"S\\xf6hne Buch\", \"S\\xf6hne Buch Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"165%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(23, 21, 21, 0.55)\"},children:\"*Covered by some Medicaid Plans\u2014check your benefits for details. This message is for informational purposes only and does not imply endorsement by Texas Health & Human Services.\"})}),fonts:[\"CUSTOM;S\\xf6hne Buch\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(23, 21, 21, 0.55)\"},children:\"*Covered by some Medicaid Plans\u2014check your benefits for details. This message is for informational purposes only and does not imply endorsement by Texas Health & Human Services.\"})}),className:\"framer-1g66xtc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1a80lf9\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u0772i\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqwkj0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-to3jss\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ztnofe\",\"data-framer-name\":\"Heading Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our team of experts are here to help\"})}),className:\"framer-kpr5f1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",style:{\"--framer-text-alignment\":\"left\"},children:\"Membership includes unlimited access to pediatricians, as well as nutrition, lactation, sleep, behavior, \\xa0and other specialists.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-a4x95g\",\"data-styles-preset\":\"tlvNP_KsT\",style:{\"--framer-text-alignment\":\"left\"},children:\"Membership includes unlimited access to pediatricians, as well as nutrition, lactation, sleep, behavior, \\xa0and other specialists.\"})}),className:\"framer-ikw0c1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kM5MBi5SA\"},implicitPathVariables:undefined},{href:{webPageId:\"kM5MBi5SA\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+4584+0+100+0+0+0+0+180.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+4608+0+100+0+0+0+0+180.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bta1r0-container hidden-1lje5o3 hidden-1cw6edp\",nodeId:\"grgQhld8d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v64\",activeLocale)??\"Meet our whole team\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"grgQhld8d\",layoutId:\"grgQhld8d\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks4[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m042mq\",\"data-framer-name\":\"Bottom\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+4584+0+100+0+0+308.5+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px, 1px)`,y:(componentViewport?.y||0)+0+0+0+4608+0+100+0+0+308.5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvyncq-container hidden-1lje5o3 hidden-1cw6edp\",nodeId:\"tWovnROjZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExpertsSlider,{height:\"100%\",id:\"tWovnROjZ\",layoutId:\"tWovnROjZ\",style:{width:\"100%\"},variant:\"tCDBOerGj\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sinjon hidden-72rtr7 hidden-1fd6rc6\",\"data-framer-name\":\"Experts Grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11nq085\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo8w4m\",\"data-framer-name\":\"Ali\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1arnhwa\",id:\"1arnhwa\",onTap:onTap3bnx0g({overlay}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OxA4DRxJE:{animate:{opacity:1},exit:{opacity:0},transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-soj05m\"),\"data-framer-portal-id\":\"1arnhwa\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"ocDMarXjp\")}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2},OxA4DRxJE:{exit:undefined}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-bxn0lb\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"1arnhwa\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10rynas\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xvss90\",\"data-framer-name\":\"Ali\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yzrka3\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wro8vf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/7O7neVx0NnW84hDh0idXn6PBy4A.webp\"},className:\"framer-181utxr\",\"data-framer-name\":\"COMP avatar container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvi2g9\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Dr. Ali Alhassani\"})}),className:\"framer-16fumo0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Lead Pediatrician\"})}),className:\"framer-hs0w8o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17pb0w6\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Dr. Alhassani has an M.D. from Harvard Medical School and completed Pediatrics residency at Boston Children's Hospital and Boston Medical Center. He is certified by the American Board of Pediatrics and is a fellow of the American Academy of Pediatrics (F.A.A.P). He enjoys hiking and cutting a rug with his wife and two young daughters.\"})}),className:\"framer-1x3rp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17wths7\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uqo4zq\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})})]}),getContainer())})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/7O7neVx0NnW84hDh0idXn6PBy4A.webp\"},className:\"framer-bon7zn\",\"data-framer-name\":\"COMP avatar container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1emwhmd\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-yz4v0t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-7j6de3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kueet2\",\"data-framer-name\":\"Jennifer\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uff5hp\",id:\"uff5hp\",onTap:onTap3bnx0g({overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OxA4DRxJE:{animate:{opacity:1},exit:{opacity:0},transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}}},children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-nbsueu\"),\"data-framer-portal-id\":\"uff5hp\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"JuTtgakqq\")}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1bxnucf\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"uff5hp\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2g8g3\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rx6sm7\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-upwzyd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/AhCQU9LACyj7g5UXtVYOrCw49Fo.webp\"},className:\"framer-1p4oeuu\",\"data-framer-name\":\"COMP avatar container\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13pdtc2\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v70\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Jennifer Gillette, MA\"})}),className:\"framer-wmnz29\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Development Specialist\"})}),className:\"framer-d2ghp3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t2o5ph\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Jennifer is a child development/behavior and parenting specialist with more than 25 years of experience guiding parents/caregivers of babies and young children in a variety of settings in the Boston area such as pediatrics, early intervention and telehealth. She is the founding director of The Loved Child (TLC), a consortium of parenting professionals dedicated to delivering individual and group services for families from expectancy through adolescence. Jennifer is a proud parent of three college-age children and enjoys spending time in nature with her husband and two Australian Shepherds.\"})}),className:\"framer-6tpj79\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p10ysr\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay1}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lhdiae\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})]}),getContainer())})})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/AhCQU9LACyj7g5UXtVYOrCw49Fo.webp\"},className:\"framer-vktyud\",\"data-framer-name\":\"COMP tiny avatar\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aa2yp7\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jennifer Gillette, MA\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Jennifer Gillette, MA\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-31pu7k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Development Specialist\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Development Specialist\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-15vtbni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185fu5z\",\"data-framer-name\":\"Mark\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/dLqWoJUtbddMF03M7T5aWtg4.webp\"},className:\"framer-txlcpc\",\"data-framer-name\":\"COMP avatar container-2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1889ywu\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v75\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Mark Shen\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v75\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Mark Shen\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-1w8wm0r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-s2byky\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-liufqn\",id:\"liufqn\",onTap:onTap3bnx0g({overlay:overlay2}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-14lwjln\"),\"data-framer-portal-id\":\"liufqn\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay2.hide(),transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}},\"P0PSJdNfN\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2},OxA4DRxJE:{exit:undefined}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1wynp7n\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"liufqn\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gfoocm\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q95k4f\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vstfx3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/dLqWoJUtbddMF03M7T5aWtg4.webp\"},className:\"framer-d64g5d\",\"data-framer-name\":\"COMP avatar container-2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1di833n\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v76\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Dr. Mark Shen\"})}),className:\"framer-d5lg9f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Lead Pediatrician\"})}),className:\"framer-1sfgdam\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tvvnme\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v77\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Dr. Mark Shen received his undergraduate degree from Stanford University and completed his medical training and residency at the University of Texas Southwestern Medical Center. He has held a variety of regional and national leadership positions in pediatrics and enjoys helping parents navigate the many surprises of childhood. He and his wife live in Austin, Texas with their two daughters.\"})}),className:\"framer-b51kyq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4nh0rr\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay2}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16yq6s\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})]}),getContainer())})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uk1li4\",\"data-framer-name\":\"Amanda\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/TTwvIZ9HF4O1U2wo8DnjzBIFgBM.webp\"},className:\"framer-il4daj\",\"data-framer-name\":\"COMP avatar container-3\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dot8hm\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Amanda Harding\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Amanda Harding\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-3piskb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sleep Specialist\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sleep Specialist\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-9pt28l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zthm7s\",id:\"zthm7s\",onTap:onTap3bnx0g({overlay:overlay3}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-1p34itf\"),\"data-framer-portal-id\":\"zthm7s\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay3.hide(),transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}},\"zDay6zMhw\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-zktjl1\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"zthm7s\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gw0txg\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j0m7l6\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a5efqa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/TTwvIZ9HF4O1U2wo8DnjzBIFgBM.webp\"},className:\"framer-ct5vad\",\"data-framer-name\":\"COMP avatar container-3\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-udn2ar\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Dr. Amanda Harding\"})}),className:\"framer-1z0fcov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Sleep Specialist\"})}),className:\"framer-197702r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ssrztz\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Dr. Harding earned her M.D from the Ross University School of Medicine and completed her pediatric residency at St. John Hospital and Medical Center in Detroit, MI. She is board certified in Pediatrics and is especially interested in asthma, allergy management, sleep training, and childhood obesity. In her spare time, she enjoys watching her daughters play competitive travel Fastpitch softball, running and playing hockey.\"})}),className:\"framer-nscmgh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzl7j5\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14ww0q0\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})]}),getContainer())})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-apxpey\",\"data-framer-name\":\"Lorraine\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/1mauCfXLOtsDFnAIXVy2axWBmE.webp\"},className:\"framer-1np5cnv\",\"data-framer-name\":\"COMP avatar container-4\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hk687q\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Lorraine Beraho\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Lorraine Beraho\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-1clnuwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-1479fkp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2pmz3q\",id:\"2pmz3q\",onTap:onTap3bnx0g({overlay:overlay4}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-1m90buw\"),\"data-framer-portal-id\":\"2pmz3q\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay4.hide(),transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}},\"rTaNwdFfY\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-p1m4fg\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"2pmz3q\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifao8c\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-komt3g\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymlq87\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/1mauCfXLOtsDFnAIXVy2axWBmE.webp\"},className:\"framer-1j4udpn\",\"data-framer-name\":\"COMP avatar container-4\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmvpfn\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Dr. Lorraine Beraho\"})}),className:\"framer-1xvrfyk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Lead Pediatrician\"})}),className:\"framer-1xdro6k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pzia75\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Dr. Lorraine Beraho is a board certified Pediatrician and Public Health Expert practicing in the DC area. Originally from Uganda and Rwanda, Dr. Beraho grew up in South Carolina and obtained her medical degree from the University of Maryland School of Medicine and her Master of Public Health from The Johns Hopkins Bloomberg School of Public Health. Dr. Beraho is passionate about partnering with parents to support the health of their children. She enjoys traveling, spending time with loved ones, and contemporary dance classes.\"})}),className:\"framer-ldub3k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k0mv8d\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay4}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pj8ppk\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})]}),getContainer())})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c6j6ja\",\"data-framer-name\":\"Anisha\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/k2bYAihi4gTdphHu0De0r2gi1vY.webp\"},className:\"framer-1ie4gty\",\"data-framer-name\":\"COMP avatar container-5\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9vyh7\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Anisha Khaitan\"})})},OxA4DRxJE:{children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Anisha Khaitan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dr. Ali Alhassani\"})}),className:\"framer-1c6iwzp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lead Pediatrician\"})}),className:\"framer-1d7o5qf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xmhkkg\",id:\"xmhkkg\",onTap:onTap3bnx0g({overlay:overlay5}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-hci79d\"),\"data-framer-portal-id\":\"xmhkkg\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay5.hide(),transition:{damping:50,delay:0,mass:1,stiffness:500,type:\"spring\"}},\"AAr1XPo1y\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-rglnca\"),\"data-framer-name\":\"Card\",\"data-framer-portal-id\":\"xmhkkg\",exit:animation,initial:animation2,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hiut35\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-773idw\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mb3mgy\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:246,intrinsicWidth:246,pixelHeight:492,pixelWidth:492,src:\"https://framerusercontent.com/images/k2bYAihi4gTdphHu0De0r2gi1vY.webp\"},className:\"framer-xjhlv2\",\"data-framer-name\":\"COMP avatar container-5\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v29jc2\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1mcwww2\",\"data-styles-preset\":\"JglBgUZvz\",children:\"Dr. Anisha Khaitan\"})}),className:\"framer-13c4fgo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hddxi5\",\"data-styles-preset\":\"zaqwiO1HA\",children:\"Lead Pediatrician\"})}),className:\"framer-1xt9g6s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14pdsxf\",\"data-framer-name\":\"Bio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v88\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17tmkx9\",\"data-styles-preset\":\"koz4ds5z3\",children:\"Dr. Khaitan has an M.D. from the Johns Hopkins School of Medicine, completed Pediatrics residency at the Children's Hospital of Philadelphia (CHOP), and her Pediatric Emergency Medicine fellowship at Columbia University Medical Center. She is certified by the American Board of Pediatrics. She enjoys jogging, yoga, and spending time with her friends and family.\"})}),className:\"framer-7i0t5v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sy3mkh\",\"data-framer-name\":\"Close\",onTap:onTap1wnntms({overlay:overlay5}),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-126w2i3\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 8.135 L 24 23.808 M 8 23.481 L 24 7.808\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12499029932,withExternalLayout:true})})]})})})]}),getContainer())})})})})})]})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kM5MBi5SA\"},implicitPathVariables:undefined},{href:{webPageId:\"kM5MBi5SA\"},implicitPathVariables:undefined},{href:{webPageId:\"kM5MBi5SA\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{height:48,width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px)`},OxA4DRxJE:{height:48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a863bs-container hidden-72rtr7 hidden-1fd6rc6\",nodeId:\"bpn7512dW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{Mb2SBziNG:resolvedLinks5[2],style:{width:\"100%\"}},OxA4DRxJE:{Mb2SBziNG:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v64\",activeLocale)??\"Meet our whole team\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"bpn7512dW\",layoutId:\"bpn7512dW\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks5[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1khak8g\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1c6r4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vr6z4s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zcbtj0\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-92m3y5\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v89\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hjlnr5\",\"data-styles-preset\":\"xC3cBtY94\",style:{\"--framer-text-alignment\":\"center\"},children:\"Don't just take our word for it\u2026\"})}),className:\"framer-83ckyn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+5642.5+0+100+0+0+146},IEZU5TTqB:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px)`,y:undefined},OxA4DRxJE:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:550,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 100px)`,y:(componentViewport?.y||0)+0+0+0+5666.5+0+100+0+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-101qywf-container\",nodeId:\"J5oBRxhMR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{IEZU5TTqB:{variant:\"jo_zUZh4v\"},OxA4DRxJE:{variant:\"VntLFj41A\"}},children:/*#__PURE__*/_jsx(TestimonialCarousel,{height:\"100%\",id:\"J5oBRxhMR\",layoutId:\"J5oBRxhMR\",style:{width:\"100%\"},variant:\"T7RehjVD6\",width:\"100%\"})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bxluqy\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-12o0ghp\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-104n0ca\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r6opiq\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1phc6kh\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v90\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-mbunoq\",\"data-styles-preset\":\"am7rLCc_O\",style:{\"--framer-text-alignment\":\"left\"},children:[\"We reinvented pediatric care to give parents instant answers. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, rgb(1, 141, 255))\"},children:\"24/7.\"})]})}),className:\"framer-up4ssd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined},{href:convertFromEnum(activeLocale?.id,activeLocale),implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{y:(componentViewport?.y||0)+0+0+0+6538.5+0+125+0+0+0+0+130},IEZU5TTqB:{width:`max(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1350px) - 50px, 1px)`,y:undefined},OxA4DRxJE:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+6562.5+0+125+0+0+0+0+130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8gu5u-container\",nodeId:\"uSJDc2ARq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{Mb2SBziNG:resolvedLinks6[3]},IEZU5TTqB:{Mb2SBziNG:resolvedLinks6[2],style:{width:\"100%\"}},OxA4DRxJE:{Mb2SBziNG:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{E6VoQQe6l:getLocalizedValue(\"v91\",activeLocale)??\"Get started today\",height:\"100%\",hIJnpB6TP:\"var(--token-8a2ede56-8ad6-4d49-9f3f-627346b019dd, rgb(242, 166, 18))\",id:\"uSJDc2ARq\",layoutId:\"uSJDc2ARq\",ljDh07ZlY:\"var(--token-956c157c-26aa-46ba-9751-39e5a3c91081, rgb(23, 21, 21))\",Mb2SBziNG:resolvedLinks6[0],qEX9LuFIY:\"var(--token-fda5a353-b9f0-4aab-ba49-e16049d38eb7, rgb(255, 194, 32))\",variant:\"QMJ9Sqqul\",width:\"100%\"})})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fy0KIUpLf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:152,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6538.5+0+125+0+0+0),pixelHeight:304,pixelWidth:190,src:\"https://framerusercontent.com/images/wTWhTXpQgIVal5SmXCpQSKHSYg.svg\"}},OxA4DRxJE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:152,intrinsicWidth:95,pixelHeight:304,pixelWidth:190,src:\"https://framerusercontent.com/images/wTWhTXpQgIVal5SmXCpQSKHSYg.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:152,intrinsicWidth:95,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6562.5+0+125+0+0+0),pixelHeight:304,pixelWidth:190,src:\"https://framerusercontent.com/images/wTWhTXpQgIVal5SmXCpQSKHSYg.svg\"},className:\"framer-13pzytk hidden-1cw6edp\",\"data-framer-name\":\"Graphic\"})})]})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ttWyQ.framer-lux5qc, .framer-ttWyQ .framer-lux5qc { display: block; }\",\".framer-ttWyQ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, #fdfffa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-ttWyQ .framer-bdxal6, .framer-ttWyQ .framer-1emwhmd, .framer-ttWyQ .framer-aa2yp7, .framer-ttWyQ .framer-1889ywu, .framer-ttWyQ .framer-dot8hm, .framer-ttWyQ .framer-1hk687q, .framer-ttWyQ .framer-1c9vyh7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-19bwyvf { align-content: center; align-items: center; background-color: var(--token-cf9558ba-cd9c-4eda-af9a-6b5e924a167b, #f2e2c4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-186du26 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 20px 50px 60px 50px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-16713p1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 50%; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-yx5bba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1x2hazl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-15hqvc1, .framer-ttWyQ .framer-1txcs1h, .framer-ttWyQ .framer-1ijqwyp, .framer-ttWyQ .framer-13q0out, .framer-ttWyQ .framer-1r0hc8o, .framer-ttWyQ .framer-a0zo03, .framer-ttWyQ .framer-16mrmj9, .framer-ttWyQ .framer-1suo1uj, .framer-ttWyQ .framer-nz09hu, .framer-ttWyQ .framer-yh31v2, .framer-ttWyQ .framer-11mvn6p, .framer-ttWyQ .framer-1vc5rku, .framer-ttWyQ .framer-j09pg7, .framer-ttWyQ .framer-1lma7xo, .framer-ttWyQ .framer-qe1w43, .framer-ttWyQ .framer-85yef6, .framer-ttWyQ .framer-1oyxhg2, .framer-ttWyQ .framer-nx3vii, .framer-ttWyQ .framer-1qegxct, .framer-ttWyQ .framer-1yglh5j, .framer-ttWyQ .framer-34wyol, .framer-ttWyQ .framer-7vu1at, .framer-ttWyQ .framer-kpr5f1, .framer-ttWyQ .framer-ikw0c1, .framer-ttWyQ .framer-83ckyn, .framer-ttWyQ .framer-up4ssd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ttWyQ .framer-law9hn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 90%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ttWyQ .framer-1kyb8p7-container, .framer-ttWyQ .framer-i2032f-container, .framer-ttWyQ .framer-bta1r0-container, .framer-ttWyQ .framer-a863bs-container, .framer-ttWyQ .framer-y8gu5u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ttWyQ .framer-assmwj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; min-width: 50%; overflow: visible; padding: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 50%; z-index: 1; }\",\".framer-ttWyQ .framer-1gxl9o7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-11nr88s { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-2ueqcg { aspect-ratio: 0.6059322033898306 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 944px); overflow: visible; position: relative; width: 400px; }\",\".framer-ttWyQ .framer-1hcp2yq { align-content: center; align-items: center; background-color: var(--token-794efd9c-67d4-485c-a851-82f90c75bae0, #f9f2ec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-o148bc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 100%; z-index: 3; }\",\".framer-ttWyQ .framer-1ywxdsc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1wv0n6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1vycv4u, .framer-ttWyQ .framer-1p0i83t, .framer-ttWyQ .framer-fixaac, .framer-ttWyQ .framer-oq7wgy, .framer-ttWyQ .framer-jc4zkx, .framer-ttWyQ .framer-ap6wvh, .framer-ttWyQ .framer-1v7drw2, .framer-ttWyQ .framer-x33qn8, .framer-ttWyQ .framer-wid3h1, .framer-ttWyQ .framer-69ohoj, .framer-ttWyQ .framer-1hzexjs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ttWyQ .framer-1ynh8w4 { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-sbf39n, .framer-ttWyQ .framer-93n0d4, .framer-ttWyQ .framer-1gg5cam { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1wmhgq6, .framer-ttWyQ .framer-1fcm0oy, .framer-ttWyQ .framer-2vxe4r, .framer-ttWyQ .framer-vcs8sx, .framer-ttWyQ .framer-pqk54v, .framer-ttWyQ .framer-bktwkr, .framer-ttWyQ .framer-y89exm, .framer-ttWyQ .framer-659xq1, .framer-ttWyQ .framer-1wvy3d3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 100px; }\",\".framer-ttWyQ .framer-16i9yht-container, .framer-ttWyQ .framer-g3sgqi-container, .framer-ttWyQ .framer-q1mbw8-container, .framer-ttWyQ .framer-1bv263f-container, .framer-ttWyQ .framer-101qywf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-yp5ok1 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8670fec8-1d7c-4269-b2a5-8d8e7b2a1b40, #dbefff) 26.551942567567565%, var(--token-794efd9c-67d4-485c-a851-82f90c75bae0, rgb(249, 242, 236)) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1be2pm3, .framer-ttWyQ .framer-12o0ghp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 125px 50px 100px 50px; position: relative; width: 1px; z-index: 1; }\",\".framer-ttWyQ .framer-1m357r0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-125vcvv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 610px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-19h5l1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 60px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1988qx8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 160px); overflow: visible; position: relative; width: 160px; }\",\".framer-ttWyQ .framer-pm3zc6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-reount { display: grid; flex: none; gap: 50px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-4bkyrr, .framer-ttWyQ .framer-bnbvkw, .framer-ttWyQ .framer-olpu16 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1vu85sx, .framer-ttWyQ .framer-x0ob5p, .framer-ttWyQ .framer-1tzu6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1p9iq1x, .framer-ttWyQ .framer-1eolt5t, .framer-ttWyQ .framer-1vumx37 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, #018dff); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 46px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 46px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ttWyQ .framer-1vs5zhi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 70%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ttWyQ .framer-2h97fl, .framer-ttWyQ .framer-6uyded { align-self: start; background-color: var(--token-6b636ab4-7f94-4a74-a5df-49d1a3e42d48, #ede7e1); flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-zlkbrr, .framer-ttWyQ .framer-1bxluqy { align-content: center; align-items: center; background-color: var(--token-794efd9c-67d4-485c-a851-82f90c75bae0, #f9f2ec); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-766epb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 125px 50px 125px 50px; position: relative; width: 1px; z-index: 1; }\",\".framer-ttWyQ .framer-1imsdlp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1b4fqm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 60%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-13hgkch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-19zz3as, .framer-ttWyQ .framer-kgjpc1, .framer-ttWyQ .framer-wqe1sm { align-content: center; align-items: center; background-color: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ttWyQ .framer-1qlsxi4 { align-content: center; align-items: center; background-color: var(--token-bca3c454-ccbb-4c0d-8f37-21f57e4226fe, #018dff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 14px 4px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ttWyQ .framer-1w49vbs, .framer-ttWyQ .framer-hqz0n0, .framer-ttWyQ .framer-1kew3fm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1jmlpy7, .framer-ttWyQ .framer-1wk9nlq, .framer-ttWyQ .framer-1xe0n2b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ttWyQ .framer-urqc7p, .framer-ttWyQ .framer-bzcnm9, .framer-ttWyQ .framer-1280lm2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: -40px; position: absolute; top: 0px; white-space: pre; width: auto; z-index: 1; }\",\".framer-ttWyQ .framer-1d9vr93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 38px; min-width: 150px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ttWyQ .framer-16r8jp { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 32px; min-width: 156px; overflow: hidden; padding: 4px 14px 4px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ttWyQ .framer-1r7cqbj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-96ir9c, .framer-ttWyQ .framer-mtu6h2, .framer-ttWyQ .framer-7ficje { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-1wtqw6s, .framer-ttWyQ .framer-5hbr9e, .framer-ttWyQ .framer-14qsqur, .framer-ttWyQ .framer-12z51ky, .framer-ttWyQ .framer-1qeyur5, .framer-ttWyQ .framer-sqduit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1g66xtc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 630px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ttWyQ .framer-1a80lf9 { align-content: center; align-items: center; background-color: var(--token-3f5da9af-c600-40e3-adc4-5a765c132259, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1u0772i, .framer-ttWyQ .framer-1g1c6r4 { align-content: center; align-items: center; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1350px; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1px; z-index: 3; }\",\".framer-ttWyQ .framer-oqwkj0, .framer-ttWyQ .framer-vr6z4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-to3jss { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-ztnofe { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 50%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-m042mq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1hvyncq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-1sinjon { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-11nq085 { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ttWyQ .framer-fo8w4m, .framer-ttWyQ .framer-1kueet2, .framer-ttWyQ .framer-185fu5z, .framer-ttWyQ .framer-1uk1li4, .framer-ttWyQ .framer-apxpey, .framer-ttWyQ .framer-c6j6ja { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ttWyQ .framer-1arnhwa { -webkit-user-select: none; cursor: pointer; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.19305019305021% - 100% / 2); user-select: none; width: 100%; z-index: 2; }\",\".framer-ttWyQ.framer-soj05m, .framer-ttWyQ.framer-nbsueu, .framer-ttWyQ.framer-14lwjln, .framer-ttWyQ.framer-1p34itf, .framer-ttWyQ.framer-1m90buw, .framer-ttWyQ.framer-hci79d { background-color: rgba(0, 0, 0, 0.5); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-ttWyQ.framer-bxn0lb, .framer-ttWyQ.framer-1bxnucf, .framer-ttWyQ.framer-1wynp7n, .framer-ttWyQ.framer-zktjl1, .framer-ttWyQ.framer-p1m4fg, .framer-ttWyQ.framer-rglnca { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 30px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 500px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-ttWyQ .framer-10rynas, .framer-ttWyQ .framer-w2g8g3, .framer-ttWyQ .framer-1gfoocm, .framer-ttWyQ .framer-1gw0txg, .framer-ttWyQ .framer-1ifao8c, .framer-ttWyQ .framer-hiut35 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ttWyQ .framer-1xvss90 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ttWyQ .framer-yzrka3, .framer-ttWyQ .framer-rx6sm7, .framer-ttWyQ .framer-1q95k4f, .framer-ttWyQ .framer-1j0m7l6, .framer-ttWyQ .framer-komt3g, .framer-ttWyQ .framer-773idw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1wro8vf, .framer-ttWyQ .framer-upwzyd, .framer-ttWyQ .framer-1vstfx3, .framer-ttWyQ .framer-1a5efqa, .framer-ttWyQ .framer-ymlq87, .framer-ttWyQ .framer-1mb3mgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-181utxr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 60px; }\",\".framer-ttWyQ .framer-mvi2g9, .framer-ttWyQ .framer-13pdtc2, .framer-ttWyQ .framer-1di833n, .framer-ttWyQ .framer-udn2ar, .framer-ttWyQ .framer-1hmvpfn, .framer-ttWyQ .framer-1v29jc2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-16fumo0, .framer-ttWyQ .framer-hs0w8o, .framer-ttWyQ .framer-yz4v0t, .framer-ttWyQ .framer-7j6de3, .framer-ttWyQ .framer-wmnz29, .framer-ttWyQ .framer-d2ghp3, .framer-ttWyQ .framer-31pu7k, .framer-ttWyQ .framer-15vtbni, .framer-ttWyQ .framer-1w8wm0r, .framer-ttWyQ .framer-s2byky, .framer-ttWyQ .framer-d5lg9f, .framer-ttWyQ .framer-1sfgdam, .framer-ttWyQ .framer-3piskb, .framer-ttWyQ .framer-9pt28l, .framer-ttWyQ .framer-1z0fcov, .framer-ttWyQ .framer-197702r, .framer-ttWyQ .framer-1clnuwr, .framer-ttWyQ .framer-1479fkp, .framer-ttWyQ .framer-1xvrfyk, .framer-ttWyQ .framer-1xdro6k, .framer-ttWyQ .framer-1c6iwzp, .framer-ttWyQ .framer-1d7o5qf, .framer-ttWyQ .framer-13c4fgo, .framer-ttWyQ .framer-1xt9g6s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ttWyQ .framer-17pb0w6, .framer-ttWyQ .framer-1t2o5ph, .framer-ttWyQ .framer-tvvnme, .framer-ttWyQ .framer-1ssrztz, .framer-ttWyQ .framer-1pzia75, .framer-ttWyQ .framer-14pdsxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1x3rp3, .framer-ttWyQ .framer-6tpj79, .framer-ttWyQ .framer-b51kyq, .framer-ttWyQ .framer-nscmgh, .framer-ttWyQ .framer-ldub3k, .framer-ttWyQ .framer-7i0t5v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ttWyQ .framer-17wths7, .framer-ttWyQ .framer-1p10ysr, .framer-ttWyQ .framer-4nh0rr, .framer-ttWyQ .framer-1vzl7j5, .framer-ttWyQ .framer-k0mv8d, .framer-ttWyQ .framer-1sy3mkh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 6px; width: min-content; z-index: 1; }\",\".framer-ttWyQ .framer-uqo4zq, .framer-ttWyQ .framer-1lhdiae, .framer-ttWyQ .framer-16yq6s, .framer-ttWyQ .framer-14ww0q0, .framer-ttWyQ .framer-1pj8ppk, .framer-ttWyQ .framer-126w2i3 { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-ttWyQ .framer-bon7zn, .framer-ttWyQ .framer-vktyud, .framer-ttWyQ .framer-txlcpc, .framer-ttWyQ .framer-il4daj, .framer-ttWyQ .framer-1np5cnv, .framer-ttWyQ .framer-1ie4gty { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 246px); overflow: visible; position: relative; width: 200px; }\",\".framer-ttWyQ .framer-uff5hp, .framer-ttWyQ .framer-liufqn, .framer-ttWyQ .framer-zthm7s, .framer-ttWyQ .framer-2pmz3q, .framer-ttWyQ .framer-xmhkkg { -webkit-user-select: none; cursor: pointer; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.80694980694983% - 100% / 2); user-select: none; width: 100%; z-index: 2; }\",\".framer-ttWyQ .framer-1p4oeuu, .framer-ttWyQ .framer-d64g5d, .framer-ttWyQ .framer-ct5vad, .framer-ttWyQ .framer-1j4udpn, .framer-ttWyQ .framer-xjhlv2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 60px; }\",\".framer-ttWyQ .framer-1khak8g { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8670fec8-1d7c-4269-b2a5-8d8e7b2a1b40, #dbefff) 0%, var(--token-794efd9c-67d4-485c-a851-82f90c75bae0, rgb(249, 242, 236)) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-zcbtj0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-92m3y5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-104n0ca { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ttWyQ .framer-1r6opiq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-1phc6kh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 68%; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ttWyQ .framer-13pzytk { aspect-ratio: 0.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 188px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 800px) and (max-width: 1199px) { .framer-ttWyQ.framer-72rtr7 { width: 800px; } .framer-ttWyQ .framer-19bwyvf { flex-direction: column; min-height: 55vh; order: 0; } .framer-ttWyQ .framer-186du26, .framer-ttWyQ .framer-92m3y5 { flex: none; width: 100%; } .framer-ttWyQ .framer-16713p1 { max-width: 90%; order: 0; } .framer-ttWyQ .framer-1x2hazl { align-content: flex-start; align-items: flex-start; } .framer-ttWyQ .framer-15hqvc1 { max-width: 500px; order: 0; } .framer-ttWyQ .framer-law9hn { max-width: 60%; } .framer-ttWyQ .framer-assmwj { bottom: 0px; height: min-content; justify-content: flex-end; left: 50%; padding: 0px 50px 0px 50px; right: unset; top: unset; transform: translateX(-50%); width: 800px; } .framer-ttWyQ .framer-2ueqcg { height: var(--framer-aspect-ratio-supported, 390px); width: 236px; } .framer-ttWyQ .framer-1hcp2yq { order: 1; } .framer-ttWyQ .framer-1ynh8w4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; } .framer-ttWyQ .framer-sbf39n, .framer-ttWyQ .framer-93n0d4, .framer-ttWyQ .framer-1gg5cam { align-self: unset; height: min-content; } .framer-ttWyQ .framer-yp5ok1 { order: 2; } .framer-ttWyQ .framer-reount { gap: 25px; } .framer-ttWyQ .framer-1vs5zhi { max-width: unset; } .framer-ttWyQ .framer-zlkbrr { order: 3; } .framer-ttWyQ .framer-766epb { padding: 100px 50px 100px 50px; } .framer-ttWyQ .framer-1b4fqm8 { max-width: 70%; } .framer-ttWyQ .framer-19zz3as, .framer-ttWyQ .framer-kgjpc1, .framer-ttWyQ .framer-wqe1sm { padding: 30px 10px 30px 10px; } .framer-ttWyQ .framer-urqc7p, .framer-ttWyQ .framer-bzcnm9, .framer-ttWyQ .framer-1280lm2 { left: -30px; } .framer-ttWyQ .framer-1r7cqbj { gap: 70px; } .framer-ttWyQ .framer-1a80lf9 { order: 4; } .framer-ttWyQ .framer-to3jss, .framer-ttWyQ .framer-zcbtj0 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-ttWyQ .framer-ztnofe { flex: none; max-width: unset; width: 100%; } .framer-ttWyQ .framer-ikw0c1 { max-width: 80%; } .framer-ttWyQ .framer-11nq085 { grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); justify-content: start; } .framer-ttWyQ.framer-bxn0lb { top: 50%; } .framer-ttWyQ .framer-bon7zn, .framer-ttWyQ .framer-vktyud, .framer-ttWyQ .framer-txlcpc, .framer-ttWyQ .framer-il4daj, .framer-ttWyQ .framer-1np5cnv, .framer-ttWyQ .framer-1ie4gty { height: var(--framer-aspect-ratio-supported, 200px); } .framer-ttWyQ .framer-1khak8g { order: 5; } .framer-ttWyQ .framer-1bxluqy { order: 6; } .framer-ttWyQ .framer-12o0ghp { padding: 100px 50px 230px 50px; } .framer-ttWyQ .framer-1r6opiq { overflow: visible; } .framer-ttWyQ .framer-1phc6kh { max-width: unset; overflow: visible; } .framer-ttWyQ .framer-13pzytk { height: var(--framer-aspect-ratio-supported, 250px); position: absolute; right: 0px; top: 200px; width: 156px; z-index: 1; }}\",\"@media (max-width: 799px) { .framer-ttWyQ.framer-72rtr7 { width: 390px; } .framer-ttWyQ .framer-19bwyvf { flex-direction: column; gap: 0px; } .framer-ttWyQ .framer-186du26 { flex: none; order: 0; padding: 50px 25px 50px 25px; width: 100%; } .framer-ttWyQ .framer-16713p1 { gap: 30px; max-width: 100%; } .framer-ttWyQ .framer-law9hn, .framer-ttWyQ .framer-1vs5zhi, .framer-ttWyQ .framer-1b4fqm8 { max-width: unset; } .framer-ttWyQ .framer-assmwj { height: min-content; order: 1; padding: 0px 25px 0px 25px; position: relative; right: unset; top: unset; width: 100%; } .framer-ttWyQ .framer-2ueqcg { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 561px); width: 1px; } .framer-ttWyQ .framer-1hcp2yq { padding: 0px; } .framer-ttWyQ .framer-o148bc { max-width: unset; padding: 60px 25px 60px 25px; z-index: 2; } .framer-ttWyQ .framer-1ywxdsc { gap: 50px; max-width: unset; } .framer-ttWyQ .framer-1vycv4u, .framer-ttWyQ .framer-1v7drw2, .framer-ttWyQ .framer-wid3h1, .framer-ttWyQ .framer-1hzexjs, .framer-ttWyQ .framer-yz4v0t, .framer-ttWyQ .framer-7j6de3, .framer-ttWyQ .framer-31pu7k, .framer-ttWyQ .framer-15vtbni, .framer-ttWyQ .framer-1w8wm0r, .framer-ttWyQ .framer-s2byky, .framer-ttWyQ .framer-3piskb, .framer-ttWyQ .framer-9pt28l, .framer-ttWyQ .framer-1clnuwr, .framer-ttWyQ .framer-1479fkp, .framer-ttWyQ .framer-1c6iwzp, .framer-ttWyQ .framer-1d7o5qf { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-ttWyQ .framer-i2032f-container { height: 60px; width: 100%; } .framer-ttWyQ .framer-1ynh8w4 { gap: 45px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ttWyQ .framer-1be2pm3 { padding: 100px 25px 20px 25px; } .framer-ttWyQ .framer-1m357r0, .framer-ttWyQ .framer-oqwkj0, .framer-ttWyQ .framer-vr6z4s, .framer-ttWyQ .framer-104n0ca { gap: 50px; } .framer-ttWyQ .framer-pm3zc6 { flex-direction: row; gap: 10px; } .framer-ttWyQ .framer-reount { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; order: 1; padding: 6px 0px 0px 0px; width: 1px; } .framer-ttWyQ .framer-4bkyrr { align-content: flex-start; align-items: flex-start; align-self: unset; gap: 8px; height: min-content; order: 0; } .framer-ttWyQ .framer-1vu85sx, .framer-ttWyQ .framer-x0ob5p { flex-direction: row; gap: 15px; } .framer-ttWyQ .framer-1p9iq1x, .framer-ttWyQ .framer-1eolt5t, .framer-ttWyQ .framer-1vumx37 { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; } .framer-ttWyQ .framer-yh31v2, .framer-ttWyQ .framer-1vc5rku, .framer-ttWyQ .framer-1lma7xo, .framer-ttWyQ .framer-1wtqw6s, .framer-ttWyQ .framer-5hbr9e, .framer-ttWyQ .framer-14qsqur, .framer-ttWyQ .framer-12z51ky, .framer-ttWyQ .framer-1qeyur5, .framer-ttWyQ .framer-sqduit { flex: 1 0 0px; width: 1px; } .framer-ttWyQ .framer-bnbvkw { align-content: flex-start; align-items: flex-start; align-self: unset; gap: 8px; height: min-content; order: 2; } .framer-ttWyQ .framer-olpu16 { align-content: flex-start; align-items: flex-start; align-self: unset; gap: 8px; height: min-content; order: 4; } .framer-ttWyQ .framer-1tzu6s { flex-direction: row; gap: 14px; } .framer-ttWyQ .framer-2h97fl { align-self: unset; height: 1px; order: 3; } .framer-ttWyQ .framer-6uyded { align-self: unset; height: 1px; order: 1; } .framer-ttWyQ .framer-766epb { max-width: unset; padding: 50px 25px 60px 25px; } .framer-ttWyQ .framer-1imsdlp { gap: 40px; } .framer-ttWyQ .framer-13hgkch { flex-direction: column; gap: 10px; } .framer-ttWyQ .framer-19zz3as, .framer-ttWyQ .framer-kgjpc1, .framer-ttWyQ .framer-wqe1sm { flex: none; gap: 20px; padding: 15px; width: 100%; } .framer-ttWyQ .framer-1qlsxi4 { height: 22px; } .framer-ttWyQ .framer-urqc7p, .framer-ttWyQ .framer-bzcnm9, .framer-ttWyQ .framer-1280lm2 { left: -20px; top: -2px; } .framer-ttWyQ .framer-1d9vr93, .framer-ttWyQ .framer-16r8jp { height: 22px; min-height: unset; } .framer-ttWyQ .framer-1r7cqbj { flex-direction: column; gap: 40px; } .framer-ttWyQ .framer-96ir9c, .framer-ttWyQ .framer-mtu6h2, .framer-ttWyQ .framer-7ficje { flex: none; flex-direction: row; gap: 20px; width: 100%; } .framer-ttWyQ .framer-vcs8sx, .framer-ttWyQ .framer-pqk54v, .framer-ttWyQ .framer-bktwkr, .framer-ttWyQ .framer-y89exm, .framer-ttWyQ .framer-659xq1, .framer-ttWyQ .framer-1wvy3d3 { height: var(--framer-aspect-ratio-supported, 80px); width: 80px; } .framer-ttWyQ .framer-1u0772i { max-width: unset; padding: 50px 25px 50px 25px; z-index: 2; } .framer-ttWyQ .framer-to3jss, .framer-ttWyQ .framer-zcbtj0 { flex-direction: column; } .framer-ttWyQ .framer-ztnofe { flex: none; max-width: unset; width: 100%; } .framer-ttWyQ .framer-11nq085 { gap: 20px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); } .framer-ttWyQ.framer-bxn0lb, .framer-ttWyQ.framer-1bxnucf, .framer-ttWyQ.framer-1wynp7n, .framer-ttWyQ.framer-zktjl1, .framer-ttWyQ.framer-p1m4fg, .framer-ttWyQ.framer-rglnca { left: 20px; padding: 20px; right: 20px; top: 50%; transform: translateY(-50%); width: unset; } .framer-ttWyQ .framer-bon7zn, .framer-ttWyQ .framer-vktyud, .framer-ttWyQ .framer-txlcpc, .framer-ttWyQ .framer-il4daj, .framer-ttWyQ .framer-1np5cnv, .framer-ttWyQ .framer-1ie4gty { height: var(--framer-aspect-ratio-supported, 150px); width: 150px; } .framer-ttWyQ .framer-1emwhmd, .framer-ttWyQ .framer-aa2yp7, .framer-ttWyQ .framer-1889ywu, .framer-ttWyQ .framer-dot8hm, .framer-ttWyQ .framer-1hk687q, .framer-ttWyQ .framer-1c9vyh7 { gap: 2px; } .framer-ttWyQ .framer-1p4oeuu { order: 0; } .framer-ttWyQ .framer-13pdtc2 { order: 1; } .framer-ttWyQ .framer-a863bs-container, .framer-ttWyQ .framer-y8gu5u-container { width: 100%; } .framer-ttWyQ .framer-1g1c6r4 { max-width: unset; padding: 40px 25px 150px 25px; z-index: 2; } .framer-ttWyQ .framer-92m3y5 { flex: none; width: 100%; } .framer-ttWyQ .framer-12o0ghp { padding: 50px 25px 50px 25px; } .framer-ttWyQ .framer-1r6opiq { flex-direction: column; gap: 50px; justify-content: flex-start; } .framer-ttWyQ .framer-1phc6kh { flex: none; max-width: unset; order: 1; width: 100%; }}\",\"@media (min-width: 1500px) { .framer-ttWyQ.framer-72rtr7 { width: 1500px; } .framer-ttWyQ .framer-1x2hazl { align-content: flex-start; align-items: flex-start; } .framer-ttWyQ .framer-19zz3as { align-self: stretch; height: auto; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7039\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OxA4DRxJE\":{\"layout\":[\"fixed\",\"auto\"]},\"IEZU5TTqB\":{\"layout\":[\"fixed\",\"auto\"]},\"fy0KIUpLf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ttWyQ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7039,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Family Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/WHlNy8h50F9JUfvRIWqcXMnUEw.woff2\"},{family:\"S\\xf6hne Buch\",source:\"custom\",url:\"https://framerusercontent.com/assets/8vGOcq2NIp30AiSoJd3vKyWXE4.woff2\"}]},...ButtonFonts,...ConditionsChangerFonts,...ImageTickerFonts,...ExpertsSliderFonts,...TestimonialCarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OxA4DRxJE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IEZU5TTqB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fy0KIUpLf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7039\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "TMwqSpcwo_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", "v24", "v25", "v26", "v27", "v28", "v29", "__FramerMetadata__", "valuesByLocaleId", "TMwqSpcwo_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "u", "Image2", "RichText", "getLocalizedValue", "css", "FramerTMwqSpcwo", "withCSS", "TMwqSpcwo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "UHdh30HVh_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "__FramerMetadata__", "valuesByLocaleId", "UHdh30HVh_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1a2vbif", "args", "CycleVariantState", "onAppear1yto9f2", "onAppeariw2tu7", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "getLocalizedValue", "css", "FramerUHdh30HVh", "withCSS", "UHdh30HVh_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ButtonFonts", "getFonts", "cNIAWY2Bn_default", "ConditionsChangerFonts", "UHdh30HVh_default", "ConditionsChangerWithVariantAppearEffect", "withVariantAppearEffect", "ImageTickerFonts", "oZ8PGjbKw_default", "ExpertsSliderFonts", "ulNGcTfnI_default", "TestimonialCarouselFonts", "TMwqSpcwo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "convertFromEnum", "value", "activeLocale", "convertFromEnum1", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "animation2", "transformTemplate2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLocalizedValue", "x", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "Image2", "getLoadingLazyAtYPosition", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "l", "AnimatePresence", "Ga", "SVG", "overlay1", "overlay2", "overlay3", "overlay4", "overlay5", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
