{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/Cs0w5Su72eeuirGvKldQ/PhoneNumberInput.js", "ssg:https://framerusercontent.com/modules/AgebHfj2I4XfLBvrkfUL/lcyGTSYVYNyYIUevYGtv/JTX3HQvfv.js", "ssg:https://framerusercontent.com/modules/Hehw9Zp75hCG6y8b18Ez/JzYVlXJvs6Z56UNh2SAY/vdpuiWdxl.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/cuQH4dmpDnV8YK1mSgQX/KqRXqunFjE6ufhpc7ZRu/useFontControls.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/4hNNyBhHBq7993poys5T/q7P5acDnRxvARZjk1Vta/HWHwUziwF.js", "ssg:https://framerusercontent.com/modules/Zzrpojh8zFSMui4hBvoG/KzNH28ljjD23TJPeWZBa/tRy2IE4jC.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef,useId}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                        [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                            display: none !important;\n                        }`}})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,parsePadding,fillProp,borderProp,shadowsProp,useInstanceId,HiddenInput}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function PhoneNumberInput(props){const{countryCodeOptions,border,shadows}=props;const id=useInstanceId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasCC=!!countryCodeOptions;const ccConnected=hasCC&&countryCodeOptions?.style!==\"split\";const phoneFormat=props.format==\"custom\"?props.customFormat==\"\"?\"XXXXXXXXXX\":props.customFormat:props.format;const countryCodeFormat=hasCC?countryCodeOptions.format==\"custom\"?countryCodeOptions.customFormat==\"\"?\"X\":countryCodeOptions.customFormat:countryCodeOptions.format:\"\";const maxDigits=countXCharacters(phoneFormat);const defaultCountryCode=String(countryCodeOptions?.defaultCountryCode)??\"1\";const[countryCode,setCountryCode]=useState(defaultCountryCode);const[phoneNumber,setPhoneNumber]=useState(\"\");const[countryCodeFocused,setCountryCodeFocused]=useState(false);const[phoneNumberFocused,setPhoneNumberFocused]=useState(false);const[invalid,setInvalid]=useState(false);const countryCodeInputRef=useRef(null);const phoneNumberInputRef=useRef(null);const[pt,pr,pb,pl]=parsePadding(props.padding);const[tl,tr,br,bl]=parsePadding(props.radius);const[bwt,bwr,bwb,bwl]=parsePadding(border?.width);useEffect(()=>{if(invalid){props.invalidEvent?.();}},[invalid]);const isComplete=phoneNumber.length===maxDigits;function onPhoneNumberChange(event){const unformatted=unformatValue(event.target.value).substring(0,maxDigits);const formattedValue=formatPhoneNumber(phoneNumber,phoneFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setPhoneNumber(unformatted.slice(0,-1));}else{setPhoneNumber(unformatted);}}function onCountryCodeChange(event){const unformatted=unformatValue(event.target.value).substring(0,3);const formattedValue=formatCountryCode(countryCode,countryCodeFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setCountryCode(unformatted.slice(0,-1));}else{setCountryCode(unformatted);}}function onCountryCodeFocus(){setCountryCodeFocused(true);if(invalid){setInvalid(false);}const lastChar=countryCodeFormat.slice(-1);if(lastChar!=\"X\"&&lastChar!=\"x\"){const countryCodeInput=countryCodeInputRef.current;if(countryCodeInput){const formattedValue=formatCountryCode(countryCode,countryCodeFormat);const cursorPosition=Math.max(countryCodeFormat.lastIndexOf(\"X\"),countryCodeFormat.lastIndexOf(\"x\"))+countryCode.length;setTimeout(()=>countryCodeInput.setSelectionRange(cursorPosition,cursorPosition),5);}}props.focusEvent?.();}function onPhoneNumberKeyDown(event){if(hasCC&&phoneNumber===\"\"){if(event.key===\"Backspace\"){countryCodeInputRef.current?.focus();}if(event.key===\"ArrowLeft\"){countryCodeInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeKeyDown(event){if(hasCC){if(event.key===\"ArrowRight\"&&event.target.selectionStart===event.target.value.length){phoneNumberInputRef.current?.focus();event.preventDefault();}}}function onCountryCodeBlur(event){if(countryCode.length===0){setCountryCode(defaultCountryCode);}setCountryCodeFocused(false);props.blurEvent?.();}function onPhoneNumberFocus(){setPhoneNumberFocused(true);props.focusEvent?.();if(invalid){setInvalid(false);}}function onPhoneNumberBlur(){setPhoneNumberFocused(false);props.blurEvent?.();}return /*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,id:id,style:{display:\"flex\",flexDirection:\"row\",gap:countryCodeOptions?.style==\"split\"?countryCodeOptions.gap:0,...props.style},children:[/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required||phoneNumber.length>0&&!isComplete,value:isComplete?hasCC?`+${countryCode} ${phoneNumber}`:phoneNumber:\"\",setInvalid:setInvalid}),hasCC&&/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,countryCodeFocused,invalid),boxShadow:invalid&&shadows?.invalid||countryCodeFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(tl,0,0,bl):props.radius,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:countryCodeInputRef,value:formatCountryCode(isCanvas?countryCodeOptions.defaultCountryCode:countryCode,countryCodeFormat),onChange:onCountryCodeChange,onFocus:onCountryCodeFocus,onBlur:onCountryCodeBlur,onKeyDown:onCountryCodeKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,width:countryCodeOptions.width+pl,height:\"100%\",margin:0,display:\"block\",padding:px(pt,0,pb,pl),...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,0,bwb,bwl):border.width,opacity:countryCodeFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:countryCodeFocused?1:0,transition:props.transition})]}),/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,phoneNumberFocused,invalid),boxShadow:invalid&&shadows?.invalid||phoneNumberFocused&&shadows?.focus||shadows?.default},style:{position:\"relative\",borderRadius:ccConnected?px(0,tr,br,0):props.radius,flex:1,backdropFilter:props.bgBlur?`blur(${props.bgBlur}px)`:undefined},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:phoneNumberInputRef,autoFocus:props.autoFocus,value:formatPhoneNumber(phoneNumber,phoneFormat),onChange:onPhoneNumberChange,onFocus:onPhoneNumberFocus,onBlur:onPhoneNumberBlur,onKeyDown:onPhoneNumberKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,margin:0,display:\"block\",padding:props.padding,width:\"100%\",height:\"100%\",textOverflow:\"ellipsis\",...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&border?.colorInvalid||border.color,width:ccConnected?px(bwt,bwr,bwb,0):border.width,opacity:phoneNumberFocused&&border?.colorFocus?0:1,transition:props.transition}),border?.colorFocus&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:phoneNumberFocused?1:0,transition:props.transition})]}),countryCodeOptions?.style==\"divider\"&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:border?.colorFocus&&(countryCodeFocused||phoneNumberFocused)?0:1},style:{position:\"absolute\",width:countryCodeOptions.divider.width,left:countryCodeOptions.width+pl-Math.round(countryCodeOptions.divider.width/2),top:countryCodeOptions.divider.inset,bottom:countryCodeOptions.divider.inset,backgroundColor:countryCodeOptions.divider.color},initial:false,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                    #${id} input::placeholder {\n                        color: ${props.placeholderColor};\n                    }\n                    #${id} input:focus {\n                        outline: none;\n                    }`}})]});}PhoneNumberInput.displayName=\"Phone Number Input\";addPropertyControls(PhoneNumberInput,{name:{type:ControlType.String,defaultValue:\"Phone Number\",preventLocalization:true},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},countryCodeOptions:{type:ControlType.Object,optional:true,defaultValue:{defaultCountryCode:1,format:\"+1\",width:40},title:\"Country Code\",controls:{defaultCountryCode:{title:\"Default\",type:ControlType.Number,min:0,max:999,step:1,defaultValue:1},format:{title:\"Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+X\",\"(X)\",\"(+X)\",\"X\",\"custom\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"+X\",description:\"*X* -> country code\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},width:{type:ControlType.Number,defaultValue:45,min:1,step:1},style:{type:ControlType.Enum,defaultValue:\"divider\",options:[\"connected\",\"divider\",\"split\"],optionTitles:[\"Connected\",\"Divider\",\"Split\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},divider:{type:ControlType.Object,hidden:props=>props.style!==\"divider\",controls:{color:{type:ControlType.Color,defaultValue:\"rgba(136, 136, 136, 0.15)\"},width:{type:ControlType.Number,defaultValue:1,min:1,step:1,displayStepper:true},inset:{type:ControlType.Number,defaultValue:8,min:0,step:1,displayStepper:true}}},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1,hidden:props=>props.style!==\"split\"}}},format:{type:ControlType.Enum,defaultValue:\"(XXX) XXX - XXXX\",options:[\"(XXX) XXX - XXXX\",\"(XXX) XXX-XXXX\",\"XXX-XXX-XXXX\",\"XXX.XXX.XXXX\",\"XXX XXX XXXX\",\"XXXXXXXXXXX\",\"XX XXXX XXXX\",\"custom\"],optionTitles:[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12 3456 7890\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"(XXX) XXX - XXXX\",description:\"*X* -> phone number\",preventLocalization:true,hidden:props=>props.format!==\"custom\"},placeholder:{type:ControlType.String,defaultValue:\"\",placeholder:\"Auto\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp({invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp({invalid:true}),shadows:shadowsProp(),bgBlur:{type:ControlType.Number,min:0,max:100,step:1,displayStepper:true,title:\"BG Blur\"},transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function formatPhoneNumber(phoneNumber,format){if(!phoneNumber){return\"\";}let index=0// Tracks the position in the replacements string\n;let cutOffIndex=null// To determine where to slice the template after replacement\n;const result=format.replace(/[Xx]/g,(match,offset)=>{if(index<phoneNumber.length){return phoneNumber[index++];}else{if(phoneNumber.length<10&&cutOffIndex===null){// Set cut-off index at the first unmatched Xx after all replacements are used\ncutOffIndex=offset;}return\"\";}});// Slice the template to remove the part after the last valid replacement if necessary\nreturn cutOffIndex!==null?result.slice(0,cutOffIndex):result;}function replaceXWithNumbers(input){let count=1;return input.replace(/[Xx]/g,()=>{let number=count%10;if(number===0)number=0;count++;return number;});}function formatCountryCode(countryCode,format){return format.replace(/[Xx]/,countryCode);}function unformatValue(value){return value.replace(/\\D/g,\"\");}function isLastCharacterANumber(str){if(str.length===0)return false// Check if the string is empty\n;const lastChar=str[str.length-1]// Get the last character\n;return!isNaN(lastChar)&&!isNaN(parseFloat(lastChar))// Check if it's a numeric value\n;}const px=(a,b,c,d)=>`${a}px ${b}px ${c}px ${d}px`;function countXCharacters(str){// Convert the string to lowercase to count both 'X' and 'x'\nconst lowercaseStr=str.toLowerCase();// Use a regular expression to match 'x' characters\nconst xRegex=/x/g;// Use the match() method to find all occurrences of 'x'\nconst matches=lowercaseStr.match(xRegex);// Return the count of matches, or 0 if no matches found\nreturn matches?matches.length:0;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneNumberInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneNumberInput.map", "// Generated by Framer (1f5f6d9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Pro Text Regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HZqX1E0smkzNnCKgA5KG93Ni1I.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-tWct2 .framer-styles-preset-1hjtnyx:not(.rich-text-wrapper), .framer-tWct2 .framer-styles-preset-1hjtnyx.rich-text-wrapper p { --framer-font-family: \"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1023px) and (min-width: 640px) { .framer-tWct2 .framer-styles-preset-1hjtnyx:not(.rich-text-wrapper), .framer-tWct2 .framer-styles-preset-1hjtnyx.rich-text-wrapper p { --framer-font-family: \"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 639px) and (min-width: 0px) { .framer-tWct2 .framer-styles-preset-1hjtnyx:not(.rich-text-wrapper), .framer-tWct2 .framer-styles-preset-1hjtnyx.rich-text-wrapper p { --framer-font-family: \"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tWct2\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={vjpLMThed:{hover:true,pressed:true},wUKeO0qtb:{hover:true,pressed:true}};const cycleOrder=[\"vjpLMThed\",\"RRGLuQVsB\",\"HZVuuYEVs\",\"p5hZJ_gn0\",\"oHTUgIELA\",\"wUKeO0qtb\",\"q1R7R8mHF\",\"YM0zuNoF4\",\"U8wogAcLw\"];const serializationHash=\"framer-cWopm\";const variantClassNames={HZVuuYEVs:\"framer-v-skpunr\",oHTUgIELA:\"framer-v-1lwyu13\",p5hZJ_gn0:\"framer-v-11lg47x\",q1R7R8mHF:\"framer-v-pmbtx3\",RRGLuQVsB:\"framer-v-qwhapw\",U8wogAcLw:\"framer-v-wvdnj4\",vjpLMThed:\"framer-v-1tr6kap\",wUKeO0qtb:\"framer-v-1s97oy3\",YM0zuNoF4:\"framer-v-1amnt9a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Disabled White\":\"YM0zuNoF4\",\"Loading White\":\"q1R7R8mHF\",\"Primary White\":\"wUKeO0qtb\",\"Success White\":\"U8wogAcLw\",Default:\"vjpLMThed\",Disabled:\"HZVuuYEVs\",Error:\"oHTUgIELA\",Loading:\"RRGLuQVsB\",Success:\"p5hZJ_gn0\"};const getProps=({click,height,id,title,width,...props})=>{return{...props,V6Rj8Xbl0:title??props.V6Rj8Xbl0??\"Send\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vjpLMThed\",Wq0c2BiNO:click??props.Wq0c2BiNO};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,V6Rj8Xbl0,Wq0c2BiNO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vjpLMThed\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1511e4s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wq0c2BiNO){const res=await Wq0c2BiNO(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"RRGLuQVsB\",\"q1R7R8mHF\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"RRGLuQVsB\",\"q1R7R8mHF\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tr6kap\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"vjpLMThed\",onTap:onTap1511e4s,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(38, 38, 38)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"1px 1px 2px 0px rgba(0, 0, 0, 0.45)\",opacity:1,...style},variants:{\"vjpLMThed-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(51, 51, 51, 0.85)\",opacity:1},\"vjpLMThed-pressed\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(51, 51, 51)\",opacity:1},\"wUKeO0qtb-hover\":{backgroundColor:\"rgb(255, 255, 255)\"},\"wUKeO0qtb-pressed\":{\"--border-color\":\"rgb(204, 204, 204)\",backgroundColor:\"rgb(204, 204, 204)\"},HZVuuYEVs:{opacity:.5},oHTUgIELA:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},p5hZJ_gn0:{opacity:1},q1R7R8mHF:{\"--border-bottom-width\":\"0.4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.4px\",\"--border-right-width\":\"0.4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",opacity:1},U8wogAcLw:{\"--border-bottom-width\":\"0.4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.4px\",\"--border-right-width\":\"0.4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",opacity:1},wUKeO0qtb:{\"--border-bottom-width\":\"0.4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.4px\",\"--border-right-width\":\"0.4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",opacity:1},YM0zuNoF4:{\"--border-bottom-width\":\"0.4px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0.4px\",\"--border-right-width\":\"0.4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.4px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",opacity:.5}},...addPropertyOverrides({\"vjpLMThed-hover\":{\"data-framer-name\":undefined},\"vjpLMThed-pressed\":{\"data-framer-name\":undefined},\"wUKeO0qtb-hover\":{\"data-framer-name\":undefined},\"wUKeO0qtb-pressed\":{\"data-framer-name\":undefined},HZVuuYEVs:{\"data-framer-name\":\"Disabled\"},oHTUgIELA:{\"data-framer-name\":\"Error\"},p5hZJ_gn0:{\"data-framer-name\":\"Success\"},q1R7R8mHF:{\"data-border\":true,\"data-framer-name\":\"Loading White\"},RRGLuQVsB:{\"data-framer-name\":\"Loading\"},U8wogAcLw:{\"data-border\":true,\"data-framer-name\":\"Success White\"},wUKeO0qtb:{\"data-border\":true,\"data-framer-name\":\"Primary White\"},YM0zuNoF4:{\"data-border\":true,\"data-framer-name\":\"Disabled White\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send\"})}),className:\"framer-ewz0c1\",fonts:[\"CUSTOM;SF Pro Text Regular\"],layoutDependency:layoutDependency,layoutId:\"ipjMCxksj\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:V6Rj8Xbl0,variants:{oHTUgIELA:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"wUKeO0qtb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\"},children:\"Send\"})})},\"wUKeO0qtb-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\"},children:\"Send\"})})},oHTUgIELA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Eror\"})}),text:undefined},p5hZJ_gn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you!\"})}),text:undefined},U8wogAcLw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you!\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyjbx7\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"z6f5XPa8T\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-57hbzg\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"tv9ie7nUQ\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{q1R7R8mHF:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},RRGLuQVsB:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11aqj4g\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"hUY1BjbtW\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cWopm.framer-1plps2, .framer-cWopm .framer-1plps2 { display: block; }\",\".framer-cWopm.framer-1tr6kap { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: 180px; }\",\".framer-cWopm .framer-ewz0c1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-cWopm .framer-vyjbx7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-cWopm .framer-57hbzg { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-cWopm .framer-11aqj4g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cWopm.framer-1tr6kap { gap: 0px; } .framer-cWopm.framer-1tr6kap > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-cWopm.framer-1tr6kap > :first-child { margin-left: 0px; } .framer-cWopm.framer-1tr6kap > :last-child { margin-right: 0px; } }\",\".framer-cWopm.framer-v-qwhapw .framer-57hbzg, .framer-cWopm.framer-v-pmbtx3 .framer-57hbzg { overflow: hidden; }\",'.framer-cWopm[data-border=\"true\"]::after, .framer-cWopm [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RRGLuQVsB\":{\"layout\":[\"fixed\",\"auto\"]},\"HZVuuYEVs\":{\"layout\":[\"fixed\",\"auto\"]},\"p5hZJ_gn0\":{\"layout\":[\"fixed\",\"auto\"]},\"oHTUgIELA\":{\"layout\":[\"fixed\",\"auto\"]},\"wUKeO0qtb\":{\"layout\":[\"fixed\",\"auto\"]},\"q1R7R8mHF\":{\"layout\":[\"fixed\",\"auto\"]},\"YM0zuNoF4\":{\"layout\":[\"fixed\",\"auto\"]},\"U8wogAcLw\":{\"layout\":[\"fixed\",\"auto\"]},\"BCq7pUxho\":{\"layout\":[\"fixed\",\"auto\"]},\"UeXz4pTMD\":{\"layout\":[\"fixed\",\"auto\"]},\"QvDTqlCaT\":{\"layout\":[\"fixed\",\"auto\"]},\"BeIpgZLzG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"V6Rj8Xbl0\":\"title\",\"Wq0c2BiNO\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervdpuiWdxl=withCSS(Component,css,\"framer-cWopm\");export default FramervdpuiWdxl;FramervdpuiWdxl.displayName=\"Form Button\";FramervdpuiWdxl.defaultProps={height:40,width:180};addPropertyControls(FramervdpuiWdxl,{variant:{options:[\"vjpLMThed\",\"RRGLuQVsB\",\"HZVuuYEVs\",\"p5hZJ_gn0\",\"oHTUgIELA\",\"wUKeO0qtb\",\"q1R7R8mHF\",\"YM0zuNoF4\",\"U8wogAcLw\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\",\"Primary White\",\"Loading White\",\"Disabled White\",\"Success White\"],title:\"Variant\",type:ControlType.Enum},V6Rj8Xbl0:{defaultValue:\"Send\",displayTextArea:false,title:\"Title\",type:ControlType.String},Wq0c2BiNO:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramervdpuiWdxl,[{explicitInter:true,fonts:[{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HZqX1E0smkzNnCKgA5KG93Ni1I.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervdpuiWdxl\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RRGLuQVsB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HZVuuYEVs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p5hZJ_gn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oHTUgIELA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wUKeO0qtb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q1R7R8mHF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YM0zuNoF4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U8wogAcLw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BCq7pUxho\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UeXz4pTMD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QvDTqlCaT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BeIpgZLzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"180\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"V6Rj8Xbl0\\\":\\\"title\\\",\\\"Wq0c2BiNO\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vdpuiWdxl.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "// @ts-ignore\nimport{fontStore}from\"framer\";import{useEffect}from\"react\";import{fontStack}from\"https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js\";const fontWeights={100:\"Thin\",200:\"Extra-light\",300:\"Light\",400:\"Regular\",500:\"Medium\",600:\"Semi-bold\",700:\"Bold\",800:\"Extra-bold\",900:\"Black\"};export function useFontControls(props){const{fontFamily=\"Inter\",fontSize=16,fontWeight=400,font=false}=props;const fontWeightName=fontWeights[fontWeight];const customFontStack=`\"${fontFamily} ${fontWeightName}\", \"${fontFamily}\", ${fontStack}`;const fontFamilyStyle=fontFamily?{fontSize,fontWeight,fontFamily:customFontStack}:{fontSize,fontWeight};const fetchCustomFonts=async()=>{await fontStore.loadWebFontsFromSelectors([`CUSTOM;${fontFamily}`,`CUSTOM;${fontFamily} ${fontWeightName}`,`GF;${fontFamily}-${fontWeightName.toLowerCase()}`,]).catch(e=>console.error(e));};useEffect(()=>{if(font)fetchCustomFonts();},[font,fontFamily,fontWeight]);return fontFamilyStyle;}\nexport const __FramerMetadata__ = {\"exports\":{\"useFontControls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useFontControls.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/AgebHfj2I4XfLBvrkfUL/lcyGTSYVYNyYIUevYGtv/JTX3HQvfv.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/2BSBVG9iWQnzHW21xeo6/m4CNxwf9EQA1Nw2Ti0W5/mxBw7p9ep.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TNBTnkYavoUuWP96omE9/hmIqWWor5H0pJjhyimAH/nn7o1B_Vv.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/4s3j6ZhEP5NZg39QNpU1/xwmgjbl6HBRGKGlqjzLW/xZiJfL8tT.js\";const enabledGestures={B8qr48OJo:{hover:true},cjNhM3R9y:{hover:true},jarlgXBFV:{hover:true},RORLJ1GQR:{hover:true},YHX1IybKi:{hover:true}};const cycleOrder=[\"YHX1IybKi\",\"cjNhM3R9y\",\"jarlgXBFV\",\"B8qr48OJo\",\"RORLJ1GQR\",\"qBZZ3pl8t\"];const serializationHash=\"framer-GLVoV\";const variantClassNames={B8qr48OJo:\"framer-v-9oav5l\",cjNhM3R9y:\"framer-v-1g3we5k\",jarlgXBFV:\"framer-v-a6kqdx\",qBZZ3pl8t:\"framer-v-14ttqau\",RORLJ1GQR:\"framer-v-1yhw3ob\",YHX1IybKi:\"framer-v-2sih0e\"};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 humanReadableVariantMap={\"Mini Secondary\":\"qBZZ3pl8t\",\"Variant 1\":\"YHX1IybKi\",\"Variant 2\":\"cjNhM3R9y\",Big:\"B8qr48OJo\",Mini:\"jarlgXBFV\",Whatsapp:\"RORLJ1GQR\"};const getProps=({click,colorNavButton,height,id,linkNavButton,textNavButton,visible,width,...props})=>{return{...props,a2xCJOpUh:visible??props.a2xCJOpUh??true,kxPQVJi0O:click??props.kxPQVJi0O,n3zXg7x_v:textNavButton??props.n3zXg7x_v??\"Buy\",oDHeiBJ8s:colorNavButton??props.oDHeiBJ8s??\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"YHX1IybKi\",XweT5g5AP:linkNavButton??props.XweT5g5AP};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XweT5g5AP,n3zXg7x_v,oDHeiBJ8s,a2xCJOpUh,kxPQVJi0O,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YHX1IybKi\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lepz16=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(kxPQVJi0O){const res=await kxPQVJi0O(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if(gestureVariant===\"cjNhM3R9y-hover\")return value;if(baseVariant===\"cjNhM3R9y\")return value;return true;};const isDisplayed1=()=>{if(gestureVariant===\"RORLJ1GQR-hover\")return true;if(baseVariant===\"RORLJ1GQR\")return true;return false;};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:XweT5g5AP,motionChild:true,nodeId:\"YHX1IybKi\",scopeId:\"HWHwUziwF\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-2sih0e\",className,classNames)} framer-164ef9k`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YHX1IybKi\",onTap:onTap1lepz16,ref:refBinding,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"cjNhM3R9y-hover\":{backgroundColor:\"rgb(51, 51, 51)\"},\"YHX1IybKi-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},B8qr48OJo:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},cjNhM3R9y:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},jarlgXBFV:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},qBZZ3pl8t:{backgroundColor:\"var(--token-2fff1e76-04a4-4eaf-a9d3-da2204498d31, rgb(36, 98, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},RORLJ1GQR:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"B8qr48OJo-hover\":{\"data-framer-name\":undefined},\"cjNhM3R9y-hover\":{\"data-framer-name\":undefined},\"jarlgXBFV-hover\":{\"data-framer-name\":undefined},\"RORLJ1GQR-hover\":{\"data-framer-name\":undefined},\"YHX1IybKi-hover\":{\"data-framer-name\":undefined},B8qr48OJo:{\"data-framer-name\":\"Big\"},cjNhM3R9y:{\"data-framer-name\":\"Variant 2\"},jarlgXBFV:{\"data-framer-name\":\"Mini\"},qBZZ3pl8t:{\"data-framer-name\":\"Mini Secondary\"},RORLJ1GQR:{\"data-framer-name\":\"Whatsapp\"}},baseVariant,gestureVariant),children:[isDisplayed(a2xCJOpUh)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-y9v6yk\",\"data-styles-preset\":\"nn7o1B_Vv\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--variable-reference-oDHeiBJ8s-HWHwUziwF))\"},children:\"Buy\"})}),className:\"framer-1gkrbyk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sTG5gvdMi\",style:{\"--extracted-1w1cjl5\":\"var(--variable-reference-oDHeiBJ8s-HWHwUziwF)\",\"--variable-reference-oDHeiBJ8s-HWHwUziwF\":oDHeiBJ8s},text:n3zXg7x_v,variants:{\"B8qr48OJo-hover\":{\"--extracted-1eung3n\":\"rgb(0, 0, 0)\"},\"jarlgXBFV-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},\"RORLJ1GQR-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 0, 0)\"},\"YHX1IybKi-hover\":{\"--extracted-1w1cjl5\":\"rgb(0, 0, 0)\"},B8qr48OJo:{\"--extracted-1eung3n\":\"var(--variable-reference-oDHeiBJ8s-HWHwUziwF)\"},jarlgXBFV:{\"--extracted-r6o4lv\":\"var(--variable-reference-oDHeiBJ8s-HWHwUziwF)\"},qBZZ3pl8t:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},RORLJ1GQR:{\"--extracted-r6o4lv\":\"var(--variable-reference-oDHeiBJ8s-HWHwUziwF)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"B8qr48OJo-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(0, 0, 0))\"},children:\"Buy\"})})},\"jarlgXBFV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Buy\"})})},\"RORLJ1GQR-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wmb2dx\",\"data-styles-preset\":\"xZiJfL8tT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 0, 0))\"},children:\"Buy\"})})},\"YHX1IybKi-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-y9v6yk\",\"data-styles-preset\":\"nn7o1B_Vv\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(0, 0, 0))\"},children:\"Buy\"})})},B8qr48OJo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ixokdd\",\"data-styles-preset\":\"mxBw7p9ep\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-oDHeiBJ8s-HWHwUziwF))\"},children:\"Buy\"})})},jarlgXBFV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oDHeiBJ8s-HWHwUziwF))\"},children:\"Buy\"})})},qBZZ3pl8t:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hjtnyx\",\"data-styles-preset\":\"JTX3HQvfv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Buy\"})})},RORLJ1GQR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wmb2dx\",\"data-styles-preset\":\"xZiJfL8tT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oDHeiBJ8s-HWHwUziwF))\"},children:\"Buy\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ltfirt\",\"data-framer-name\":\"whatsapp_3\",fill:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",intrinsicHeight:2500,intrinsicWidth:2489,layoutDependency:layoutDependency,layoutId:\"UsbMY8TCH\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"2489\" height=\"2500\" viewBox=\"0 0 737.509 740.824\"><path fill-rule=\"evenodd\" d=\"M630.056 107.658C560.727 38.271 468.525.039 370.294 0 167.891 0 3.16 164.668 3.079 367.072c-.027 64.699 16.883 127.855 49.016 183.523L0 740.824l194.666-51.047c53.634 29.244 114.022 44.656 175.481 44.682h.151c202.382 0 367.128-164.689 367.21-367.094.039-98.088-38.121-190.32-107.452-259.707m-259.758 564.8h-.125c-54.766-.021-108.483-14.729-155.343-42.529l-11.146-6.613-115.516 30.293 30.834-112.592-7.258-11.543c-30.552-48.58-46.689-104.729-46.665-162.379C65.146 198.865 202.065 62 370.419 62c81.521.031 158.154 31.81 215.779 89.482s89.342 134.332 89.311 215.859c-.07 168.242-136.987 305.117-305.211 305.117m167.415-228.514c-9.176-4.591-54.286-26.782-62.697-29.843-8.41-3.061-14.526-4.591-20.644 4.592-6.116 9.182-23.7 29.843-29.054 35.964-5.351 6.122-10.703 6.888-19.879 2.296-9.175-4.591-38.739-14.276-73.786-45.526-27.275-24.32-45.691-54.36-51.043-63.542-5.352-9.183-.569-14.148 4.024-18.72 4.127-4.11 9.175-10.713 13.763-16.07 4.587-5.356 6.116-9.182 9.174-15.303 3.059-6.122 1.53-11.479-.764-16.07-2.294-4.591-20.643-49.739-28.29-68.104-7.447-17.886-15.012-15.466-20.644-15.746-5.346-.266-11.469-.323-17.585-.323-6.117 0-16.057 2.296-24.468 11.478-8.41 9.183-32.112 31.374-32.112 76.521s32.877 88.763 37.465 94.885c4.587 6.122 64.699 98.771 156.741 138.502 21.891 9.45 38.982 15.093 52.307 19.323 21.981 6.979 41.983 5.994 57.793 3.633 17.628-2.633 54.285-22.19 61.932-43.616 7.646-21.426 7.646-39.791 5.352-43.617-2.293-3.826-8.41-6.122-17.585-10.714\" clip-rule=\"evenodd\"/></svg>',withExternalLayout:true,...addPropertyOverrides({\"RORLJ1GQR-hover\":{fill:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GLVoV.framer-164ef9k, .framer-GLVoV .framer-164ef9k { display: block; }\",\".framer-GLVoV.framer-2sih0e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-GLVoV .framer-1gkrbyk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GLVoV .framer-ltfirt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GLVoV.framer-2sih0e { gap: 0px; } .framer-GLVoV.framer-2sih0e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GLVoV.framer-2sih0e > :first-child { margin-top: 0px; } .framer-GLVoV.framer-2sih0e > :last-child { margin-bottom: 0px; } }\",\".framer-GLVoV.framer-v-1g3we5k.framer-2sih0e { flex-direction: row; padding: 16px 24px 16px 24px; }\",\".framer-GLVoV.framer-v-1g3we5k .framer-1gkrbyk, .framer-GLVoV.framer-v-1yhw3ob .framer-ltfirt { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GLVoV.framer-v-1g3we5k.framer-2sih0e { gap: 0px; } .framer-GLVoV.framer-v-1g3we5k.framer-2sih0e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GLVoV.framer-v-1g3we5k.framer-2sih0e > :first-child { margin-left: 0px; } .framer-GLVoV.framer-v-1g3we5k.framer-2sih0e > :last-child { margin-right: 0px; } }\",\".framer-GLVoV.framer-v-9oav5l.framer-2sih0e { height: min-content; }\",\".framer-GLVoV.framer-v-1yhw3ob.framer-2sih0e { flex-direction: row; gap: 4px; }\",\".framer-GLVoV.framer-v-1yhw3ob .framer-1gkrbyk { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GLVoV.framer-v-1yhw3ob.framer-2sih0e { gap: 0px; } .framer-GLVoV.framer-v-1yhw3ob.framer-2sih0e > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-GLVoV.framer-v-1yhw3ob.framer-2sih0e > :first-child { margin-left: 0px; } .framer-GLVoV.framer-v-1yhw3ob.framer-2sih0e > :last-child { margin-right: 0px; } }\",\".framer-GLVoV.framer-v-14ttqau.framer-2sih0e { padding: 12px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 34\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"cjNhM3R9y\":{\"layout\":[\"auto\",\"fixed\"]},\"jarlgXBFV\":{\"layout\":[\"auto\",\"fixed\"]},\"B8qr48OJo\":{\"layout\":[\"auto\",\"auto\"]},\"RORLJ1GQR\":{\"layout\":[\"auto\",\"fixed\"]},\"qBZZ3pl8t\":{\"layout\":[\"auto\",\"fixed\"]},\"fWWwPjEfS\":{\"layout\":[\"auto\",\"fixed\"]},\"JJ2EmMocH\":{\"layout\":[\"auto\",\"fixed\"]},\"KxoBZ7Tu6\":{\"layout\":[\"auto\",\"fixed\"]},\"fNl9EuD0Z\":{\"layout\":[\"auto\",\"auto\"]},\"BcC1sVPwU\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"XweT5g5AP\":\"linkNavButton\",\"n3zXg7x_v\":\"textNavButton\",\"oDHeiBJ8s\":\"colorNavButton\",\"a2xCJOpUh\":\"visible\",\"kxPQVJi0O\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHWHwUziwF=withCSS(Component,css,\"framer-GLVoV\");export default FramerHWHwUziwF;FramerHWHwUziwF.displayName=\"Navigation Button\";FramerHWHwUziwF.defaultProps={height:22,width:34};addPropertyControls(FramerHWHwUziwF,{variant:{options:[\"YHX1IybKi\",\"cjNhM3R9y\",\"jarlgXBFV\",\"B8qr48OJo\",\"RORLJ1GQR\",\"qBZZ3pl8t\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mini\",\"Big\",\"Whatsapp\",\"Mini Secondary\"],title:\"Variant\",type:ControlType.Enum},XweT5g5AP:{title:\"Link Nav Button\",type:ControlType.Link},n3zXg7x_v:{defaultValue:\"Buy\",displayTextArea:false,title:\"Text Nav Button\",type:ControlType.String},oDHeiBJ8s:{defaultValue:'var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)) /* {\"name\":\"Grey\"} */',title:\"Color Nav Button\",type:ControlType.Color},a2xCJOpUh:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},kxPQVJi0O:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerHWHwUziwF,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHWHwUziwF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"22\",\"framerVariables\":\"{\\\"XweT5g5AP\\\":\\\"linkNavButton\\\",\\\"n3zXg7x_v\\\":\\\"textNavButton\\\",\\\"oDHeiBJ8s\\\":\\\"colorNavButton\\\",\\\"a2xCJOpUh\\\":\\\"visible\\\",\\\"kxPQVJi0O\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"cjNhM3R9y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"jarlgXBFV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"B8qr48OJo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RORLJ1GQR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qBZZ3pl8t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fWWwPjEfS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"JJ2EmMocH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"KxoBZ7Tu6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fNl9EuD0Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BcC1sVPwU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"34\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TNBTnkYavoUuWP96omE9/hmIqWWor5H0pJjhyimAH/nn7o1B_Vv.js\";import NavigationButton from\"https://framerusercontent.com/modules/4hNNyBhHBq7993poys5T/q7P5acDnRxvARZjk1Vta/HWHwUziwF.js\";const NavigationButtonFonts=getFonts(NavigationButton);const ClipboardFonts=getFonts(Clipboard);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"b5ClOcEpK\",\"Sl1AJTsie\",\"KKYQVgX7o\",\"EpoKlPcPi\"];const serializationHash=\"framer-gQEoO\";const variantClassNames={b5ClOcEpK:\"framer-v-1kxnzfb\",EpoKlPcPi:\"framer-v-1butxl9\",KKYQVgX7o:\"framer-v-132ex42\",Sl1AJTsie:\"framer-v-1dfr6az\"};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:250,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:30,delay:.05,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:30,delay:.25,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:30,delay:.35,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-closed\":\"Sl1AJTsie\",\"Desktop-opened\":\"b5ClOcEpK\",\"Mobile-closed\":\"EpoKlPcPi\",\"Mobile-opened\":\"KKYQVgX7o\"};const getProps=({backPhone,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"b5ClOcEpK\",wNbqpUwEZ:backPhone??props.wNbqpUwEZ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,wNbqpUwEZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b5ClOcEpK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave6yz39x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Sl1AJTsie\");});const onTap1uqbdb0=activeVariantCallback(async(...args)=>{setVariant(\"Sl1AJTsie\");});const onTap1f9kuv=activeVariantCallback(async(...args)=>{setVariant(\"b5ClOcEpK\");});const onTap1jr2nbb=activeVariantCallback(async(...args)=>{setVariant(\"EpoKlPcPi\");});const onTap1t554oj=activeVariantCallback(async(...args)=>{setVariant(\"KKYQVgX7o\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Sl1AJTsie\",\"KKYQVgX7o\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"KKYQVgX7o\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"Sl1AJTsie\")return false;return true;};const isDisplayed3=()=>{if([\"Sl1AJTsie\",\"EpoKlPcPi\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1kxnzfb\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop-opened\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"b5ClOcEpK\",onMouseLeave:onMouseLeave6yz39x,ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(196, 196, 196)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({EpoKlPcPi:{\"data-framer-name\":\"Mobile-closed\",\"data-highlight\":undefined,onMouseLeave:undefined},KKYQVgX7o:{\"data-framer-name\":\"Mobile-opened\",\"data-highlight\":undefined,onMouseLeave:undefined},Sl1AJTsie:{\"data-framer-name\":\"Desktop-closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtrfay\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"kzdqpO01B\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://totalityestates.com\",motionChild:true,nodeId:\"ZXk3pY_9d\",openInNewTab:false,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-t2h8nn framer-1artnq8\",\"data-framer-name\":\"Logo-secondary\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZXk3pY_9d\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140.449 50\"><path d=\"M 35.725 10 L 35.725 14.183 L 34.557 14.183 L 34.557 11.154 L 21.132 11.154 L 21.132 13.818 C 26.607 14.793 30.965 19.046 31.899 24.64 C 31.931 24.836 31.948 25.047 31.948 25.269 L 31.948 26.438 L 30.78 26.438 L 30.78 25.577 L 21.133 25.577 L 21.133 38.612 C 24.85 37.879 28.051 35.472 29.737 31.964 L 30.791 32.459 C 28.555 37.113 23.886 40 18.726 40 C 18.415 40 18.105 39.99 17.791 39.968 C 11.089 39.518 5.638 33.96 5.383 27.317 C 5.244 23.691 6.566 20.259 9.105 17.651 C 11.079 15.625 13.582 14.309 16.317 13.822 L 16.317 11.154 L 2.892 11.154 L 2.892 14.183 L 1.725 14.183 L 1.725 10 L 17.484 10 L 17.484 13.664 C 17.894 13.627 18.308 13.606 18.725 13.606 C 19.139 13.606 19.553 13.625 19.965 13.662 L 19.965 10 Z M 17.485 14.821 L 17.485 24.423 L 19.965 24.423 L 19.965 14.823 C 19.557 14.782 19.143 14.76 18.725 14.76 C 18.311 14.759 17.897 14.78 17.485 14.821 Z M 6.779 24.423 L 16.317 24.423 L 16.317 14.993 C 13.903 15.468 11.696 16.654 9.946 18.451 C 8.308 20.133 7.228 22.192 6.779 24.423 Z M 16.317 38.607 L 16.317 25.577 L 6.604 25.577 C 6.547 26.14 6.528 26.707 6.549 27.273 C 6.762 32.812 10.933 37.521 16.317 38.607 Z M 19.965 25.576 L 17.485 25.576 L 17.485 38.782 C 17.613 38.794 17.741 38.808 17.871 38.817 C 18.569 38.864 19.269 38.852 19.965 38.782 Z M 21.132 14.995 L 21.132 24.423 L 30.67 24.423 C 29.694 19.591 25.896 15.93 21.132 14.995 Z M 46.217 10.344 L 57.64 10.344 L 57.64 13.818 L 53.907 13.818 L 53.907 24.457 L 49.968 24.457 L 49.968 13.818 L 46.217 13.818 Z M 58.046 17.391 C 58.046 13.11 60.688 10.344 64.776 10.344 C 66.824 10.344 68.543 11.041 69.746 12.359 C 70.898 13.621 71.507 15.36 71.507 17.391 C 71.507 21.684 68.865 24.457 64.776 24.457 C 60.688 24.457 58.046 21.684 58.046 17.391 Z M 67.495 17.392 C 67.495 14.892 66.606 13.677 64.776 13.677 C 62.947 13.677 62.058 14.893 62.058 17.392 C 62.058 21.125 64.103 21.125 64.776 21.125 C 66.606 21.125 67.495 19.903 67.495 17.392 Z M 75.663 13.818 L 71.912 13.818 L 71.912 10.344 L 83.335 10.344 L 83.335 13.818 L 79.602 13.818 L 79.602 24.457 L 75.663 24.457 Z M 82.034 24.457 L 87.203 10.344 L 90.944 10.344 L 96.151 24.457 L 91.838 24.457 L 91.008 21.666 L 87.103 21.666 L 86.273 24.457 Z M 90.075 18.379 L 89.065 14.961 L 88.055 18.379 Z M 106.848 24.457 L 97.174 24.457 L 97.174 10.344 L 101.113 10.344 L 101.113 20.983 L 106.848 20.983 Z M 112.348 24.457 L 108.408 24.457 L 108.408 10.344 L 112.348 10.344 Z M 117.658 24.457 L 117.658 13.815 L 113.907 13.815 L 113.907 10.34 L 125.33 10.34 L 125.33 13.815 L 121.597 13.815 L 121.597 24.457 Z M 134.498 10.344 L 138.725 10.344 L 134.147 19.241 L 134.147 24.457 L 130.208 24.457 L 130.208 19.242 L 125.573 10.344 L 129.876 10.344 L 132.179 15.576 L 134.498 10.344 Z M 50.968 29.021 L 50.968 30.68 L 56.342 30.68 L 56.342 34.155 L 50.968 34.155 L 50.968 36.185 L 56.342 36.185 L 56.342 39.66 L 47.03 39.66 L 47.03 25.546 L 56.342 25.546 L 56.342 29.021 Z M 109.989 29.021 L 109.989 30.68 L 115.362 30.68 L 115.362 34.155 L 109.989 34.155 L 109.989 36.185 L 115.362 36.185 L 115.362 39.66 L 106.05 39.66 L 106.05 25.546 L 115.362 25.546 L 115.362 29.021 Z M 69.645 35.253 C 69.645 37.971 67.557 39.659 64.195 39.659 C 60.45 39.659 57.934 37.65 57.934 34.66 L 57.934 34.315 L 61.909 34.315 L 61.909 34.662 C 61.909 35.792 62.665 36.365 64.158 36.365 C 65.081 36.365 65.632 36.064 65.632 35.56 C 65.632 34.841 64.807 34.562 63.225 34.091 C 63.092 34.052 62.953 34.011 62.813 33.968 C 60.643 33.305 58.329 32.382 58.329 29.792 C 58.329 27.094 60.27 25.547 63.653 25.547 C 66.982 25.547 69.371 27.406 69.463 30.068 L 69.476 30.425 L 65.535 30.425 L 65.492 30.129 C 65.371 29.299 64.718 28.843 63.654 28.843 C 63.055 28.843 62.341 28.966 62.341 29.557 C 62.341 30.115 62.716 30.347 64.455 30.861 L 64.605 30.905 C 66.967 31.602 69.644 32.391 69.645 35.253 Z M 81.527 29.021 L 77.795 29.021 L 77.795 39.66 L 73.855 39.66 L 73.855 29.021 L 70.104 29.021 L 70.104 25.546 L 81.527 25.546 Z M 89.136 25.546 L 94.343 39.659 L 90.03 39.659 L 89.2 36.868 L 85.294 36.868 L 84.465 39.659 L 80.226 39.659 L 85.395 25.546 Z M 87.257 30.165 L 86.247 33.582 L 88.266 33.582 Z M 93.004 25.546 L 104.427 25.546 L 104.427 29.021 L 100.695 29.021 L 100.695 39.66 L 96.755 39.66 L 96.755 29.021 L 93.004 29.021 Z M 129.17 35.253 C 129.17 37.971 127.082 39.659 123.72 39.659 C 119.975 39.659 117.459 37.65 117.459 34.66 L 117.459 34.315 L 121.435 34.315 L 121.435 34.662 C 121.435 35.792 122.191 36.365 123.684 36.365 C 124.607 36.365 125.158 36.064 125.158 35.56 C 125.158 34.841 124.332 34.562 122.751 34.091 C 122.618 34.052 122.48 34.011 122.339 33.968 C 120.169 33.305 117.855 32.382 117.855 29.792 C 117.855 27.094 119.795 25.547 123.179 25.547 C 126.508 25.547 128.896 27.406 128.989 30.068 L 129.002 30.425 L 125.061 30.425 L 125.018 30.129 C 124.897 29.299 124.244 28.843 123.18 28.843 C 122.581 28.843 121.867 28.966 121.867 29.557 C 121.867 30.115 122.242 30.347 123.981 30.861 L 124.131 30.905 C 126.493 31.602 129.17 32.391 129.17 35.253 Z M 135.724 39.66 C 134.085 39.655 132.775 38.333 132.776 36.718 C 132.777 35.103 134.087 33.779 135.729 33.779 C 137.359 33.779 138.68 35.1 138.678 36.722 C 138.675 38.346 137.354 39.66 135.724 39.66 Z M 133.374 36.718 C 133.376 38.021 134.433 39.059 135.72 39.062 C 137.02 39.065 138.074 38.018 138.078 36.725 C 138.081 35.427 137.024 34.377 135.729 34.376 C 134.43 34.375 133.376 35.423 133.374 36.718 Z M 136.245 36.749 C 136.401 36.797 136.516 36.894 136.611 37.021 C 136.673 37.104 136.725 37.194 136.771 37.288 C 136.916 37.578 137.061 37.869 137.206 38.159 L 137.217 38.185 C 137.194 38.192 136.473 38.196 136.373 38.189 C 136.368 38.179 136.363 38.17 136.358 38.16 C 136.238 37.917 136.118 37.676 135.999 37.433 C 135.963 37.359 135.921 37.288 135.873 37.221 C 135.785 37.101 135.667 37.038 135.52 37.03 C 135.428 37.026 135.335 37.027 135.242 37.026 C 135.238 37.027 135.233 37.028 135.228 37.029 L 135.228 38.19 L 134.436 38.19 C 134.43 38.168 134.428 35.152 134.435 35.115 C 134.442 35.115 134.45 35.114 134.458 35.114 C 134.873 35.114 135.288 35.113 135.704 35.115 C 135.872 35.116 136.039 35.132 136.203 35.172 C 136.312 35.199 136.416 35.239 136.511 35.299 C 136.65 35.386 136.75 35.522 136.79 35.681 C 136.837 35.854 136.839 36.03 136.799 36.206 C 136.75 36.416 136.623 36.569 136.433 36.669 C 136.381 36.697 136.324 36.717 136.27 36.74 C 136.262 36.743 136.253 36.746 136.245 36.749 Z M 135.23 36.478 C 135.241 36.479 135.25 36.48 135.259 36.48 L 135.364 36.48 C 135.459 36.479 135.553 36.479 135.648 36.476 C 135.708 36.474 135.767 36.462 135.824 36.441 C 135.92 36.404 135.985 36.337 136.011 36.236 C 136.036 36.143 136.038 36.047 136.018 35.953 C 135.991 35.826 135.915 35.746 135.788 35.714 C 135.729 35.699 135.669 35.691 135.609 35.689 C 135.489 35.689 135.369 35.689 135.249 35.689 C 135.242 35.689 135.237 35.69 135.23 35.691 Z\" fill=\"rgb(22,22,29)\"></path></svg>',svgContentId:9869207773,title:\"Dubai Real Estate: Buy Off-Plan Real Estate in Dubai\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hm1ppj\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"pYsWxCI2T\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U1TlLXhfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"U1TlLXhfZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({Sl1AJTsie:{y:(componentViewport?.y||0)+(componentViewport?.height||50)-50+0+14}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-63tyk3-container\",\"data-framer-name\":\"Off-Plan Properties\",layoutDependency:layoutDependency,layoutId:\"bAQzhiIuo-container\",name:\"Off-Plan Properties\",nodeId:\"bAQzhiIuo\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"bAQzhiIuo\",layoutId:\"bAQzhiIuo\",n3zXg7x_v:\"Off-Plan Properties\",name:\"Off-Plan Properties\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",style:{height:\"100%\"},variant:\"jarlgXBFV\",width:\"100%\",XweT5g5AP:resolvedLinks[0],...addPropertyOverrides({Sl1AJTsie:{XweT5g5AP:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gXusGQW1N\"},implicitPathVariables:undefined},{href:{webPageId:\"gXusGQW1N\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({Sl1AJTsie:{y:(componentViewport?.y||0)+(componentViewport?.height||50)-50+0+14}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lnvj9h-container\",\"data-framer-name\":\"Distressed Deals\",layoutDependency:layoutDependency,layoutId:\"Y5KvtSnU9-container\",name:\"Distressed Deals\",nodeId:\"Y5KvtSnU9\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"Y5KvtSnU9\",layoutId:\"Y5KvtSnU9\",n3zXg7x_v:\"Distressed Deals\",name:\"Distressed Deals\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",style:{height:\"100%\"},variant:\"jarlgXBFV\",width:\"100%\",XweT5g5AP:resolvedLinks1[0],...addPropertyOverrides({Sl1AJTsie:{kxPQVJi0O:undefined,XweT5g5AP:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined},{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({Sl1AJTsie:{y:(componentViewport?.y||0)+(componentViewport?.height||50)-50+0+14}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-flnj7c-container\",\"data-framer-name\":\"Areas\",layoutDependency:layoutDependency,layoutId:\"ouA5dEawH-container\",name:\"Areas\",nodeId:\"ouA5dEawH\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"ouA5dEawH\",layoutId:\"ouA5dEawH\",n3zXg7x_v:\"Areas\",name:\"Areas\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",style:{height:\"100%\"},variant:\"jarlgXBFV\",width:\"100%\",XweT5g5AP:resolvedLinks2[0],...addPropertyOverrides({Sl1AJTsie:{kxPQVJi0O:undefined,XweT5g5AP:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IDNTLLc7L\"},implicitPathVariables:undefined},{href:{webPageId:\"IDNTLLc7L\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({Sl1AJTsie:{y:(componentViewport?.y||0)+(componentViewport?.height||50)-50+0+14}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hs1hgo-container\",\"data-framer-name\":\"Join Our Team\",layoutDependency:layoutDependency,layoutId:\"MM96z6Luz-container\",name:\"Join Our Team\",nodeId:\"MM96z6Luz\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"MM96z6Luz\",layoutId:\"MM96z6Luz\",n3zXg7x_v:\"Join Our Team\",name:\"Join Our Team\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",style:{height:\"100%\"},variant:\"jarlgXBFV\",width:\"100%\",XweT5g5AP:resolvedLinks3[0],...addPropertyOverrides({Sl1AJTsie:{XweT5g5AP:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rch60YW6W\"},implicitPathVariables:undefined},{href:{webPageId:\"rch60YW6W\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,...addPropertyOverrides({Sl1AJTsie:{y:(componentViewport?.y||0)+(componentViewport?.height||50)-50+0+14}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ppr4j-container\",\"data-framer-name\":\"Sell\",layoutDependency:layoutDependency,layoutId:\"feL5hnm3n-container\",name:\"Sell\",nodeId:\"feL5hnm3n\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"feL5hnm3n\",layoutId:\"feL5hnm3n\",n3zXg7x_v:\"Sell\",name:\"Sell\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",style:{height:\"100%\"},variant:\"jarlgXBFV\",width:\"100%\",XweT5g5AP:resolvedLinks4[0],...addPropertyOverrides({Sl1AJTsie:{XweT5g5AP:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3sa7xl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"R5UM0enBp-container\",nodeId:\"R5UM0enBp\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,color:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",content:\"+971-58-1946440\",fill:\"rgba(255, 255, 255, 0)\",font:{fontFamily:'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"15px\",letterSpacing:\"-0.04em\",lineHeight:\"1.4em\"},height:\"100%\",hoverOptions:{color:\"rgb(0, 0, 0)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"R5UM0enBp\",isMixedBorderRadius:false,label:\"+971-58-1946440\",layoutId:\"R5UM0enBp\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,topLeftRadius:0,topRightRadius:0,width:\"100%\",...addPropertyOverrides({Sl1AJTsie:{font:{fontFamily:'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"15px\",letterSpacing:\"-0.04em\",lineHeight:\"1.2em\"}}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:\"tel:+971-58-1946440\",motionChild:true,nodeId:\"pM0bCxNSv\",scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-17vm091 framer-1artnq8\",\"data-framer-name\":\"Icon\",fill:'var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115)) /* {\"name\":\"Grey\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"pM0bCxNSv\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M231.88 175.08A56.26 56.26 0 0 1 176 224C96.6 224 32 159.4 32 80a56.26 56.26 0 0 1 48.92-55.88 16 16 0 0 1 16.62 9.52l21.12 47.15v.12A16 16 0 0 1 117.39 96c-.18.27-.37.52-.57.77L96 121.45c7.49 15.22 23.41 31 38.83 38.51l24.34-20.71a8.12 8.12 0 0 1 .75-.56 16 16 0 0 1 15.17-1.4l.13.06 47.11 21.11a16 16 0 0 1 9.55 16.62Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/totalityestates\",motionChild:true,nodeId:\"SdVwDBsDl\",scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1xleh0a framer-1artnq8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:256,layoutDependency:layoutDependency,layoutId:\"SdVwDBsDl\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"256\" height=\"256\" preserveAspectRatio=\"xMidYMid\"><defs><linearGradient id=\"a\" x1=\"50%\" x2=\"50%\" y1=\"0%\" y2=\"100%\"><stop offset=\"0%\" stop-color=\"#2AABEE\"/><stop offset=\"100%\" stop-color=\"#229ED9\"/></linearGradient></defs><path fill=\"url(#a)\" d=\"M128 0C94.06 0 61.48 13.494 37.5 37.49A128.038 128.038 0 0 0 0 128c0 33.934 13.5 66.514 37.5 90.51C61.48 242.506 94.06 256 128 256s66.52-13.494 90.5-37.49c24-23.996 37.5-56.576 37.5-90.51 0-33.934-13.5-66.514-37.5-90.51C194.52 13.494 161.94 0 128 0Z\"/><path fill=\"#FFF\" d=\"M57.94 126.648c37.32-16.256 62.2-26.974 74.64-32.152 35.56-14.786 42.94-17.354 47.76-17.441 1.06-.017 3.42.245 4.96 1.49 1.28 1.05 1.64 2.47 1.82 3.467.16.996.38 3.266.2 5.038-1.92 20.24-10.26 69.356-14.5 92.026-1.78 9.592-5.32 12.808-8.74 13.122-7.44.684-13.08-4.912-20.28-9.63-11.26-7.386-17.62-11.982-28.56-19.188-12.64-8.328-4.44-12.906 2.76-20.386 1.88-1.958 34.64-31.748 35.26-34.45.08-.338.16-1.598-.6-2.262-.74-.666-1.84-.438-2.64-.258-1.14.256-19.12 12.152-54 35.686-5.1 3.508-9.72 5.218-13.88 5.128-4.56-.098-13.36-2.584-19.9-4.708-8-2.606-14.38-3.984-13.82-8.41.28-2.304 3.46-4.662 9.52-7.072Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/13057755211\",motionChild:true,nodeId:\"UclBSgV3H\",scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-16eoxmt framer-1artnq8\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UclBSgV3H\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 14.765 13.938 L 17.353 15.23 C 17.1 16.494 15.989 17.403 14.7 17.4 C 10.229 17.395 6.605 13.771 6.6 9.3 C 6.6 8.013 7.508 6.904 8.77 6.652 L 10.062 9.239 L 8.962 10.875 C 8.796 11.125 8.765 11.442 8.88 11.72 C 9.524 13.25 10.742 14.468 12.272 15.112 C 12.551 15.232 12.871 15.204 13.125 15.038 Z M 23.7 12 C 23.701 16.109 21.546 19.917 18.024 22.033 C 14.502 24.148 10.128 24.261 6.501 22.33 L 2.67 23.607 C 2.024 23.822 1.31 23.654 0.828 23.172 C 0.346 22.69 0.178 21.976 0.393 21.33 L 1.67 17.499 C -0.616 13.201 -0.002 7.936 3.213 4.28 C 6.427 0.623 11.57 -0.66 16.126 1.056 C 20.681 2.773 23.698 7.132 23.7 12 Z M 19.2 14.7 C 19.2 14.359 19.008 14.047 18.703 13.894 L 15.103 12.094 C 14.814 11.951 14.471 11.972 14.203 12.151 L 12.55 13.253 C 11.791 12.836 11.167 12.212 10.75 11.453 L 11.853 9.801 C 12.031 9.532 12.053 9.189 11.909 8.901 L 10.109 5.301 C 9.957 4.993 9.643 4.799 9.3 4.8 C 6.815 4.8 4.8 6.815 4.8 9.3 C 4.806 14.765 9.235 19.194 14.7 19.2 C 17.185 19.2 19.2 17.185 19.2 14.7 Z\" fill=\"var(--token-1eabd042-0c29-42b7-8295-24b48a3fca48, rgb(36, 211, 102)) /* {&quot;name&quot;:&quot;WhatsApp&quot;} */\"></path></svg>',svgContentId:11116026152,withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g4rhgi\",\"data-framer-name\":\"Phone Icons\",layoutDependency:layoutDependency,layoutId:\"yFjVFYrEz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h3phes\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LAlOLkldo\",onTap:onTap1uqbdb0,...addPropertyOverrides({EpoKlPcPi:{onTap:onTap1t554oj},KKYQVgX7o:{onTap:onTap1jr2nbb},Sl1AJTsie:{onTap:onTap1f9kuv}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h6wtl5\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"BxymPMTZY\",style:{backgroundColor:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45},variants:{EpoKlPcPi:{rotate:0},Sl1AJTsie:{rotate:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t7cxui\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"fazLq59VE\",style:{backgroundColor:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45},variants:{EpoKlPcPi:{rotate:0},Sl1AJTsie:{rotate:0}}})]}),wNbqpUwEZ&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e84e40\",\"data-framer-name\":\"Back\",layoutDependency:layoutDependency,layoutId:\"XLOLgEouI\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13+-2+5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/soD22zjRDABgFroZI7PVJte98w.png\"},className:\"framer-40m062\",\"data-framer-name\":\"Back Icon\",layoutDependency:layoutDependency,layoutId:\"C56ouSL_J\",...addPropertyOverrides({Sl1AJTsie:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||50)-50+13+-2+5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/soD22zjRDABgFroZI7PVJte98w.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-y9v6yk\",\"data-styles-preset\":\"nn7o1B_Vv\",children:\"Back\"})}),className:\"framer-ez8t3p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uFdFr9YbV\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yx1nkz\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"NJtfprAvi\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"U1TlLXhfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"U1TlLXhfZ\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+0,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1m8xdvb-container\",\"data-framer-appear-id\":\"1m8xdvb\",\"data-framer-name\":\"Off-Plan Properties\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"c1TtysxFB-container\",name:\"Off-Plan Properties\",nodeId:\"c1TtysxFB\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"c1TtysxFB\",layoutId:\"c1TtysxFB\",n3zXg7x_v:\"Off-Plan Properties\",name:\"Off-Plan Properties\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks5[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gXusGQW1N\"},implicitPathVariables:undefined},{href:{webPageId:\"gXusGQW1N\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+30,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+30}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-107eahi-container\",\"data-framer-appear-id\":\"107eahi\",\"data-framer-name\":\"Distressed Deals\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"A4V0A_rsn-container\",name:\"Distressed Deals\",nodeId:\"A4V0A_rsn\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"A4V0A_rsn\",layoutId:\"A4V0A_rsn\",n3zXg7x_v:\"Distressed Deals\",name:\"Distressed Deals\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks6[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined},{href:{webPageId:\"BAZqp4AGM\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+60,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1w1zrsm-container\",\"data-framer-appear-id\":\"1w1zrsm\",\"data-framer-name\":\"Areas\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"JpE6GxmtF-container\",name:\"Areas\",nodeId:\"JpE6GxmtF\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"JpE6GxmtF\",layoutId:\"JpE6GxmtF\",n3zXg7x_v:\"Areas\",name:\"Areas\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks7[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IDNTLLc7L\"},implicitPathVariables:undefined},{href:{webPageId:\"IDNTLLc7L\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+90,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1y9vdtm-container\",\"data-framer-appear-id\":\"1y9vdtm\",\"data-framer-name\":\"Join Our Team\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"IcHENookK-container\",name:\"Join Our Team\",nodeId:\"IcHENookK\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"IcHENookK\",layoutId:\"IcHENookK\",n3zXg7x_v:\"Join Our Team\",name:\"Join Our Team\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks8[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rch60YW6W\"},implicitPathVariables:undefined},{href:{webPageId:\"rch60YW6W\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+120,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+90}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-1ogy4l9-container\",\"data-framer-appear-id\":\"1ogy4l9\",\"data-framer-name\":\"Sell\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"mEbQJEUH2-container\",name:\"Sell\",nodeId:\"mEbQJEUH2\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"mEbQJEUH2\",layoutId:\"mEbQJEUH2\",n3zXg7x_v:\"Sell\",name:\"Sell\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks9[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iEWSqleF0\"},implicitPathVariables:undefined},{href:{webPageId:\"iEWSqleF0\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+150,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+150}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-wkxipn-container\",\"data-framer-appear-id\":\"wkxipn\",\"data-framer-name\":\"Blog\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"TCYZK7eQ6-container\",name:\"Blog\",nodeId:\"TCYZK7eQ6\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"TCYZK7eQ6\",layoutId:\"TCYZK7eQ6\",n3zXg7x_v:\"Blog\",name:\"Blog\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks10[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V5nVVkPN3\"},implicitPathVariables:undefined},{href:{webPageId:\"V5nVVkPN3\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+180,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-bkjpri-container\",\"data-framer-appear-id\":\"bkjpri\",\"data-framer-name\":\"FAQ\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"xwfPDvTEG-container\",name:\"FAQ\",nodeId:\"xwfPDvTEG\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"xwfPDvTEG\",layoutId:\"xwfPDvTEG\",n3zXg7x_v:\"FAQ\",name:\"FAQ\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks11[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mFu8vYlVS\"},implicitPathVariables:undefined},{href:{webPageId:\"mFu8vYlVS\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+210,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,className:\"framer-14sz04j-container\",\"data-framer-appear-id\":\"14sz04j\",\"data-framer-name\":\"About\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"V5xqKtgmS-container\",name:\"About\",nodeId:\"V5xqKtgmS\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"V5xqKtgmS\",layoutId:\"V5xqKtgmS\",n3zXg7x_v:\"About\",name:\"About\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks12[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TMefuSfOj\"},implicitPathVariables:undefined},{href:{webPageId:\"TMefuSfOj\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,y:(componentViewport?.y||0)+(66+((componentViewport?.height||512.5)-90-344)/2)+24+240,...addPropertyOverrides({KKYQVgX7o:{y:(componentViewport?.y||0)+(24+((componentViewport?.height||200)-48-((componentViewport?.height||200)-48)*1)/2)+50+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,className:\"framer-h8sot1-container\",\"data-framer-appear-id\":\"h8sot1\",\"data-framer-name\":\"Contact us\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"qaWqv5Idc-container\",name:\"Contact us\",nodeId:\"qaWqv5Idc\",optimized:true,rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(NavigationButton,{a2xCJOpUh:true,height:\"100%\",id:\"qaWqv5Idc\",layoutId:\"qaWqv5Idc\",n3zXg7x_v:\"Contact us\",name:\"Contact us\",oDHeiBJ8s:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",variant:\"B8qr48OJo\",width:\"100%\",XweT5g5AP:resolvedLinks13[0],...addPropertyOverrides({KKYQVgX7o:{XweT5g5AP:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nldu8a\",\"data-framer-name\":\"Contacts\",layoutDependency:layoutDependency,layoutId:\"wEntqbzoa\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bp27r6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"T9XeRS1qF-container\",nodeId:\"T9XeRS1qF\",rendersWithMotion:true,scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,color:\"var(--token-c7e2995e-096b-46f2-b3fe-767689954115, rgb(110, 110, 115))\",content:\"+971-58-1946440\",fill:\"rgba(255, 255, 255, 0)\",font:{fontFamily:'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',fontSize:\"15px\",letterSpacing:\"-0.04em\",lineHeight:\"1.4em\"},height:\"100%\",hoverOptions:{color:\"rgb(0, 0, 0)\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},id:\"T9XeRS1qF\",isMixedBorderRadius:false,label:\"+971-58-1946440\",layoutId:\"T9XeRS1qF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,topLeftRadius:0,topRightRadius:0,width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/totalityestates\",motionChild:true,nodeId:\"rHklFCghz\",scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-x4dzaa framer-1artnq8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:256,layoutDependency:layoutDependency,layoutId:\"rHklFCghz\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"256\" height=\"256\" preserveAspectRatio=\"xMidYMid\"><defs><linearGradient id=\"a\" x1=\"50%\" x2=\"50%\" y1=\"0%\" y2=\"100%\"><stop offset=\"0%\" stop-color=\"#2AABEE\"/><stop offset=\"100%\" stop-color=\"#229ED9\"/></linearGradient></defs><path fill=\"url(#a)\" d=\"M128 0C94.06 0 61.48 13.494 37.5 37.49A128.038 128.038 0 0 0 0 128c0 33.934 13.5 66.514 37.5 90.51C61.48 242.506 94.06 256 128 256s66.52-13.494 90.5-37.49c24-23.996 37.5-56.576 37.5-90.51 0-33.934-13.5-66.514-37.5-90.51C194.52 13.494 161.94 0 128 0Z\"/><path fill=\"#FFF\" d=\"M57.94 126.648c37.32-16.256 62.2-26.974 74.64-32.152 35.56-14.786 42.94-17.354 47.76-17.441 1.06-.017 3.42.245 4.96 1.49 1.28 1.05 1.64 2.47 1.82 3.467.16.996.38 3.266.2 5.038-1.92 20.24-10.26 69.356-14.5 92.026-1.78 9.592-5.32 12.808-8.74 13.122-7.44.684-13.08-4.912-20.28-9.63-11.26-7.386-17.62-11.982-28.56-19.188-12.64-8.328-4.44-12.906 2.76-20.386 1.88-1.958 34.64-31.748 35.26-34.45.08-.338.16-1.598-.6-2.262-.74-.666-1.84-.438-2.64-.258-1.14.256-19.12 12.152-54 35.686-5.1 3.508-9.72 5.218-13.88 5.128-4.56-.098-13.36-2.584-19.9-4.708-8-2.606-14.38-3.984-13.82-8.41.28-2.304 3.46-4.662 9.52-7.072Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/13057755211\",motionChild:true,nodeId:\"D5oxyH3CY\",scopeId:\"tRy2IE4jC\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ee9b9s framer-1artnq8\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"D5oxyH3CY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 14.765 13.938 L 17.353 15.23 C 17.1 16.494 15.989 17.403 14.7 17.4 C 10.229 17.395 6.605 13.771 6.6 9.3 C 6.6 8.013 7.508 6.904 8.77 6.652 L 10.062 9.239 L 8.962 10.875 C 8.796 11.125 8.765 11.442 8.88 11.72 C 9.524 13.25 10.742 14.468 12.272 15.112 C 12.551 15.232 12.871 15.204 13.125 15.038 Z M 23.7 12 C 23.701 16.109 21.546 19.917 18.024 22.033 C 14.502 24.148 10.128 24.261 6.501 22.33 L 2.67 23.607 C 2.024 23.822 1.31 23.654 0.828 23.172 C 0.346 22.69 0.178 21.976 0.393 21.33 L 1.67 17.499 C -0.616 13.201 -0.002 7.936 3.213 4.28 C 6.427 0.623 11.57 -0.66 16.126 1.056 C 20.681 2.773 23.698 7.132 23.7 12 Z M 19.2 14.7 C 19.2 14.359 19.008 14.047 18.703 13.894 L 15.103 12.094 C 14.814 11.951 14.471 11.972 14.203 12.151 L 12.55 13.253 C 11.791 12.836 11.167 12.212 10.75 11.453 L 11.853 9.801 C 12.031 9.532 12.053 9.189 11.909 8.901 L 10.109 5.301 C 9.957 4.993 9.643 4.799 9.3 4.8 C 6.815 4.8 4.8 6.815 4.8 9.3 C 4.806 14.765 9.235 19.194 14.7 19.2 C 17.185 19.2 19.2 17.185 19.2 14.7 Z\" fill=\"var(--token-1eabd042-0c29-42b7-8295-24b48a3fca48, rgb(36, 211, 102)) /* {&quot;name&quot;:&quot;WhatsApp&quot;} */\"></path></svg>',svgContentId:11116026152,withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gQEoO.framer-1artnq8, .framer-gQEoO .framer-1artnq8 { display: block; }\",\".framer-gQEoO.framer-1kxnzfb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 66px 24px 24px 24px; position: relative; width: 1024px; }\",\".framer-gQEoO .framer-wtrfay { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 20px; overflow: hidden; padding: 0px; position: absolute; right: 20px; top: 0px; z-index: 1; }\",\".framer-gQEoO .framer-t2h8nn { flex: none; height: 50px; position: relative; text-decoration: none; width: 140px; }\",\".framer-gQEoO .framer-hm1ppj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-gQEoO .framer-63tyk3-container, .framer-gQEoO .framer-lnvj9h-container, .framer-gQEoO .framer-flnj7c-container, .framer-gQEoO .framer-hs1hgo-container, .framer-gQEoO .framer-ppr4j-container { flex: none; height: 22px; position: relative; width: auto; }\",\".framer-gQEoO .framer-3sa7xl-container, .framer-gQEoO .framer-1m8xdvb-container, .framer-gQEoO .framer-107eahi-container, .framer-gQEoO .framer-1w1zrsm-container, .framer-gQEoO .framer-1y9vdtm-container, .framer-gQEoO .framer-1ogy4l9-container, .framer-gQEoO .framer-wkxipn-container, .framer-gQEoO .framer-bkjpri-container, .framer-gQEoO .framer-14sz04j-container, .framer-gQEoO .framer-h8sot1-container, .framer-gQEoO .framer-1bp27r6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gQEoO .framer-17vm091, .framer-gQEoO .framer-1xleh0a, .framer-gQEoO .framer-x4dzaa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; text-decoration: none; width: 24px; }\",\".framer-gQEoO .framer-16eoxmt, .framer-gQEoO .framer-1ee9b9s { flex: none; height: 24px; position: relative; text-decoration: none; width: 24px; }\",\".framer-gQEoO .framer-g4rhgi { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gQEoO .framer-h3phes { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-gQEoO .framer-h6wtl5, .framer-gQEoO .framer-t7cxui { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gQEoO .framer-e84e40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gQEoO .framer-40m062 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-gQEoO .framer-ez8t3p { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gQEoO .framer-yx1nkz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-gQEoO .framer-nldu8a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gQEoO.framer-1kxnzfb, .framer-gQEoO .framer-hm1ppj, .framer-gQEoO .framer-g4rhgi, .framer-gQEoO .framer-e84e40, .framer-gQEoO .framer-yx1nkz, .framer-gQEoO .framer-nldu8a { gap: 0px; } .framer-gQEoO.framer-1kxnzfb > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-gQEoO.framer-1kxnzfb > :first-child, .framer-gQEoO .framer-hm1ppj > :first-child, .framer-gQEoO .framer-g4rhgi > :first-child, .framer-gQEoO .framer-e84e40 > :first-child, .framer-gQEoO .framer-nldu8a > :first-child { margin-left: 0px; } .framer-gQEoO.framer-1kxnzfb > :last-child, .framer-gQEoO .framer-hm1ppj > :last-child, .framer-gQEoO .framer-g4rhgi > :last-child, .framer-gQEoO .framer-e84e40 > :last-child, .framer-gQEoO .framer-nldu8a > :last-child { margin-right: 0px; } .framer-gQEoO .framer-hm1ppj > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-gQEoO .framer-g4rhgi > *, .framer-gQEoO .framer-nldu8a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gQEoO .framer-e84e40 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-gQEoO .framer-yx1nkz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-gQEoO .framer-yx1nkz > :first-child { margin-top: 0px; } .framer-gQEoO .framer-yx1nkz > :last-child { margin-bottom: 0px; } }\",\".framer-gQEoO.framer-v-1dfr6az.framer-1kxnzfb { height: 50px; padding: 24px; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-wtrfay { bottom: 0px; top: unset; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-hm1ppj { gap: 16px; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-63tyk3-container, .framer-gQEoO.framer-v-132ex42 .framer-17vm091, .framer-gQEoO.framer-v-132ex42 .framer-1m8xdvb-container { order: 0; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-lnvj9h-container, .framer-gQEoO.framer-v-132ex42 .framer-107eahi-container { order: 1; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-flnj7c-container, .framer-gQEoO.framer-v-132ex42 .framer-1w1zrsm-container { order: 2; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-hs1hgo-container, .framer-gQEoO.framer-v-132ex42 .framer-1y9vdtm-container { order: 4; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-ppr4j-container, .framer-gQEoO.framer-v-132ex42 .framer-1ogy4l9-container { order: 3; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-3sa7xl-container, .framer-gQEoO.framer-v-132ex42 .framer-wkxipn-container { order: 5; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-1xleh0a, .framer-gQEoO.framer-v-132ex42 .framer-bkjpri-container { order: 6; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-16eoxmt, .framer-gQEoO.framer-v-132ex42 .framer-h8sot1-container { order: 8; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-h6wtl5, .framer-gQEoO.framer-v-1butxl9 .framer-h6wtl5 { bottom: 7px; top: unset; }\",\".framer-gQEoO.framer-v-1dfr6az .framer-t7cxui, .framer-gQEoO.framer-v-1butxl9 .framer-t7cxui { top: 7px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gQEoO.framer-v-1dfr6az .framer-hm1ppj { gap: 0px; } .framer-gQEoO.framer-v-1dfr6az .framer-hm1ppj > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-gQEoO.framer-v-1dfr6az .framer-hm1ppj > :first-child { margin-left: 0px; } .framer-gQEoO.framer-v-1dfr6az .framer-hm1ppj > :last-child { margin-right: 0px; } }\",\".framer-gQEoO.framer-v-132ex42.framer-1kxnzfb { padding: 24px; width: 390px; }\",\".framer-gQEoO.framer-v-132ex42 .framer-hm1ppj { padding: 0px 8px 0px 0px; }\",\".framer-gQEoO.framer-v-132ex42 .framer-1xleh0a, .framer-gQEoO.framer-v-132ex42 .framer-14sz04j-container { order: 7; }\",\".framer-gQEoO.framer-v-132ex42 .framer-16eoxmt { order: 9; }\",\".framer-gQEoO.framer-v-132ex42 .framer-yx1nkz { align-content: center; align-items: center; align-self: stretch; height: auto; justify-content: flex-start; padding: 50px 0px 0px 0px; }\",\".framer-gQEoO.framer-v-1butxl9.framer-1kxnzfb { height: 50px; padding: 24px; width: 390px; }\",...sharedStyle.css,'.framer-gQEoO[data-border=\"true\"]::after, .framer-gQEoO [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 512.5\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Sl1AJTsie\":{\"layout\":[\"fixed\",\"fixed\"]},\"KKYQVgX7o\":{\"layout\":[\"fixed\",\"auto\"]},\"EpoKlPcPi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wNbqpUwEZ\":\"backPhone\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertRy2IE4jC=withCSS(Component,css,\"framer-gQEoO\");export default FramertRy2IE4jC;FramertRy2IE4jC.displayName=\"Navigation\";FramertRy2IE4jC.defaultProps={height:512.5,width:1024};addPropertyControls(FramertRy2IE4jC,{variant:{options:[\"b5ClOcEpK\",\"Sl1AJTsie\",\"KKYQVgX7o\",\"EpoKlPcPi\"],optionTitles:[\"Desktop-opened\",\"Desktop-closed\",\"Mobile-opened\",\"Mobile-closed\"],title:\"Variant\",type:ControlType.Enum},wNbqpUwEZ:{defaultValue:false,title:\"Back Phone\",type:ControlType.Boolean}});addFonts(FramertRy2IE4jC,[{explicitInter:true,fonts:[{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/HZqX1E0smkzNnCKgA5KG93Ni1I.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...NavigationButtonFonts,...ClipboardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertRy2IE4jC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"512.5\",\"framerIntrinsicWidth\":\"1024\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sl1AJTsie\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KKYQVgX7o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EpoKlPcPi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"wNbqpUwEZ\\\":\\\"backPhone\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tRy2IE4jC.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "useInstanceId", "ae", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "disabled", "parentRef", "internalRef", "pe", "ref", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "Border", "iconProp", "size", "buttonTitle", "controls", "ControlType", "Icon", "image", "color", "style", "defaultImage", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "parsePadding", "padding", "parsedValues", "fillProp", "focus", "optional", "hidden", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "shadowsProp", "PhoneNumberInput", "props", "countryCodeOptions", "border", "shadows", "id", "useInstanceId", "isCanvas", "RenderTarget", "hasCC", "ccConnected", "phoneFormat", "countryCodeFormat", "maxDigits", "countXCharacters", "defaultCountryCode", "countryCode", "setCountryCode", "ye", "phoneNumber", "setPhoneNumber", "countryCodeFocused", "setCountryCodeFocused", "phoneNumberFocused", "setPhoneNumberFocused", "invalid", "setInvalid", "countryCodeInputRef", "pe", "phoneNumberInputRef", "pt", "pr", "pb", "pl", "parsePadding", "tl", "tr", "br", "bl", "bwt", "bwr", "bwb", "bwl", "ue", "isComplete", "onPhoneNumberChange", "event", "unformatted", "unformatValue", "formattedValue", "formatPhoneNumber", "isLastCharacterANumber", "onCountryCodeChange", "formatCountryCode", "onCountryCodeFocus", "lastChar", "countryCodeInput", "cursorPosition", "onPhoneNumberKeyDown", "onCountryCodeKeyDown", "onCountryCodeBlur", "onPhoneNumberFocus", "onPhoneNumberBlur", "u", "p", "HiddenInput", "motion", "createBackground", "px", "replaceXWithNumbers", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "format", "index", "cutOffIndex", "result", "match", "offset", "input", "count", "number", "value", "str", "a", "b", "c", "d", "lowercaseStr", "xRegex", "matches", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "V6Rj8Xbl0", "Wq0c2BiNO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1511e4s", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "css", "FramervdpuiWdxl", "withCSS", "vdpuiWdxl_default", "addPropertyControls", "ControlType", "addFonts", "fontStack", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "fontWeights", "useFontControls", "props", "fontFamily", "fontSize", "fontWeight", "font", "fontWeightName", "customFontStack", "fontStack", "fontFamilyStyle", "fetchCustomFonts", "fontStore", "e", "ue", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "colorNavButton", "height", "id", "linkNavButton", "textNavButton", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XweT5g5AP", "n3zXg7x_v", "oDHeiBJ8s", "a2xCJOpUh", "kxPQVJi0O", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lepz16", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerHWHwUziwF", "withCSS", "HWHwUziwF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationButtonFonts", "getFonts", "HWHwUziwF_default", "ClipboardFonts", "Clipboard", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "transition7", "animation6", "transition8", "animation7", "transition9", "animation8", "transition10", "animation9", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backPhone", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wNbqpUwEZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave6yz39x", "args", "onTap1uqbdb0", "onTap1f9kuv", "onTap1jr2nbb", "onTap1t554oj", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "Image2", "getLoadingLazyAtYPosition", "RichText2", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "css", "FramertRy2IE4jC", "withCSS", "tRy2IE4jC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
