{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/3MgnHTca36VoSK9cEBvR/2EBarB53TnAQGHPlAjeE/jLPT9LWA5.js", "ssg:https://framerusercontent.com/modules/p9PrZURLKHUoorfB227e/Ki3qtXVBAStE4mb3lDQY/oijjro428.js", "ssg:https://framerusercontent.com/modules/397wJA4k4nW64PzCr7Mg/DfGp1eyDDEK2uB0Vf0IP/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (f082bd6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/8iRTmYvsfZi5Suhuu2GY/b3Xzjynn1WS7Vh9wUsaG/componentPresets.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/ivml3AdkXFjEeePkiTCu/SDSL4Bzhh6381hED6NeO/diFuM_mk8.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/7FBryyzP6jdgBAG34cPn/Jnl5p2c90ixsf6Mqr5hb/JVredlBTg.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/so5p5hcsCAFORlsL0njI/2zNTjTvAwrcrXPCWYUBE/lSJiOgwfA.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/1Ldyd07ve8bLqMUhQIAL/WxbtCGATCwxZ5kE9Ncan/mOtnGF6vo.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/b9j6hbbxczeK7gDOLTNx/JbY3B1pogMZJ2wYSDSq7/qyhiwbadA.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/Do1tVZ0H4GvkhiLWCvt5/1Qb4iW9J9bkYe08IYqtr/S0VTCG_fv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/e1n5F6i4OFR4Wa09HEgi/sQ1aCnNeogTeAF649OX1/xmWXR2j3E.js\";const serializationHash=\"framer-mM2jj\";const variantClassNames={jRd2JatvW:\"framer-v-1gnvw3g\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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=({description,height,id,link,title,width,...props})=>{return{...props,a8xTm8jUG:link??props.a8xTm8jUG,isELuo4Rk:description??props.isELuo4Rk??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Regular check-ups ensure the early detection of issues, promoting proactive care and maintaining optimal oral health.\"})}),vutU4bPP7:title??props.vutU4bPP7??\"Comprehensive Dental Exams\"};};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,vutU4bPP7,a8xTm8jUG,isELuo4Rk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jRd2JatvW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:a8xTm8jUG,nodeId:\"jRd2JatvW\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1gnvw3g\",className,classNames)} framer-qob2m0`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jRd2JatvW\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1tkdmol\",\"data-styles-preset\":\"qyhiwbadA\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75)))\"},children:\"Comprehensive Dental Exams\"})}),className:\"framer-cti9gj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EIg1ePodo\",style:{\"--extracted-a0htzi\":\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vutU4bPP7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"OOT2SRk8v\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"DETg9wiDt\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:isELuo4Rk,className:\"framer-120dnvl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wfv39mp6k\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-70ul5r\",h1:\"framer-styles-preset-18453zt\",h2:\"framer-styles-preset-dnzc71\",h3:\"framer-styles-preset-1tkdmol\",h4:\"framer-styles-preset-z4h2c3\",img:\"framer-styles-preset-9eoj16\",p:\"framer-styles-preset-1a4xi5s\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mM2jj.framer-qob2m0, .framer-mM2jj .framer-qob2m0 { display: block; }\",\".framer-mM2jj.framer-1gnvw3g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 270px; }\",\".framer-mM2jj .framer-cti9gj, .framer-mM2jj .framer-120dnvl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mM2jj.framer-1gnvw3g { gap: 0px; } .framer-mM2jj.framer-1gnvw3g > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-mM2jj.framer-1gnvw3g > :first-child { margin-top: 0px; } .framer-mM2jj.framer-1gnvw3g > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 270\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vutU4bPP7\":\"title\",\"a8xTm8jUG\":\"link\",\"isELuo4Rk\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjLPT9LWA5=withCSS(Component,css,\"framer-mM2jj\");export default FramerjLPT9LWA5;FramerjLPT9LWA5.displayName=\"Services Stack Card\";FramerjLPT9LWA5.defaultProps={height:96,width:270};addPropertyControls(FramerjLPT9LWA5,{vutU4bPP7:{defaultValue:\"Comprehensive Dental Exams\",displayTextArea:false,title:\"Title\",type:ControlType.String},a8xTm8jUG:{title:\"Link\",type:ControlType.Link},isELuo4Rk:{defaultValue:\"<p>Regular check-ups ensure the early detection of issues, promoting proactive care and maintaining optimal oral health.</p>\",title:\"Description\",type:ControlType.RichText}});addFonts(FramerjLPT9LWA5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...componentPresets.fonts?.[\"DETg9wiDt\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"DETg9wiDt\"]):[],...componentPresets.fonts?.[\"OOT2SRk8v\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"OOT2SRk8v\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjLPT9LWA5\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"96\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"270\",\"framerVariables\":\"{\\\"vutU4bPP7\\\":\\\"title\\\",\\\"a8xTm8jUG\\\":\\\"link\\\",\\\"isELuo4Rk\\\":\\\"description\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jLPT9LWA5.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-Kp4iQ\";const variantClassNames={Vhvbh4GqK:\"framer-v-10vellq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Vhvbh4GqK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/fD4rNjiizNiuRxAv8\",motionChild:true,nodeId:\"Vhvbh4GqK\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-10vellq\",className,classNames)} framer-1os3wrk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Vhvbh4GqK\",ref:ref??ref1,style:{backgroundColor:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(1, 73, 75))\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-utb2of\",layoutDependency:layoutDependency,layoutId:\"TKuGkB8bn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4dfg4v-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FfNrSa1eJ-container\",nodeId:\"FfNrSa1eJ\",rendersWithMotion:true,scopeId:\"oijjro428\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MapPin\",id:\"FfNrSa1eJ\",layoutId:\"FfNrSa1eJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"4773 Yonge St, #4J \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"North York, ON\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)))\"},children:\"M2N 0G2\"})]}),className:\"framer-7i3j13\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"t6Bh5FdK9\",style:{\"--extracted-1iakedh\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--extracted-2gxw0f\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Kp4iQ.framer-1os3wrk, .framer-Kp4iQ .framer-1os3wrk { display: block; }\",\".framer-Kp4iQ.framer-10vellq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Kp4iQ .framer-utb2of { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 60px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Kp4iQ .framer-4dfg4v-container { flex: none; height: 58px; position: relative; width: 53px; }\",\".framer-Kp4iQ .framer-7i3j13 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Kp4iQ.framer-10vellq, .framer-Kp4iQ .framer-utb2of { gap: 0px; } .framer-Kp4iQ.framer-10vellq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Kp4iQ.framer-10vellq > :first-child, .framer-Kp4iQ .framer-utb2of > :first-child { margin-left: 0px; } .framer-Kp4iQ.framer-10vellq > :last-child, .framer-Kp4iQ .framer-utb2of > :last-child { margin-right: 0px; } .framer-Kp4iQ .framer-utb2of > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 293\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameroijjro428=withCSS(Component,css,\"framer-Kp4iQ\");export default Frameroijjro428;Frameroijjro428.displayName=\"Address Badge\";Frameroijjro428.defaultProps={height:80,width:293};addFonts(Frameroijjro428,[{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\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameroijjro428\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"293\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oijjro428.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{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Search from\"#framer/local/canvasComponent/amE6h1bVH/amE6h1bVH.js\";import TeamMemberCard from\"#framer/local/canvasComponent/AXD3NF8cE/AXD3NF8cE.js\";import ServicesPreventiveCareCard from\"#framer/local/canvasComponent/c3fq73kHm/c3fq73kHm.js\";import GraphicPattern from\"#framer/local/canvasComponent/dibiyK5ot/dibiyK5ot.js\";import Button from\"#framer/local/canvasComponent/hgmUA8YC0/hgmUA8YC0.js\";import Footer from\"#framer/local/canvasComponent/IOJnH9t8g/IOJnH9t8g.js\";import Navigation from\"#framer/local/canvasComponent/IZY07PrMS/IZY07PrMS.js\";import ServicesStackCard from\"#framer/local/canvasComponent/jLPT9LWA5/jLPT9LWA5.js\";import TestimonialSlide from\"#framer/local/canvasComponent/lOYOkI15n/lOYOkI15n.js\";import ReviewsTicker from\"#framer/local/canvasComponent/lyqSlYnIL/lyqSlYnIL.js\";import DataStack from\"#framer/local/canvasComponent/nQhAuyplE/nQhAuyplE.js\";import AddressBadge from\"#framer/local/canvasComponent/oijjro428/oijjro428.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 NorthYorkDentists from\"#framer/local/collection/JnDQ0IEFz/JnDQ0IEFz.js\";import*as sharedStyle2 from\"#framer/local/css/m90wm8COZ/m90wm8COZ.js\";import*as sharedStyle1 from\"#framer/local/css/mOtnGF6vo/mOtnGF6vo.js\";import*as sharedStyle from\"#framer/local/css/wzbFiBFuS/wzbFiBFuS.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const MaxAssistWidgetFonts=getFonts(MaxAssistWidget);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const GraphicPatternFonts=getFonts(GraphicPattern);const ContainerWithFX=withFX(Container);const ButtonFonts=getFonts(Button);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const SearchFonts=getFonts(Search);const ServicesPreventiveCareCardFonts=getFonts(ServicesPreventiveCareCard);const ServicesStackCardFonts=getFonts(ServicesStackCard);const AddressBadgeFonts=getFonts(AddressBadge);const DataStackFonts=getFonts(DataStack);const ReviewsTickerFonts=getFonts(ReviewsTicker);const TeamMemberCardFonts=getFonts(TeamMemberCard);const TestimonialSlideFonts=getFonts(TestimonialSlide);const CurvedArrowFonts=getFonts(CurvedArrow);const AppointmentDentalClinicFonts=getFonts(AppointmentDentalClinic);const FooterFonts=getFonts(Footer);const breakpoints={gLffnSq0V:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",ZyDCKWIpC:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-xdQ6c\";const variantClassNames={gLffnSq0V:\"framer-v-1ya9o1s\",WQLkyLRf1:\"framer-v-72rtr7\",ZyDCKWIpC:\"framer-v-1uavoh6\"};const transition1={delay:0,duration:.8,ease:[.45,-.03,.37,1.71],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition2={delay:0,duration:1,ease:[.75,.01,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:48,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:48,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-48,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:-48,y:0};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:36};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:36};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 animation12={opacity:1,rotate:-45,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation13={opacity:1,rotate:-45,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,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:\"WQLkyLRf1\",Phone:\"ZyDCKWIpC\",Tablet:\"gLffnSq0V\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,LFVbxm9bpFTbnp6q0A,O_2QEfGZ0FTbnp6q0A,wiaTmdRu5FTbnp6q0A,UJsGdWKztFTbnp6q0A,PJQ7CMKoPFTbnp6q0A,idFTbnp6q0A,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ZyDCKWIpC\")return false;return true;};const elementId=useRouteElementId(\"lrudOW9qu\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"Q15DnwIm8\");const elementId2=useRouteElementId(\"rQpPZaZGk\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"oWd8EMEos\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"mB221BzSw\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"RqsSUb9Cd\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"bcaPdbrgE\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"D7Y7DGiBu\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"bVJ8SkcE1\");const ref9=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"gLffnSq0V\",\"ZyDCKWIpC\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"92vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eijvg1-container\",\"data-framer-name\":\"Navigation\",layoutScroll:true,name:\"Navigation\",nodeId:\"n60iNQKAi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{variant:\"FtRCabt9X\"},ZyDCKWIpC:{variant:\"FtRCabt9X\"}},children:/*#__PURE__*/_jsx(Navigation,{gGOQ9Ojsl:ref1,height:\"100%\",id:\"n60iNQKAi\",layoutId:\"n60iNQKAi\",name:\"Navigation\",style:{width:\"100%\"},variant:\"R5fnXQBXs\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:260,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1r85rt1-container hidden-1uavoh6\",\"data-framer-appear-id\":\"1r85rt1\",initial:animation1,layoutScroll:true,nodeId:\"U3mtpzfL2\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MaxAssistWidget,{height:\"100%\",id:\"U3mtpzfL2\",layoutId:\"U3mtpzfL2\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cyeu7c\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{height:667},ZyDCKWIpC:{height:1468.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{__framer__parallaxTransformEnabled:undefined},ZyDCKWIpC:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:50,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ucf1pl-container\",nodeId:\"lMDTZT8bO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"lMDTZT8bO\",layoutId:\"lMDTZT8bO\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"b4cU4cA3f\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{__framer__parallaxTransformEnabled:undefined},ZyDCKWIpC:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:80,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15ssmb6\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pv0yjg\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1suv5iv\",\"data-framer-name\":\"Sovrle Dental\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-np9blh\",\"data-framer-name\":\"Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18vcigw\",\"data-border\":true,\"data-framer-name\":\"Review Header\",children:/*#__PURE__*/_jsx(Link,{href:\"https://maps.app.goo.gl/wwKrZ9ZqxzwUzLNQ7\",motionChild:true,nodeId:\"KGhXw_SRRvgwBHpxts\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1493gti framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Review\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3g8b9\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+0+0+0+0+0+0+0+4+0+2),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/VDmOcOWtzj6yDgcpu3QrQohTaXk.svg\"}},ZyDCKWIpC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+0+0+0+0+0+4+0+2),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+160+0+14.4+0+0+0+0+0+0+0+0+4+0+2),pixelHeight:40,pixelWidth:40,src:\"https://framerusercontent.com/images/VDmOcOWtzj6yDgcpu3QrQohTaXk.svg\"},className:\"framer-sv423a\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m131q1\",\"data-framer-name\":\"Name & Position\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4m5bgp\",\"data-framer-name\":\"5-stars\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(235, 190, 14)\"},children:\"4.9\"})}),className:\"framer-degld6\",fonts:[\"FS;Switzer-semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"Sovrle Dental Clinic 5-Star Review\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+0+0+0+0+0+0+0+4+0+0+0+0+14),pixelHeight:400,pixelWidth:1600,sizes:\"100px\",src:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg\",srcSet:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg 1200w\"}},ZyDCKWIpC:{background:{alt:\"Sovrle Dental Clinic 5-Star Review\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+100+0+0+0+0+0+0+0+0+0+0+0+4+0+0+0+0+14),pixelHeight:400,pixelWidth:1600,sizes:\"100px\",src:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg\",srcSet:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Sovrle Dental Clinic 5-Star Review\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+14.4+0+0+0+0+0+0+0+0+4+0+0+0+0+14),pixelHeight:400,pixelWidth:1600,sizes:\"100px\",src:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg\",srcSet:\"https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/c8VRsEMdpHTOs7wCjIRItplyNjg.svg 1200w\"},className:\"framer-173taxe\",\"data-framer-name\":\"5 Stars\"})})]})})]})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:[\"Your Trusted Dentist \",/*#__PURE__*/_jsx(\"br\",{}),\"in North York\"]})}),className:\"framer-4uz134\",fonts:[\"FR;InterDisplay-SemiBold\"],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-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"From routine checkups to advanced procedures, our experienced dentists are here to help you achieve your healthiest smile. \"})}),className:\"framer-1gcma8m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k36f4u\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":bVJ8SkcE1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":bVJ8SkcE1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":bVJ8SkcE1\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+0+120+0+0+0+311.2+0+0},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+0+100+0+0+0+0+311.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"280px\",y:(componentViewport?.y||0)+0+0+160+0+14.4+0+311.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13gbqmf-container\",nodeId:\"wmKNz2zZR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{qFUu9JC30:resolvedLinks[1]},ZyDCKWIpC:{qFUu9JC30:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"wmKNz2zZR\",layoutId:\"wmKNz2zZR\",m_viuh9zH:\"Schedule Appointment\",qFUu9JC30:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"mBywSY5hA\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Q15DnwIm8\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Q15DnwIm8\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Q15DnwIm8\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:\"280px\",y:(componentViewport?.y||0)+0+0+120+0+0+0+311.2+0+72},ZyDCKWIpC:{width:\"280px\",y:(componentViewport?.y||0)+0+0+100+0+0+0+0+311.2+0+72}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:(componentViewport?.y||0)+0+0+160+0+14.4+0+311.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rpuwug-container\",nodeId:\"PlZRBSfV9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{qFUu9JC30:resolvedLinks1[1]},ZyDCKWIpC:{qFUu9JC30:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"PlZRBSfV9\",layoutId:\"PlZRBSfV9\",m_viuh9zH:\"Learn More\",qFUu9JC30:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},variant:\"a4kDeGivi\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-127rj9r\",\"data-framer-name\":\"Photo Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ewyq4n-container\",\"data-framer-appear-id\":\"1ewyq4n\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kl9MsJ69k\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"kl9MsJ69k\",isMixedBorderRadius:false,isRed:false,layoutId:\"kl9MsJ69k\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://www.youtube.com/watch?v=xAxBs6ZV8RA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aj9b6m\",\"data-framer-name\":\"Back Shadow\"})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1cqj4hp\",\"data-framer-name\":\"Welcome Section\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12o9tl6\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1go5jll\",\"data-framer-name\":\"Heading Stack\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,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:\"Welcome to Sovrle Dental Clinic\"})}),className:\"framer-urha9y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"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:[\"At Sovrle Dental Clinic, we take care of your oral health.\",/*#__PURE__*/_jsx(\"br\",{}),\"Please tell us what you need help with and we'll provide the best solution.\"]})}),className:\"framer-s4ss03\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+723.2+60+0+0+0+0+224.4},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+1031.2+40+0+0+0+0+224.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"1200px\",y:(componentViewport?.y||0)+0+680+120+0+0+0+0+224.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kdsj18-container\",nodeId:\"Z_yAxtel_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Search,{height:\"100%\",id:\"Z_yAxtel_\",K5cVoW9ru:true,layoutId:\"Z_yAxtel_\",Mc1jWsIMT:\"How can we help you today?\",style:{height:\"100%\",maxWidth:\"100%\"},variant:\"KQ9dnnvXf\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15t3249\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tglkfm\",\"data-framer-name\":\"Left Stack\",children:[/*#__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:\"Or, learn more about all of the dental services we provide.\"})}),className:\"framer-1p8991o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lmmi68\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fp46z\",\"data-framer-name\":\"Data Stack\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":oWd8EMEos\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":oWd8EMEos\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":oWd8EMEos\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+723.2+60+0+0+320.4+0+0+0+174+0+0},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+1031.2+40+0+0+320.4+0+0+0+174+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+680+120+0+0+320.4+0+0+174+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZyDCKWIpC:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u9aqbb-container\",nodeId:\"qvWwLqm1m\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{pHbVjmifh:resolvedLinks2[1]},ZyDCKWIpC:{pHbVjmifh:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ServicesPreventiveCareCard,{dE2XGXiKQ:\"Dental Appliances\",height:\"100%\",id:\"qvWwLqm1m\",IFfVCzW4z:\"\",JRA2Cjum5:\"Tooth Pain & Sensitivity\",layoutId:\"qvWwLqm1m\",MhnTPkFas:true,NMfmUNH1b:\"Tooth Extractions\",p4nWMvqV9:\"Bandaids\",pHbVjmifh:resolvedLinks2[0],style:{width:\"100%\"},T4peGDLTf:true,U30T7NF3i:false,vW2Y9dPF9:\"Tooth Restoration\",width:\"100%\",xNLplJVgu:true})})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":rQpPZaZGk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":rQpPZaZGk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":rQpPZaZGk\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+723.2+60+0+0+320.4+0+0+0+174+0+0},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+1031.2+40+0+0+320.4+0+0+0+174+0+0+0+355}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+680+120+0+0+320.4+0+0+174+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11lsicp-container\",nodeId:\"uChsZxDfe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{pHbVjmifh:resolvedLinks3[1]},ZyDCKWIpC:{pHbVjmifh:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ServicesPreventiveCareCard,{dE2XGXiKQ:\"Cosmetic Dentistry\",height:\"100%\",id:\"uChsZxDfe\",IFfVCzW4z:\"Restorative Dentistry\",JRA2Cjum5:\"Improve Your Smile\",layoutId:\"uChsZxDfe\",MhnTPkFas:true,NMfmUNH1b:\"Dental Implants\",p4nWMvqV9:\"StarFour\",pHbVjmifh:resolvedLinks3[0],style:{width:\"100%\"},T4peGDLTf:true,U30T7NF3i:false,vW2Y9dPF9:\"Invisalign Clear Aligners\",width:\"100%\",xNLplJVgu:true})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":mB221BzSw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":mB221BzSw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":mB221BzSw\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+723.2+60+0+0+320.4+0+0+0+174+0+0},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+1031.2+40+0+0+320.4+0+0+0+174+0+0+0+710}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px), 1px) - 48px) / 3, 1px)`,y:(componentViewport?.y||0)+0+680+120+0+0+320.4+0+0+174+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZyDCKWIpC:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r2ap08-container\",nodeId:\"hc3ciIZ75\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{pHbVjmifh:resolvedLinks4[1]},ZyDCKWIpC:{pHbVjmifh:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ServicesPreventiveCareCard,{dE2XGXiKQ:\"Children's Dentistry\",height:\"100%\",id:\"hc3ciIZ75\",IFfVCzW4z:\"\",JRA2Cjum5:\"Regular Dental Care\",layoutId:\"hc3ciIZ75\",MhnTPkFas:true,NMfmUNH1b:\"Dental Exams\",p4nWMvqV9:\"Tooth\",pHbVjmifh:resolvedLinks4[0],style:{width:\"100%\"},T4peGDLTf:true,U30T7NF3i:false,vW2Y9dPF9:\"Teeth Cleaning\",width:\"100%\",xNLplJVgu:true})})})})})})})]})})]})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-yg2a5p\",\"data-framer-name\":\"Improve Your Smile\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rflph8\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7uy6b\",\"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\":\"left\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(53, 48, 64))\"},children:\"Improve Your Smile\"})}),className:\"framer-11yazu2\",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:\"Transform your smile with our General & Cosmetic Dentistry services. Our dental team ensures comprehensive care for a confident and radiant smile.\"})}),className:\"framer-ld2h1l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvp0hd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ywel6u\",\"data-framer-name\":\"Left Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5oiw0k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19fxfny\",\"data-framer-name\":\"Data Stack\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"invisalign-clear-aligners\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"T38_nhPyt\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"invisalign-clear-aligners\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"T38_nhPyt\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"invisalign-clear-aligners\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"T38_nhPyt\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+195+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fb20zm-container\",nodeId:\"L4ewWRhLo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks5[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks5[0],height:\"100%\",id:\"L4ewWRhLo\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Invisalign involves teeth straightening and alignment, combining beauty and function in a minimally invasive and barely noticeable manner.\\xa0\"})}),layoutId:\"L4ewWRhLo\",style:{width:\"100%\"},vutU4bPP7:\"Invisalign Clear Aligners\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"teeth-whitening\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DZncoI7wc\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"teeth-whitening\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DZncoI7wc\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"teeth-whitening\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DZncoI7wc\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+195+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t3addh-container\",nodeId:\"vHZOP5B8o\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks6[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks6[0],height:\"100%\",id:\"vHZOP5B8o\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Brighten your smile with professional teeth whitening, tailored to your preferences for a dazzling, confident appearance.\"})}),layoutId:\"vHZOP5B8o\",style:{width:\"100%\"},vutU4bPP7:\"Teeth Whitening\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"cosmetic-dentistry\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"QzZ6zv2LE\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"cosmetic-dentistry\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"QzZ6zv2LE\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"cosmetic-dentistry\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"QzZ6zv2LE\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+195+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7vzqi6-container\",nodeId:\"TIB197NTM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks7[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks7[0],height:\"100%\",id:\"TIB197NTM\",isELuo4Rk:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Volumes of research confirm the influential role of smiles on our relationships and our self-esteem.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),layoutId:\"TIB197NTM\",style:{width:\"100%\"},vutU4bPP7:\"Cosmetic Dentistry\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-implants\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AFPmuhcPY\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-implants\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AFPmuhcPY\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-implants\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AFPmuhcPY\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+195+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xo0wmq-container\",nodeId:\"FmIhnZ502\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks8[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks8[0],height:\"100%\",id:\"FmIhnZ502\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Restore your smile with dental implants, designed for natural function and a lasting, confident look.\"})}),layoutId:\"FmIhnZ502\",style:{width:\"100%\"},vutU4bPP7:\"Dental Implants\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"D2yvYssUM\"},implicitPathVariables:undefined},{href:{webPageId:\"D2yvYssUM\"},implicitPathVariables:undefined},{href:{webPageId:\"D2yvYssUM\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+600+48+264},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+195+48+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hffl3p-container\",nodeId:\"ZmFCkvxmJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{qFUu9JC30:resolvedLinks9[1]},ZyDCKWIpC:{qFUu9JC30:resolvedLinks9[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZmFCkvxmJ\",layoutId:\"ZmFCkvxmJ\",m_viuh9zH:\"See Patient Results\",qFUu9JC30:resolvedLinks9[0],variant:\"ljnSfhSMu\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17is1n1\",\"data-framer-name\":\"Photo Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+0+-48},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+0+-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+-48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jompxp-container\",nodeId:\"J6YNLkKZZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"J6YNLkKZZ\",layoutId:\"J6YNLkKZZ\",RriglqH4v:10,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"Cosmetic Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1644.6+60+0+0+248.4+0+0+0),pixelHeight:4016,pixelWidth:6016,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,src:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg 6016w\"}},ZyDCKWIpC:{background:{alt:\"Cosmetic Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2622.6+40+0+0+248.4+0+0+0+0),pixelHeight:4016,pixelWidth:6016,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 720px)`,src:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg 6016w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Cosmetic Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1721.4+120+0+0+248.4+0+0+0),pixelHeight:4016,pixelWidth:6016,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.45, 1px), 720px)`,src:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/1pmEP6pHIxKTnRW8tMwqdCCjeY.jpg 6016w\"},className:\"framer-1t7jdcm\",\"data-framer-name\":\"Dental_cabinet_01\"})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-y06rtp\",\"data-framer-name\":\"Tooth Pain & Sensitivity\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqtr7k\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ddwsou\",\"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\":\"right\",\"--framer-text-color\":\"var(--token-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(53, 48, 64))\"},children:\"Tooth Pain & Sensitivity\"})}),className:\"framer-1mie3o3\",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\":\"right\",\"--framer-text-color\":\"var(--token-573b3519-0dda-485d-a120-19ed8d20c69c, rgb(128, 128, 128))\"},children:\"At Sovrle Dental Clinic we put your health and wellbeing first. If you have tooth pain or sensitivity, we will diagnose the problem, explain the solution, and provide you the best treatment.\"})}),className:\"framer-3q9rpx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rxfgk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b8n4qs\",\"data-framer-name\":\"Photo Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+0+-48},ZyDCKWIpC:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 720px) + 96px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+372+-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+-48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iccn2a-container\",nodeId:\"Y0itxSdJf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"Y0itxSdJf\",layoutId:\"Y0itxSdJf\",RriglqH4v:10,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"Emergency Dental Services Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2985+60+0+0+248.4+0+0+0),pixelHeight:3840,pixelWidth:5760,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,src:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg 5760w\"}},ZyDCKWIpC:{background:{alt:\"Emergency Dental Services Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3518+40+0+0+248.4+0+372+0+0),pixelHeight:3840,pixelWidth:5760,positionX:\"left\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 720px)`,src:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg 5760w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Emergency Dental Services Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+0),pixelHeight:3840,pixelWidth:5760,positionX:\"left\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.4502, 1px), 720px)`,src:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/f1s7aJACf36G9Oe1yimgBubHA.jpg 5760w\"},className:\"framer-zk708e\",\"data-framer-name\":\"Dental_cabinet_01\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wv9536\",\"data-framer-name\":\"Left Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wn7cvm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j5ti56\",\"data-framer-name\":\"Data Stack\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"root-canal\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"gMpQ6m_J5\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"root-canal\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"gMpQ6m_J5\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"root-canal\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"gMpQ6m_J5\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+0+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.5498 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-in37ce-container\",nodeId:\"kHR_zIr0_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks10[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks10[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks10[0],height:\"100%\",id:\"kHR_zIr0_\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We utilize microscope technology to perform treatments like root canals that relieve tooth pain and save smiles.\\xa0\"})}),layoutId:\"kHR_zIr0_\",style:{width:\"100%\"},vutU4bPP7:\"Root Canals\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-mouthguards\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"yasDCkZMo\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-mouthguards\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"yasDCkZMo\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-mouthguards\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"yasDCkZMo\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+0+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.5498 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8obmyb-container\",nodeId:\"eFKNLamdS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks11[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks11[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks11[0],height:\"100%\",id:\"eFKNLamdS\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Protect your smile with custom-fit mouthguards, crafted for comfort and peace of mind during sports or sleep.\"})}),layoutId:\"eFKNLamdS\",style:{width:\"100%\"},vutU4bPP7:\"Mouthguards\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-laser-treatment\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"NKCdFqOXy\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-laser-treatment\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"NKCdFqOXy\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-laser-treatment\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"NKCdFqOXy\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+0+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.5498 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10jnnq9-container\",nodeId:\"YPSJKgZ5L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks12[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks12[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks12[0],height:\"100%\",id:\"YPSJKgZ5L\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Modern soft tissue lasers allow us to perform various treatments to the soft tissues and gums and even treat painful cold sores.\"})}),layoutId:\"YPSJKgZ5L\",style:{width:\"100%\"},vutU4bPP7:\"Dental Laser Treatment\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"tooth-extractions\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"VyFPhy7cS\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"tooth-extractions\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"VyFPhy7cS\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"tooth-extractions\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"VyFPhy7cS\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+0+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.5498 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-189j5xh-container\",nodeId:\"d8Cxc4eey\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks13[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks13[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks13[0],height:\"100%\",id:\"d8Cxc4eey\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Wisdom teeth, extra teeth, or very crowded teeth can be painful and sometimes need treatment involving removal.\\xa0\"})}),layoutId:\"d8Cxc4eey\",style:{width:\"100%\"},vutU4bPP7:\"Tooth Extractions\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+2985+60+0+0+248.4+0+600+48+264},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+3518+40+0+0+248.4+0+0+48+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2533.8+120+0+0+248.4+0+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vhmu8i-container\",nodeId:\"jA9npbCrw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZyDCKWIpC:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"jA9npbCrw\",layoutId:\"jA9npbCrw\",m_viuh9zH:\"Schedule an Appointment\",qFUu9JC30:\"https://can4.recallmax.com/rsm/request/public/bookOnline/patient/patient.html?a=DeCH7gxrN0Fo9hdr1nS3PqT4_ZeuzY4DC\",variant:\"ruvC3W2Fx\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-viyrc8\",\"data-framer-name\":\"Routine Dental Services\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oduvq0\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zhirg9\",\"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\":\"left\",\"--framer-text-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:\"Regular Dental Care\"})}),className:\"framer-1jbjxb1\",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:\"We provide general dentistry for all patients. From routine exams to teeth cleaning, our team will always be here to take care of your smile.\"})}),className:\"framer-128zp96\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n5leg1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qigku6\",\"data-framer-name\":\"Left Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7ic1h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1caivji\",\"data-framer-name\":\"Data Stack\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-exam\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"U9gUQki_S\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-exam\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"U9gUQki_S\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-exam\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"U9gUQki_S\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+195+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aiwpmz-container\",nodeId:\"llZHwTm4O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks14[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks14[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks14[0],height:\"100%\",id:\"llZHwTm4O\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Regular check-ups ensure the early detection of issues, promoting proactive care and maintaining optimal oral health.\"})}),layoutId:\"llZHwTm4O\",style:{width:\"100%\"},vutU4bPP7:\"Comprehensive Dental Exams\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-cleaning\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AOtq3M6hk\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-cleaning\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AOtq3M6hk\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-cleaning\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"AOtq3M6hk\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+600+48+0+0+0+0},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+195+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gfj1hf-container\",nodeId:\"SpGD9RHAO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks15[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks15[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks15[0],height:\"100%\",id:\"SpGD9RHAO\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Our skilled hygienists use advanced techniques to remove plaque and tartar, leaving your teeth clean and refreshed.\"})}),layoutId:\"SpGD9RHAO\",style:{width:\"100%\"},vutU4bPP7:\"Professional Teeth Cleaning\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"dental-x-ray\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"SKrpMw6UT\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-x-ray\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"SKrpMw6UT\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"dental-x-ray\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"SKrpMw6UT\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+195+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s88el9-container\",nodeId:\"kOpdOzexE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks16[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks16[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks16[0],height:\"100%\",id:\"kOpdOzexE\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Utilizing state-of-the-art technology, we provide precise diagnostics for a thorough understanding of your oral health.\"})}),layoutId:\"kOpdOzexE\",style:{width:\"100%\"},vutU4bPP7:\"Digital X-rays and Diagnostics\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{nY5P2yoJo:\"veneers\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DherCiwcZ\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"veneers\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DherCiwcZ\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined},{href:{pathVariables:{nY5P2yoJo:\"veneers\"},unresolvedPathSlugs:{nY5P2yoJo:{collectionId:\"l738G5OZf\",collectionItemId:\"DherCiwcZ\"}},webPageId:\"hTYplloXN\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+600+48+0+0+0+120},ZyDCKWIpC:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 72px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+195+48+0+0+0+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:`max((max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.55 - 48px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+0+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t81ips-container\",nodeId:\"qhsIH9pof\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{a8xTm8jUG:resolvedLinks17[1]},ZyDCKWIpC:{a8xTm8jUG:resolvedLinks17[2]}},children:/*#__PURE__*/_jsx(ServicesStackCard,{a8xTm8jUG:resolvedLinks17[0],height:\"100%\",id:\"qhsIH9pof\",isELuo4Rk:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Correct imperfections and achieve a flawless smile with custom-crafted porcelain veneers, enhancing both form and function.\"})}),layoutId:\"qhsIH9pof\",style:{width:\"100%\"},vutU4bPP7:\"Porcelain Veneers\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RqsSUb9Cd\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":RqsSUb9Cd\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":RqsSUb9Cd\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks18=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+600+48+264},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+195+48+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+264,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1od2xym-container\",nodeId:\"ke6fG0tpc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{qFUu9JC30:resolvedLinks18[1]},ZyDCKWIpC:{qFUu9JC30:resolvedLinks18[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ke6fG0tpc\",layoutId:\"ke6fG0tpc\",m_viuh9zH:\"Discover Why Patients Love Sovrle Dental\",qFUu9JC30:resolvedLinks18[0],variant:\"ljnSfhSMu\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1daes0t\",\"data-framer-name\":\"Photo Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+0+-48},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+0+-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+-48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xxvj5f-container\",nodeId:\"ajew_17E9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"ajew_17E9\",layoutId:\"ajew_17E9\",RriglqH4v:10,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"General Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4325.4+60+0+0+248.4+0+0+0),pixelHeight:1663,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,src:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg 2500w\"}},ZyDCKWIpC:{background:{alt:\"General Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4413.4+40+0+0+248.4+0+0+0+0),pixelHeight:1663,pixelWidth:2500,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px, 720px)`,src:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"General Dentistry Toronto\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3346.2+120+0+0+248.4+0+0+0),pixelHeight:1663,pixelWidth:2500,sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) * 0.45, 1px), 720px)`,src:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/AVisOGT54AzU9sgCXFIZoAxYw.jpg 2500w\"},className:\"framer-i224kd\",\"data-framer-name\":\"Dental_cabinet_01\"})})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t22rtl\",\"data-framer-name\":\"About Section\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lv9xkw\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1er2bt7\",\"data-framer-name\":\"Photo Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+5665.8+120+0+0+0+-48},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+5308.8+40+0+0+0+-48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:\"240px\",y:(componentViewport?.y||0)+0+4158.6+120+0+166.2+-48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gfjbvs-container\",nodeId:\"CXrkah7N_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"CXrkah7N_\",layoutId:\"CXrkah7N_\",RriglqH4v:10,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"lzd956UTB\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{background:{alt:\"Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:768,intrinsicWidth:1536,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5665.8+120+0+0+0+0+0),pixelHeight:1656,pixelWidth:2500,positionX:\"65.5%\",positionY:\"48.7%\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px), 720px)`,src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048\",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\"}},ZyDCKWIpC:{background:{alt:\"Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:768,intrinsicWidth:1536,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5308.8+40+0+0+0+0+0),pixelHeight:1656,pixelWidth:2500,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px), 720px)`,src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048\",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:\"Sovrle Dental Clinic in North York\",fit:\"fill\",intrinsicHeight:768,intrinsicWidth:1536,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4158.6+120+0+166.2+0+0),pixelHeight:1656,pixelWidth:2500,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 2, 1px), 720px)`,src:\"https://framerusercontent.com/images/PM4nnA36IkQCKmLlVJX7yZn8zo0.jpg?scale-down-to=2048\",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-n5ab8w\",\"data-framer-name\":\"Sovrle-Lobby Photo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+5665.8+120+0+0+0+732.4-36},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+5308.8+40+0+0+0+240-36}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,y:(componentViewport?.y||0)+0+4158.6+120+0+166.2+400-36,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-124wfzv-container\",nodeId:\"TPVcit7MB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AddressBadge,{height:\"100%\",id:\"TPVcit7MB\",layoutId:\"TPVcit7MB\",style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnw224\",\"data-framer-name\":\"Right Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3cpawe\",\"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-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255))\"},children:\" \"})}),className:\"framer-c3orqk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__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-color\":\"var(--token-2358d5f3-5f5b-4cd9-89c4-e082bd2a2a0a, rgb(53, 64, 64))\"},children:[\"Visit Our Dental Clinic \",/*#__PURE__*/_jsx(\"br\",{}),\"in North York, ON\"]})}),className:\"framer-hla1av\",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:\"At Sovrle, we are passionate about providing you with exceptional dental care in a warm and welcoming environment.\"})}),className:\"framer-m03ne6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sd540k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5665.8+120+0+0+0+0+384.4+0},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5308.8+40+0+0+312+0+384.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 2, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4158.6+120+0+0+0+384.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19y2q2d-container\",nodeId:\"hcf6bi0DA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Since 2001 we have been providing the best possible dental care to residents of North York, Ontario. \"})}),Fu9xMRooB:\"rgb(222, 184, 31)\",height:\"100%\",id:\"hcf6bi0DA\",layoutId:\"hcf6bi0DA\",MzFXSJZP4:\"Top Quality Dental Care\",ROK_SkZ2a:\"Trophy\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 48px) / 2, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5665.8+120+0+0+0+0+384.4+0},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5308.8+40+0+0+312+0+384.4+0+264}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:240,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 96px, 1200px) - 48px) / 2, 1px) - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4158.6+120+0+0+0+384.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kr7fm0-container\",nodeId:\"CBqLrzgq0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DataStack,{FroR31rqZ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Don't just take our word for it; Sovrle Dental clinic has the most 5-star reviews in North York!\"})}),Fu9xMRooB:\"rgb(222, 184, 31)\",height:\"100%\",id:\"CBqLrzgq0\",layoutId:\"CBqLrzgq0\",MzFXSJZP4:\"Over 600 5-Star Reviews\",ROK_SkZ2a:\"ShootingStar\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined},{href:{webPageId:\"eucEC2kGW\"},implicitPathVariables:undefined}],children:resolvedLinks19=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+5665.8+120+0+0+0+0+672.4},ZyDCKWIpC:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 48px)`,y:(componentViewport?.y||0)+0+5308.8+40+0+0+312+0+936.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+4158.6+120+0+0+0+672.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fy7l9h-container\",nodeId:\"pDTyx8fjN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{qFUu9JC30:resolvedLinks19[1]},ZyDCKWIpC:{qFUu9JC30:resolvedLinks19[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pDTyx8fjN\",layoutId:\"pDTyx8fjN\",m_viuh9zH:\"Learn More about Us\",qFUu9JC30:resolvedLinks19[0],variant:\"ljnSfhSMu\",width:\"100%\",yfqAAhnKX:\"House\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rxr88d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+5665.8+120+812.4+0+0},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+5308.8+40+1388.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:(componentViewport?.y||0)+0+4158.6+120+812.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2av3n-container\",nodeId:\"g0IM_p9Xj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ReviewsTicker,{height:\"100%\",id:\"g0IM_p9Xj\",layoutId:\"g0IM_p9Xj\",variant:\"qZneAgfeo\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1756fa5\",\"data-framer-name\":\"Team Section\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1arkca0\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i711ft\",\"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-ygcvcy\",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 Clinic. We are committed to providing exceptional dental care in a warm and welcoming environment.\"})}),className:\"framer-1u4jzm3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o68yon\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZyDCKWIpC:{query:{from:{alias:\"FTbnp6q0A\",data:NorthYorkDentists,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"FTbnp6q0A\",name:\"LFVbxm9bp\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"O_2QEfGZ0\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"wiaTmdRu5\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"UJsGdWKzt\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"PJQ7CMKoP\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FTbnp6q0A\",data:NorthYorkDentists,type:\"Collection\"},select:[{collection:\"FTbnp6q0A\",name:\"LFVbxm9bp\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"O_2QEfGZ0\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"wiaTmdRu5\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"UJsGdWKzt\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"PJQ7CMKoP\",type:\"Identifier\"},{collection:\"FTbnp6q0A\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idFTbnp6q0A,LFVbxm9bp:LFVbxm9bpFTbnp6q0A,O_2QEfGZ0:O_2QEfGZ0FTbnp6q0A,PJQ7CMKoP:PJQ7CMKoPFTbnp6q0A,UJsGdWKzt:UJsGdWKztFTbnp6q0A,wiaTmdRu5:wiaTmdRu5FTbnp6q0A},index)=>{O_2QEfGZ0FTbnp6q0A??=\"\";wiaTmdRu5FTbnp6q0A??=\"\";UJsGdWKztFTbnp6q0A??=\"\";PJQ7CMKoPFTbnp6q0A??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FTbnp6q0A-${idFTbnp6q0A}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PJQ7CMKoP:PJQ7CMKoPFTbnp6q0A},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:UJsGdWKztFTbnp6q0A,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPFTbnp6q0A}},{href:UJsGdWKztFTbnp6q0A,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPFTbnp6q0A}},{href:UJsGdWKztFTbnp6q0A,implicitPathVariables:{PJQ7CMKoP:PJQ7CMKoPFTbnp6q0A}}],children:resolvedLinks20=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+6818.2+60+0+0+248.4+0+0},ZyDCKWIpC:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+6877.2+40+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+5311+120+0+0+248.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y5ko5-container\",nodeId:\"uaPwfbZcg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{NVO4sUWej:resolvedLinks20[1]},ZyDCKWIpC:{NVO4sUWej:resolvedLinks20[2]}},children:/*#__PURE__*/_jsx(TeamMemberCard,{AbjzdVRQh:O_2QEfGZ0FTbnp6q0A,height:\"100%\",id:\"uaPwfbZcg\",L5ZRiPoRI:wiaTmdRu5FTbnp6q0A,layoutId:\"uaPwfbZcg\",NVO4sUWej:resolvedLinks20[0],style:{width:\"100%\"},width:\"100%\",x2Wt163pU:toResponsiveImage(LFVbxm9bpFTbnp6q0A)})})})})})})})},idFTbnp6q0A);})})})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1j0nvxg\",\"data-framer-name\":\"Testimonials Section\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rvxk85\",\"data-framer-name\":\"Content Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7wjsc\",\"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-105p8j2\",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-1i4d7p5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+7988.6+60+248.4},ZyDCKWIpC:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+8007.6+40+248.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,y:(componentViewport?.y||0)+0+6601.4+120+248.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g4v4gt-container\",nodeId:\"vki5TRCh8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZyDCKWIpC:{c4jW2nE0_:\"FbNAvfsPi\",variant:\"Vlx1zaNzw\"}},children:/*#__PURE__*/_jsx(TestimonialSlide,{c4jW2nE0_:\"LgrmB5aVF\",height:\"100%\",id:\"vki5TRCh8\",layoutId:\"vki5TRCh8\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"f33DiCasN\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-mvg126\",\"data-framer-name\":\"Appointment Section\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c6s4yj\",\"data-framer-name\":\"Appointment Background\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{height:1169.4,y:(componentViewport?.y||0)+0+8837+0},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+8816+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1141.4,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7569.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17dm6lw-container\",nodeId:\"wNbQtIpnr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GraphicPattern,{eBLrwE2iO:\"var(--token-5488df1e-d961-4aa1-8975-0c6275ea8cbd, rgb(119, 50, 153))\",height:\"100%\",id:\"wNbQtIpnr\",layoutId:\"wNbQtIpnr\",RriglqH4v:20,style:{height:\"100%\",width:\"100%\"},UjKQOh_GD:\"polka\",variant:\"ia7psKHMF\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4d7nnf\",\"data-framer-name\":\"Heading Stack\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"120px\",y:(componentViewport?.y||0)+0+7569.8+120+0+82.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1l0fx03-container hidden-1ya9o1s hidden-1uavoh6\",nodeId:\"n6cLHLICX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:10,transformPerspective:1200},children:/*#__PURE__*/_jsx(CurvedArrow,{height:\"100%\",id:\"n6cLHLICX\",layoutId:\"n6cLHLICX\",style:{height:\"100%\",width:\"100%\"},variant:\"DO1IdlwtZ\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxbjcp\",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:\"Schedule Appointment\"})}),className:\"framer-14cvqzu\",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-bbd03ddf-1640-40ca-ba74-d0deb83f7d14, rgb(53, 48, 64))\"},children:\"Schedule your visit today for personalized dental care in a comfortable environment. Your journey to a brighter, healthier smile begins here.\"})}),className:\"framer-1wdi8qw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+8837+120+268.4},ZyDCKWIpC:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+8816+96+288.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:661,width:`min(${componentViewport?.width||\"100vw\"} - 96px, 1200px)`,y:(componentViewport?.y||0)+0+7569.8+120+240.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lqy3c7-container\",nodeId:\"S52ncxzFQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{variant:\"nLRZ_GOZS\"},ZyDCKWIpC:{variant:\"W0TrMTNok\"}},children:/*#__PURE__*/_jsx(AppointmentDentalClinic,{height:\"100%\",id:\"S52ncxzFQ\",layoutId:\"S52ncxzFQ\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"c7EPys5eJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{y:(componentViewport?.y||0)+0+10006.4},ZyDCKWIpC:{y:(componentViewport?.y||0)+0+9957.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:745,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8711.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11809p6-container\",nodeId:\"WX5ZnM5AV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gLffnSq0V:{variant:\"IxqM4Jftw\"},ZyDCKWIpC:{variant:\"cI8L1mZ18\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WX5ZnM5AV\",layoutId:\"WX5ZnM5AV\",style:{width:\"100%\"},variant:\"mmiFuYbAK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xdQ6c.framer-lux5qc, .framer-xdQ6c .framer-lux5qc { display: block; }\",\".framer-xdQ6c.framer-72rtr7 { 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-xdQ6c .framer-1eijvg1-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 92%; z-index: 10; }\",\".framer-xdQ6c .framer-1r85rt1-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; }\",\".framer-xdQ6c .framer-cyeu7c { align-content: center; align-items: center; background-color: var(--token-64549ac4-d685-4363-a417-5961f1d256e9, #02abb1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-ucf1pl-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-xdQ6c .framer-15ssmb6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-xdQ6c .framer-pv0yjg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-xdQ6c .framer-1suv5iv { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-np9blh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-18vcigw { --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: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdQ6c .framer-1493gti { --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: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 25px 4px 25px; position: relative; text-decoration: none; width: 184px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xdQ6c .framer-w3g8b9 { 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-xdQ6c .framer-sv423a { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-xdQ6c .framer-m131q1 { 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-xdQ6c .framer-4m5bgp { 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-xdQ6c .framer-degld6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-xdQ6c .framer-173taxe { 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; min-height: 20px; overflow: hidden; padding: 0px; position: relative; width: 100px; }\",\".framer-xdQ6c .framer-4uz134, .framer-xdQ6c .framer-1gcma8m, .framer-xdQ6c .framer-urha9y, .framer-xdQ6c .framer-s4ss03, .framer-xdQ6c .framer-1p8991o, .framer-xdQ6c .framer-11yazu2, .framer-xdQ6c .framer-1mie3o3, .framer-xdQ6c .framer-1jbjxb1, .framer-xdQ6c .framer-c3orqk, .framer-xdQ6c .framer-hla1av, .framer-xdQ6c .framer-m03ne6, .framer-xdQ6c .framer-ygcvcy, .framer-xdQ6c .framer-1u4jzm3, .framer-xdQ6c .framer-105p8j2, .framer-xdQ6c .framer-1i4d7p5, .framer-xdQ6c .framer-14cvqzu, .framer-xdQ6c .framer-1wdi8qw { --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-xdQ6c .framer-k36f4u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 6; }\",\".framer-xdQ6c .framer-13gbqmf-container { flex: none; height: 60px; position: relative; width: 280px; }\",\".framer-xdQ6c .framer-1rpuwug-container { flex: none; height: 60px; position: relative; width: 220px; }\",\".framer-xdQ6c .framer-127rj9r { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-xdQ6c .framer-1ewyq4n-container { flex: none; height: 400px; position: relative; width: 300px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-xdQ6c .framer-aj9b6m { -webkit-filter: blur(100px); background-color: #037b80; border-bottom-left-radius: 2000px; border-bottom-right-radius: 2000px; border-top-left-radius: 2000px; border-top-right-radius: 2000px; filter: blur(100px); flex: none; height: 1200px; left: 36px; opacity: 0.25; overflow: hidden; position: absolute; right: 36px; top: 96px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xdQ6c .framer-1cqj4hp { 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-xdQ6c .framer-12o9tl6, .framer-xdQ6c .framer-1arkca0, .framer-xdQ6c .framer-rvxk85 { 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-xdQ6c .framer-1go5jll, .framer-xdQ6c .framer-3cpawe, .framer-xdQ6c .framer-i711ft, .framer-xdQ6c .framer-1h7wjsc { 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-xdQ6c .framer-kdsj18-container { flex: none; height: 48px; max-width: 1200px; position: relative; width: auto; }\",\".framer-xdQ6c .framer-15t3249 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-tglkfm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xdQ6c .framer-1lmmi68, .framer-xdQ6c .framer-sd540k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-1fp46z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-xdQ6c .framer-u9aqbb-container, .framer-xdQ6c .framer-11lsicp-container, .framer-xdQ6c .framer-r2ap08-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-xdQ6c .framer-yg2a5p, .framer-xdQ6c .framer-y06rtp, .framer-xdQ6c .framer-viyrc8 { 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-xdQ6c .framer-rflph8, .framer-xdQ6c .framer-oduvq0 { align-content: flex-start; align-items: flex-start; 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-xdQ6c .framer-1b7uy6b, .framer-xdQ6c .framer-zhirg9 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-xdQ6c .framer-ld2h1l, .framer-xdQ6c .framer-3q9rpx, .framer-xdQ6c .framer-128zp96 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-1n5leg1 { 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-xdQ6c .framer-ywel6u, .framer-xdQ6c .framer-1qigku6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px 48px 0px 0px; position: relative; width: 55%; }\",\".framer-xdQ6c .framer-5oiw0k, .framer-xdQ6c .framer-wn7cvm, .framer-xdQ6c .framer-d7ic1h { 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-xdQ6c .framer-19fxfny, .framer-xdQ6c .framer-j5ti56, .framer-xdQ6c .framer-1caivji { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-xdQ6c .framer-1fb20zm-container, .framer-xdQ6c .framer-t3addh-container, .framer-xdQ6c .framer-7vzqi6-container, .framer-xdQ6c .framer-xo0wmq-container, .framer-xdQ6c .framer-in37ce-container, .framer-xdQ6c .framer-8obmyb-container, .framer-xdQ6c .framer-10jnnq9-container, .framer-xdQ6c .framer-189j5xh-container, .framer-xdQ6c .framer-1aiwpmz-container, .framer-xdQ6c .framer-1gfj1hf-container, .framer-xdQ6c .framer-s88el9-container, .framer-xdQ6c .framer-1t81ips-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-1hffl3p-container, .framer-xdQ6c .framer-vhmu8i-container, .framer-xdQ6c .framer-1od2xym-container, .framer-xdQ6c .framer-fy7l9h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xdQ6c .framer-17is1n1, .framer-xdQ6c .framer-1b8n4qs, .framer-xdQ6c .framer-1daes0t { 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-xdQ6c .framer-1jompxp-container, .framer-xdQ6c .framer-1xxvj5f-container { flex: none; height: 240px; position: absolute; right: -48px; top: -48px; width: 240px; z-index: 1; }\",\".framer-xdQ6c .framer-1t7jdcm, .framer-xdQ6c .framer-zk708e, .framer-xdQ6c .framer-i224kd, .framer-xdQ6c .framer-n5ab8w { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-xdQ6c .framer-zqtr7k { 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-xdQ6c .framer-1ddwsou { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-xdQ6c .framer-iccn2a-container { flex: none; height: 240px; left: -48px; position: absolute; top: -48px; width: 240px; z-index: 1; }\",\".framer-xdQ6c .framer-wv9536 { 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-xdQ6c .framer-1t22rtl { 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: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-lv9xkw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-1er2bt7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 400px; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-xdQ6c .framer-1gfjbvs-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: -48px; position: absolute; top: -48px; width: 240px; z-index: 1; }\",\".framer-xdQ6c .framer-124wfzv-container { bottom: -36px; flex: none; height: 72px; position: absolute; right: 36px; width: auto; z-index: 1; }\",\".framer-xdQ6c .framer-pnw224 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xdQ6c .framer-19y2q2d-container, .framer-xdQ6c .framer-1kr7fm0-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-xdQ6c .framer-rxr88d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 120%; z-index: 2; }\",\".framer-xdQ6c .framer-1r2av3n-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",'.framer-xdQ6c .framer-1756fa5 { align-content: center; align-items: center; background: radial-gradient(50% 50% at 50% 50%, var(--token-64549ac4-d685-4363-a417-5961f1d256e9, #f5fdff) /* {\"name\":\"Tuirquoise/30\"} */ 0%, var(--token-a74d5571-7600-4ee3-9cdd-4c3cb1ff121d, rgb(255, 255, 255)) /* {\"name\":\"White/100\"} */ 100%); 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-xdQ6c .framer-o68yon { 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-xdQ6c .framer-y5ko5-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-1j0nvxg { 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-xdQ6c .framer-g4v4gt-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-xdQ6c .framer-mvg126 { 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-xdQ6c .framer-1c6s4yj { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-xdQ6c .framer-17dm6lw-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-xdQ6c .framer-4d7nnf { 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-xdQ6c .framer-1l0fx03-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-xdQ6c .framer-1sxbjcp { 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-xdQ6c .framer-1lqy3c7-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; z-index: 1; }\",\".framer-xdQ6c .framer-11809p6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xdQ6c.framer-72rtr7, .framer-xdQ6c .framer-cyeu7c, .framer-xdQ6c .framer-15ssmb6, .framer-xdQ6c .framer-pv0yjg, .framer-xdQ6c .framer-1suv5iv, .framer-xdQ6c .framer-np9blh, .framer-xdQ6c .framer-18vcigw, .framer-xdQ6c .framer-1493gti, .framer-xdQ6c .framer-w3g8b9, .framer-xdQ6c .framer-m131q1, .framer-xdQ6c .framer-4m5bgp, .framer-xdQ6c .framer-173taxe, .framer-xdQ6c .framer-k36f4u, .framer-xdQ6c .framer-127rj9r, .framer-xdQ6c .framer-1cqj4hp, .framer-xdQ6c .framer-12o9tl6, .framer-xdQ6c .framer-1go5jll, .framer-xdQ6c .framer-15t3249, .framer-xdQ6c .framer-tglkfm, .framer-xdQ6c .framer-1lmmi68, .framer-xdQ6c .framer-1fp46z, .framer-xdQ6c .framer-yg2a5p, .framer-xdQ6c .framer-rflph8, .framer-xdQ6c .framer-1b7uy6b, .framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-ywel6u, .framer-xdQ6c .framer-5oiw0k, .framer-xdQ6c .framer-17is1n1, .framer-xdQ6c .framer-y06rtp, .framer-xdQ6c .framer-zqtr7k, .framer-xdQ6c .framer-1ddwsou, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-1b8n4qs, .framer-xdQ6c .framer-wv9536, .framer-xdQ6c .framer-wn7cvm, .framer-xdQ6c .framer-viyrc8, .framer-xdQ6c .framer-oduvq0, .framer-xdQ6c .framer-zhirg9, .framer-xdQ6c .framer-1n5leg1, .framer-xdQ6c .framer-1qigku6, .framer-xdQ6c .framer-d7ic1h, .framer-xdQ6c .framer-1daes0t, .framer-xdQ6c .framer-1t22rtl, .framer-xdQ6c .framer-lv9xkw, .framer-xdQ6c .framer-1er2bt7, .framer-xdQ6c .framer-pnw224, .framer-xdQ6c .framer-3cpawe, .framer-xdQ6c .framer-sd540k, .framer-xdQ6c .framer-rxr88d, .framer-xdQ6c .framer-1756fa5, .framer-xdQ6c .framer-1arkca0, .framer-xdQ6c .framer-i711ft, .framer-xdQ6c .framer-1j0nvxg, .framer-xdQ6c .framer-rvxk85, .framer-xdQ6c .framer-1h7wjsc, .framer-xdQ6c .framer-mvg126, .framer-xdQ6c .framer-4d7nnf, .framer-xdQ6c .framer-1sxbjcp { gap: 0px; } .framer-xdQ6c.framer-72rtr7 > *, .framer-xdQ6c .framer-cyeu7c > *, .framer-xdQ6c .framer-m131q1 > *, .framer-xdQ6c .framer-rxr88d > *, .framer-xdQ6c .framer-mvg126 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xdQ6c.framer-72rtr7 > :first-child, .framer-xdQ6c .framer-cyeu7c > :first-child, .framer-xdQ6c .framer-pv0yjg > :first-child, .framer-xdQ6c .framer-1suv5iv > :first-child, .framer-xdQ6c .framer-np9blh > :first-child, .framer-xdQ6c .framer-18vcigw > :first-child, .framer-xdQ6c .framer-1493gti > :first-child, .framer-xdQ6c .framer-m131q1 > :first-child, .framer-xdQ6c .framer-1cqj4hp > :first-child, .framer-xdQ6c .framer-12o9tl6 > :first-child, .framer-xdQ6c .framer-1go5jll > :first-child, .framer-xdQ6c .framer-tglkfm > :first-child, .framer-xdQ6c .framer-yg2a5p > :first-child, .framer-xdQ6c .framer-rflph8 > :first-child, .framer-xdQ6c .framer-1b7uy6b > :first-child, .framer-xdQ6c .framer-ywel6u > :first-child, .framer-xdQ6c .framer-17is1n1 > :first-child, .framer-xdQ6c .framer-y06rtp > :first-child, .framer-xdQ6c .framer-zqtr7k > :first-child, .framer-xdQ6c .framer-1ddwsou > :first-child, .framer-xdQ6c .framer-1b8n4qs > :first-child, .framer-xdQ6c .framer-wv9536 > :first-child, .framer-xdQ6c .framer-viyrc8 > :first-child, .framer-xdQ6c .framer-oduvq0 > :first-child, .framer-xdQ6c .framer-zhirg9 > :first-child, .framer-xdQ6c .framer-1qigku6 > :first-child, .framer-xdQ6c .framer-1daes0t > :first-child, .framer-xdQ6c .framer-1t22rtl > :first-child, .framer-xdQ6c .framer-1er2bt7 > :first-child, .framer-xdQ6c .framer-pnw224 > :first-child, .framer-xdQ6c .framer-3cpawe > :first-child, .framer-xdQ6c .framer-rxr88d > :first-child, .framer-xdQ6c .framer-1756fa5 > :first-child, .framer-xdQ6c .framer-1arkca0 > :first-child, .framer-xdQ6c .framer-i711ft > :first-child, .framer-xdQ6c .framer-1j0nvxg > :first-child, .framer-xdQ6c .framer-rvxk85 > :first-child, .framer-xdQ6c .framer-1h7wjsc > :first-child, .framer-xdQ6c .framer-mvg126 > :first-child, .framer-xdQ6c .framer-4d7nnf > :first-child, .framer-xdQ6c .framer-1sxbjcp > :first-child { margin-top: 0px; } .framer-xdQ6c.framer-72rtr7 > :last-child, .framer-xdQ6c .framer-cyeu7c > :last-child, .framer-xdQ6c .framer-pv0yjg > :last-child, .framer-xdQ6c .framer-1suv5iv > :last-child, .framer-xdQ6c .framer-np9blh > :last-child, .framer-xdQ6c .framer-18vcigw > :last-child, .framer-xdQ6c .framer-1493gti > :last-child, .framer-xdQ6c .framer-m131q1 > :last-child, .framer-xdQ6c .framer-1cqj4hp > :last-child, .framer-xdQ6c .framer-12o9tl6 > :last-child, .framer-xdQ6c .framer-1go5jll > :last-child, .framer-xdQ6c .framer-tglkfm > :last-child, .framer-xdQ6c .framer-yg2a5p > :last-child, .framer-xdQ6c .framer-rflph8 > :last-child, .framer-xdQ6c .framer-1b7uy6b > :last-child, .framer-xdQ6c .framer-ywel6u > :last-child, .framer-xdQ6c .framer-17is1n1 > :last-child, .framer-xdQ6c .framer-y06rtp > :last-child, .framer-xdQ6c .framer-zqtr7k > :last-child, .framer-xdQ6c .framer-1ddwsou > :last-child, .framer-xdQ6c .framer-1b8n4qs > :last-child, .framer-xdQ6c .framer-wv9536 > :last-child, .framer-xdQ6c .framer-viyrc8 > :last-child, .framer-xdQ6c .framer-oduvq0 > :last-child, .framer-xdQ6c .framer-zhirg9 > :last-child, .framer-xdQ6c .framer-1qigku6 > :last-child, .framer-xdQ6c .framer-1daes0t > :last-child, .framer-xdQ6c .framer-1t22rtl > :last-child, .framer-xdQ6c .framer-1er2bt7 > :last-child, .framer-xdQ6c .framer-pnw224 > :last-child, .framer-xdQ6c .framer-3cpawe > :last-child, .framer-xdQ6c .framer-rxr88d > :last-child, .framer-xdQ6c .framer-1756fa5 > :last-child, .framer-xdQ6c .framer-1arkca0 > :last-child, .framer-xdQ6c .framer-i711ft > :last-child, .framer-xdQ6c .framer-1j0nvxg > :last-child, .framer-xdQ6c .framer-rvxk85 > :last-child, .framer-xdQ6c .framer-1h7wjsc > :last-child, .framer-xdQ6c .framer-mvg126 > :last-child, .framer-xdQ6c .framer-4d7nnf > :last-child, .framer-xdQ6c .framer-1sxbjcp > :last-child { margin-bottom: 0px; } .framer-xdQ6c .framer-15ssmb6 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-xdQ6c .framer-15ssmb6 > :first-child, .framer-xdQ6c .framer-w3g8b9 > :first-child, .framer-xdQ6c .framer-4m5bgp > :first-child, .framer-xdQ6c .framer-173taxe > :first-child, .framer-xdQ6c .framer-k36f4u > :first-child, .framer-xdQ6c .framer-127rj9r > :first-child, .framer-xdQ6c .framer-15t3249 > :first-child, .framer-xdQ6c .framer-1lmmi68 > :first-child, .framer-xdQ6c .framer-1fp46z > :first-child, .framer-xdQ6c .framer-wvp0hd > :first-child, .framer-xdQ6c .framer-5oiw0k > :first-child, .framer-xdQ6c .framer-19rxfgk > :first-child, .framer-xdQ6c .framer-wn7cvm > :first-child, .framer-xdQ6c .framer-1n5leg1 > :first-child, .framer-xdQ6c .framer-d7ic1h > :first-child, .framer-xdQ6c .framer-lv9xkw > :first-child, .framer-xdQ6c .framer-sd540k > :first-child { margin-left: 0px; } .framer-xdQ6c .framer-15ssmb6 > :last-child, .framer-xdQ6c .framer-w3g8b9 > :last-child, .framer-xdQ6c .framer-4m5bgp > :last-child, .framer-xdQ6c .framer-173taxe > :last-child, .framer-xdQ6c .framer-k36f4u > :last-child, .framer-xdQ6c .framer-127rj9r > :last-child, .framer-xdQ6c .framer-15t3249 > :last-child, .framer-xdQ6c .framer-1lmmi68 > :last-child, .framer-xdQ6c .framer-1fp46z > :last-child, .framer-xdQ6c .framer-wvp0hd > :last-child, .framer-xdQ6c .framer-5oiw0k > :last-child, .framer-xdQ6c .framer-19rxfgk > :last-child, .framer-xdQ6c .framer-wn7cvm > :last-child, .framer-xdQ6c .framer-1n5leg1 > :last-child, .framer-xdQ6c .framer-d7ic1h > :last-child, .framer-xdQ6c .framer-lv9xkw > :last-child, .framer-xdQ6c .framer-sd540k > :last-child { margin-right: 0px; } .framer-xdQ6c .framer-pv0yjg > *, .framer-xdQ6c .framer-12o9tl6 > *, .framer-xdQ6c .framer-tglkfm > *, .framer-xdQ6c .framer-rflph8 > *, .framer-xdQ6c .framer-ywel6u > *, .framer-xdQ6c .framer-zqtr7k > *, .framer-xdQ6c .framer-wv9536 > *, .framer-xdQ6c .framer-oduvq0 > *, .framer-xdQ6c .framer-1qigku6 > *, .framer-xdQ6c .framer-pnw224 > *, .framer-xdQ6c .framer-1756fa5 > *, .framer-xdQ6c .framer-1arkca0 > *, .framer-xdQ6c .framer-1j0nvxg > *, .framer-xdQ6c .framer-rvxk85 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xdQ6c .framer-1suv5iv > *, .framer-xdQ6c .framer-1go5jll > *, .framer-xdQ6c .framer-1b7uy6b > *, .framer-xdQ6c .framer-17is1n1 > *, .framer-xdQ6c .framer-1ddwsou > *, .framer-xdQ6c .framer-1b8n4qs > *, .framer-xdQ6c .framer-zhirg9 > *, .framer-xdQ6c .framer-1daes0t > *, .framer-xdQ6c .framer-1er2bt7 > *, .framer-xdQ6c .framer-3cpawe > *, .framer-xdQ6c .framer-i711ft > *, .framer-xdQ6c .framer-1h7wjsc > *, .framer-xdQ6c .framer-4d7nnf > *, .framer-xdQ6c .framer-1sxbjcp > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xdQ6c .framer-np9blh > *, .framer-xdQ6c .framer-1493gti > *, .framer-xdQ6c .framer-1cqj4hp > *, .framer-xdQ6c .framer-yg2a5p > *, .framer-xdQ6c .framer-y06rtp > *, .framer-xdQ6c .framer-viyrc8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-xdQ6c .framer-18vcigw > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-xdQ6c .framer-w3g8b9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-xdQ6c .framer-4m5bgp > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-xdQ6c .framer-173taxe > *, .framer-xdQ6c .framer-127rj9r > *, .framer-xdQ6c .framer-wvp0hd > *, .framer-xdQ6c .framer-19rxfgk > *, .framer-xdQ6c .framer-1n5leg1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xdQ6c .framer-k36f4u > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-xdQ6c .framer-15t3249 > *, .framer-xdQ6c .framer-lv9xkw > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-xdQ6c .framer-1lmmi68 > *, .framer-xdQ6c .framer-1fp46z > *, .framer-xdQ6c .framer-5oiw0k > *, .framer-xdQ6c .framer-wn7cvm > *, .framer-xdQ6c .framer-d7ic1h > *, .framer-xdQ6c .framer-sd540k > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-xdQ6c .framer-1t22rtl > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-xdQ6c[data-border=\"true\"]::after, .framer-xdQ6c [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-xdQ6c.framer-72rtr7 { width: 810px; } .framer-xdQ6c .framer-1eijvg1-container { order: 0; } .framer-xdQ6c .framer-1r85rt1-container { order: 11; } .framer-xdQ6c .framer-cyeu7c { justify-content: flex-start; order: 1; padding: 120px 48px 120px 48px; } .framer-xdQ6c .framer-ucf1pl-container { bottom: unset; height: 667px; } .framer-xdQ6c .framer-15ssmb6 { gap: 60px; padding: 0px 0px 40px 0px; } .framer-xdQ6c .framer-k36f4u { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-xdQ6c .framer-1rpuwug-container { width: 280px; } .framer-xdQ6c .framer-127rj9r { flex: none; height: 440px; width: 40%; } .framer-xdQ6c .framer-1ewyq4n-container { height: 420px; } .framer-xdQ6c .framer-1cqj4hp { order: 2; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-15t3249, .framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-1n5leg1 { flex-direction: column; } .framer-xdQ6c .framer-tglkfm { flex: none; order: 0; width: 100%; } .framer-xdQ6c .framer-yg2a5p { order: 3; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-rflph8, .framer-xdQ6c .framer-oduvq0, .framer-xdQ6c .framer-lv9xkw { align-content: flex-end; align-items: flex-end; } .framer-xdQ6c .framer-ld2h1l, .framer-xdQ6c .framer-3q9rpx, .framer-xdQ6c .framer-128zp96 { width: 100%; } .framer-xdQ6c .framer-ywel6u, .framer-xdQ6c .framer-1qigku6 { order: 1; padding: 48px 0px 0px 0px; width: 100%; } .framer-xdQ6c .framer-17is1n1, .framer-xdQ6c .framer-1b8n4qs, .framer-xdQ6c .framer-1daes0t { align-self: unset; aspect-ratio: 1.27 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); max-width: unset; order: 0; overflow: hidden; width: 100%; } .framer-xdQ6c .framer-1t7jdcm, .framer-xdQ6c .framer-zk708e, .framer-xdQ6c .framer-i224kd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 762px); left: 0px; position: absolute; right: 0px; top: 0px; width: unset; } .framer-xdQ6c .framer-y06rtp { order: 4; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-wv9536 { order: 1; padding: 48px 0px 0px 48px; width: 100%; } .framer-xdQ6c .framer-viyrc8 { order: 5; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-1t22rtl { order: 6; padding: 120px 24px 120px 24px; } .framer-xdQ6c .framer-1er2bt7 { align-self: stretch; height: auto; } .framer-xdQ6c .framer-1756fa5 { order: 7; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-1j0nvxg { order: 8; padding: 60px 24px 60px 24px; } .framer-xdQ6c .framer-mvg126 { gap: 48px; order: 9; padding: 120px 24px 120px 24px; } .framer-xdQ6c .framer-4d7nnf { max-width: unset; padding: 20px 0px 0px 0px; } .framer-xdQ6c .framer-1sxbjcp { padding: 0px; width: 100%; } .framer-xdQ6c .framer-11809p6-container { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xdQ6c .framer-15ssmb6, .framer-xdQ6c .framer-k36f4u, .framer-xdQ6c .framer-15t3249, .framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-1n5leg1, .framer-xdQ6c .framer-mvg126 { gap: 0px; } .framer-xdQ6c .framer-15ssmb6 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-xdQ6c .framer-15ssmb6 > :first-child { margin-left: 0px; } .framer-xdQ6c .framer-15ssmb6 > :last-child { margin-right: 0px; } .framer-xdQ6c .framer-k36f4u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xdQ6c .framer-k36f4u > :first-child, .framer-xdQ6c .framer-15t3249 > :first-child, .framer-xdQ6c .framer-wvp0hd > :first-child, .framer-xdQ6c .framer-19rxfgk > :first-child, .framer-xdQ6c .framer-1n5leg1 > :first-child, .framer-xdQ6c .framer-mvg126 > :first-child { margin-top: 0px; } .framer-xdQ6c .framer-k36f4u > :last-child, .framer-xdQ6c .framer-15t3249 > :last-child, .framer-xdQ6c .framer-wvp0hd > :last-child, .framer-xdQ6c .framer-19rxfgk > :last-child, .framer-xdQ6c .framer-1n5leg1 > :last-child, .framer-xdQ6c .framer-mvg126 > :last-child { margin-bottom: 0px; } .framer-xdQ6c .framer-15t3249 > *, .framer-xdQ6c .framer-mvg126 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xdQ6c .framer-wvp0hd > *, .framer-xdQ6c .framer-19rxfgk > *, .framer-xdQ6c .framer-1n5leg1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-xdQ6c.framer-72rtr7 { width: 390px; } .framer-xdQ6c .framer-cyeu7c { justify-content: flex-start; padding: 100px 24px 40px 24px; } .framer-xdQ6c .framer-ucf1pl-container { bottom: -437px; } .framer-xdQ6c .framer-15ssmb6 { flex-direction: column; gap: 48px; } .framer-xdQ6c .framer-pv0yjg { flex: none; order: 0; width: 100%; z-index: 1; } .framer-xdQ6c .framer-k36f4u, .framer-xdQ6c .framer-15t3249, .framer-xdQ6c .framer-1lmmi68, .framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-5oiw0k, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-wn7cvm, .framer-xdQ6c .framer-1n5leg1, .framer-xdQ6c .framer-d7ic1h, .framer-xdQ6c .framer-sd540k { flex-direction: column; } .framer-xdQ6c .framer-1rpuwug-container { width: 280px; } .framer-xdQ6c .framer-127rj9r { flex: none; max-width: 340px; order: 1; width: 100%; z-index: 1; } .framer-xdQ6c .framer-1ewyq4n-container { order: 0; width: 340px; } .framer-xdQ6c .framer-aj9b6m { order: 1; } .framer-xdQ6c .framer-1cqj4hp, .framer-xdQ6c .framer-yg2a5p, .framer-xdQ6c .framer-y06rtp, .framer-xdQ6c .framer-viyrc8, .framer-xdQ6c .framer-1t22rtl { padding: 40px 0px 40px 0px; } .framer-xdQ6c .framer-1go5jll, .framer-xdQ6c .framer-rflph8, .framer-xdQ6c .framer-zqtr7k, .framer-xdQ6c .framer-oduvq0 { padding: 0px 24px 0px 24px; } .framer-xdQ6c .framer-tglkfm { flex: none; order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-xdQ6c .framer-1fp46z { flex: none; flex-direction: column; gap: 48px; width: 100%; } .framer-xdQ6c .framer-u9aqbb-container, .framer-xdQ6c .framer-11lsicp-container, .framer-xdQ6c .framer-r2ap08-container, .framer-xdQ6c .framer-19y2q2d-container, .framer-xdQ6c .framer-1kr7fm0-container { flex: none; width: 100%; } .framer-xdQ6c .framer-ld2h1l, .framer-xdQ6c .framer-1hffl3p-container, .framer-xdQ6c .framer-3q9rpx, .framer-xdQ6c .framer-vhmu8i-container, .framer-xdQ6c .framer-128zp96, .framer-xdQ6c .framer-1od2xym-container, .framer-xdQ6c .framer-fy7l9h-container { width: 100%; } .framer-xdQ6c .framer-ywel6u, .framer-xdQ6c .framer-1qigku6 { order: 1; padding: 48px 0px 0px 0px; width: 100%; } .framer-xdQ6c .framer-19fxfny, .framer-xdQ6c .framer-j5ti56, .framer-xdQ6c .framer-1caivji { flex: none; grid-template-columns: repeat(2, minmax(1px, 1fr)); width: 100%; } .framer-xdQ6c .framer-17is1n1, .framer-xdQ6c .framer-1daes0t { align-self: unset; flex: none; height: min-content; order: 0; width: 100%; } .framer-xdQ6c .framer-1t7jdcm, .framer-xdQ6c .framer-zk708e, .framer-xdQ6c .framer-i224kd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); } .framer-xdQ6c .framer-1b8n4qs { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-xdQ6c .framer-iccn2a-container { right: -48px; width: unset; } .framer-xdQ6c .framer-wv9536 { order: 0; padding: 48px 0px 0px 0px; width: 100%; } .framer-xdQ6c .framer-lv9xkw { flex-direction: column; gap: 72px; } .framer-xdQ6c .framer-1er2bt7 { flex: none; height: min-content; width: 100%; } .framer-xdQ6c .framer-n5ab8w { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex: none; height: 240px; } .framer-xdQ6c .framer-pnw224 { flex: none; padding: 0px 24px 0px 24px; width: 100%; } .framer-xdQ6c .framer-1756fa5, .framer-xdQ6c .framer-1j0nvxg { padding: 40px 24px 40px 24px; } .framer-xdQ6c .framer-o68yon { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-xdQ6c .framer-mvg126 { gap: 48px; padding: 96px 24px 96px 24px; } .framer-xdQ6c .framer-4d7nnf { padding: 20px 9px 20px 9px; } .framer-xdQ6c .framer-1sxbjcp { padding: 0px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-xdQ6c .framer-15ssmb6, .framer-xdQ6c .framer-k36f4u, .framer-xdQ6c .framer-15t3249, .framer-xdQ6c .framer-1lmmi68, .framer-xdQ6c .framer-1fp46z, .framer-xdQ6c .framer-wvp0hd, .framer-xdQ6c .framer-5oiw0k, .framer-xdQ6c .framer-19rxfgk, .framer-xdQ6c .framer-wn7cvm, .framer-xdQ6c .framer-1n5leg1, .framer-xdQ6c .framer-d7ic1h, .framer-xdQ6c .framer-lv9xkw, .framer-xdQ6c .framer-sd540k, .framer-xdQ6c .framer-mvg126 { gap: 0px; } .framer-xdQ6c .framer-15ssmb6 > *, .framer-xdQ6c .framer-15t3249 > *, .framer-xdQ6c .framer-1fp46z > *, .framer-xdQ6c .framer-mvg126 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-xdQ6c .framer-15ssmb6 > :first-child, .framer-xdQ6c .framer-k36f4u > :first-child, .framer-xdQ6c .framer-15t3249 > :first-child, .framer-xdQ6c .framer-1lmmi68 > :first-child, .framer-xdQ6c .framer-1fp46z > :first-child, .framer-xdQ6c .framer-wvp0hd > :first-child, .framer-xdQ6c .framer-5oiw0k > :first-child, .framer-xdQ6c .framer-19rxfgk > :first-child, .framer-xdQ6c .framer-wn7cvm > :first-child, .framer-xdQ6c .framer-1n5leg1 > :first-child, .framer-xdQ6c .framer-d7ic1h > :first-child, .framer-xdQ6c .framer-lv9xkw > :first-child, .framer-xdQ6c .framer-sd540k > :first-child, .framer-xdQ6c .framer-mvg126 > :first-child { margin-top: 0px; } .framer-xdQ6c .framer-15ssmb6 > :last-child, .framer-xdQ6c .framer-k36f4u > :last-child, .framer-xdQ6c .framer-15t3249 > :last-child, .framer-xdQ6c .framer-1lmmi68 > :last-child, .framer-xdQ6c .framer-1fp46z > :last-child, .framer-xdQ6c .framer-wvp0hd > :last-child, .framer-xdQ6c .framer-5oiw0k > :last-child, .framer-xdQ6c .framer-19rxfgk > :last-child, .framer-xdQ6c .framer-wn7cvm > :last-child, .framer-xdQ6c .framer-1n5leg1 > :last-child, .framer-xdQ6c .framer-d7ic1h > :last-child, .framer-xdQ6c .framer-lv9xkw > :last-child, .framer-xdQ6c .framer-sd540k > :last-child, .framer-xdQ6c .framer-mvg126 > :last-child { margin-bottom: 0px; } .framer-xdQ6c .framer-k36f4u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xdQ6c .framer-1lmmi68 > *, .framer-xdQ6c .framer-5oiw0k > *, .framer-xdQ6c .framer-wn7cvm > *, .framer-xdQ6c .framer-d7ic1h > *, .framer-xdQ6c .framer-sd540k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xdQ6c .framer-wvp0hd > *, .framer-xdQ6c .framer-19rxfgk > *, .framer-xdQ6c .framer-1n5leg1 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xdQ6c .framer-lv9xkw > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8350\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gLffnSq0V\":{\"layout\":[\"fixed\",\"auto\"]},\"ZyDCKWIpC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"lrudOW9qu\":{\"pattern\":\":lrudOW9qu\",\"name\":\"hero\"},\"Q15DnwIm8\":{\"pattern\":\":Q15DnwIm8\",\"name\":\"welcome\"},\"rQpPZaZGk\":{\"pattern\":\":rQpPZaZGk\",\"name\":\"improve\"},\"oWd8EMEos\":{\"pattern\":\":oWd8EMEos\",\"name\":\"pain\"},\"mB221BzSw\":{\"pattern\":\":mB221BzSw\",\"name\":\"general-services\"},\"RqsSUb9Cd\":{\"pattern\":\":RqsSUb9Cd\",\"name\":\"about\"},\"bcaPdbrgE\":{\"pattern\":\":bcaPdbrgE\",\"name\":\"team\"},\"D7Y7DGiBu\":{\"pattern\":\":D7Y7DGiBu\",\"name\":\"testimonials\"},\"bVJ8SkcE1\":{\"pattern\":\":bVJ8SkcE1\",\"name\":\"appointment\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-xdQ6c\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8350,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5SZVFDB7V52TI6ULVC6J3WQZQCIZVDV5/ODYPSTCUDMKSTYIPTV4CLQ7URIK7XYBJ/YS3VPNVO4B3TOJMEXDGFZQ4TLZGGSRZC.woff2\",weight:\"600\"},{family:\"Inter Display\",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/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",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/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/0SEEmmWc3vovhaai4RlRQSWRrz0.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\"}]},...NavigationFonts,...MaxAssistWidgetFonts,...GraphicPatternFonts,...ButtonFonts,...YouTubeFonts,...SearchFonts,...ServicesPreventiveCareCardFonts,...ServicesStackCardFonts,...AddressBadgeFonts,...DataStackFonts,...ReviewsTickerFonts,...TeamMemberCardFonts,...TestimonialSlideFonts,...CurvedArrowFonts,...AppointmentDentalClinicFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gLffnSq0V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZyDCKWIpC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8350\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"lrudOW9qu\\\":{\\\"pattern\\\":\\\":lrudOW9qu\\\",\\\"name\\\":\\\"hero\\\"},\\\"Q15DnwIm8\\\":{\\\"pattern\\\":\\\":Q15DnwIm8\\\",\\\"name\\\":\\\"welcome\\\"},\\\"rQpPZaZGk\\\":{\\\"pattern\\\":\\\":rQpPZaZGk\\\",\\\"name\\\":\\\"improve\\\"},\\\"oWd8EMEos\\\":{\\\"pattern\\\":\\\":oWd8EMEos\\\",\\\"name\\\":\\\"pain\\\"},\\\"mB221BzSw\\\":{\\\"pattern\\\":\\\":mB221BzSw\\\",\\\"name\\\":\\\"general-services\\\"},\\\"RqsSUb9Cd\\\":{\\\"pattern\\\":\\\":RqsSUb9Cd\\\",\\\"name\\\":\\\"about\\\"},\\\"bcaPdbrgE\\\":{\\\"pattern\\\":\\\":bcaPdbrgE\\\",\\\"name\\\":\\\"team\\\"},\\\"D7Y7DGiBu\\\":{\\\"pattern\\\":\\\":D7Y7DGiBu\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"bVJ8SkcE1\\\":{\\\"pattern\\\":\\\":bVJ8SkcE1\\\",\\\"name\\\":\\\"appointment\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "vutU4bPP7", "a8xTm8jUG", "isELuo4Rk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "ComponentPresetsProvider", "css", "FramerjLPT9LWA5", "withCSS", "jLPT9LWA5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "PhosphorFonts", "getFonts", "Icon", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText2", "css", "Frameroijjro428", "withCSS", "oijjro428_default", "addFonts", "PhosphorFonts", "NavigationFonts", "getFonts", "IZY07PrMS_default", "MaxAssistWidgetFonts", "WP_jZhrxr_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "GraphicPatternFonts", "dibiyK5ot_default", "ContainerWithFX", "withFX", "ButtonFonts", "hgmUA8YC0_default", "YouTubeFonts", "Youtube", "MotionDivWithFX", "motion", "RichTextWithFX", "RichText2", "SearchFonts", "amE6h1bVH_default", "ServicesPreventiveCareCardFonts", "c3fq73kHm_default", "ServicesStackCardFonts", "jLPT9LWA5_default", "AddressBadgeFonts", "oijjro428_default", "DataStackFonts", "nQhAuyplE_default", "ReviewsTickerFonts", "lyqSlYnIL_default", "TeamMemberCardFonts", "AXD3NF8cE_default", "TestimonialSlideFonts", "lOYOkI15n_default", "CurvedArrowFonts", "w3setpqhc_default", "AppointmentDentalClinicFonts", "tBpicfeJ6_default", "FooterFonts", "IOJnH9t8g_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "animation10", "animation11", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation12", "animation13", "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", "LFVbxm9bpFTbnp6q0A", "O_2QEfGZ0FTbnp6q0A", "wiaTmdRu5FTbnp6q0A", "UJsGdWKztFTbnp6q0A", "PJQ7CMKoPFTbnp6q0A", "idFTbnp6q0A", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "isDisplayed", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Link", "getLoadingLazyAtYPosition", "Image2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "resolvedLinks18", "resolvedLinks19", "ChildrenCanSuspend", "JnDQ0IEFz_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks20", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
