{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/sOtmLJTafgOiRWpCndwW/ulVooYc7GcB9pR46o9Pt/lnmOnQODY.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Navigation from\"#framer/local/canvasComponent/adKot4gED/adKot4gED.js\";import Card from\"#framer/local/canvasComponent/gAwVvyqwg/gAwVvyqwg.js\";import Btn from\"#framer/local/canvasComponent/j17nP9af9/j17nP9af9.js\";import*as sharedStyle from\"#framer/local/css/AMoOiO71w/AMoOiO71w.js\";import metadataProvider from\"#framer/local/webPageMetadata/lnmOnQODY/lnmOnQODY.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithFX=withFX(RichText);const EmbedFonts=getFonts(Embed);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const CardFonts=getFonts(Card);const TickerFonts=getFonts(Ticker);const PhosphorFonts=getFonts(Phosphor);const BtnFonts=getFonts(Btn);const breakpoints={SHnHaH1Y_:\"(min-width: 810px) and (max-width: 1439px)\",xwSWiT77Z:\"(max-width: 809px)\",ZnAScab3Z:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-KLQpD\";const variantClassNames={SHnHaH1Y_:\"framer-v-14rf93z\",xwSWiT77Z:\"framer-v-1qplxw3\",ZnAScab3Z:\"framer-v-1vqn830\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:60,delay:.1,mass:1.2,stiffness:300,type:\"spring\"};const transition2={damping:60,delay:.3,mass:1.2,stiffness:300,type:\"spring\"};const transition3={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const transition4={damping:60,delay:.4,mass:1.2,stiffness:300,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ZnAScab3Z\",Phone:\"xwSWiT77Z\",Tablet:\"SHnHaH1Y_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZnAScab3Z\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"xwSWiT77Z\")return true;return false;};const elementId=useRouteElementId(\"qMprgLsp8\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"oxWrgZ_2I\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZnAScab3Z\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(230, 239, 242); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1vqn830\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{height:71}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hm6a4j-container\",nodeId:\"ZNWypDLD7\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{variant:\"a3WBxtrmH\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"ZNWypDLD7\",layoutId:\"ZNWypDLD7\",style:{height:\"100%\",width:\"100%\"},variant:\"vT9dbYgIl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1axeg5f\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlsabj\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mbh6a\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:\"You Need More Than Just New Patients To Grow Your Practice\u2026\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:\"You Need More Than Just New Patients To Grow Your Practice\u2026\"})})}),className:\"framer-1bgselw\",fonts:[\"GF;Figtree-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS0zMDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-weight\":\"500\"},children:[\"Learn How Our Partners \",/*#__PURE__*/_jsx(\"strong\",{children:\"ACQUIRE \"})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"30-50\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" New Patients Consistently And Keep Them Long Term With Our \"})]})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"360\\xb0 Aesthetic Solution\"})})})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS0zMDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-weight\":\"500\"},children:[\"Learn How Our Partners \",/*#__PURE__*/_jsx(\"strong\",{children:\"ACQUIRE \"})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"30-50\"})}),/*#__PURE__*/_jsx(\"strong\",{children:\" New Patients Consistently And Keep Them Long Term With Our \"})]})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"360\\xb0 Aesthetic Solution\"})})})]}),className:\"framer-127fd13\",fonts:[\"GF;Figtree-300\",\"GF;Figtree-regular\",\"GF;Figtree-500\",\"GF;Figtree-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmsvvd\",\"data-framer-name\":\"Video\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfn92q\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5d9dlx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1km4b6w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gZLqPp2cL\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"gZLqPp2cL\",layoutId:\"gZLqPp2cL\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"url\",url:\"https://api.leadconnectorhq.com/widget/booking/U98IUYYtSGYSS4Vs9Af4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Our\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"360\\xb0 Aesthetic Solution Approach\u2026\"})]})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-weight\":\"700\"},children:\"Our\"}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"360\\xb0 Aesthetic Solution Approach\u2026\"})]})})}),className:\"framer-1oy13cr\",fonts:[\"GF;Figtree-regular\",\"GF;Figtree-700\",\"GF;Figtree-900\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SHnHaH1Y_:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+297.7+0+0+1043.9),pixelHeight:2880,pixelWidth:6e3,positionX:\"center\",positionY:\"center\",sizes:\"935px\",src:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png\",srcSet:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png 6000w\"}},xwSWiT77Z:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+542.5+0+0+1128.5),pixelHeight:2880,pixelWidth:6e3,positionX:\"center\",positionY:\"center\",sizes:\"460px\",src:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png\",srcSet:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+297.7+0+0+1043.9),pixelHeight:2880,pixelWidth:6e3,positionX:\"center\",positionY:\"center\",sizes:\"1399px\",src:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png\",srcSet:\"https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/HSKC4yqDKYSnx488nTUeIlCEuU.png 6000w\"},className:\"framer-83zh2i\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jn2804\",\"data-framer-name\":\"Thumbs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpq51i\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:\"HEAR WHAT SOME OF OUR PARTNERS HAVE TO SAY\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS03MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(45, 57, 139) 0%, rgb(1, 171, 240) 100%)\"},children:\"HEAR WHAT SOME OF OUR PARTNERS HAVE TO SAY\"})})}),className:\"framer-11rxb0f\",fonts:[\"GF;Figtree-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-szloxj\",\"data-framer-name\":\"video\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kceuq7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bRX22me8d\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:13,bottomLeftRadius:13,bottomRightRadius:13,height:\"100%\",id:\"bRX22me8d\",isMixedBorderRadius:false,isRed:true,layoutId:\"bRX22me8d\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:13,topRightRadius:13,url:\"https://youtu.be/zoYA-am2mco\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p5wfya-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EfKrCf0Yc\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{url:\"https://youtu.be/zoYA-am2mco\"}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:13,bottomLeftRadius:13,bottomRightRadius:13,height:\"100%\",id:\"EfKrCf0Yc\",isMixedBorderRadius:false,isRed:true,layoutId:\"EfKrCf0Yc\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:13,topRightRadius:13,url:\"https://youtu.be/hOtHxj86DUA\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q8w5y0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t4Jow5DtY\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:13,bottomLeftRadius:13,bottomRightRadius:13,height:\"100%\",id:\"t4Jow5DtY\",isMixedBorderRadius:false,isRed:true,layoutId:\"t4Jow5DtY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:13,topRightRadius:13,url:\"https://youtu.be/bPJly-KAbY4\",width:\"100%\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-563ove-container hidden-1vqn830 hidden-14rf93z\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"H8y_704RL\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:13,bottomLeftRadius:13,bottomRightRadius:13,height:\"100%\",id:\"H8y_704RL\",isMixedBorderRadius:false,isRed:true,layoutId:\"H8y_704RL\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:13,topRightRadius:13,url:\"https://youtu.be/hOtHxj86DUA\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kp8ql1-container hidden-1vqn830 hidden-14rf93z\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UGh8RVY3t\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:13,bottomLeftRadius:13,bottomRightRadius:13,height:\"100%\",id:\"UGh8RVY3t\",isMixedBorderRadius:false,isRed:true,layoutId:\"UGh8RVY3t\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:13,topRightRadius:13,url:\"https://youtu.be/bPJly-KAbY4\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3r63q8\",\"data-framer-name\":\"Have to say\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ks5zv1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MQ68XFPkj\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"MQ68XFPkj\",layoutId:\"MQ68XFPkj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-52axvy-container\",\"data-framer-name\":\"card7\",inComponentSlot:true,name:\"card7\",nodeId:\"FbEYlnL8u\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"Great service and a smooth transition into booking patients! The process has been efficient, and the support has been excellent. Leads are coming in and turning into actual appointments\u2014very happy with the results!\"',height:\"100%\",id:\"FbEYlnL8u\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/iLtdGQnPY5AFBc24AQ67VLQIqJ0.png\"},\"\"),layoutId:\"FbEYlnL8u\",name:\"card7\",QAbl5btnq:\"SHANE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hnfa9v-container\",\"data-framer-name\":\"card1\",inComponentSlot:true,name:\"card1\",nodeId:\"lmWQw88hm\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"We probably receive 10-15 soliciting into marketing calls a day, you guys stand out to be the one I wouldn\u2019t trade off to anybody\"',height:\"100%\",id:\"lmWQw88hm\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/J8hRardR2Qg40yERCozujrIufU.png\"},\"\"),layoutId:\"lmWQw88hm\",name:\"card1\",QAbl5btnq:\"DR. SULIMAN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1123e3m-container\",\"data-framer-name\":\"card2\",inComponentSlot:true,name:\"card2\",nodeId:\"R1sIXp8CL\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"In the first month, they managed to double the number of patients my clinic was receiving. They have absolutely crushed it for my clinic, and our success continues to grow.\"',height:\"100%\",id:\"R1sIXp8CL\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/cSQeqNXTxrKeU1MPCzY9sFIDZaA.png\"},\"\"),layoutId:\"R1sIXp8CL\",name:\"card2\",QAbl5btnq:\"NATHAN\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ryu0bb-container\",\"data-framer-name\":\"card3\",inComponentSlot:true,name:\"card3\",nodeId:\"a_D4z7nyI\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\u201CYou Guys Have Brought In So Much Business In Such A Short Time...I\u2019ve Worked With Several People Who Have Not Done What You Guys Have Done\"',height:\"100%\",id:\"a_D4z7nyI\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/vwfjZcvx3tH0R7PgfYHMvBeANA.png\"},\"\"),layoutId:\"a_D4z7nyI\",name:\"card3\",QAbl5btnq:\"TRINNA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n9h3t8-container\",\"data-framer-name\":\"card5\",inComponentSlot:true,name:\"card5\",nodeId:\"bCBcjs4Rj\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"Our First Campaign Had A Very Good Response...We We\u2019re Able To Get Good-Quality Clients...I Would 100% Recommend Your Company!\"',height:\"100%\",id:\"bCBcjs4Rj\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/NHquuD8kcTmMzfYgTQdJ9q0VI.png\"},\"\"),layoutId:\"bCBcjs4Rj\",name:\"card5\",QAbl5btnq:\"NIRMALA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h8ee2x-container\",\"data-framer-name\":\"card4\",inComponentSlot:true,name:\"card4\",nodeId:\"DpjlwLnhH\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"I am glad that we took a chance and worked with you. Your marketing skills have brought a lot of clients our way. And for that we highly recommend you to everyone in need of this type of services.\"',height:\"100%\",id:\"DpjlwLnhH\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/B8w7qHqdBHXT2oGyQcOOIFzQtA.png\"},\"\"),layoutId:\"DpjlwLnhH\",name:\"card4\",QAbl5btnq:\"BLOSSOM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"467px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pb3zvi-container\",\"data-framer-name\":\"card6\",inComponentSlot:true,name:\"card6\",nodeId:\"Xwd8gHKXx\",rendersWithMotion:true,scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Card,{G_MjaAfpa:'\"Results have been incredible and cannot wait to see our growth continue with this company! 10/10 would recommend to anyone looking to scale their business.\"',height:\"100%\",id:\"Xwd8gHKXx\",jwZculVgF:addImageAlt({src:\"https://framerusercontent.com/images/iYBAGFAg3q3EjgV5PKCzSbyQNE.png\"},\"\"),layoutId:\"Xwd8gHKXx\",name:\"card6\",QAbl5btnq:\"JARA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"footer\",{className:\"framer-1o44abk\",\"data-framer-name\":\"footer\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8uo6y2\",\"data-framer-name\":\"top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+71+0+3307.5+56+-2842170943040401e-29+0+0),positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png\",srcSet:\"https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png 728w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+110+0+3272.6+88+0+0),positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png\",srcSet:\"https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/6c1FFg1ZqOQrOciHzq6sx5MGQ.png 728w\"},className:\"framer-1oem4u0\",\"data-framer-name\":\"logo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j9sfuh\",\"data-framer-name\":\"social-media\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/the-perfect-look-agency?trk=public_profile_topcard-current-company\",motionChild:true,nodeId:\"qdeX5N619\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n2vf9i framer-16v70u9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-szfgb0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bc1EnTX84\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"LinkedinLogo\",id:\"bc1EnTX84\",layoutId:\"bc1EnTX84\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/profile.php?id=61559981699015\",motionChild:true,nodeId:\"H8zuFWqB_\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15z7lix framer-16v70u9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-flve0a-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MOUsFLxpE\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FacebookLogo\",id:\"MOUsFLxpE\",layoutId:\"MOUsFLxpE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/theperfectlook.co/\",motionChild:true,nodeId:\"g4dx9xoW8\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11xtk17 framer-16v70u9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-80yrk6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CEGlj3cLK\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"InstagramLogo\",id:\"CEGlj3cLK\",layoutId:\"CEGlj3cLK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yn68b7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5j2pz\",\"data-framer-name\":\"email-contact\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sp0j4k-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aFL8LzHWp\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"EnvelopeSimple\",id:\"aFL8LzHWp\",layoutId:\"aFL8LzHWp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:info@theperfectlook.co\",motionChild:true,nodeId:\"BfIYo0CC1\",openInNewTab:true,scopeId:\"lnmOnQODY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xwflsr\",\"data-styles-preset\":\"AMoOiO71w\",children:\"info@theperfectlook.co\"})})})}),className:\"framer-1pjl2t9\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cpc6tn\",\"data-framer-name\":\"phone-contact\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mwaq4s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DVrJWGxc3\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ca8c3d16-0252-489a-ac89-3e7d49afe6a0, rgb(1, 171, 240))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DeviceMobileCamera\",id:\"DVrJWGxc3\",layoutId:\"DVrJWGxc3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:19177462090\",motionChild:true,nodeId:\"WLRaT5Q7K\",openInNewTab:true,scopeId:\"lnmOnQODY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xwflsr\",\"data-styles-preset\":\"AMoOiO71w\",children:\"+1 (917) 746-2090\"})})})}),className:\"framer-1gscxxl\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xwSWiT77Z:{y:(componentViewport?.y||0)+0+71+0+3307.5+56+-2842170943040401e-29+0+286}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+110+0+3272.6+88+0+23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1418hbj-container\",nodeId:\"JzpgACLxE\",scopeId:\"lnmOnQODY\",children:/*#__PURE__*/_jsx(Btn,{height:\"100%\",id:\"JzpgACLxE\",layoutId:\"JzpgACLxE\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11kh2bt\",\"data-border\":true,\"data-framer-name\":\"bottom\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\"},children:\"All rights Reserved The Perfect Look 2024\"})}),className:\"framer-3csj8s\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12zobi3\",\"data-framer-name\":\"links-policy-terms\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BDAWRBsy6\"},motionChild:true,nodeId:\"l6jNXX9Vj\",openInNewTab:false,scopeId:\"lnmOnQODY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xwflsr\",\"data-styles-preset\":\"AMoOiO71w\",children:\"Privacy Policy\"})})})}),className:\"framer-12fg32d\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-3f8368f0-743d-4918-a210-3750437fc043, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VR26DUB3M\"},motionChild:true,nodeId:\"N9sxX6nAG\",openInNewTab:false,scopeId:\"lnmOnQODY\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-xwflsr\",\"data-styles-preset\":\"AMoOiO71w\",children:\"Terms of Service\"})})})}),className:\"framer-1gharo6\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KLQpD.framer-16v70u9, .framer-KLQpD .framer-16v70u9 { display: block; }\",\".framer-KLQpD.framer-1vqn830 { align-content: center; align-items: center; background-color: #e6eff2; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-KLQpD .framer-hm6a4j-container { flex: none; height: 110px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-KLQpD .framer-1axeg5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-1nlsabj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 124px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-19mbh6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-1bgselw, .framer-KLQpD .framer-1oy13cr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 81%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-KLQpD .framer-127fd13 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 62%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-KLQpD .framer-1dmsvvd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 64px 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-1pfn92q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-KLQpD .framer-5d9dlx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KLQpD .framer-1km4b6w-container { flex: none; height: 789px; max-width: 1000px; position: relative; width: 1000px; }\",\".framer-KLQpD .framer-83zh2i { flex: none; height: 673px; position: relative; width: 1399px; }\",\".framer-KLQpD .framer-jn2804 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 124px 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-fpq51i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-11rxb0f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 46%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KLQpD .framer-szloxj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 72px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-kceuq7-container, .framer-KLQpD .framer-p5wfya-container, .framer-KLQpD .framer-1q8w5y0-container, .framer-KLQpD .framer-563ove-container, .framer-KLQpD .framer-kp8ql1-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); position: relative; width: 427px; }\",\".framer-KLQpD .framer-3r63q8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 124px 0px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-ks5zv1-container { flex: none; height: 381px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-52axvy-container, .framer-KLQpD .framer-hnfa9v-container, .framer-KLQpD .framer-1123e3m-container, .framer-KLQpD .framer-1ryu0bb-container, .framer-KLQpD .framer-1n9h3t8-container, .framer-KLQpD .framer-1h8ee2x-container, .framer-KLQpD .framer-1pb3zvi-container { height: 381px; position: relative; width: 467px; }\",\".framer-KLQpD .framer-1o44abk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 88px 32px 56px 32px; position: relative; width: 100%; }\",\".framer-KLQpD .framer-8uo6y2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-KLQpD .framer-1oem4u0 { flex: none; height: 102px; position: relative; width: 183px; }\",\".framer-KLQpD .framer-1j9sfuh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KLQpD .framer-n2vf9i, .framer-KLQpD .framer-15z7lix, .framer-KLQpD .framer-11xtk17 { flex: none; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; }\",\".framer-KLQpD .framer-szfgb0-container, .framer-KLQpD .framer-flve0a-container, .framer-KLQpD .framer-80yrk6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-KLQpD .framer-yn68b7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KLQpD .framer-1b5j2pz, .framer-KLQpD .framer-1cpc6tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KLQpD .framer-sp0j4k-container, .framer-KLQpD .framer-1mwaq4s-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-KLQpD .framer-1pjl2t9, .framer-KLQpD .framer-1gscxxl, .framer-KLQpD .framer-12fg32d, .framer-KLQpD .framer-1gharo6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KLQpD .framer-1418hbj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KLQpD .framer-11kh2bt { --border-bottom-width: 0px; --border-color: var(--token-97377b32-8927-4056-ad3a-49ab83fdc40b, #bfc0cd); --border-left-width: 0px; --border-right-width: 0px; --border-style: dashed; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-KLQpD .framer-3csj8s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KLQpD .framer-12zobi3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KLQpD.framer-1vqn830, .framer-KLQpD .framer-1axeg5f, .framer-KLQpD .framer-1nlsabj, .framer-KLQpD .framer-19mbh6a, .framer-KLQpD .framer-1dmsvvd, .framer-KLQpD .framer-1pfn92q, .framer-KLQpD .framer-5d9dlx, .framer-KLQpD .framer-jn2804, .framer-KLQpD .framer-fpq51i, .framer-KLQpD .framer-szloxj, .framer-KLQpD .framer-3r63q8, .framer-KLQpD .framer-1o44abk, .framer-KLQpD .framer-1j9sfuh, .framer-KLQpD .framer-yn68b7, .framer-KLQpD .framer-1b5j2pz, .framer-KLQpD .framer-1cpc6tn, .framer-KLQpD .framer-12zobi3 { gap: 0px; } .framer-KLQpD.framer-1vqn830 > *, .framer-KLQpD .framer-1axeg5f > *, .framer-KLQpD .framer-jn2804 > *, .framer-KLQpD .framer-fpq51i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KLQpD.framer-1vqn830 > :first-child, .framer-KLQpD .framer-1axeg5f > :first-child, .framer-KLQpD .framer-1nlsabj > :first-child, .framer-KLQpD .framer-19mbh6a > :first-child, .framer-KLQpD .framer-1pfn92q > :first-child, .framer-KLQpD .framer-jn2804 > :first-child, .framer-KLQpD .framer-fpq51i > :first-child, .framer-KLQpD .framer-3r63q8 > :first-child, .framer-KLQpD .framer-1o44abk > :first-child, .framer-KLQpD .framer-yn68b7 > :first-child { margin-top: 0px; } .framer-KLQpD.framer-1vqn830 > :last-child, .framer-KLQpD .framer-1axeg5f > :last-child, .framer-KLQpD .framer-1nlsabj > :last-child, .framer-KLQpD .framer-19mbh6a > :last-child, .framer-KLQpD .framer-1pfn92q > :last-child, .framer-KLQpD .framer-jn2804 > :last-child, .framer-KLQpD .framer-fpq51i > :last-child, .framer-KLQpD .framer-3r63q8 > :last-child, .framer-KLQpD .framer-1o44abk > :last-child, .framer-KLQpD .framer-yn68b7 > :last-child { margin-bottom: 0px; } .framer-KLQpD .framer-1nlsabj > *, .framer-KLQpD .framer-19mbh6a > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KLQpD .framer-1dmsvvd > *, .framer-KLQpD .framer-5d9dlx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KLQpD .framer-1dmsvvd > :first-child, .framer-KLQpD .framer-5d9dlx > :first-child, .framer-KLQpD .framer-szloxj > :first-child, .framer-KLQpD .framer-1j9sfuh > :first-child, .framer-KLQpD .framer-1b5j2pz > :first-child, .framer-KLQpD .framer-1cpc6tn > :first-child, .framer-KLQpD .framer-12zobi3 > :first-child { margin-left: 0px; } .framer-KLQpD .framer-1dmsvvd > :last-child, .framer-KLQpD .framer-5d9dlx > :last-child, .framer-KLQpD .framer-szloxj > :last-child, .framer-KLQpD .framer-1j9sfuh > :last-child, .framer-KLQpD .framer-1b5j2pz > :last-child, .framer-KLQpD .framer-1cpc6tn > :last-child, .framer-KLQpD .framer-12zobi3 > :last-child { margin-right: 0px; } .framer-KLQpD .framer-1pfn92q > * { margin: 0px; margin-bottom: calc(95px / 2); margin-top: calc(95px / 2); } .framer-KLQpD .framer-szloxj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KLQpD .framer-3r63q8 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-KLQpD .framer-1o44abk > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-KLQpD .framer-1j9sfuh > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-KLQpD .framer-yn68b7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-KLQpD .framer-1b5j2pz > *, .framer-KLQpD .framer-1cpc6tn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KLQpD .framer-12zobi3 > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } }\",...sharedStyle.css,'.framer-KLQpD[data-border=\"true\"]::after, .framer-KLQpD [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: 1439px) { .framer-KLQpD.framer-1vqn830 { width: 810px; } .framer-KLQpD .framer-127fd13 { max-width: 71%; } .framer-KLQpD .framer-83zh2i { width: 935px; }}\",\"@media (max-width: 809px) { .framer-KLQpD.framer-1vqn830 { width: 390px; } .framer-KLQpD .framer-hm6a4j-container { height: 71px; } .framer-KLQpD .framer-1nlsabj { padding: 56px 0px 56px 0px; } .framer-KLQpD .framer-19mbh6a { padding: 0px 16px 0px 16px; } .framer-KLQpD .framer-1bgselw { max-width: unset; order: 0; width: 100%; } .framer-KLQpD .framer-127fd13, .framer-KLQpD .framer-1oy13cr { max-width: unset; order: 1; width: 100%; } .framer-KLQpD .framer-1dmsvvd, .framer-KLQpD .framer-jn2804 { padding: 0px 0px 56px 0px; } .framer-KLQpD .framer-1pfn92q { gap: 48px; padding: 0px 16px 0px 16px; } .framer-KLQpD .framer-5d9dlx { order: 0; width: 100%; } .framer-KLQpD .framer-1km4b6w-container { flex: 1 0 0px; height: 928px; max-width: unset; width: 1px; } .framer-KLQpD .framer-83zh2i { height: 230px; order: 2; width: 460px; } .framer-KLQpD .framer-fpq51i { order: 0; padding: 0px 16px 0px 16px; } .framer-KLQpD .framer-11rxb0f { max-width: unset; } .framer-KLQpD .framer-szloxj { padding: 56px 0px 0px 0px; } .framer-KLQpD .framer-563ove-container { order: 1; } .framer-KLQpD .framer-kp8ql1-container { order: 2; } .framer-KLQpD .framer-3r63q8 { padding: 0px; } .framer-KLQpD .framer-1o44abk { gap: 40px; padding: 56px 32px 32px 32px; } .framer-KLQpD .framer-8uo6y2 { flex-direction: column; gap: 32px; justify-content: flex-start; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-KLQpD .framer-1pfn92q, .framer-KLQpD .framer-1o44abk, .framer-KLQpD .framer-8uo6y2 { gap: 0px; } .framer-KLQpD .framer-1pfn92q > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-KLQpD .framer-1pfn92q > :first-child, .framer-KLQpD .framer-1o44abk > :first-child, .framer-KLQpD .framer-8uo6y2 > :first-child { margin-top: 0px; } .framer-KLQpD .framer-1pfn92q > :last-child, .framer-KLQpD .framer-1o44abk > :last-child, .framer-KLQpD .framer-8uo6y2 > :last-child { margin-bottom: 0px; } .framer-KLQpD .framer-1o44abk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-KLQpD .framer-8uo6y2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3753\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SHnHaH1Y_\":{\"layout\":[\"fixed\",\"auto\"]},\"xwSWiT77Z\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"qMprgLsp8\":{\"pattern\":\":qMprgLsp8\",\"name\":\"have-to-say\"},\"oxWrgZ_2I\":{\"pattern\":\":oxWrgZ_2I\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerlnmOnQODY=withCSS(Component,css,\"framer-KLQpD\");export default FramerlnmOnQODY;FramerlnmOnQODY.displayName=\"Booking\";FramerlnmOnQODY.defaultProps={height:3753,width:1440};addFonts(FramerlnmOnQODY,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15bwkEU4HTy.woff2\",weight:\"700\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5bwkEU4HTy.woff2\",weight:\"300\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\",weight:\"900\"}]},...NavigationFonts,...EmbedFonts,...YouTubeFonts,...CardFonts,...TickerFonts,...PhosphorFonts,...BtnFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlnmOnQODY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"3753\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"qMprgLsp8\\\":{\\\"pattern\\\":\\\":qMprgLsp8\\\",\\\"name\\\":\\\"have-to-say\\\"},\\\"oxWrgZ_2I\\\":{\\\"pattern\\\":\\\":oxWrgZ_2I\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SHnHaH1Y_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xwSWiT77Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavigationFonts", "getFonts", "adKot4gED_default", "RichTextWithFX", "withFX", "RichText2", "EmbedFonts", "Embed", "YouTubeFonts", "Youtube", "MotionDivWithFX", "motion", "CardFonts", "gAwVvyqwg_default", "TickerFonts", "Ticker", "PhosphorFonts", "Icon", "BtnFonts", "j17nP9af9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "transition3", "transition4", "addImageAlt", "image", "alt", "HTMLStyle", "value", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "getLoadingLazyAtYPosition", "Image2", "Link", "css", "FramerlnmOnQODY", "withCSS", "lnmOnQODY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
