{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/7NqHJHRwGJKPr4gYnAGm/SlideShow.js", "ssg:https://framerusercontent.com/modules/2o7tPbqREebPKpcEom51/yhVSEKdDzSzzxZnIotfm/MAr0gbl5i.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,createRef,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// 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}=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 hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>/*#__PURE__*/createRef());},[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     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{// Fixes measurements when the children mount late\nif(hasChildren&&!isCanvas&&(!parentRef.current||!childrenRef[0].current||!childrenRef[filteredSlots.length-1].current)){return setTimeout(()=>frame.read(measure),50);}if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.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);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(()=>{frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,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();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* 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===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0: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===null||size===void 0?void 0: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){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-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){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{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);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)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.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],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===null||filteredSlots===void 0?void 0: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===null||filteredSlots===void 0?void 0: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=dotsBlurStyle.MozBackdropFilter=`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,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0: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();setIsMouseDown(true);},onMouseUp:()=>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),\"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),\"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},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}}},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__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0: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.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.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\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_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},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});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\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,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/7NqHJHRwGJKPr4gYnAGm/SlideShow.js\";import Practitioners from\"https://framerusercontent.com/modules/xUaUxqS8bz50QPxKpGcO/ww8SD10Xz19uzlCsZefI/jJE2FLJXS.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qZ5aePkHbagi3VWVzXBt/1IZ2Wvrnhemj8IKnoItQ/j9E23VDIu.js\";import LInkButtonWithLinks from\"https://framerusercontent.com/modules/5DRYh9ah9orMb3gfFcdk/BUM4APINlcTKJq4TYKoH/Qzsif5B9l.js\";import PractitionerCard from\"https://framerusercontent.com/modules/eYFwg4cU3zhUTJ5M9JMF/BnxsPCVVHqJlsUlkEUhS/VApcyhl8Z.js\";const PractitionerCardFonts=getFonts(PractitionerCard);const SlideshowFonts=getFonts(Slideshow);const LInkButtonWithLinksFonts=getFonts(LInkButtonWithLinks);const cycleOrder=[\"PqiFHUnvJ\",\"Em8IyOSmd\",\"HsIZ1uTmn\"];const serializationHash=\"framer-Vjshe\";const variantClassNames={Em8IyOSmd:\"framer-v-k64d7h\",HsIZ1uTmn:\"framer-v-19n7o0p\",PqiFHUnvJ:\"framer-v-1gct756\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const query=prequery=>prequery({from:{alias:\"Vzf8dR6Pp\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Vzf8dR6Pp\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"ohGMTx0Xq\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"ohGMTx0Xq\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"id\",type:\"Identifier\"}]});const query2=prequery=>prequery({from:{alias:\"RIi29SCSG\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"RIi29SCSG\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"id\",type:\"Identifier\"}]});const query3=prequery=>prequery({from:{alias:\"RRI2OZiKB\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:12},select:[{collection:\"RRI2OZiKB\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"id\",type:\"Identifier\"}]});const query4=prequery=>prequery({from:{alias:\"PZLubFXIf\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:16},select:[{collection:\"PZLubFXIf\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"id\",type:\"Identifier\"}]});const query5=prequery=>prequery({from:{alias:\"QS1BSaLWB\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:20},select:[{collection:\"QS1BSaLWB\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"id\",type:\"Identifier\"}]});const query6=prequery=>prequery({from:{alias:\"XfSS4PWeP\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:24},select:[{collection:\"XfSS4PWeP\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"id\",type:\"Identifier\"}]});const query7=prequery=>prequery({from:{alias:\"MafPP2PRD\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:28},select:[{collection:\"MafPP2PRD\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"id\",type:\"Identifier\"}]});const query8=prequery=>prequery({from:{alias:\"V2w39trDM\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:32},select:[{collection:\"V2w39trDM\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"id\",type:\"Identifier\"}]});const query9=prequery=>prequery({from:{alias:\"CdAgJ9Os3\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:36},select:[{collection:\"CdAgJ9Os3\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"id\",type:\"Identifier\"}]});const query10=prequery=>prequery({from:{alias:\"frzoKG279\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:40},select:[{collection:\"frzoKG279\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"id\",type:\"Identifier\"}]});const query11=prequery=>prequery({from:{alias:\"nLiar6eW_\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:44},select:[{collection:\"nLiar6eW_\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"id\",type:\"Identifier\"}]});const query12=prequery=>prequery({from:{alias:\"b1S8AvCk8\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:48},select:[{collection:\"b1S8AvCk8\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"id\",type:\"Identifier\"}]});const query13=prequery=>prequery({from:{alias:\"O9_2E9CBI\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:52},select:[{collection:\"O9_2E9CBI\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"id\",type:\"Identifier\"}]});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"PqiFHUnvJ\",Mobile:\"HsIZ1uTmn\",Tablet:\"Em8IyOSmd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PqiFHUnvJ\"};};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,pMjL58Cz4Vzf8dR6Pp,w48aDKMFTVzf8dR6Pp,oWVF3ssVAVzf8dR6Pp,E3ZRW36WBVzf8dR6Pp,IkUghKUp_Vzf8dR6Pp,NGBc28dcGVzf8dR6Pp,idVzf8dR6Pp,pMjL58Cz4ohGMTx0Xq,w48aDKMFTohGMTx0Xq,oWVF3ssVAohGMTx0Xq,E3ZRW36WBohGMTx0Xq,IkUghKUp_ohGMTx0Xq,NGBc28dcGohGMTx0Xq,idohGMTx0Xq,pMjL58Cz4RIi29SCSG,w48aDKMFTRIi29SCSG,oWVF3ssVARIi29SCSG,E3ZRW36WBRIi29SCSG,IkUghKUp_RIi29SCSG,NGBc28dcGRIi29SCSG,idRIi29SCSG,pMjL58Cz4RRI2OZiKB,w48aDKMFTRRI2OZiKB,oWVF3ssVARRI2OZiKB,E3ZRW36WBRRI2OZiKB,IkUghKUp_RRI2OZiKB,NGBc28dcGRRI2OZiKB,idRRI2OZiKB,pMjL58Cz4PZLubFXIf,w48aDKMFTPZLubFXIf,oWVF3ssVAPZLubFXIf,E3ZRW36WBPZLubFXIf,IkUghKUp_PZLubFXIf,NGBc28dcGPZLubFXIf,idPZLubFXIf,pMjL58Cz4QS1BSaLWB,w48aDKMFTQS1BSaLWB,oWVF3ssVAQS1BSaLWB,E3ZRW36WBQS1BSaLWB,IkUghKUp_QS1BSaLWB,NGBc28dcGQS1BSaLWB,idQS1BSaLWB,pMjL58Cz4XfSS4PWeP,w48aDKMFTXfSS4PWeP,oWVF3ssVAXfSS4PWeP,E3ZRW36WBXfSS4PWeP,IkUghKUp_XfSS4PWeP,NGBc28dcGXfSS4PWeP,idXfSS4PWeP,pMjL58Cz4MafPP2PRD,w48aDKMFTMafPP2PRD,oWVF3ssVAMafPP2PRD,E3ZRW36WBMafPP2PRD,IkUghKUp_MafPP2PRD,NGBc28dcGMafPP2PRD,idMafPP2PRD,pMjL58Cz4V2w39trDM,w48aDKMFTV2w39trDM,oWVF3ssVAV2w39trDM,E3ZRW36WBV2w39trDM,IkUghKUp_V2w39trDM,NGBc28dcGV2w39trDM,idV2w39trDM,pMjL58Cz4CdAgJ9Os3,w48aDKMFTCdAgJ9Os3,oWVF3ssVACdAgJ9Os3,E3ZRW36WBCdAgJ9Os3,IkUghKUp_CdAgJ9Os3,NGBc28dcGCdAgJ9Os3,idCdAgJ9Os3,pMjL58Cz4frzoKG279,w48aDKMFTfrzoKG279,oWVF3ssVAfrzoKG279,E3ZRW36WBfrzoKG279,IkUghKUp_frzoKG279,NGBc28dcGfrzoKG279,idfrzoKG279,pMjL58Cz4nLiar6eW_,w48aDKMFTnLiar6eW_,oWVF3ssVAnLiar6eW_,E3ZRW36WBnLiar6eW_,IkUghKUp_nLiar6eW_,NGBc28dcGnLiar6eW_,idnLiar6eW_,pMjL58Cz4b1S8AvCk8,w48aDKMFTb1S8AvCk8,oWVF3ssVAb1S8AvCk8,E3ZRW36WBb1S8AvCk8,IkUghKUp_b1S8AvCk8,NGBc28dcGb1S8AvCk8,idb1S8AvCk8,pMjL58Cz4O9_2E9CBI,w48aDKMFTO9_2E9CBI,oWVF3ssVAO9_2E9CBI,E3ZRW36WBO9_2E9CBI,IkUghKUp_O9_2E9CBI,NGBc28dcGO9_2E9CBI,idO9_2E9CBI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PqiFHUnvJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gct756\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PqiFHUnvJ\",ref:refBinding,style:{...style},...addPropertyOverrides({Em8IyOSmd:{\"data-framer-name\":\"Tablet\"},HsIZ1uTmn:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4bjlh7\",\"data-styles-preset\":\"j9E23VDIu\",children:\"Find Your Dedicated Practitioner\"})}),className:\"framer-9ayzjr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ot4GuSxgZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11l0ptt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dfyRKGNvZ-container\",nodeId:\"dfyRKGNvZ\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:-32,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,leftArrow:\"https://framerusercontent.com/images/sKcsIN7eRGsBm7Z7Yy8cqXXd18.svg\",rightArrow:\"https://framerusercontent.com/images/cUc2oVjlhhu5XwK4VNWeRtScd8.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",id:\"dfyRKGNvZ\",intervalControl:6,itemAmount:1,layoutId:\"dfyRKGNvZ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vngq3h\",\"data-framer-name\":\"Slide 1\",layoutDependency:layoutDependency,layoutId:\"Vzf8dR6Pp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Vzf8dR6Pp\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"Vzf8dR6Pp\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"Vzf8dR6Pp\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({E3ZRW36WB:E3ZRW36WBVzf8dR6Pp,id:idVzf8dR6Pp,IkUghKUp_:IkUghKUp_Vzf8dR6Pp,NGBc28dcG:NGBc28dcGVzf8dR6Pp,oWVF3ssVA:oWVF3ssVAVzf8dR6Pp,pMjL58Cz4:pMjL58Cz4Vzf8dR6Pp,w48aDKMFT:w48aDKMFTVzf8dR6Pp},index)=>{w48aDKMFTVzf8dR6Pp??=\"\";oWVF3ssVAVzf8dR6Pp??=\"\";E3ZRW36WBVzf8dR6Pp??=\"\";IkUghKUp_Vzf8dR6Pp??=\"\";NGBc28dcGVzf8dR6Pp??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Vzf8dR6Pp-${idVzf8dR6Pp}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAVzf8dR6Pp},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAVzf8dR6Pp},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-osfliz-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mAu617tow-container\",nodeId:\"mAu617tow\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"mAu617tow\",layoutId:\"mAu617tow\",q1cdP0gCZ:w48aDKMFTVzf8dR6Pp,RjvvB9THH:NGBc28dcGVzf8dR6Pp,t3F83F3fi:isSet(IkUghKUp_Vzf8dR6Pp),width:\"100%\",wY9FSD6K_:E3ZRW36WBVzf8dR6Pp,xSo53TtxR:toResponsiveImage(pMjL58Cz4Vzf8dR6Pp),yAsE0h0nu:E3ZRW36WBVzf8dR6Pp,Zuf4ZHtdz:resolvedLinks[0]})})})})})},idVzf8dR6Pp);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gepjhe\",\"data-framer-name\":\"Slide 2\",layoutDependency:layoutDependency,layoutId:\"ohGMTx0Xq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ohGMTx0Xq\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"ohGMTx0Xq\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"ohGMTx0Xq\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({E3ZRW36WB:E3ZRW36WBohGMTx0Xq,id:idohGMTx0Xq,IkUghKUp_:IkUghKUp_ohGMTx0Xq,NGBc28dcG:NGBc28dcGohGMTx0Xq,oWVF3ssVA:oWVF3ssVAohGMTx0Xq,pMjL58Cz4:pMjL58Cz4ohGMTx0Xq,w48aDKMFT:w48aDKMFTohGMTx0Xq},index1)=>{w48aDKMFTohGMTx0Xq??=\"\";oWVF3ssVAohGMTx0Xq??=\"\";E3ZRW36WBohGMTx0Xq??=\"\";IkUghKUp_ohGMTx0Xq??=\"\";NGBc28dcGohGMTx0Xq??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ohGMTx0Xq-${idohGMTx0Xq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAohGMTx0Xq},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAohGMTx0Xq},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1077pwx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RkG1aeu1Y-container\",nodeId:\"RkG1aeu1Y\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"RkG1aeu1Y\",layoutId:\"RkG1aeu1Y\",q1cdP0gCZ:w48aDKMFTohGMTx0Xq,RjvvB9THH:NGBc28dcGohGMTx0Xq,t3F83F3fi:isSet(IkUghKUp_ohGMTx0Xq),width:\"100%\",wY9FSD6K_:E3ZRW36WBohGMTx0Xq,xSo53TtxR:toResponsiveImage(pMjL58Cz4ohGMTx0Xq),yAsE0h0nu:E3ZRW36WBohGMTx0Xq,Zuf4ZHtdz:resolvedLinks1[0]})})})})})},idohGMTx0Xq);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aqf6j3\",\"data-framer-name\":\"Slide 3\",layoutDependency:layoutDependency,layoutId:\"RIi29SCSG\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RIi29SCSG\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:8},select:[{collection:\"RIi29SCSG\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"RIi29SCSG\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({E3ZRW36WB:E3ZRW36WBRIi29SCSG,id:idRIi29SCSG,IkUghKUp_:IkUghKUp_RIi29SCSG,NGBc28dcG:NGBc28dcGRIi29SCSG,oWVF3ssVA:oWVF3ssVARIi29SCSG,pMjL58Cz4:pMjL58Cz4RIi29SCSG,w48aDKMFT:w48aDKMFTRIi29SCSG},index2)=>{w48aDKMFTRIi29SCSG??=\"\";oWVF3ssVARIi29SCSG??=\"\";E3ZRW36WBRIi29SCSG??=\"\";IkUghKUp_RIi29SCSG??=\"\";NGBc28dcGRIi29SCSG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RIi29SCSG-${idRIi29SCSG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVARIi29SCSG},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVARIi29SCSG},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fl1b2b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yYb4PGOgp-container\",nodeId:\"yYb4PGOgp\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"yYb4PGOgp\",layoutId:\"yYb4PGOgp\",q1cdP0gCZ:w48aDKMFTRIi29SCSG,RjvvB9THH:NGBc28dcGRIi29SCSG,t3F83F3fi:isSet(IkUghKUp_RIi29SCSG),width:\"100%\",wY9FSD6K_:E3ZRW36WBRIi29SCSG,xSo53TtxR:toResponsiveImage(pMjL58Cz4RIi29SCSG),yAsE0h0nu:E3ZRW36WBRIi29SCSG,Zuf4ZHtdz:resolvedLinks2[0]})})})})})},idRIi29SCSG);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bpr88b\",\"data-framer-name\":\"Slide 4\",layoutDependency:layoutDependency,layoutId:\"RRI2OZiKB\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RRI2OZiKB\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:12},select:[{collection:\"RRI2OZiKB\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"RRI2OZiKB\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({E3ZRW36WB:E3ZRW36WBRRI2OZiKB,id:idRRI2OZiKB,IkUghKUp_:IkUghKUp_RRI2OZiKB,NGBc28dcG:NGBc28dcGRRI2OZiKB,oWVF3ssVA:oWVF3ssVARRI2OZiKB,pMjL58Cz4:pMjL58Cz4RRI2OZiKB,w48aDKMFT:w48aDKMFTRRI2OZiKB},index3)=>{w48aDKMFTRRI2OZiKB??=\"\";oWVF3ssVARRI2OZiKB??=\"\";E3ZRW36WBRRI2OZiKB??=\"\";IkUghKUp_RRI2OZiKB??=\"\";NGBc28dcGRRI2OZiKB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RRI2OZiKB-${idRRI2OZiKB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVARRI2OZiKB},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVARRI2OZiKB},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s62igy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GzPTDIQn_-container\",nodeId:\"GzPTDIQn_\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"GzPTDIQn_\",layoutId:\"GzPTDIQn_\",q1cdP0gCZ:w48aDKMFTRRI2OZiKB,RjvvB9THH:NGBc28dcGRRI2OZiKB,t3F83F3fi:isSet(IkUghKUp_RRI2OZiKB),width:\"100%\",wY9FSD6K_:E3ZRW36WBRRI2OZiKB,xSo53TtxR:toResponsiveImage(pMjL58Cz4RRI2OZiKB),yAsE0h0nu:E3ZRW36WBRRI2OZiKB,Zuf4ZHtdz:resolvedLinks3[0]})})})})})},idRRI2OZiKB);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1thluki\",\"data-framer-name\":\"Slide 5\",layoutDependency:layoutDependency,layoutId:\"PZLubFXIf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"PZLubFXIf\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:16},select:[{collection:\"PZLubFXIf\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"PZLubFXIf\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({E3ZRW36WB:E3ZRW36WBPZLubFXIf,id:idPZLubFXIf,IkUghKUp_:IkUghKUp_PZLubFXIf,NGBc28dcG:NGBc28dcGPZLubFXIf,oWVF3ssVA:oWVF3ssVAPZLubFXIf,pMjL58Cz4:pMjL58Cz4PZLubFXIf,w48aDKMFT:w48aDKMFTPZLubFXIf},index4)=>{w48aDKMFTPZLubFXIf??=\"\";oWVF3ssVAPZLubFXIf??=\"\";E3ZRW36WBPZLubFXIf??=\"\";IkUghKUp_PZLubFXIf??=\"\";NGBc28dcGPZLubFXIf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`PZLubFXIf-${idPZLubFXIf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAPZLubFXIf},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAPZLubFXIf},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oh90up-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nAEb6aXDP-container\",nodeId:\"nAEb6aXDP\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"nAEb6aXDP\",layoutId:\"nAEb6aXDP\",q1cdP0gCZ:w48aDKMFTPZLubFXIf,RjvvB9THH:NGBc28dcGPZLubFXIf,t3F83F3fi:isSet(IkUghKUp_PZLubFXIf),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4PZLubFXIf),yAsE0h0nu:E3ZRW36WBPZLubFXIf,Zuf4ZHtdz:resolvedLinks4[0]})})})})})},idPZLubFXIf);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15v6r8p\",\"data-framer-name\":\"Slide 6\",layoutDependency:layoutDependency,layoutId:\"QS1BSaLWB\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QS1BSaLWB\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:20},select:[{collection:\"QS1BSaLWB\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"QS1BSaLWB\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({E3ZRW36WB:E3ZRW36WBQS1BSaLWB,id:idQS1BSaLWB,IkUghKUp_:IkUghKUp_QS1BSaLWB,NGBc28dcG:NGBc28dcGQS1BSaLWB,oWVF3ssVA:oWVF3ssVAQS1BSaLWB,pMjL58Cz4:pMjL58Cz4QS1BSaLWB,w48aDKMFT:w48aDKMFTQS1BSaLWB},index5)=>{w48aDKMFTQS1BSaLWB??=\"\";oWVF3ssVAQS1BSaLWB??=\"\";E3ZRW36WBQS1BSaLWB??=\"\";IkUghKUp_QS1BSaLWB??=\"\";NGBc28dcGQS1BSaLWB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QS1BSaLWB-${idQS1BSaLWB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAQS1BSaLWB},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAQS1BSaLWB},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v7cym1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qbx__DHti-container\",nodeId:\"qbx__DHti\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"qbx__DHti\",layoutId:\"qbx__DHti\",q1cdP0gCZ:w48aDKMFTQS1BSaLWB,RjvvB9THH:NGBc28dcGQS1BSaLWB,t3F83F3fi:isSet(IkUghKUp_QS1BSaLWB),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4QS1BSaLWB),yAsE0h0nu:E3ZRW36WBQS1BSaLWB,Zuf4ZHtdz:resolvedLinks5[0]})})})})})},idQS1BSaLWB);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pgcg9\",\"data-framer-name\":\"Slide 7\",layoutDependency:layoutDependency,layoutId:\"XfSS4PWeP\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XfSS4PWeP\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:24},select:[{collection:\"XfSS4PWeP\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"XfSS4PWeP\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({E3ZRW36WB:E3ZRW36WBXfSS4PWeP,id:idXfSS4PWeP,IkUghKUp_:IkUghKUp_XfSS4PWeP,NGBc28dcG:NGBc28dcGXfSS4PWeP,oWVF3ssVA:oWVF3ssVAXfSS4PWeP,pMjL58Cz4:pMjL58Cz4XfSS4PWeP,w48aDKMFT:w48aDKMFTXfSS4PWeP},index6)=>{w48aDKMFTXfSS4PWeP??=\"\";oWVF3ssVAXfSS4PWeP??=\"\";E3ZRW36WBXfSS4PWeP??=\"\";IkUghKUp_XfSS4PWeP??=\"\";NGBc28dcGXfSS4PWeP??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XfSS4PWeP-${idXfSS4PWeP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAXfSS4PWeP},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAXfSS4PWeP},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jaj6wm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"IM8zLstzY-container\",nodeId:\"IM8zLstzY\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"IM8zLstzY\",layoutId:\"IM8zLstzY\",q1cdP0gCZ:w48aDKMFTXfSS4PWeP,RjvvB9THH:NGBc28dcGXfSS4PWeP,t3F83F3fi:isSet(IkUghKUp_XfSS4PWeP),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4XfSS4PWeP),yAsE0h0nu:E3ZRW36WBXfSS4PWeP,Zuf4ZHtdz:resolvedLinks6[0]})})})})})},idXfSS4PWeP);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ma8e9r\",\"data-framer-name\":\"Slide 8\",layoutDependency:layoutDependency,layoutId:\"MafPP2PRD\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MafPP2PRD\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:28},select:[{collection:\"MafPP2PRD\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"MafPP2PRD\",name:\"id\",type:\"Identifier\"}]},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({E3ZRW36WB:E3ZRW36WBMafPP2PRD,id:idMafPP2PRD,IkUghKUp_:IkUghKUp_MafPP2PRD,NGBc28dcG:NGBc28dcGMafPP2PRD,oWVF3ssVA:oWVF3ssVAMafPP2PRD,pMjL58Cz4:pMjL58Cz4MafPP2PRD,w48aDKMFT:w48aDKMFTMafPP2PRD},index7)=>{w48aDKMFTMafPP2PRD??=\"\";oWVF3ssVAMafPP2PRD??=\"\";E3ZRW36WBMafPP2PRD??=\"\";IkUghKUp_MafPP2PRD??=\"\";NGBc28dcGMafPP2PRD??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MafPP2PRD-${idMafPP2PRD}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAMafPP2PRD},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAMafPP2PRD},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qxcdc8-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"qFTzvQ8tn-container\",nodeId:\"qFTzvQ8tn\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"qFTzvQ8tn\",layoutId:\"qFTzvQ8tn\",q1cdP0gCZ:w48aDKMFTMafPP2PRD,RjvvB9THH:NGBc28dcGMafPP2PRD,t3F83F3fi:isSet(IkUghKUp_MafPP2PRD),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4MafPP2PRD),yAsE0h0nu:E3ZRW36WBMafPP2PRD,Zuf4ZHtdz:resolvedLinks7[0]})})})})})},idMafPP2PRD);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1khfjps\",\"data-framer-name\":\"Slide 9\",layoutDependency:layoutDependency,layoutId:\"V2w39trDM\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"V2w39trDM\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:32},select:[{collection:\"V2w39trDM\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"V2w39trDM\",name:\"id\",type:\"Identifier\"}]},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({E3ZRW36WB:E3ZRW36WBV2w39trDM,id:idV2w39trDM,IkUghKUp_:IkUghKUp_V2w39trDM,NGBc28dcG:NGBc28dcGV2w39trDM,oWVF3ssVA:oWVF3ssVAV2w39trDM,pMjL58Cz4:pMjL58Cz4V2w39trDM,w48aDKMFT:w48aDKMFTV2w39trDM},index8)=>{w48aDKMFTV2w39trDM??=\"\";oWVF3ssVAV2w39trDM??=\"\";E3ZRW36WBV2w39trDM??=\"\";IkUghKUp_V2w39trDM??=\"\";NGBc28dcGV2w39trDM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`V2w39trDM-${idV2w39trDM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAV2w39trDM},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAV2w39trDM},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13dkf45-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xEeAvaODt-container\",nodeId:\"xEeAvaODt\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"xEeAvaODt\",layoutId:\"xEeAvaODt\",q1cdP0gCZ:w48aDKMFTV2w39trDM,RjvvB9THH:NGBc28dcGV2w39trDM,t3F83F3fi:isSet(IkUghKUp_V2w39trDM),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4V2w39trDM),yAsE0h0nu:E3ZRW36WBV2w39trDM,Zuf4ZHtdz:resolvedLinks8[0]})})})})})},idV2w39trDM);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dmny8\",\"data-framer-name\":\"Slide 10\",layoutDependency:layoutDependency,layoutId:\"CdAgJ9Os3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CdAgJ9Os3\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:36},select:[{collection:\"CdAgJ9Os3\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"CdAgJ9Os3\",name:\"id\",type:\"Identifier\"}]},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9?.map(({E3ZRW36WB:E3ZRW36WBCdAgJ9Os3,id:idCdAgJ9Os3,IkUghKUp_:IkUghKUp_CdAgJ9Os3,NGBc28dcG:NGBc28dcGCdAgJ9Os3,oWVF3ssVA:oWVF3ssVACdAgJ9Os3,pMjL58Cz4:pMjL58Cz4CdAgJ9Os3,w48aDKMFT:w48aDKMFTCdAgJ9Os3},index9)=>{w48aDKMFTCdAgJ9Os3??=\"\";oWVF3ssVACdAgJ9Os3??=\"\";E3ZRW36WBCdAgJ9Os3??=\"\";IkUghKUp_CdAgJ9Os3??=\"\";NGBc28dcGCdAgJ9Os3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CdAgJ9Os3-${idCdAgJ9Os3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVACdAgJ9Os3},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVACdAgJ9Os3},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5d2fxl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rvcS7IIMZ-container\",nodeId:\"rvcS7IIMZ\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"rvcS7IIMZ\",layoutId:\"rvcS7IIMZ\",q1cdP0gCZ:w48aDKMFTCdAgJ9Os3,RjvvB9THH:NGBc28dcGCdAgJ9Os3,t3F83F3fi:isSet(IkUghKUp_CdAgJ9Os3),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4CdAgJ9Os3),yAsE0h0nu:E3ZRW36WBCdAgJ9Os3,Zuf4ZHtdz:resolvedLinks9[0]})})})})})},idCdAgJ9Os3);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jxo3mm\",\"data-framer-name\":\"Slide 11\",layoutDependency:layoutDependency,layoutId:\"frzoKG279\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"frzoKG279\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:40},select:[{collection:\"frzoKG279\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"frzoKG279\",name:\"id\",type:\"Identifier\"}]},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10?.map(({E3ZRW36WB:E3ZRW36WBfrzoKG279,id:idfrzoKG279,IkUghKUp_:IkUghKUp_frzoKG279,NGBc28dcG:NGBc28dcGfrzoKG279,oWVF3ssVA:oWVF3ssVAfrzoKG279,pMjL58Cz4:pMjL58Cz4frzoKG279,w48aDKMFT:w48aDKMFTfrzoKG279},index10)=>{w48aDKMFTfrzoKG279??=\"\";oWVF3ssVAfrzoKG279??=\"\";E3ZRW36WBfrzoKG279??=\"\";IkUghKUp_frzoKG279??=\"\";NGBc28dcGfrzoKG279??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`frzoKG279-${idfrzoKG279}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAfrzoKG279},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAfrzoKG279},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k4cbor-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"T8ZCj392g-container\",nodeId:\"T8ZCj392g\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"T8ZCj392g\",layoutId:\"T8ZCj392g\",q1cdP0gCZ:w48aDKMFTfrzoKG279,RjvvB9THH:NGBc28dcGfrzoKG279,t3F83F3fi:isSet(IkUghKUp_frzoKG279),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4frzoKG279),yAsE0h0nu:E3ZRW36WBfrzoKG279,Zuf4ZHtdz:resolvedLinks10[0]})})})})})},idfrzoKG279);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17oxjfh\",\"data-framer-name\":\"Slide 12\",layoutDependency:layoutDependency,layoutId:\"nLiar6eW_\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"nLiar6eW_\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:44},select:[{collection:\"nLiar6eW_\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"nLiar6eW_\",name:\"id\",type:\"Identifier\"}]},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11?.map(({E3ZRW36WB:E3ZRW36WBnLiar6eW_,id:idnLiar6eW_,IkUghKUp_:IkUghKUp_nLiar6eW_,NGBc28dcG:NGBc28dcGnLiar6eW_,oWVF3ssVA:oWVF3ssVAnLiar6eW_,pMjL58Cz4:pMjL58Cz4nLiar6eW_,w48aDKMFT:w48aDKMFTnLiar6eW_},index11)=>{w48aDKMFTnLiar6eW_??=\"\";oWVF3ssVAnLiar6eW_??=\"\";E3ZRW36WBnLiar6eW_??=\"\";IkUghKUp_nLiar6eW_??=\"\";NGBc28dcGnLiar6eW_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`nLiar6eW_-${idnLiar6eW_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAnLiar6eW_},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAnLiar6eW_},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c27jyf-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"r_aVOP7XP-container\",nodeId:\"r_aVOP7XP\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"r_aVOP7XP\",layoutId:\"r_aVOP7XP\",q1cdP0gCZ:w48aDKMFTnLiar6eW_,RjvvB9THH:NGBc28dcGnLiar6eW_,t3F83F3fi:isSet(IkUghKUp_nLiar6eW_),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4nLiar6eW_),yAsE0h0nu:E3ZRW36WBnLiar6eW_,Zuf4ZHtdz:resolvedLinks11[0]})})})})})},idnLiar6eW_);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aj51qe\",\"data-framer-name\":\"Slide 13\",layoutDependency:layoutDependency,layoutId:\"b1S8AvCk8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"b1S8AvCk8\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:48},select:[{collection:\"b1S8AvCk8\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"b1S8AvCk8\",name:\"id\",type:\"Identifier\"}]},children:(collection12,paginationInfo12,loadMore12)=>/*#__PURE__*/_jsx(_Fragment,{children:collection12?.map(({E3ZRW36WB:E3ZRW36WBb1S8AvCk8,id:idb1S8AvCk8,IkUghKUp_:IkUghKUp_b1S8AvCk8,NGBc28dcG:NGBc28dcGb1S8AvCk8,oWVF3ssVA:oWVF3ssVAb1S8AvCk8,pMjL58Cz4:pMjL58Cz4b1S8AvCk8,w48aDKMFT:w48aDKMFTb1S8AvCk8},index12)=>{w48aDKMFTb1S8AvCk8??=\"\";oWVF3ssVAb1S8AvCk8??=\"\";E3ZRW36WBb1S8AvCk8??=\"\";IkUghKUp_b1S8AvCk8??=\"\";NGBc28dcGb1S8AvCk8??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`b1S8AvCk8-${idb1S8AvCk8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAb1S8AvCk8},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAb1S8AvCk8},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16ix0ll-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k3bD3BRLB-container\",nodeId:\"k3bD3BRLB\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"k3bD3BRLB\",layoutId:\"k3bD3BRLB\",q1cdP0gCZ:w48aDKMFTb1S8AvCk8,RjvvB9THH:NGBc28dcGb1S8AvCk8,t3F83F3fi:isSet(IkUghKUp_b1S8AvCk8),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4b1S8AvCk8),yAsE0h0nu:E3ZRW36WBb1S8AvCk8,Zuf4ZHtdz:resolvedLinks12[0]})})})})})},idb1S8AvCk8);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zfb7n\",\"data-framer-name\":\"Slide 14\",layoutDependency:layoutDependency,layoutId:\"O9_2E9CBI\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"O9_2E9CBI\",data:Practitioners,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},offset:{type:\"LiteralValue\",value:52},select:[{collection:\"O9_2E9CBI\",name:\"pMjL58Cz4\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"w48aDKMFT\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"oWVF3ssVA\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"E3ZRW36WB\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"IkUghKUp_\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"NGBc28dcG\",type:\"Identifier\"},{collection:\"O9_2E9CBI\",name:\"id\",type:\"Identifier\"}]},children:(collection13,paginationInfo13,loadMore13)=>/*#__PURE__*/_jsx(_Fragment,{children:collection13?.map(({E3ZRW36WB:E3ZRW36WBO9_2E9CBI,id:idO9_2E9CBI,IkUghKUp_:IkUghKUp_O9_2E9CBI,NGBc28dcG:NGBc28dcGO9_2E9CBI,oWVF3ssVA:oWVF3ssVAO9_2E9CBI,pMjL58Cz4:pMjL58Cz4O9_2E9CBI,w48aDKMFT:w48aDKMFTO9_2E9CBI},index13)=>{w48aDKMFTO9_2E9CBI??=\"\";oWVF3ssVAO9_2E9CBI??=\"\";E3ZRW36WBO9_2E9CBI??=\"\";IkUghKUp_O9_2E9CBI??=\"\";NGBc28dcGO9_2E9CBI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`O9_2E9CBI-${idO9_2E9CBI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{oWVF3ssVA:oWVF3ssVAO9_2E9CBI},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{oWVF3ssVA:oWVF3ssVAO9_2E9CBI},webPageId:\"Jzxnp6Jc5\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:393,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nbtvwk-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gVzKb9iqS-container\",nodeId:\"gVzKb9iqS\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(PractitionerCard,{gt_gxay23:\"Alliance Member\",height:\"100%\",id:\"gVzKb9iqS\",layoutId:\"gVzKb9iqS\",q1cdP0gCZ:w48aDKMFTO9_2E9CBI,RjvvB9THH:NGBc28dcGO9_2E9CBI,t3F83F3fi:isSet(IkUghKUp_O9_2E9CBI),width:\"100%\",wY9FSD6K_:\"Chiropractor / Director\",xSo53TtxR:toResponsiveImage(pMjL58Cz4O9_2E9CBI),yAsE0h0nu:E3ZRW36WBO9_2E9CBI,Zuf4ZHtdz:resolvedLinks13[0]})})})})})},idO9_2E9CBI);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({Em8IyOSmd:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:49,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,leftArrow:\"https://framerusercontent.com/images/sKcsIN7eRGsBm7Z7Yy8cqXXd18.svg\",rightArrow:\"https://framerusercontent.com/images/cUc2oVjlhhu5XwK4VNWeRtScd8.svg\",showMouseControls:true}},HsIZ1uTmn:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:1,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:56,leftArrow:\"https://framerusercontent.com/images/sKcsIN7eRGsBm7Z7Yy8cqXXd18.svg\",rightArrow:\"https://framerusercontent.com/images/cUc2oVjlhhu5XwK4VNWeRtScd8.svg\",showMouseControls:true}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hibmG9imx\"},implicitPathVariables:undefined},{href:{webPageId:\"hibmG9imx\"},implicitPathVariables:undefined},{href:{webPageId:\"hibmG9imx\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,width:\"134px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-580.2)/2+443.2+120),...addPropertyOverrides({Em8IyOSmd:{width:\"104px\"},HsIZ1uTmn:{width:undefined,y:(componentViewport?.y||0)+0+(((componentViewport?.height||572.5)-0-524.2)/2+443.2+64)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-689s81-container\",layoutDependency:layoutDependency,layoutId:\"B8CPdmM7Z-container\",nodeId:\"B8CPdmM7Z\",rendersWithMotion:true,scopeId:\"MAr0gbl5i\",children:/*#__PURE__*/_jsx(LInkButtonWithLinks,{height:\"100%\",id:\"B8CPdmM7Z\",layoutId:\"B8CPdmM7Z\",Lx1F9hwka:resolvedLinks14[0],style:{width:\"100%\"},uYU_yBkUH:false,variant:\"ZCNo1tWdC\",width:\"100%\",...addPropertyOverrides({Em8IyOSmd:{Lx1F9hwka:resolvedLinks14[1]},HsIZ1uTmn:{Lx1F9hwka:resolvedLinks14[2]}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vjshe.framer-xfdt9a, .framer-Vjshe .framer-xfdt9a { display: block; }\",\".framer-Vjshe.framer-1gct756 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1240px; }\",\".framer-Vjshe .framer-9ayzjr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Vjshe .framer-11l0ptt-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Vjshe .framer-vngq3h, .framer-Vjshe .framer-gepjhe, .framer-Vjshe .framer-aqf6j3, .framer-Vjshe .framer-bpr88b, .framer-Vjshe .framer-1thluki, .framer-Vjshe .framer-15v6r8p, .framer-Vjshe .framer-1pgcg9, .framer-Vjshe .framer-1ma8e9r, .framer-Vjshe .framer-1khfjps, .framer-Vjshe .framer-7dmny8, .framer-Vjshe .framer-jxo3mm, .framer-Vjshe .framer-17oxjfh, .framer-Vjshe .framer-aj51qe, .framer-Vjshe .framer-13zfb7n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-Vjshe .framer-osfliz-container, .framer-Vjshe .framer-1077pwx-container, .framer-Vjshe .framer-fl1b2b-container, .framer-Vjshe .framer-s62igy-container, .framer-Vjshe .framer-1oh90up-container, .framer-Vjshe .framer-1v7cym1-container, .framer-Vjshe .framer-1jaj6wm-container, .framer-Vjshe .framer-1qxcdc8-container, .framer-Vjshe .framer-13dkf45-container, .framer-Vjshe .framer-5d2fxl-container, .framer-Vjshe .framer-k4cbor-container, .framer-Vjshe .framer-c27jyf-container, .framer-Vjshe .framer-16ix0ll-container, .framer-Vjshe .framer-1nbtvwk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Vjshe .framer-689s81-container { flex: none; height: auto; position: relative; width: 134px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vjshe.framer-1gct756, .framer-Vjshe .framer-vngq3h, .framer-Vjshe .framer-gepjhe, .framer-Vjshe .framer-aqf6j3, .framer-Vjshe .framer-bpr88b, .framer-Vjshe .framer-1thluki, .framer-Vjshe .framer-15v6r8p, .framer-Vjshe .framer-1pgcg9, .framer-Vjshe .framer-1ma8e9r, .framer-Vjshe .framer-1khfjps, .framer-Vjshe .framer-7dmny8, .framer-Vjshe .framer-jxo3mm, .framer-Vjshe .framer-17oxjfh, .framer-Vjshe .framer-aj51qe, .framer-Vjshe .framer-13zfb7n { gap: 0px; } .framer-Vjshe.framer-1gct756 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Vjshe.framer-1gct756 > :first-child { margin-top: 0px; } .framer-Vjshe.framer-1gct756 > :last-child { margin-bottom: 0px; } .framer-Vjshe .framer-vngq3h > *, .framer-Vjshe .framer-gepjhe > *, .framer-Vjshe .framer-aqf6j3 > *, .framer-Vjshe .framer-bpr88b > *, .framer-Vjshe .framer-1thluki > *, .framer-Vjshe .framer-15v6r8p > *, .framer-Vjshe .framer-1pgcg9 > *, .framer-Vjshe .framer-1ma8e9r > *, .framer-Vjshe .framer-1khfjps > *, .framer-Vjshe .framer-7dmny8 > *, .framer-Vjshe .framer-jxo3mm > *, .framer-Vjshe .framer-17oxjfh > *, .framer-Vjshe .framer-aj51qe > *, .framer-Vjshe .framer-13zfb7n > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Vjshe .framer-vngq3h > :first-child, .framer-Vjshe .framer-gepjhe > :first-child, .framer-Vjshe .framer-aqf6j3 > :first-child, .framer-Vjshe .framer-bpr88b > :first-child, .framer-Vjshe .framer-1thluki > :first-child, .framer-Vjshe .framer-15v6r8p > :first-child, .framer-Vjshe .framer-1pgcg9 > :first-child, .framer-Vjshe .framer-1ma8e9r > :first-child, .framer-Vjshe .framer-1khfjps > :first-child, .framer-Vjshe .framer-7dmny8 > :first-child, .framer-Vjshe .framer-jxo3mm > :first-child, .framer-Vjshe .framer-17oxjfh > :first-child, .framer-Vjshe .framer-aj51qe > :first-child, .framer-Vjshe .framer-13zfb7n > :first-child { margin-left: 0px; } .framer-Vjshe .framer-vngq3h > :last-child, .framer-Vjshe .framer-gepjhe > :last-child, .framer-Vjshe .framer-aqf6j3 > :last-child, .framer-Vjshe .framer-bpr88b > :last-child, .framer-Vjshe .framer-1thluki > :last-child, .framer-Vjshe .framer-15v6r8p > :last-child, .framer-Vjshe .framer-1pgcg9 > :last-child, .framer-Vjshe .framer-1ma8e9r > :last-child, .framer-Vjshe .framer-1khfjps > :last-child, .framer-Vjshe .framer-7dmny8 > :last-child, .framer-Vjshe .framer-jxo3mm > :last-child, .framer-Vjshe .framer-17oxjfh > :last-child, .framer-Vjshe .framer-aj51qe > :last-child, .framer-Vjshe .framer-13zfb7n > :last-child { margin-right: 0px; } }\",\".framer-Vjshe.framer-v-k64d7h.framer-1gct756 { max-width: 810px; width: 810px; }\",\".framer-Vjshe.framer-v-k64d7h .framer-689s81-container { width: 104px; }\",\".framer-Vjshe.framer-v-19n7o0p.framer-1gct756 { gap: 32px; max-width: 390px; width: 390px; }\",\".framer-Vjshe.framer-v-19n7o0p .framer-689s81-container { width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vjshe.framer-v-19n7o0p.framer-1gct756 { gap: 0px; } .framer-Vjshe.framer-v-19n7o0p.framer-1gct756 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Vjshe.framer-v-19n7o0p.framer-1gct756 > :first-child { margin-top: 0px; } .framer-Vjshe.framer-v-19n7o0p.framer-1gct756 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 585\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1240px\",null,null]},\"Em8IyOSmd\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"810px\",null,null]},\"HsIZ1uTmn\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"390px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMAr0gbl5i=withCSS(Component,css,\"framer-Vjshe\");export default FramerMAr0gbl5i;FramerMAr0gbl5i.displayName=\"Practitioner Slider\";FramerMAr0gbl5i.defaultProps={height:585,width:1240};addPropertyControls(FramerMAr0gbl5i,{variant:{options:[\"PqiFHUnvJ\",\"Em8IyOSmd\",\"HsIZ1uTmn\"],optionTitles:[\"Variant 1\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMAr0gbl5i,[{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\"}]},...PractitionerCardFonts,...SlideshowFonts,...LInkButtonWithLinksFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMAr0gbl5i\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1240px\\\",null,null]},\\\"Em8IyOSmd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"810px\\\",null,null]},\\\"HsIZ1uTmn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"390px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"585\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "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", "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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "frame", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "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", "setDelta", "delta", "setPage", "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", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "PractitionerCardFonts", "getFonts", "VApcyhl8Z_default", "SlideshowFonts", "Slideshow", "LInkButtonWithLinksFonts", "Qzsif5B9l_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "pMjL58Cz4Vzf8dR6Pp", "w48aDKMFTVzf8dR6Pp", "oWVF3ssVAVzf8dR6Pp", "E3ZRW36WBVzf8dR6Pp", "IkUghKUp_Vzf8dR6Pp", "NGBc28dcGVzf8dR6Pp", "idVzf8dR6Pp", "pMjL58Cz4ohGMTx0Xq", "w48aDKMFTohGMTx0Xq", "oWVF3ssVAohGMTx0Xq", "E3ZRW36WBohGMTx0Xq", "IkUghKUp_ohGMTx0Xq", "NGBc28dcGohGMTx0Xq", "idohGMTx0Xq", "pMjL58Cz4RIi29SCSG", "w48aDKMFTRIi29SCSG", "oWVF3ssVARIi29SCSG", "E3ZRW36WBRIi29SCSG", "IkUghKUp_RIi29SCSG", "NGBc28dcGRIi29SCSG", "idRIi29SCSG", "pMjL58Cz4RRI2OZiKB", "w48aDKMFTRRI2OZiKB", "oWVF3ssVARRI2OZiKB", "E3ZRW36WBRRI2OZiKB", "IkUghKUp_RRI2OZiKB", "NGBc28dcGRRI2OZiKB", "idRRI2OZiKB", "pMjL58Cz4PZLubFXIf", "w48aDKMFTPZLubFXIf", "oWVF3ssVAPZLubFXIf", "E3ZRW36WBPZLubFXIf", "IkUghKUp_PZLubFXIf", "NGBc28dcGPZLubFXIf", "idPZLubFXIf", "pMjL58Cz4QS1BSaLWB", "w48aDKMFTQS1BSaLWB", "oWVF3ssVAQS1BSaLWB", "E3ZRW36WBQS1BSaLWB", "IkUghKUp_QS1BSaLWB", "NGBc28dcGQS1BSaLWB", "idQS1BSaLWB", "pMjL58Cz4XfSS4PWeP", "w48aDKMFTXfSS4PWeP", "oWVF3ssVAXfSS4PWeP", "E3ZRW36WBXfSS4PWeP", "IkUghKUp_XfSS4PWeP", "NGBc28dcGXfSS4PWeP", "idXfSS4PWeP", "pMjL58Cz4MafPP2PRD", "w48aDKMFTMafPP2PRD", "oWVF3ssVAMafPP2PRD", "E3ZRW36WBMafPP2PRD", "IkUghKUp_MafPP2PRD", "NGBc28dcGMafPP2PRD", "idMafPP2PRD", "pMjL58Cz4V2w39trDM", "w48aDKMFTV2w39trDM", "oWVF3ssVAV2w39trDM", "E3ZRW36WBV2w39trDM", "IkUghKUp_V2w39trDM", "NGBc28dcGV2w39trDM", "idV2w39trDM", "pMjL58Cz4CdAgJ9Os3", "w48aDKMFTCdAgJ9Os3", "oWVF3ssVACdAgJ9Os3", "E3ZRW36WBCdAgJ9Os3", "IkUghKUp_CdAgJ9Os3", "NGBc28dcGCdAgJ9Os3", "idCdAgJ9Os3", "pMjL58Cz4frzoKG279", "w48aDKMFTfrzoKG279", "oWVF3ssVAfrzoKG279", "E3ZRW36WBfrzoKG279", "IkUghKUp_frzoKG279", "NGBc28dcGfrzoKG279", "idfrzoKG279", "pMjL58Cz4nLiar6eW_", "w48aDKMFTnLiar6eW_", "oWVF3ssVAnLiar6eW_", "E3ZRW36WBnLiar6eW_", "IkUghKUp_nLiar6eW_", "NGBc28dcGnLiar6eW_", "idnLiar6eW_", "pMjL58Cz4b1S8AvCk8", "w48aDKMFTb1S8AvCk8", "oWVF3ssVAb1S8AvCk8", "E3ZRW36WBb1S8AvCk8", "IkUghKUp_b1S8AvCk8", "NGBc28dcGb1S8AvCk8", "idb1S8AvCk8", "pMjL58Cz4O9_2E9CBI", "w48aDKMFTO9_2E9CBI", "oWVF3ssVAO9_2E9CBI", "E3ZRW36WBO9_2E9CBI", "IkUghKUp_O9_2E9CBI", "NGBc28dcGO9_2E9CBI", "idO9_2E9CBI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Slideshow", "ChildrenCanSuspend", "QueryData", "jJE2FLJXS_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "VApcyhl8Z_default", "isSet", "toResponsiveImage", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks3", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks4", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks5", "collection6", "paginationInfo6", "loadMore6", "index6", "resolvedLinks6", "collection7", "paginationInfo7", "loadMore7", "index7", "resolvedLinks7", "collection8", "paginationInfo8", "loadMore8", "index8", "resolvedLinks8", "collection9", "paginationInfo9", "loadMore9", "index9", "resolvedLinks9", "collection10", "paginationInfo10", "loadMore10", "index10", "resolvedLinks10", "collection11", "paginationInfo11", "loadMore11", "index11", "resolvedLinks11", "collection12", "paginationInfo12", "loadMore12", "index12", "resolvedLinks12", "collection13", "paginationInfo13", "loadMore13", "index13", "resolvedLinks13", "resolvedLinks14", "Qzsif5B9l_default", "css", "FramerMAr0gbl5i", "withCSS", "MAr0gbl5i_default", "addPropertyControls", "ControlType", "addFonts", "PractitionerCardFonts", "SlideshowFonts", "LInkButtonWithLinksFonts", "getFontsFromSharedStyle", "fonts"]
}
