{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/i1HvqLYDfADc9dH4H8Ql/YUi2mrETo2TNJpt8m1jY/SyZLtlZDf.js", "ssg:https://framerusercontent.com/modules/smD6pX2BKbF0fjpTp1Ou/DmP8f9PgeL1LXlO7gabs/JpU_2RXdP.js", "ssg:https://framerusercontent.com/modules/bJkoXPnIGTa61mWCv4Sn/NRkYUINyCI6EdqAsT3n4/YUCZl6uJV.js", "ssg:https://framerusercontent.com/modules/jWvxI0H8ojtNmzSJZMuJ/DSoNxgI5HhNKaBa2pKr7/eucEC2kGW.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment=0)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),isMouseDevice&&/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"y2eSs_TXu\",\"jmIyr0S0F\",\"zjoeOpJVd\",\"Ifn1fBU1Y\"];const serializationHash=\"framer-1Dh8d\";const variantClassNames={Ifn1fBU1Y:\"framer-v-104alud\",jmIyr0S0F:\"framer-v-2xy81m\",y2eSs_TXu:\"framer-v-1b8nc5c\",zjoeOpJVd:\"framer-v-rf1qiu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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\":\"y2eSs_TXu\",\"Variant 2\":\"jmIyr0S0F\",\"Variant 3\":\"zjoeOpJVd\",\"Variant 4\":\"Ifn1fBU1Y\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"y2eSs_TXu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"y2eSs_TXu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"Sovrle Dental Clinic - Front Desk\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2243,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/frcZP99jRFZmKG0e7W8cnaDEY3w.jpg\",srcSet:\"https://framerusercontent.com/images/frcZP99jRFZmKG0e7W8cnaDEY3w.jpg?scale-down-to=1024 684w,https://framerusercontent.com/images/frcZP99jRFZmKG0e7W8cnaDEY3w.jpg?scale-down-to=2048 1369w,https://framerusercontent.com/images/frcZP99jRFZmKG0e7W8cnaDEY3w.jpg 1500w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1b8nc5c\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"y2eSs_TXu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Ifn1fBU1Y:{\"data-framer-name\":\"Variant 4\",background:{alt:\"Sovrle Dental Clinic - Patient Reception\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:1665,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/TjuGQFlStSclDPk6B3A0jKSBc.jpg\",srcSet:\"https://framerusercontent.com/images/TjuGQFlStSclDPk6B3A0jKSBc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TjuGQFlStSclDPk6B3A0jKSBc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TjuGQFlStSclDPk6B3A0jKSBc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TjuGQFlStSclDPk6B3A0jKSBc.jpg 2500w\"}},jmIyr0S0F:{\"data-framer-name\":\"Variant 2\",background:{alt:\"Sovrle Dental Clinic - Reception Area\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:3740,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/YMWud0JhbhIK3V15n0lxFbbz0.jpg\",srcSet:\"https://framerusercontent.com/images/YMWud0JhbhIK3V15n0lxFbbz0.jpg?scale-down-to=1024 684w,https://framerusercontent.com/images/YMWud0JhbhIK3V15n0lxFbbz0.jpg?scale-down-to=2048 1368w,https://framerusercontent.com/images/YMWud0JhbhIK3V15n0lxFbbz0.jpg 2500w\"}},zjoeOpJVd:{\"data-framer-name\":\"Variant 3\",background:{alt:\"Sovrle Dental Clinic - Waiting Area\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:2279,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/gDj4ej0afdpoONLboETMW3Dbw.jpg\",srcSet:\"https://framerusercontent.com/images/gDj4ej0afdpoONLboETMW3Dbw.jpg?scale-down-to=1024 673w,https://framerusercontent.com/images/gDj4ej0afdpoONLboETMW3Dbw.jpg?scale-down-to=2048 1347w,https://framerusercontent.com/images/gDj4ej0afdpoONLboETMW3Dbw.jpg 1500w\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1Dh8d.framer-1v7bu87, .framer-1Dh8d .framer-1v7bu87 { display: block; }\",\".framer-1Dh8d.framer-1b8nc5c { height: 2740px; position: relative; width: 2500px; }\",\".framer-1Dh8d.framer-v-2xy81m.framer-1b8nc5c, .framer-1Dh8d.framer-v-rf1qiu.framer-1b8nc5c, .framer-1Dh8d.framer-v-104alud.framer-1b8nc5c { aspect-ratio: 0.9124087591240876 / 1; height: var(--framer-aspect-ratio-supported, 2740px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2740\n * @framerIntrinsicWidth 2500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jmIyr0S0F\":{\"layout\":[\"fixed\",\"fixed\"]},\"zjoeOpJVd\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ifn1fBU1Y\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSyZLtlZDf=withCSS(Component,css,\"framer-1Dh8d\");export default FramerSyZLtlZDf;FramerSyZLtlZDf.displayName=\"Office Images\";FramerSyZLtlZDf.defaultProps={height:2740,width:2500};addPropertyControls(FramerSyZLtlZDf,{variant:{options:[\"y2eSs_TXu\",\"jmIyr0S0F\",\"zjoeOpJVd\",\"Ifn1fBU1Y\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSyZLtlZDf,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSyZLtlZDf\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2740\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"2500\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jmIyr0S0F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zjoeOpJVd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ifn1fBU1Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SyZLtlZDf.map", "// Generated by Framer (7422eea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js\";import OfficeImages from\"https://framerusercontent.com/modules/i1HvqLYDfADc9dH4H8Ql/YUi2mrETo2TNJpt8m1jY/SyZLtlZDf.js\";const OfficeImagesFonts=getFonts(OfficeImages);const CarouselFonts=getFonts(Carousel);const serializationHash=\"framer-bIPEv\";const variantClassNames={aiXi9mByB:\"framer-v-142ofyt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aiXi9mByB\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-142ofyt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"aiXi9mByB\",ref:refBinding,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ft8p9r-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"OxsQs7fiw-container\",nodeId:\"OxsQs7fiw\",rendersWithMotion:true,scopeId:\"JpU_2RXdP\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"Dental Clinic Images\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:4,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"OxsQs7fiw\",layoutId:\"OxsQs7fiw\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:876.8,width:\"800px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-byut6b-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"FgasvgJNj-container\",nodeId:\"FgasvgJNj\",rendersWithMotion:true,scopeId:\"JpU_2RXdP\",children:/*#__PURE__*/_jsx(OfficeImages,{height:\"100%\",id:\"FgasvgJNj\",layoutId:\"FgasvgJNj\",style:{height:\"100%\",width:\"100%\"},variant:\"y2eSs_TXu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:877,width:\"800.1825px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o97kol-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"RqO7beCM0-container\",nodeId:\"RqO7beCM0\",rendersWithMotion:true,scopeId:\"JpU_2RXdP\",children:/*#__PURE__*/_jsx(OfficeImages,{height:\"100%\",id:\"RqO7beCM0\",layoutId:\"RqO7beCM0\",style:{height:\"100%\",width:\"100%\"},variant:\"zjoeOpJVd\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:877,width:\"800.1825px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13sl39w-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"sP5illtV8-container\",nodeId:\"sP5illtV8\",rendersWithMotion:true,scopeId:\"JpU_2RXdP\",children:/*#__PURE__*/_jsx(OfficeImages,{height:\"100%\",id:\"sP5illtV8\",layoutId:\"sP5illtV8\",style:{height:\"100%\",width:\"100%\"},variant:\"jmIyr0S0F\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:877,width:\"800.1825px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10delos-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"OqS6AEGSN-container\",nodeId:\"OqS6AEGSN\",rendersWithMotion:true,scopeId:\"JpU_2RXdP\",children:/*#__PURE__*/_jsx(OfficeImages,{height:\"100%\",id:\"OqS6AEGSN\",layoutId:\"OqS6AEGSN\",style:{height:\"100%\",width:\"100%\"},variant:\"Ifn1fBU1Y\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bIPEv.framer-7xg131, .framer-bIPEv .framer-7xg131 { display: block; }\",\".framer-bIPEv.framer-142ofyt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 897px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 810px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bIPEv .framer-1ft8p9r-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bIPEv .framer-byut6b-container, .framer-bIPEv .framer-1o97kol-container, .framer-bIPEv .framer-13sl39w-container, .framer-bIPEv .framer-10delos-container { aspect-ratio: 0.9124087591240876 / 1; height: var(--framer-aspect-ratio-supported, 877px); position: relative; width: 800px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 897\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJpU_2RXdP=withCSS(Component,css,\"framer-bIPEv\");export default FramerJpU_2RXdP;FramerJpU_2RXdP.displayName=\"Image Carousel\";FramerJpU_2RXdP.defaultProps={height:897,width:810};addFonts(FramerJpU_2RXdP,[{explicitInter:true,fonts:[]},...OfficeImagesFonts,...CarouselFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJpU_2RXdP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"897\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"810\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JpU_2RXdP.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/9LgSSQPwnmHCGJCUZqEW/YvRpnBQXQ1t8r1t6ujua/wzbFiBFuS.js\";import GraphicPattern from\"https://framerusercontent.com/modules/29JbUN5ZKWLkek3Dm37g/zzHxqly7WLV81SiNrdNK/dibiyK5ot.js\";const GraphicPatternFonts=getFonts(GraphicPattern);const serializationHash=\"framer-j00Nt\";const variantClassNames={g7oGZFqtG:\"framer-v-16g0886\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 getProps=({height,id,number,text,width,...props})=>{var _ref,_ref1;return{...props,oyv6Y7D0c:(_ref=text!==null&&text!==void 0?text:props.oyv6Y7D0c)!==null&&_ref!==void 0?_ref:\"Smiles Transformed\",RnEfBiXla:(_ref1=number!==null&&number!==void 0?number:props.RnEfBiXla)!==null&&_ref1!==void 0?_ref1:\"+10k\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RnEfBiXla,oyv6Y7D0c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"g7oGZFqtG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?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(serializationHash,...sharedStyleClassNames,\"framer-16g0886\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"g7oGZFqtG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||228)-0,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6y8469-container\",layoutDependency:layoutDependency,layoutId:\"t4H4R9QyS-container\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"t4H4R9QyS\",layoutId:\"t4H4R9QyS\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"GRyejAJzI\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o5i9tr\",layoutDependency:layoutDependency,layoutId:\"fJkUFYfls\",style:{borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253)))\"},children:\"+10k\"})}),className:\"framer-1oz7wnb\",fonts:[\"GF;Inter Tight-600\"],layoutDependency:layoutDependency,layoutId:\"p7hZXcqxi\",style:{\"--extracted-tcooor\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RnEfBiXla,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64)))\"},children:\"Smiles Transformed\"})}),className:\"framer-8lrtmv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IjOUSj5pj\",style:{\"--extracted-r6o4lv\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:oyv6Y7D0c,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j00Nt.framer-6rum1o, .framer-j00Nt .framer-6rum1o { display: block; }\",\".framer-j00Nt.framer-16g0886 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 247px; will-change: var(--framer-will-change-override, transform); }\",\".framer-j00Nt .framer-6y8469-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-j00Nt .framer-1o5i9tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 48px; position: relative; width: 100%; z-index: 1; }\",\".framer-j00Nt .framer-1oz7wnb, .framer-j00Nt .framer-8lrtmv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j00Nt.framer-16g0886, .framer-j00Nt .framer-1o5i9tr { gap: 0px; } .framer-j00Nt.framer-16g0886 > *, .framer-j00Nt .framer-1o5i9tr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-j00Nt.framer-16g0886 > :first-child, .framer-j00Nt .framer-1o5i9tr > :first-child { margin-top: 0px; } .framer-j00Nt.framer-16g0886 > :last-child, .framer-j00Nt .framer-1o5i9tr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 247\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RnEfBiXla\":\"number\",\"oyv6Y7D0c\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYUCZl6uJV=withCSS(Component,css,\"framer-j00Nt\");export default FramerYUCZl6uJV;FramerYUCZl6uJV.displayName=\"Statistics Card\";FramerYUCZl6uJV.defaultProps={height:228,width:247};addPropertyControls(FramerYUCZl6uJV,{RnEfBiXla:{defaultValue:\"+10k\",displayTextArea:false,title:\"Number\",type:ControlType.String},oyv6Y7D0c:{defaultValue:\"Smiles Transformed\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerYUCZl6uJV,[{explicitInter:true,fonts:[{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...GraphicPatternFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYUCZl6uJV\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"247\",\"framerVariables\":\"{\\\"RnEfBiXla\\\":\\\"number\\\",\\\"oyv6Y7D0c\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"228\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YUCZl6uJV.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import TeamMemberCard from\"#framer/local/canvasComponent/AXD3NF8cE/AXD3NF8cE.js\";import AwardCard from\"#framer/local/canvasComponent/buWu8M9Dm/buWu8M9Dm.js\";import GraphicPattern from\"#framer/local/canvasComponent/dibiyK5ot/dibiyK5ot.js\";import Footer from\"#framer/local/canvasComponent/IOJnH9t8g/IOJnH9t8g.js\";import Navigation from\"#framer/local/canvasComponent/IZY07PrMS/IZY07PrMS.js\";import ImageCarousel from\"#framer/local/canvasComponent/JpU_2RXdP/JpU_2RXdP.js\";import TestimonialSlide from\"#framer/local/canvasComponent/lOYOkI15n/lOYOkI15n.js\";import DataStack from\"#framer/local/canvasComponent/nQhAuyplE/nQhAuyplE.js\";import AppointmentDentalClinic from\"#framer/local/canvasComponent/tBpicfeJ6/tBpicfeJ6.js\";import CurvedArrow from\"#framer/local/canvasComponent/w3setpqhc/w3setpqhc.js\";import MaxAssistWidget from\"#framer/local/canvasComponent/WP_jZhrxr/WP_jZhrxr.js\";import StatisticsCard from\"#framer/local/canvasComponent/YUCZl6uJV/YUCZl6uJV.js\";import NorthYorkDentists from\"#framer/local/collection/JnDQ0IEFz/JnDQ0IEFz.js\";import*as sharedStyle4 from\"#framer/local/css/diFuM_mk8/diFuM_mk8.js\";import*as sharedStyle2 from\"#framer/local/css/m90wm8COZ/m90wm8COZ.js\";import*as sharedStyle3 from\"#framer/local/css/mOtnGF6vo/mOtnGF6vo.js\";import*as sharedStyle1 from\"#framer/local/css/wzbFiBFuS/wzbFiBFuS.js\";import*as sharedStyle from\"#framer/local/css/xmWXR2j3E/xmWXR2j3E.js\";import metadataProvider from\"#framer/local/webPageMetadata/eucEC2kGW/eucEC2kGW.js\";const NavigationFonts=getFonts(Navigation);const GraphicPatternFonts=getFonts(GraphicPattern);const ContainerWithFX=withFX(Container);const StatisticsCardFonts=getFonts(StatisticsCard);const MaterialFonts=getFonts(Material);const DataStackFonts=getFonts(DataStack);const ImageCarouselFonts=getFonts(ImageCarousel);const AwardCardFonts=getFonts(AwardCard);const TeamMemberCardFonts=getFonts(TeamMemberCard);const CurvedArrowFonts=getFonts(CurvedArrow);const AppointmentDentalClinicFonts=getFonts(AppointmentDentalClinic);const TestimonialSlideFonts=getFonts(TestimonialSlide);const FooterFonts=getFonts(Footer);const MaxAssistWidgetFonts=getFonts(MaxAssistWidget);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={aGCFU1e2y:\"(min-width: 1200px)\",sD3NhYMy2:\"(min-width: 810px) and (max-width: 1199px)\",tEJQytRxF:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XB7dM\";const variantClassNames={aGCFU1e2y:\"framer-v-1jrebcy\",sD3NhYMy2:\"framer-v-1ojzpc4\",tEJQytRxF:\"framer-v-c7a69y\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:30,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation4={opacity:1,rotate:-45,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:1,rotate:-45,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition4={delay:0,duration:.8,ease:[.45,-.03,.37,1.71],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"aGCFU1e2y\",Phone:\"tEJQytRxF\",Tablet:\"sD3NhYMy2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aGCFU1e2y\"};};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,LFVbxm9bpDijHjqFFB,O_2QEfGZ0DijHjqFFB,wiaTmdRu5DijHjqFFB,UJsGdWKztDijHjqFFB,PJQ7CMKoPDijHjqFFB,idDijHjqFFB,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"wF7GQs8DZ\");const elementId1=useRouteElementId(\"yHG5bpcsC\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"tEJQytRxF\")return false;return true;};const elementId2=useRouteElementId(\"X00pD1R8b\");const ref3=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"kbPImyIfW\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"sD3NhYMy2\",\"tEJQytRxF\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aGCFU1e2y\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1jrebcy\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"92vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1liglf4-container\",\"data-framer-name\":\"Navigation\",layoutScroll:true,name:\"Navigation\",nodeId:\"re9o18nAE\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{variant:\"FtRCabt9X\"},tEJQytRxF:{variant:\"FtRCabt9X\"}},children:/*#__PURE__*/_jsx(Navigation,{gGOQ9Ojsl:ref1,height:\"100%\",id:\"re9o18nAE\",layoutId:\"re9o18nAE\",name:\"Navigation\",style:{width:\"100%\"},variant:\"R5fnXQBXs\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1k8h4z5\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{height:637.2},tEJQytRxF:{height:1372.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:645.2,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{__framer__parallaxTransformEnabled:undefined},tEJQytRxF:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:70,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qpo6mk-container\",nodeId:\"QwFjYRU_W\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"QwFjYRU_W\",layoutId:\"QwFjYRU_W\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"Z9mkX69z9\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pr0f86\",\"data-framer-name\":\"Top Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nonu22\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-18453zt\",\"data-styles-preset\":\"xmWXR2j3E\",style:{\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"About Sovrle Dental Clinic in North York\"})}),className:\"framer-1awopn5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Located at the intersection of Yonge and Sheppard, Sovrle Dental Clinic has been providing top quality dental services to the residents of North York for over 20 years. \"})}),className:\"framer-u1xchw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8ik0h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{background:{alt:\"About Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:624,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+0+48+53.2),pixelHeight:1656,pixelWidth:2500,sizes:\"369px\",src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg 2500w\"}},tEJQytRxF:{background:{alt:\"About Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:624,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0+321.2+48),pixelHeight:1656,pixelWidth:2500,sizes:\"342px\",src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"About Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:624,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+24+198.1),pixelHeight:1656,pixelWidth:2500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) / 2, 1px)`,src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg 2500w\"},className:\"framer-1n845dj\",\"data-framer-name\":\"Sovrle-Lobby Photo\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z63qek\",\"data-framer-name\":\"Statistics Numbers Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+0+40+369.2+0},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+140+612.2+0+140}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,y:(componentViewport?.y||0)+0+0+24+393.2+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x2sgbb-container\",nodeId:\"DrRLwZNmE\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(StatisticsCard,{height:\"100%\",id:\"DrRLwZNmE\",layoutId:\"DrRLwZNmE\",oyv6Y7D0c:\"Patient Approval\",RnEfBiXla:\"99%\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gv201t\",\"data-border\":true,\"data-framer-name\":\"Review Header\",children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/wwKrZ9ZqxzwUzLNQ7\",motionChild:true,nodeId:\"rJZYUnnMV\",openInNewTab:true,scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-jmzqxs framer-a3rvuz\",\"data-border\":true,\"data-framer-name\":\"Review\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d84809\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+369.2+56+0+0+8+0+0),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/VDmOcOWtzj6yDgcpu3QrQohTaXk.svg\"}},tEJQytRxF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+612.2+0+0+0+0+8+0+0),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/VDmOcOWtzj6yDgcpu3QrQohTaXk.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+393.2+56+0+0+8+0+0),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/VDmOcOWtzj6yDgcpu3QrQohTaXk.svg\"},className:\"framer-42g4o0\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Google Reviews\"})}),className:\"framer-1ghdky1\",fonts:[\"GF;Inter Tight-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mulu42\",\"data-framer-name\":\"Stars\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i8ejhl\",\"data-framer-name\":\"Name & Position\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mdg1vv\",\"data-framer-name\":\"5-stars\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17b0m6n\",\"data-framer-name\":\"5 Stars\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1omwmk4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xfnsSbCab\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(222, 196, 31)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"xfnsSbCab\",layoutId:\"xfnsSbCab\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6gvdzt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g3DjKYzdI\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(222, 196, 31)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"g3DjKYzdI\",layoutId:\"g3DjKYzdI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o6lviv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AQqpLY0o0\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(222, 196, 31)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"AQqpLY0o0\",layoutId:\"AQqpLY0o0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1win517-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g_fuqqKVu\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(222, 196, 31)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"g_fuqqKVu\",layoutId:\"g_fuqqKVu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vq7wwu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"P7_iJdSQ9\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(222, 196, 31)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"P7_iJdSQ9\",layoutId:\"P7_iJdSQ9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icblb2\",\"data-framer-name\":\"Review Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"4.9\"})}),className:\"framer-15z0i8f\",fonts:[\"GF;Inter Tight-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Stars |\"})}),className:\"framer-fktds8\",fonts:[\"GF;Inter Tight-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"600+\"})}),className:\"framer-1063spq\",fonts:[\"GF;Inter Tight-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtMzAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Reviews\"})}),className:\"framer-nyviee\",fonts:[\"GF;Inter Tight-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+0+40+369.2+0},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+140+612.2+0+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,y:(componentViewport?.y||0)+0+0+24+393.2+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fy8zly-container\",nodeId:\"P0AvaU77I\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(StatisticsCard,{height:\"100%\",id:\"P0AvaU77I\",layoutId:\"P0AvaU77I\",oyv6Y7D0c:\"Years of Experience\",RnEfBiXla:\"20+\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-no21te\",\"data-framer-name\":\"About Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1omdp8h\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-135acoq\",\"data-styles-preset\":\"m90wm8COZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},children:\"About Us\"})}),className:\"framer-15zey7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Providing Smiles for Over 20 Years\"})}),className:\"framer-zpi6u1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Learn About Our Commitment to Excellence - Our Priority is Your Healthy Smile\"})}),className:\"framer-wch4sc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-di076o\",\"data-framer-name\":\"About Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+0},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cginc8-container\",nodeId:\"OGFpqMXWY\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sovrle Dental Clinic provides services fluently in English and Serbian. But no matter your language or ethnicity, we would love to have you at Sovrle Dental.\"})}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"OGFpqMXWY\",layoutId:\"OGFpqMXWY\",MzFXSJZP4:\"Languages\",ROK_SkZ2a:\"Translate\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+0},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ou53u0-container\",nodeId:\"Q2fVRGc0o\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"From \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"dental-implants\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AFPmuhcPY\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"Q2fVRGc0o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"implants\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"pediatric-dentistry\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"UEOjhcG9y\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"Q2fVRGc0o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"pediatric dentistry\"})}),\" to \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"invisalign-clear-aligners\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"T38_nhPyt\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"Q2fVRGc0o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Invisalign\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"cosmetic-dentistry\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"QzZ6zv2LE\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"Q2fVRGc0o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Cosmetic dentistry\"})}),\", Sovrle Dental Clinic cares for all of your dental needs under one roof! \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"FgaEHwr14\"},motionChild:true,nodeId:\"Q2fVRGc0o\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Learn more about the extensive services we provide here!\"})})]})}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"Q2fVRGc0o\",layoutId:\"Q2fVRGc0o\",MzFXSJZP4:\"Multiple Dental Services\",ROK_SkZ2a:\"Tooth\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+264},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+528}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-suusbr-container\",nodeId:\"IrkwKKutE\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Our dentists have dedicated over 20 years of service to the North York district of Toronto. Over this time, they have additionally received two masters degrees in specialized dentistry.\"})}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"IrkwKKutE\",layoutId:\"IrkwKKutE\",MzFXSJZP4:\"Expert Dentists\",ROK_SkZ2a:\"Certificate\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+264},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+792}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qxjiwn-container\",nodeId:\"b9_nNMC6V\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"We schedule early evening and Saturday appointments and have ceiling-mounted TVs, a beverage bar, \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"u4Em6h7Vn\"},motionChild:true,nodeId:\"b9_nNMC6V\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"iTero digital scanners\"})}),\", 3D smile design, and \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"dental-laser-treatment\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"NKCdFqOXy\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"b9_nNMC6V\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"laser dentistry\"})}),\" to make your visit as pleasant as possible.\"]})}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"b9_nNMC6V\",layoutId:\"b9_nNMC6V\",MzFXSJZP4:\"Your Comfort is Our Priority\",ROK_SkZ2a:\"HandHeart\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+528},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+1056}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h81tow-container\",nodeId:\"sVCz7cRw3\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Located on the fourth floor of Hullmark Centre, where our offices offer beautiful views of the local scenery, courtyard, and pool below.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{children:\"We have direct access to the Yonge & Sheppard subway station, and there is plenty of parking within our building, accessed from Anndale Drive.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ajJi8o1FO\"},motionChild:true,nodeId:\"sVCz7cRw3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Learn how to get to our location here!\"})})})]}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"sVCz7cRw3\",layoutId:\"sVCz7cRw3\",MzFXSJZP4:\"Convenient Location\",ROK_SkZ2a:\"MapPin\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+637.2+120+384.4+0+528},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+1372.2+96+384.4+0+1320}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+645.2+120+384.4+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7y9f3x-container\",nodeId:\"Mf9TcEem5\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Sovrle Dental is currently accepting new patients! We are excited to have you as a part of the Sovrle Dental family!\"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"For more information, please visit our page for \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rw6GAXzja\"},motionChild:true,nodeId:\"Mf9TcEem5\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"new patient information\"})}),\".\"]})]}),Fu9xMRooB:\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(245, 255, 255))\",height:\"100%\",id:\"Mf9TcEem5\",layoutId:\"Mf9TcEem5\",MzFXSJZP4:\"New Patients Welcome!\",ROK_SkZ2a:\"CalendarHeart\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-yjxkm9\",\"data-framer-name\":\"Welcome Section\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nlmel\",\"data-framer-name\":\"Content Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhvhp4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfsd95\",\"data-framer-name\":\"Photo Stack\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+2029.6+60+0+0+0+0+0+-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+1773.6+120+0+0+0+0+-48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shq7x9-container hidden-c7a69y\",nodeId:\"JHKmudjJq\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"JHKmudjJq\",layoutId:\"JHKmudjJq\",RriglqH4v:10,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{height:800,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+2029.6+60+0+0+0+0+0+0+0},tEJQytRxF:{height:360,width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 720px)`,y:(componentViewport?.y||0)+0+3508.6+40+0+0+0+0+770.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:690.4,width:`min(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.4502, 1px), 720px)`,y:(componentViewport?.y||0)+0+1773.6+120+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cslzby-container\",nodeId:\"IeXZupXbh\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(ImageCarousel,{height:\"100%\",id:\"IeXZupXbh\",layoutId:\"IeXZupXbh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13e45g9\",\"data-framer-name\":\"Left Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tEJQytRxF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(53, 48, 64))\"},children:[\"Enjoy Our Modern,  \",/*#__PURE__*/_jsx(\"br\",{}),\"Aesthetic Dental Clinic\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(53, 48, 64))\"},children:[\"Enjoy Our Beautifully Designed,\",/*#__PURE__*/_jsx(\"br\",{}),\"Aesthetic Dental Clinic\"]})}),className:\"framer-38nmse\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s92nwv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"At Sovrle Dental Clinic, our thoughtfully designed space is crafted to provide a calm and welcoming environment for a modern dental experience. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Inspired by a minimalist Japanese aesthetic, our natural materials and warm lighting create an ambiance of tranquility. The space harmonizes soothing ambient light with light wood cabinetry to promote a sense of balance and serenity. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"From the moment you step in, you\u2019ll feel at ease in a space that blends comfort with modern sophistication.\"})]}),className:\"framer-q1498v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://prop.ca/\",motionChild:true,nodeId:\"dyK2UjG_C\",openInNewTab:true,scopeId:\"eucEC2kGW\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-70ul5r\",\"data-styles-preset\":\"diFuM_mk8\",children:\"Designed by Prop Architecture\"})})})}),className:\"framer-1hddfjq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ax59xl\",\"data-framer-name\":\"Awards Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+3688+0},tEJQytRxF:{height:1452.4,y:(componentViewport?.y||0)+0+4719+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:884.4,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2704+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2zlcms-container\",nodeId:\"A4sD5SPHO\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"A4sD5SPHO\",layoutId:\"A4sD5SPHO\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"Zx6Z9bvu1\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d07di4\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-135acoq\",\"data-styles-preset\":\"m90wm8COZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-64549ac4-d685-4363-a417-5961f1d256e9, rgb(2, 146, 151))\"},children:\"Awards\"})}),className:\"framer-1pjgymm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\"},children:\"Certifications & Specializtions\"})}),className:\"framer-oy5qjo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Sovrle Dental takes pride in its journey marked by excellence, and our commitment to providing top-tier dental care has been acknowledged through continuing education and certification.\"})}),className:\"framer-r7w7ct\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v7lvi\",\"data-framer-name\":\"Awards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+3688+120+384.4+0},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 240px)`,y:(componentViewport?.y||0)+0+4719+96+384.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+2704+120+384.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rz5mfr-container\",nodeId:\"nqGXEjfnQ\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AwardCard,{bpq2n7XHk:\"2013\",height:\"100%\",id:\"nqGXEjfnQ\",IYNeDiueK:\"Clinical Masters in Implant Dentistry\",layoutId:\"nqGXEjfnQ\",MqDZAKRhh:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Completed by Dr. Jovan Milanovic at the University of the Pacific in 2013.\"})}),style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+3688+120+384.4+0},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 240px)`,y:(componentViewport?.y||0)+0+4719+96+384.4+0+308}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+2704+120+384.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-70xpmn-container\",nodeId:\"AFSL0QGhV\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AwardCard,{bpq2n7XHk:\"2022\",height:\"100%\",id:\"AFSL0QGhV\",IYNeDiueK:\"American Academy of Clear Aligners\",layoutId:\"AFSL0QGhV\",MqDZAKRhh:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Acknowledging Sovrle Dental's proficiency and application of \",/*#__PURE__*/_jsx(Link,{href:{pathVariables:{nY5P2yoJo:\"invisalign-clear-aligners\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"T38_nhPyt\"}},webPageId:\"hTYplloXN\"},motionChild:true,nodeId:\"AFSL0QGhV\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Invisalign Clear Aligner\"})}),\" technology to provide patients with the best smile results.\"]})}),style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+3688+120+384.4+0},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 240px)`,y:(componentViewport?.y||0)+0+4719+96+384.4+0+616}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 192px) / 3, 1px), 240px)`,y:(componentViewport?.y||0)+0+2704+120+384.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-osok39-container\",nodeId:\"EWgpcrclw\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AwardCard,{bpq2n7XHk:\"2013\",height:\"100%\",id:\"EWgpcrclw\",IYNeDiueK:\"Masters of         Dental Radiology\",layoutId:\"EWgpcrclw\",MqDZAKRhh:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Completed by Dr. Jovan Milanovic from\\xa0the renowned King\u2019s College of London, UK.\"})}),style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1ws45yz\",\"data-framer-name\":\"Team Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14n6xuj\",\"data-framer-name\":\"Team Section\",id:elementId2,ref:ref3}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+4572.4+960},tEJQytRxF:{y:(componentViewport?.y||0)+0+6171.4+960}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`calc(${componentViewport?.width||\"100vw\"} / 2)`,y:(componentViewport?.y||0)+0+3588.4+960,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwiokh-container\",nodeId:\"Qq97apFqJ\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"Qq97apFqJ\",layoutId:\"Qq97apFqJ\",RriglqH4v:15,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gp89x3\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wm7r6\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Our Dentists\"})}),className:\"framer-1n99ral\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Our dedicated dentists are at the heart of Sovrle Dental. We are committed to providing exceptional dental care in a warm and welcoming environment.\"})}),className:\"framer-1uvfudv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c1oby4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"DijHjqFFB\",data:NorthYorkDentists,type:\"Collection\"},select:[{collection:\"DijHjqFFB\",name:\"LFVbxm9bp\",type:\"Identifier\"},{collection:\"DijHjqFFB\",name:\"O_2QEfGZ0\",type:\"Identifier\"},{collection:\"DijHjqFFB\",name:\"wiaTmdRu5\",type:\"Identifier\"},{collection:\"DijHjqFFB\",name:\"UJsGdWKzt\",type:\"Identifier\"},{collection:\"DijHjqFFB\",name:\"PJQ7CMKoP\",type:\"Identifier\"},{collection:\"DijHjqFFB\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idDijHjqFFB,LFVbxm9bp:LFVbxm9bpDijHjqFFB,O_2QEfGZ0:O_2QEfGZ0DijHjqFFB,PJQ7CMKoP:PJQ7CMKoPDijHjqFFB,UJsGdWKzt:UJsGdWKztDijHjqFFB,wiaTmdRu5:wiaTmdRu5DijHjqFFB},index)=>{O_2QEfGZ0DijHjqFFB??=\"\";wiaTmdRu5DijHjqFFB??=\"\";UJsGdWKztDijHjqFFB??=\"\";PJQ7CMKoPDijHjqFFB??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`DijHjqFFB-${idDijHjqFFB}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PJQ7CMKoP:PJQ7CMKoPDijHjqFFB},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:UJsGdWKztDijHjqFFB,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPDijHjqFFB}},{href:UJsGdWKztDijHjqFFB,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPDijHjqFFB}},{href:UJsGdWKztDijHjqFFB,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPDijHjqFFB}}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4572.4+120+0+0+248.4+0+0},tEJQytRxF:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+6171.4+96+0+0+248.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:`max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3588.4+120+0+0+248.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j59201-container\",nodeId:\"l0JqOh65B\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{NVO4sUWej:resolvedLinks[1]},tEJQytRxF:{NVO4sUWej:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(TeamMemberCard,{AbjzdVRQh:O_2QEfGZ0DijHjqFFB,height:\"100%\",id:\"l0JqOh65B\",L5ZRiPoRI:wiaTmdRu5DijHjqFFB,layoutId:\"l0JqOh65B\",NVO4sUWej:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",x2Wt163pU:toResponsiveImage(LFVbxm9bpDijHjqFFB)})})})})})})})},idDijHjqFFB);})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1urfksi\",\"data-framer-name\":\"Make an Appoinment Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ehhw1x\",\"data-framer-name\":\"Appointment Background\",id:elementId3,ref:ref4}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{height:1169.4,y:(componentViewport?.y||0)+0+5910.8+0},tEJQytRxF:{y:(componentViewport?.y||0)+0+7413.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1141.4,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4878.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17pue8s-container\",nodeId:\"WuT2cEZ9q\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"WuT2cEZ9q\",layoutId:\"WuT2cEZ9q\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"ia7psKHMF\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jnlmvz\",\"data-framer-name\":\"Heading Stack\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"120px\",y:(componentViewport?.y||0)+0+4878.8+120+0+82.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1riz9k9-container hidden-1ojzpc4 hidden-c7a69y\",nodeId:\"TNN7czlrB\",rendersWithMotion:true,scopeId:\"eucEC2kGW\",style:{rotate:10,transformPerspective:1200},children:/*#__PURE__*/_jsx(CurvedArrow,{height:\"100%\",id:\"TNN7czlrB\",layoutId:\"TNN7czlrB\",style:{height:\"100%\",width:\"100%\"},variant:\"DO1IdlwtZ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w7bvmj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(104, 248, 253))\"},children:\"Book an Appointment\"})}),className:\"framer-11a4bw4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Schedule your visit now for personalized care in a comfortable environment. Your journey to a brighter, healthier smile begins here.\"})}),className:\"framer-1r13sqz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+5910.8+120+268.4},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+7413.8+96+288.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:661,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,y:(componentViewport?.y||0)+0+4878.8+120+240.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14pxpmy-container\",nodeId:\"bx5HClsb1\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{variant:\"nLRZ_GOZS\"},tEJQytRxF:{variant:\"W0TrMTNok\"}},children:/*#__PURE__*/_jsx(AppointmentDentalClinic,{height:\"100%\",id:\"bx5HClsb1\",layoutId:\"bx5HClsb1\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"c7EPys5eJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mgt49\",\"data-framer-name\":\"Testimonials Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17tnuwx\",\"data-framer-name\":\"Content Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tguond\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dnzc71\",\"data-styles-preset\":\"mOtnGF6vo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Patient Reviews\"})}),className:\"framer-1tzq3qt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1rzff0\",\"data-styles-preset\":\"wzbFiBFuS\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"Discover the stories of smiles transformed and experiences shared by our valued patients. Your satisfaction is our greatest achievement.\"})}),className:\"framer-1cdb63t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+7080.2+120+248.4},tEJQytRxF:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+8555.2+96+248.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,y:(componentViewport?.y||0)+0+6020.2+120+248.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ax8xm4-container\",nodeId:\"Y70pOzc7Q\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tEJQytRxF:{c4jW2nE0_:\"FbNAvfsPi\",variant:\"Vlx1zaNzw\"}},children:/*#__PURE__*/_jsx(TestimonialSlide,{c4jW2nE0_:\"LgrmB5aVF\",height:\"100%\",id:\"Y70pOzc7Q\",layoutId:\"Y70pOzc7Q\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"f33DiCasN\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{y:(componentViewport?.y||0)+0+8048.6},tEJQytRxF:{y:(componentViewport?.y||0)+0+9475.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:745,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6988.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7c9koe-container\",nodeId:\"rBJMhYJ4z\",scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sD3NhYMy2:{variant:\"IxqM4Jftw\"},tEJQytRxF:{variant:\"cI8L1mZ18\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"rBJMhYJ4z\",layoutId:\"rBJMhYJ4z\",style:{width:\"100%\"},variant:\"mmiFuYbAK\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:260,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1cuml4p-container\",\"data-framer-appear-id\":\"1cuml4p\",initial:animation7,layoutScroll:true,nodeId:\"UPNqBLzcM\",optimized:true,rendersWithMotion:true,scopeId:\"eucEC2kGW\",children:/*#__PURE__*/_jsx(MaxAssistWidget,{height:\"100%\",id:\"UPNqBLzcM\",layoutId:\"UPNqBLzcM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XB7dM.framer-a3rvuz, .framer-XB7dM .framer-a3rvuz { display: block; }\",\".framer-XB7dM.framer-1jrebcy { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-XB7dM .framer-1liglf4-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 92%; z-index: 10; }\",\".framer-XB7dM .framer-1k8h4z5 { align-content: center; align-items: center; background-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1qpo6mk-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-XB7dM .framer-pr0f86 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-nonu22 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-XB7dM .framer-1awopn5, .framer-XB7dM .framer-u1xchw, .framer-XB7dM .framer-15zey7h, .framer-XB7dM .framer-zpi6u1, .framer-XB7dM .framer-wch4sc, .framer-XB7dM .framer-38nmse, .framer-XB7dM .framer-1pjgymm, .framer-XB7dM .framer-oy5qjo, .framer-XB7dM .framer-r7w7ct, .framer-XB7dM .framer-1n99ral, .framer-XB7dM .framer-1uvfudv, .framer-XB7dM .framer-11a4bw4, .framer-XB7dM .framer-1r13sqz, .framer-XB7dM .framer-1tzq3qt, .framer-XB7dM .framer-1cdb63t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XB7dM .framer-y8ik0h { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 50%; }\",\".framer-XB7dM .framer-1n845dj { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 29.641751126126138%) add; aspect-ratio: 1.56 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 128px); mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 29.641751126126138%) add; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-XB7dM .framer-z63qek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-x2sgbb-container, .framer-XB7dM .framer-1fy8zly-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-XB7dM .framer-1gv201t { --border-bottom-width: 1px; --border-color: var(--token-dfd29766-9b54-40dd-9398-e62b74c1aefb, #222222); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: radial-gradient(50% 50% at -8.200000000000001% -24.4%, #ffffff 0%, rgba(162, 42, 189, 0.05) 36.486486486486484%, rgb(247, 252, 255) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0px 2px 0.5px rgba(112, 190, 250, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-XB7dM .framer-jmzqxs { --border-bottom-width: 1px; --border-color: var(--token-dfd29766-9b54-40dd-9398-e62b74c1aefb, #222222); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(10, 10, 10, 0); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 24px 8px 24px; position: relative; text-decoration: none; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XB7dM .framer-d84809, .framer-XB7dM .framer-mulu42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XB7dM .framer-42g4o0, .framer-XB7dM .framer-1omwmk4-container, .framer-XB7dM .framer-6gvdzt-container, .framer-XB7dM .framer-o6lviv-container, .framer-XB7dM .framer-1win517-container, .framer-XB7dM .framer-1vq7wwu-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-XB7dM .framer-1ghdky1, .framer-XB7dM .framer-15z0i8f, .framer-XB7dM .framer-fktds8, .framer-XB7dM .framer-1063spq, .framer-XB7dM .framer-nyviee { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XB7dM .framer-1i8ejhl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XB7dM .framer-mdg1vv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XB7dM .framer-17b0m6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XB7dM .framer-1icblb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XB7dM .framer-no21te, .framer-XB7dM .framer-mgt49 { align-content: center; align-items: center; background-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1omdp8h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-di076o { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-cginc8-container, .framer-XB7dM .framer-1ou53u0-container, .framer-XB7dM .framer-suusbr-container, .framer-XB7dM .framer-1qxjiwn-container, .framer-XB7dM .framer-1h81tow-container, .framer-XB7dM .framer-7y9f3x-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-yjxkm9 { align-content: center; align-items: center; background-color: var(--token-3143fb62-c6ac-431a-b880-3c19724d4494, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-nlmel { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1dhvhp4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-mfsd95 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-XB7dM .framer-1shq7x9-container { flex: none; height: 240px; left: -48px; position: absolute; top: -48px; width: 240px; z-index: 1; }\",\".framer-XB7dM .framer-cslzby-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 2; }\",\".framer-XB7dM .framer-13e45g9 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 48px; position: relative; width: 55%; }\",\".framer-XB7dM .framer-s92nwv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-q1498v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XB7dM .framer-1hddfjq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XB7dM .framer-1ax59xl { align-content: center; align-items: center; background-color: var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, #01494b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-2zlcms-container, .framer-XB7dM .framer-17pue8s-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-XB7dM .framer-d07di4, .framer-XB7dM .framer-wm7r6, .framer-XB7dM .framer-1tguond { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-v7lvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-rz5mfr-container, .framer-XB7dM .framer-70xpmn-container, .framer-XB7dM .framer-osok39-container { flex: 1 0 0px; height: auto; max-width: 240px; position: relative; width: 1px; }\",\".framer-XB7dM .framer-1ws45yz { align-content: center; align-items: center; background-color: var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-14n6xuj, .framer-XB7dM .framer-ehhw1x { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-XB7dM .framer-lwiokh-container { flex: none; height: 480px; position: absolute; right: 0px; top: 960px; width: 50%; z-index: 1; }\",\".framer-XB7dM .framer-gp89x3, .framer-XB7dM .framer-17tnuwx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-c1oby4 { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-1j59201-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1urfksi { align-content: center; align-items: center; background-color: var(--token-64549ac4-d685-4363-a417-5961f1d256e9, #029297); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1jnlmvz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-1riz9k9-container { flex: none; height: 76px; left: calc(64.58333333333336% - 120px / 2); position: absolute; top: calc(50.00000000000002% - 76px / 2); width: 120px; z-index: 1; }\",\".framer-XB7dM .framer-1w7bvmj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 0px; position: relative; width: 442px; }\",\".framer-XB7dM .framer-14pxpmy-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 1; }\",\".framer-XB7dM .framer-ax8xm4-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-XB7dM .framer-7c9koe-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XB7dM .framer-1cuml4p-container { flex: none; height: auto; position: fixed; right: -112px; top: 260px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XB7dM.framer-1jrebcy, .framer-XB7dM .framer-1k8h4z5, .framer-XB7dM .framer-pr0f86, .framer-XB7dM .framer-nonu22, .framer-XB7dM .framer-y8ik0h, .framer-XB7dM .framer-z63qek, .framer-XB7dM .framer-1gv201t, .framer-XB7dM .framer-jmzqxs, .framer-XB7dM .framer-d84809, .framer-XB7dM .framer-mulu42, .framer-XB7dM .framer-1i8ejhl, .framer-XB7dM .framer-mdg1vv, .framer-XB7dM .framer-17b0m6n, .framer-XB7dM .framer-1icblb2, .framer-XB7dM .framer-no21te, .framer-XB7dM .framer-1omdp8h, .framer-XB7dM .framer-yjxkm9, .framer-XB7dM .framer-nlmel, .framer-XB7dM .framer-1dhvhp4, .framer-XB7dM .framer-mfsd95, .framer-XB7dM .framer-13e45g9, .framer-XB7dM .framer-s92nwv, .framer-XB7dM .framer-1ax59xl, .framer-XB7dM .framer-d07di4, .framer-XB7dM .framer-v7lvi, .framer-XB7dM .framer-1ws45yz, .framer-XB7dM .framer-gp89x3, .framer-XB7dM .framer-wm7r6, .framer-XB7dM .framer-1urfksi, .framer-XB7dM .framer-1jnlmvz, .framer-XB7dM .framer-1w7bvmj, .framer-XB7dM .framer-mgt49, .framer-XB7dM .framer-17tnuwx, .framer-XB7dM .framer-1tguond { gap: 0px; } .framer-XB7dM.framer-1jrebcy > *, .framer-XB7dM .framer-1i8ejhl > *, .framer-XB7dM .framer-1urfksi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XB7dM.framer-1jrebcy > :first-child, .framer-XB7dM .framer-1k8h4z5 > :first-child, .framer-XB7dM .framer-nonu22 > :first-child, .framer-XB7dM .framer-1gv201t > :first-child, .framer-XB7dM .framer-jmzqxs > :first-child, .framer-XB7dM .framer-1i8ejhl > :first-child, .framer-XB7dM .framer-no21te > :first-child, .framer-XB7dM .framer-1omdp8h > :first-child, .framer-XB7dM .framer-yjxkm9 > :first-child, .framer-XB7dM .framer-nlmel > :first-child, .framer-XB7dM .framer-mfsd95 > :first-child, .framer-XB7dM .framer-13e45g9 > :first-child, .framer-XB7dM .framer-1ax59xl > :first-child, .framer-XB7dM .framer-d07di4 > :first-child, .framer-XB7dM .framer-1ws45yz > :first-child, .framer-XB7dM .framer-gp89x3 > :first-child, .framer-XB7dM .framer-wm7r6 > :first-child, .framer-XB7dM .framer-1urfksi > :first-child, .framer-XB7dM .framer-1jnlmvz > :first-child, .framer-XB7dM .framer-1w7bvmj > :first-child, .framer-XB7dM .framer-mgt49 > :first-child, .framer-XB7dM .framer-17tnuwx > :first-child, .framer-XB7dM .framer-1tguond > :first-child { margin-top: 0px; } .framer-XB7dM.framer-1jrebcy > :last-child, .framer-XB7dM .framer-1k8h4z5 > :last-child, .framer-XB7dM .framer-nonu22 > :last-child, .framer-XB7dM .framer-1gv201t > :last-child, .framer-XB7dM .framer-jmzqxs > :last-child, .framer-XB7dM .framer-1i8ejhl > :last-child, .framer-XB7dM .framer-no21te > :last-child, .framer-XB7dM .framer-1omdp8h > :last-child, .framer-XB7dM .framer-yjxkm9 > :last-child, .framer-XB7dM .framer-nlmel > :last-child, .framer-XB7dM .framer-mfsd95 > :last-child, .framer-XB7dM .framer-13e45g9 > :last-child, .framer-XB7dM .framer-1ax59xl > :last-child, .framer-XB7dM .framer-d07di4 > :last-child, .framer-XB7dM .framer-1ws45yz > :last-child, .framer-XB7dM .framer-gp89x3 > :last-child, .framer-XB7dM .framer-wm7r6 > :last-child, .framer-XB7dM .framer-1urfksi > :last-child, .framer-XB7dM .framer-1jnlmvz > :last-child, .framer-XB7dM .framer-1w7bvmj > :last-child, .framer-XB7dM .framer-mgt49 > :last-child, .framer-XB7dM .framer-17tnuwx > :last-child, .framer-XB7dM .framer-1tguond > :last-child { margin-bottom: 0px; } .framer-XB7dM .framer-1k8h4z5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-XB7dM .framer-pr0f86 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-XB7dM .framer-pr0f86 > :first-child, .framer-XB7dM .framer-y8ik0h > :first-child, .framer-XB7dM .framer-z63qek > :first-child, .framer-XB7dM .framer-d84809 > :first-child, .framer-XB7dM .framer-mulu42 > :first-child, .framer-XB7dM .framer-mdg1vv > :first-child, .framer-XB7dM .framer-17b0m6n > :first-child, .framer-XB7dM .framer-1icblb2 > :first-child, .framer-XB7dM .framer-1dhvhp4 > :first-child, .framer-XB7dM .framer-s92nwv > :first-child, .framer-XB7dM .framer-v7lvi > :first-child { margin-left: 0px; } .framer-XB7dM .framer-pr0f86 > :last-child, .framer-XB7dM .framer-y8ik0h > :last-child, .framer-XB7dM .framer-z63qek > :last-child, .framer-XB7dM .framer-d84809 > :last-child, .framer-XB7dM .framer-mulu42 > :last-child, .framer-XB7dM .framer-mdg1vv > :last-child, .framer-XB7dM .framer-17b0m6n > :last-child, .framer-XB7dM .framer-1icblb2 > :last-child, .framer-XB7dM .framer-1dhvhp4 > :last-child, .framer-XB7dM .framer-s92nwv > :last-child, .framer-XB7dM .framer-v7lvi > :last-child { margin-right: 0px; } .framer-XB7dM .framer-nonu22 > *, .framer-XB7dM .framer-1omdp8h > *, .framer-XB7dM .framer-mfsd95 > *, .framer-XB7dM .framer-d07di4 > *, .framer-XB7dM .framer-wm7r6 > *, .framer-XB7dM .framer-1jnlmvz > *, .framer-XB7dM .framer-1w7bvmj > *, .framer-XB7dM .framer-1tguond > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XB7dM .framer-y8ik0h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XB7dM .framer-z63qek > *, .framer-XB7dM .framer-s92nwv > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-XB7dM .framer-1gv201t > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-XB7dM .framer-jmzqxs > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-XB7dM .framer-d84809 > *, .framer-XB7dM .framer-mulu42 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-XB7dM .framer-mdg1vv > *, .framer-XB7dM .framer-1icblb2 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-XB7dM .framer-17b0m6n > *, .framer-XB7dM .framer-1dhvhp4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XB7dM .framer-no21te > *, .framer-XB7dM .framer-nlmel > *, .framer-XB7dM .framer-13e45g9 > *, .framer-XB7dM .framer-1ax59xl > *, .framer-XB7dM .framer-gp89x3 > *, .framer-XB7dM .framer-mgt49 > *, .framer-XB7dM .framer-17tnuwx > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-XB7dM .framer-yjxkm9 > *, .framer-XB7dM .framer-1ws45yz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XB7dM .framer-v7lvi > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-XB7dM[data-border=\"true\"]::after, .framer-XB7dM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-XB7dM.framer-1jrebcy { width: 810px; } .framer-XB7dM .framer-1k8h4z5 { justify-content: flex-start; padding: 40px 24px 0px 24px; } .framer-XB7dM .framer-pr0f86 { align-content: center; align-items: center; padding: 0px; } .framer-XB7dM .framer-y8ik0h { align-content: flex-end; align-items: flex-end; padding: 48px 0px 0px 0px; } .framer-XB7dM .framer-1n845dj { flex: none; height: var(--framer-aspect-ratio-supported, 236px); width: 369px; } .framer-XB7dM .framer-no21te, .framer-XB7dM .framer-1ax59xl, .framer-XB7dM .framer-1ws45yz, .framer-XB7dM .framer-mgt49 { padding: 120px 24px 120px 24px; } .framer-XB7dM .framer-di076o { grid-template-columns: repeat(2, minmax(1px, 1fr)); } .framer-XB7dM .framer-yjxkm9 { padding: 60px 24px 60px 24px; } .framer-XB7dM .framer-1dhvhp4 { flex-direction: column; } .framer-XB7dM .framer-mfsd95 { align-self: unset; flex: none; height: 800px; max-width: unset; order: 0; overflow: hidden; width: 100%; } .framer-XB7dM .framer-13e45g9 { order: 1; padding: 48px 0px 0px 48px; width: 100%; } .framer-XB7dM .framer-q1498v { flex: 1 0 0px; width: 1px; } .framer-XB7dM .framer-v7lvi { gap: unset; justify-content: space-between; } .framer-XB7dM .framer-gp89x3 { padding: 0px 0px 48px 0px; } .framer-XB7dM .framer-1urfksi { gap: 48px; padding: 120px 24px 120px 24px; } .framer-XB7dM .framer-1jnlmvz { max-width: unset; padding: 20px 0px 0px 0px; } .framer-XB7dM .framer-1w7bvmj { padding: 0px; width: 100%; } .framer-XB7dM .framer-17tnuwx { align-content: flex-end; align-items: flex-end; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XB7dM .framer-1dhvhp4, .framer-XB7dM .framer-v7lvi, .framer-XB7dM .framer-1urfksi { gap: 0px; } .framer-XB7dM .framer-1dhvhp4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XB7dM .framer-1dhvhp4 > :first-child, .framer-XB7dM .framer-1urfksi > :first-child { margin-top: 0px; } .framer-XB7dM .framer-1dhvhp4 > :last-child, .framer-XB7dM .framer-1urfksi > :last-child { margin-bottom: 0px; } .framer-XB7dM .framer-v7lvi > *, .framer-XB7dM .framer-v7lvi > :first-child, .framer-XB7dM .framer-v7lvi > :last-child { margin: 0px; } .framer-XB7dM .framer-1urfksi > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\",\"@media (max-width: 809px) { .framer-XB7dM.framer-1jrebcy { width: 390px; } .framer-XB7dM .framer-1k8h4z5 { gap: 24px; padding: 140px 24px 0px 24px; } .framer-XB7dM .framer-pr0f86 { flex-direction: column; padding: 0px; } .framer-XB7dM .framer-nonu22 { flex: none; gap: 80px; padding: 0px; width: 100%; } .framer-XB7dM .framer-y8ik0h { align-self: unset; height: min-content; padding: 48px 0px 0px 0px; width: 100%; } .framer-XB7dM .framer-1n845dj { flex: none; height: var(--framer-aspect-ratio-supported, 219px); width: 342px; } .framer-XB7dM .framer-z63qek, .framer-XB7dM .framer-1dhvhp4, .framer-XB7dM .framer-s92nwv { flex-direction: column; } .framer-XB7dM .framer-x2sgbb-container { flex: none; order: 1; width: 100%; } .framer-XB7dM .framer-1gv201t { order: 0; } .framer-XB7dM .framer-1fy8zly-container { flex: none; order: 2; width: 100%; } .framer-XB7dM .framer-no21te, .framer-XB7dM .framer-1ax59xl, .framer-XB7dM .framer-1ws45yz, .framer-XB7dM .framer-mgt49 { padding: 96px 24px 96px 24px; } .framer-XB7dM .framer-1omdp8h { align-content: center; align-items: center; } .framer-XB7dM .framer-di076o { grid-template-columns: repeat(1, minmax(1px, 1fr)); } .framer-XB7dM .framer-yjxkm9 { padding: 40px 0px 40px 0px; } .framer-XB7dM .framer-nlmel { padding: 0px 24px 0px 24px; } .framer-XB7dM .framer-mfsd95 { align-self: unset; flex: none; height: 360px; order: 1; width: 100%; } .framer-XB7dM .framer-13e45g9 { order: 0; padding: 48px 0px 32px 0px; width: 100%; } .framer-XB7dM .framer-q1498v { width: 100%; } .framer-XB7dM .framer-v7lvi { flex-direction: column; gap: 48px; max-width: 240px; } .framer-XB7dM .framer-rz5mfr-container, .framer-XB7dM .framer-70xpmn-container, .framer-XB7dM .framer-osok39-container { flex: none; width: 100%; } .framer-XB7dM .framer-c1oby4 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-XB7dM .framer-1urfksi { gap: 48px; padding: 96px 24px 96px 24px; } .framer-XB7dM .framer-1jnlmvz { padding: 20px 9px 20px 9px; } .framer-XB7dM .framer-1w7bvmj { padding: 0px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XB7dM .framer-1k8h4z5, .framer-XB7dM .framer-pr0f86, .framer-XB7dM .framer-nonu22, .framer-XB7dM .framer-z63qek, .framer-XB7dM .framer-1dhvhp4, .framer-XB7dM .framer-s92nwv, .framer-XB7dM .framer-v7lvi, .framer-XB7dM .framer-1urfksi { gap: 0px; } .framer-XB7dM .framer-1k8h4z5 > *, .framer-XB7dM .framer-z63qek > *, .framer-XB7dM .framer-s92nwv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XB7dM .framer-1k8h4z5 > :first-child, .framer-XB7dM .framer-pr0f86 > :first-child, .framer-XB7dM .framer-nonu22 > :first-child, .framer-XB7dM .framer-z63qek > :first-child, .framer-XB7dM .framer-1dhvhp4 > :first-child, .framer-XB7dM .framer-s92nwv > :first-child, .framer-XB7dM .framer-v7lvi > :first-child, .framer-XB7dM .framer-1urfksi > :first-child { margin-top: 0px; } .framer-XB7dM .framer-1k8h4z5 > :last-child, .framer-XB7dM .framer-pr0f86 > :last-child, .framer-XB7dM .framer-nonu22 > :last-child, .framer-XB7dM .framer-z63qek > :last-child, .framer-XB7dM .framer-1dhvhp4 > :last-child, .framer-XB7dM .framer-s92nwv > :last-child, .framer-XB7dM .framer-v7lvi > :last-child, .framer-XB7dM .framer-1urfksi > :last-child { margin-bottom: 0px; } .framer-XB7dM .framer-pr0f86 > *, .framer-XB7dM .framer-v7lvi > *, .framer-XB7dM .framer-1urfksi > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-XB7dM .framer-nonu22 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-XB7dM .framer-1dhvhp4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6748\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sD3NhYMy2\":{\"layout\":[\"fixed\",\"auto\"]},\"tEJQytRxF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"wF7GQs8DZ\":{\"pattern\":\":wF7GQs8DZ\",\"name\":\"about\"},\"yHG5bpcsC\":{\"pattern\":\":yHG5bpcsC\",\"name\":\"welcome\"},\"X00pD1R8b\":{\"pattern\":\":X00pD1R8b\",\"name\":\"team-section\"},\"kbPImyIfW\":{\"pattern\":\":kbPImyIfW\",\"name\":\"appointment-background\"}}\n * @framerResponsiveScreen\n */const FramereucEC2kGW=withCSS(Component,css,\"framer-XB7dM\");export default FramereucEC2kGW;FramereucEC2kGW.displayName=\"Home\";FramereucEC2kGW.defaultProps={height:6748,width:1200};addFonts(FramereucEC2kGW,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qWSRToK8EPg.woff2\",weight:\"300\"}]},...NavigationFonts,...GraphicPatternFonts,...StatisticsCardFonts,...MaterialFonts,...DataStackFonts,...ImageCarouselFonts,...AwardCardFonts,...TeamMemberCardFonts,...CurvedArrowFonts,...AppointmentDentalClinicFonts,...TestimonialSlideFonts,...FooterFonts,...MaxAssistWidgetFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereucEC2kGW\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"wF7GQs8DZ\\\":{\\\"pattern\\\":\\\":wF7GQs8DZ\\\",\\\"name\\\":\\\"about\\\"},\\\"yHG5bpcsC\\\":{\\\"pattern\\\":\\\":yHG5bpcsC\\\",\\\"name\\\":\\\"welcome\\\"},\\\"X00pD1R8b\\\":{\\\"pattern\\\":\\\":X00pD1R8b\\\",\\\"name\\\":\\\"team-section\\\"},\\\"kbPImyIfW\\\":{\\\"pattern\\\":\\\":kbPImyIfW\\\",\\\"name\\\":\\\"appointment-background\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6748\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sD3NhYMy2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tEJQytRxF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "Z", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "css", "FramerSyZLtlZDf", "withCSS", "SyZLtlZDf_default", "addPropertyControls", "ControlType", "addFonts", "OfficeImagesFonts", "getFonts", "SyZLtlZDf_default", "CarouselFonts", "Carousel", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Carousel", "SyZLtlZDf_default", "css", "FramerJpU_2RXdP", "withCSS", "JpU_2RXdP_default", "addFonts", "OfficeImagesFonts", "CarouselFonts", "GraphicPatternFonts", "getFonts", "dibiyK5ot_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "number", "text", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "RnEfBiXla", "oyv6Y7D0c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "dibiyK5ot_default", "RichText2", "css", "FramerYUCZl6uJV", "withCSS", "YUCZl6uJV_default", "addPropertyControls", "ControlType", "addFonts", "GraphicPatternFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "IZY07PrMS_default", "GraphicPatternFonts", "dibiyK5ot_default", "ContainerWithFX", "withFX", "Container", "StatisticsCardFonts", "YUCZl6uJV_default", "MaterialFonts", "Icon", "DataStackFonts", "nQhAuyplE_default", "ImageCarouselFonts", "JpU_2RXdP_default", "AwardCardFonts", "buWu8M9Dm_default", "TeamMemberCardFonts", "AXD3NF8cE_default", "CurvedArrowFonts", "w3setpqhc_default", "AppointmentDentalClinicFonts", "tBpicfeJ6_default", "TestimonialSlideFonts", "lOYOkI15n_default", "FooterFonts", "IOJnH9t8g_default", "MaxAssistWidgetFonts", "WP_jZhrxr_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation4", "animation5", "transition4", "animation6", "animation7", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "LFVbxm9bpDijHjqFFB", "O_2QEfGZ0DijHjqFFB", "wiaTmdRu5DijHjqFFB", "UJsGdWKztDijHjqFFB", "PJQ7CMKoPDijHjqFFB", "idDijHjqFFB", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "elementId1", "ref2", "isDisplayed", "elementId2", "ref3", "router", "useRouter", "elementId3", "ref4", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "ChildrenCanSuspend", "JnDQ0IEFz_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "css", "FramereucEC2kGW", "withCSS", "eucEC2kGW_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
