{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/Kuwa4LRQnmmppaTnEydr/t3D5F7RKQIiLc0GJ57Tn/DataInput.js", "ssg:https://framerusercontent.com/modules/bC1XAVS3tjEsRrQnpTNK/nQNTOkycmjcC7w9ouVGz/Dv9oOyWf9.js", "ssg:https://framerusercontent.com/modules/kUioiTijrKKn5LzZ0I5K/5dmGQzG0XIHMm3Ulg9Uu/oNN_ZxCnP.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/7Agttoy1KGlr6diHhZ35/XtzVzetWmMeQFiC0wubH/X_WqcGUmd.js", "ssg:https://framerusercontent.com/modules/xsjKd0LdnrmjGdljvMAk/gqTqvHdqINi6arEco4qg/YNeFpe9Ip.js", "ssg:https://framerusercontent.com/modules/he4jNB1o27bIbGcM8ceL/WUHYIUnRLOliIKzrZRmR/khwcyzcDD.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}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 createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));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=createId();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\",{children:`\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\":{\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState}from\"react\";import{HiddenComponentLabel}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/y3zt4fv5F2ZtnBW8nZvn/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */export default function DataInput(props){const{type}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[value,setValue]=useState(\"\");let text=\"\";switch(type){case\"url\":text=\"Current URL\";break;case\"utmTags\":text=\"UTM Tags\";break;case\"urlParameter\":text=`${props.urlParameter} URL Parameter`;break;case\"referrerUrl\":text=\"Referrer URL\";break;}useEffect(()=>{switch(type){case\"url\":setValue(window.location.href);break;case\"utmTags\":const utms={};const queryParams=new URLSearchParams(window.location.search);queryParams.forEach((value,key)=>{// Check if the key starts with 'utm_' (indicating it's a UTM parameter)\nif(key.startsWith(\"utm_\")){utms[key]=value;}});setValue(utms);break;case\"urlParameter\":var _get;setValue((_get=new URLSearchParams(window.location.search).get(props.urlParameter))!==null&&_get!==void 0?_get:\"\");break;case\"referrerUrl\":setValue(document.referrer);break;}},[type,props.urlParameter]);return /*#__PURE__*/_jsx(HiddenComponentLabel,{text:text,subtext:\"Hidden Field\",children:!isCanvas&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"hidden\"},children:type==\"utmTags\"?value?Object.keys(value).map(key=>/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:key,value:value[key],\"data-framerforms-no-prefill\":true})):null:/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:props.name,value:value,\"data-framerforms-no-prefill\":true})})});}DataInput.displayName=\"URL Data Collector\";addPropertyControls(DataInput,{type:{type:ControlType.Enum,options:[\"url\",\"utmTags\",\"referrerUrl\",\"urlParameter\"],optionTitles:[\"Current URL\",\"UTM Tags\",\"Referrer URL\",\"URL Parameter\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},name:{type:ControlType.String,defaultValue:\"Data\",preventLocalization:true,hidden:props=>props.type==\"utmTags\"},urlParameter:{type:ControlType.String,defaultValue:\"\",placeholder:\"Parameter Name\",title:\"URL Param\",preventLocalization:true,hidden:props=>props.type!==\"urlParameter\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DataInput\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DataInput.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,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/d1rh479Mf8EKyWeK0fzi/21wv0JzPNIGGdJAiVC48/oA6moorkc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/38XEtMhomhmkL0U0tKqA/iDwglkqlTLhDkONjm9Tv/pSt6cBsl1.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/c9p06mH2DiouHp7dWD1F/zZ6sVwFw12DaPS9iLzkh/qOHq8Ivnc.js\";const cycleOrder=[\"YTMbFdR13\",\"dQ7YdNgdv\",\"ynTAZAz0u\",\"l12QR8TxQ\",\"UKHqvcNpE\",\"m4Hler83f\",\"A8gX16Cah\",\"CC6nkQdO1\",\"Dz9GpCeeb\",\"x4DA7rBQQ\",\"uLp_MGQ8L\",\"DXO7d5oSc\",\"guxAKpuQR\",\"CvVtXWuVQ\",\"QYJ9phDnB\",\"YJEdnls16\"];const serializationHash=\"framer-vGgPy\";const variantClassNames={A8gX16Cah:\"framer-v-1q0j46x\",CC6nkQdO1:\"framer-v-1yq65dy\",CvVtXWuVQ:\"framer-v-u3fi7q\",dQ7YdNgdv:\"framer-v-ygpijo\",DXO7d5oSc:\"framer-v-6x2f7n\",Dz9GpCeeb:\"framer-v-k6t8o4\",guxAKpuQR:\"framer-v-ttittj\",l12QR8TxQ:\"framer-v-17cudyv\",m4Hler83f:\"framer-v-1kfsxk7\",QYJ9phDnB:\"framer-v-1sfnwox\",UKHqvcNpE:\"framer-v-1xsy39\",uLp_MGQ8L:\"framer-v-imow2m\",x4DA7rBQQ:\"framer-v-1yuk2l0\",YJEdnls16:\"framer-v-1xumg6w\",ynTAZAz0u:\"framer-v-1972ztn\",YTMbFdR13:\"framer-v-1tnqc4x\"};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 transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};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 Cancellations\":\"l12QR8TxQ\",\"Desktop Rates\":\"dQ7YdNgdv\",\"Desktop Rebates\":\"ynTAZAz0u\",\"Desktop What to Expect\":\"YTMbFdR13\",\"Mobile Cancellations Closed\":\"YJEdnls16\",\"Mobile Cancellations Open\":\"DXO7d5oSc\",\"Mobile Expect Closed\":\"guxAKpuQR\",\"Mobile Expect Open\":\"Dz9GpCeeb\",\"Mobile Rates Closed\":\"CvVtXWuVQ\",\"Mobile Rates Open\":\"x4DA7rBQQ\",\"Mobile Rebates Closed\":\"QYJ9phDnB\",\"Mobile Rebates Open\":\"uLp_MGQ8L\",\"Tablet Cancellations\":\"CC6nkQdO1\",\"Tablet Rates\":\"m4Hler83f\",\"Tablet Rebates\":\"A8gX16Cah\",\"Tablet What to expect\":\"UKHqvcNpE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YTMbFdR13\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YTMbFdR13\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1k69kro=activeVariantCallback(async(...args)=>{setVariant(\"YTMbFdR13\");});const onTap1exkd2s=activeVariantCallback(async(...args)=>{setVariant(\"UKHqvcNpE\");});const onTap1devt9j=activeVariantCallback(async(...args)=>{setVariant(\"guxAKpuQR\");});const onTap1qn31t4=activeVariantCallback(async(...args)=>{setVariant(\"Dz9GpCeeb\");});const onTap1cfb2bi=activeVariantCallback(async(...args)=>{setVariant(\"dQ7YdNgdv\");});const onTaprk97pf=activeVariantCallback(async(...args)=>{setVariant(\"m4Hler83f\");});const onTapqnedxk=activeVariantCallback(async(...args)=>{setVariant(\"CvVtXWuVQ\");});const onTapzu0l38=activeVariantCallback(async(...args)=>{setVariant(\"x4DA7rBQQ\");});const onTap9m66vm=activeVariantCallback(async(...args)=>{setVariant(\"ynTAZAz0u\");});const onTaplionp1=activeVariantCallback(async(...args)=>{setVariant(\"A8gX16Cah\");});const onTap1h4aq24=activeVariantCallback(async(...args)=>{setVariant(\"QYJ9phDnB\");});const onTap1om51vk=activeVariantCallback(async(...args)=>{setVariant(\"uLp_MGQ8L\");});const onTapl1rbh5=activeVariantCallback(async(...args)=>{setVariant(\"l12QR8TxQ\");});const onTap1o325xa=activeVariantCallback(async(...args)=>{setVariant(\"CC6nkQdO1\");});const onTap1flcj2v=activeVariantCallback(async(...args)=>{setVariant(\"YJEdnls16\");});const onTapbfyugw=activeVariantCallback(async(...args)=>{setVariant(\"DXO7d5oSc\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"x4DA7rBQQ\",\"uLp_MGQ8L\",\"DXO7d5oSc\",\"CvVtXWuVQ\",\"QYJ9phDnB\",\"YJEdnls16\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"guxAKpuQR\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Dz9GpCeeb\")return true;return false;};const isDisplayed3=()=>{if([\"Dz9GpCeeb\",\"uLp_MGQ8L\",\"DXO7d5oSc\",\"guxAKpuQR\",\"QYJ9phDnB\",\"YJEdnls16\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"CvVtXWuVQ\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"x4DA7rBQQ\")return true;return false;};const isDisplayed6=()=>{if([\"Dz9GpCeeb\",\"x4DA7rBQQ\",\"DXO7d5oSc\",\"guxAKpuQR\",\"CvVtXWuVQ\",\"YJEdnls16\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"QYJ9phDnB\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"uLp_MGQ8L\")return true;return false;};const isDisplayed9=()=>{if([\"Dz9GpCeeb\",\"x4DA7rBQQ\",\"uLp_MGQ8L\",\"guxAKpuQR\",\"CvVtXWuVQ\",\"QYJ9phDnB\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"YJEdnls16\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"DXO7d5oSc\")return true;return false;};const isDisplayed12=()=>{if([\"guxAKpuQR\",\"CvVtXWuVQ\",\"QYJ9phDnB\",\"YJEdnls16\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if([\"dQ7YdNgdv\",\"ynTAZAz0u\",\"l12QR8TxQ\",\"m4Hler83f\",\"A8gX16Cah\",\"CC6nkQdO1\",\"x4DA7rBQQ\",\"uLp_MGQ8L\",\"DXO7d5oSc\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if(baseVariant===\"ynTAZAz0u\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"l12QR8TxQ\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"dQ7YdNgdv\")return true;return false;};const isDisplayed17=()=>{if([\"ynTAZAz0u\",\"A8gX16Cah\",\"uLp_MGQ8L\"].includes(baseVariant))return false;return true;};const isDisplayed18=()=>{if(baseVariant===\"CC6nkQdO1\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"m4Hler83f\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"A8gX16Cah\")return true;return false;};const isDisplayed21=()=>{if([\"ynTAZAz0u\",\"A8gX16Cah\",\"uLp_MGQ8L\"].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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tnqc4x\",className,classNames),\"data-framer-name\":\"Desktop What to Expect\",layoutDependency:layoutDependency,layoutId:\"YTMbFdR13\",ref:refBinding,style:{...style},...addPropertyOverrides({A8gX16Cah:{\"data-framer-name\":\"Tablet Rebates\"},CC6nkQdO1:{\"data-framer-name\":\"Tablet Cancellations\"},CvVtXWuVQ:{\"data-framer-name\":\"Mobile Rates Closed\"},dQ7YdNgdv:{\"data-framer-name\":\"Desktop Rates\"},DXO7d5oSc:{\"data-framer-name\":\"Mobile Cancellations Open\"},Dz9GpCeeb:{\"data-framer-name\":\"Mobile Expect Open\"},guxAKpuQR:{\"data-framer-name\":\"Mobile Expect Closed\"},l12QR8TxQ:{\"data-framer-name\":\"Desktop Cancellations\"},m4Hler83f:{\"data-framer-name\":\"Tablet Rates\"},QYJ9phDnB:{\"data-framer-name\":\"Mobile Rebates Closed\"},UKHqvcNpE:{\"data-framer-name\":\"Tablet What to expect\"},uLp_MGQ8L:{\"data-framer-name\":\"Mobile Rebates Open\"},x4DA7rBQQ:{\"data-framer-name\":\"Mobile Rates Open\"},YJEdnls16:{\"data-framer-name\":\"Mobile Cancellations Closed\"},ynTAZAz0u:{\"data-framer-name\":\"Desktop Rebates\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dn0ekt\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008758\",layoutDependency:layoutDependency,layoutId:\"OlUrjWq6O\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(247, 229, 227)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{CvVtXWuVQ:{\"--border-bottom-width\":\"0px\"},DXO7d5oSc:{\"--border-color\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\"},Dz9GpCeeb:{\"--border-color\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\"},QYJ9phDnB:{\"--border-bottom-width\":\"0px\"},uLp_MGQ8L:{\"--border-color\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\"},x4DA7rBQQ:{\"--border-color\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\"},YJEdnls16:{\"--border-bottom-width\":\"0px\"}},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kwkhk5\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008754\",layoutDependency:layoutDependency,layoutId:\"tSE5VQAj4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{A8gX16Cah:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"},CC6nkQdO1:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"},dQ7YdNgdv:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"},Dz9GpCeeb:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},guxAKpuQR:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:12,borderBottomRightRadius:12},l12QR8TxQ:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"},m4Hler83f:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"},ynTAZAz0u:{backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"}},...addPropertyOverrides({A8gX16Cah:{\"data-highlight\":true,onTap:onTap1exkd2s},CC6nkQdO1:{\"data-highlight\":true,onTap:onTap1exkd2s},dQ7YdNgdv:{\"data-highlight\":true,onTap:onTap1k69kro},Dz9GpCeeb:{\"data-highlight\":true,onTap:onTap1devt9j},guxAKpuQR:{\"data-highlight\":true,onTap:onTap1qn31t4},l12QR8TxQ:{\"data-highlight\":true,onTap:onTap1k69kro},m4Hler83f:{\"data-highlight\":true,onTap:onTap1exkd2s},ynTAZAz0u:{\"data-highlight\":true,onTap:onTap1k69kro}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",style:{\"--framer-text-alignment\":\"center\"},children:\"What to expect\"})}),className:\"framer-1ckp4r8\",\"data-framer-name\":\"What to expect\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DRr_XvLLw\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dxrdvz\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Stzzm_2Xt\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14n98a7\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"VY95AFdfq\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4xey2\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008757\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yTPUI0Ugw\",onTap:onTap1cfb2bi,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{CvVtXWuVQ:{\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",borderBottomLeftRadius:12,borderBottomRightRadius:12},dQ7YdNgdv:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},m4Hler83f:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},x4DA7rBQQ:{\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"}},...addPropertyOverrides({A8gX16Cah:{onTap:onTaprk97pf},CC6nkQdO1:{onTap:onTaprk97pf},CvVtXWuVQ:{onTap:onTapzu0l38},m4Hler83f:{\"data-highlight\":undefined,onTap:undefined},UKHqvcNpE:{onTap:onTaprk97pf},x4DA7rBQQ:{onTap:onTapqnedxk}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Rates\"})}),className:\"framer-114jdhf\",\"data-framer-name\":\"Cancellations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xI17Ocx07\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12brq5t\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"PRTi12_dm\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qy53ey\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"fdoeITi4n\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-obbfdz\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008757\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rwg13I7X2\",onTap:onTap9m66vm,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{A8gX16Cah:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},QYJ9phDnB:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",borderBottomLeftRadius:12,borderBottomRightRadius:12},uLp_MGQ8L:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},ynTAZAz0u:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"}},...addPropertyOverrides({A8gX16Cah:{\"data-highlight\":undefined,onTap:undefined},CC6nkQdO1:{onTap:onTaplionp1},m4Hler83f:{onTap:onTaplionp1},QYJ9phDnB:{onTap:onTap1om51vk},UKHqvcNpE:{onTap:onTaplionp1},uLp_MGQ8L:{onTap:onTap1h4aq24}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rebates Explained\"})}),className:\"framer-16wk5n5\",\"data-framer-name\":\"Cancellations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QkDoxJyDk\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qr4hmx\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"LVXefLQc9\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2f3gsu\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"v_qmx4Ddz\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18xgugr\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008757\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"L5Nsj5C77\",onTap:onTapl1rbh5,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{CC6nkQdO1:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},DXO7d5oSc:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},l12QR8TxQ:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\"},YJEdnls16:{backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",borderBottomLeftRadius:12,borderBottomRightRadius:12}},...addPropertyOverrides({A8gX16Cah:{onTap:onTap1o325xa},CC6nkQdO1:{\"data-highlight\":undefined,onTap:undefined},DXO7d5oSc:{onTap:onTap1flcj2v},m4Hler83f:{onTap:onTap1o325xa},UKHqvcNpE:{onTap:onTap1o325xa},YJEdnls16:{onTap:onTapbfyugw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",style:{\"--framer-text-alignment\":\"center\"},children:\"Cancellations\"})}),className:\"framer-y7d75o\",\"data-framer-name\":\"Cancellations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nmiBsBsud\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",whileHover:animation,withExternalLayout:true}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10i4h2c\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"LNFyvst3W\",svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1efavbc\",\"data-framer-name\":\"uil_angle_down\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"Bo0Z5YC2x\",style:{rotate:180},svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17 9.17a1 1 0 0 0-1.41 0L12 12.71 8.46 9.17a1 1 0 1 0-1.41 1.42l4.24 4.24a1.002 1.002 0 0 0 1.42 0L17 10.59a1.002 1.002 0 0 0 0-1.42Z\" fill=\"#476969\"/></svg>',withExternalLayout:true})]})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxh14i\",\"data-border\":true,\"data-framer-name\":\"Frame 1000008759\",layoutDependency:layoutDependency,layoutId:\"xZkI6Ys3F\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{DXO7d5oSc:{borderTopLeftRadius:0,borderTopRightRadius:0},Dz9GpCeeb:{borderTopLeftRadius:0,borderTopRightRadius:0},uLp_MGQ8L:{borderTopLeftRadius:0,borderTopRightRadius:0},x4DA7rBQQ:{borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d9b97e\",layoutDependency:layoutDependency,layoutId:\"ChJfzvYHg\",children:[isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:694.5,pixelHeight:1608,pixelWidth:1389,sizes:\"500px\",src:\"https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png?scale-down-to=1024 884w,https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png 1389w\"},className:\"framer-5r9mue\",\"data-framer-name\":\"Frame 3128159\",layoutDependency:layoutDependency,layoutId:\"vXJn9qiVN\",...addPropertyOverrides({Dz9GpCeeb:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:694.5,pixelHeight:1608,pixelWidth:1389,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px, 1136px)`,src:\"https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png?scale-down-to=1024 884w,https://framerusercontent.com/images/mp73XnwKwutBMtMxKcWjWuadGo.png 1389w\"}}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"},className:\"framer-mehgve\",\"data-framer-name\":\"Rebates\",layoutDependency:layoutDependency,layoutId:\"fVsNXQtKo\",...addPropertyOverrides({ynTAZAz0u:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,sizes:\"500px\",src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"}}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"},className:\"framer-19xck3a\",\"data-framer-name\":\"Cancellation image\",layoutDependency:layoutDependency,layoutId:\"dqQWUYTOO\",...addPropertyOverrides({l12QR8TxQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,sizes:\"500px\",src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"}}},baseVariant,gestureVariant)}),isDisplayed16()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:1368,pixelWidth:1500,src:\"https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png 1500w\"},className:\"framer-1l53ay\",\"data-framer-name\":\"Rates image\",layoutDependency:layoutDependency,layoutId:\"T914kI47q\",...addPropertyOverrides({dQ7YdNgdv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:1368,pixelWidth:1500,sizes:\"500px\",src:\"https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ccr8dZ0BlUtR2UXlGPYSV3SPPk.png 1500w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uj4edt\",layoutDependency:layoutDependency,layoutId:\"MKuu8kEWJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p4mnwk\",\"data-framer-name\":\"Frame 1000008751\",layoutDependency:layoutDependency,layoutId:\"RrBJUEDo2\",style:{backgroundColor:\"var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Your Session\"})}),className:\"framer-ewl586\",\"data-framer-name\":\"Your session\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KAqNKLZaG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A8gX16Cah:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Private Health Insurance Rebates\"})})},CC6nkQdO1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Policy\"})})},dQ7YdNgdv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Our rates\"})})},DXO7d5oSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Policy\"})})},l12QR8TxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Policy\"})})},m4Hler83f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Our rates\"})})},uLp_MGQ8L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Private Health Insurance Rebates\"})})},x4DA7rBQQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Our rates\"})})},ynTAZAz0u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Private Health Insurance Rebates\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"During your initial free 15-minute discovery call we\u2019ll listen to what you need and give you a heads-up on fees moving forward, including the price of your personalised BE Plan. You\u2019ll be invited to a 70-minute session to dive deep with our counsellor.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"And if you\u2019re not feeling it after our initial chat, there is no pressure to continue your journey with us.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Remember, everyone's journey is different \u2013 some folks sprint to their goals, others take the scenic route. That's the beauty of it!\"})]}),className:\"framer-1ppbbhm\",\"data-framer-name\":\"After your initial free 15-minute discovery call, you\u2019ll be invited to a 90-minute session to deep dive with our psychologist and wellness coordinator. They'll map out your needs and wants and give you a heads-up on the price of your personalised BE Plan price. Remember, everyone's journey is different \u2013 some folks sprint to their goals, others take a scenic route. That's the beauty of it!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OO_S4C0ZJ\",style:{\"--extracted-14qxiz\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-ydz9fi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{dQ7YdNgdv:{\"--extracted-1mrmkp\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1nnc6r4\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1quuco0\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-8vgz36\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-a90rmm\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-kwuuhs\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-niajgi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-utobz9\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},m4Hler83f:{\"--extracted-1yfvjw7\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2n0hfo\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-7rht60\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-a90rmm\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-sheots\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-t2ptvp\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-utobz9\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-zofkry\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},x4DA7rBQQ:{\"--extracted-1mrmkp\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1nnc6r4\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1quuco0\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-8vgz36\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-a90rmm\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-kwuuhs\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-niajgi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-utobz9\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A8gX16Cah:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you\u2019re planning to use your private health insurance, you don\u2019t need a referral. Your rebate amount depends on your fund and coverage level. Contact your health fund for specifics. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Our care packages also attract rebates for sessions with our psychologists. Please call us to see which care package suits you\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Note: You can't use private insurance rebate to cover any Medicare gap payments.\"})]})},CC6nkQdO1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"When you book with us, our clinicians devote that time solely to you, valuing your time and well-being. We get that life happens though, so if unforeseen circumstances arise, let us know ASAP so we manage the situation fairly and avoid any unnecessary cancellation fees. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"To help us efficiently manage our schedule and support as many clients as possible, we ask for at least \",/*#__PURE__*/_jsx(motion.strong,{children:\"48 hours' notice\"}),\" if you need to reschedule or cancel your appointment. This policy ensures that we can offer your time slot to someone else who may urgently need our services.\"]})]}),fonts:[\"Inter\",\"Inter-Bold\"]},dQ7YdNgdv:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Here at Be, we pride ourselves on having clear and competitive pricing structure. Our rates vary (this includes family therapy or couples counselling), depending on the qualifications and experience of our team members. Please see the breakdown below:\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"90min Deep Dive Session:\"}),/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-utobz9, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a90rmm, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $195\"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1nnc6r4, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Standard 50-min Session:\"}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1quuco0, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-kwuuhs, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $130\"]})}),/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-niajgi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"psychologist\"}),\" is $220\"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1mrmkp, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-8vgz36, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Payment is required upfront.\"})})]}),fonts:[\"Inter\",\"Inter-Bold\"]},DXO7d5oSc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"When you book with us, our clinicians devote that time solely to you, valuing your time and well-being. We get that life happens though, so if unforeseen circumstances arise, let us know ASAP so we manage the situation fairly and avoid any unnecessary cancellation fees. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"To help us efficiently manage our schedule and support as many clients as possible, we ask for at least \",/*#__PURE__*/_jsx(motion.strong,{children:\"48 hours' notice\"}),\" if you need to reschedule or cancel your appointment. This policy ensures that we can offer your time slot to someone else who may urgently need our services.\"]})]}),fonts:[\"Inter\",\"Inter-Bold\"]},l12QR8TxQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"When you book with us, our clinicians devote that time solely to you, valuing your time and well-being. We get that life happens though, so if unforeseen circumstances arise, let us know ASAP so we manage the situation fairly and avoid any unnecessary cancellation fees. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"To help us efficiently manage our schedule and support as many clients as possible, we ask for at least \",/*#__PURE__*/_jsx(motion.strong,{children:\"48 hours' notice\"}),\" if you need to reschedule or cancel your appointment. This policy ensures that we can offer your time slot to someone else who may urgently need our services.\"]})]}),fonts:[\"Inter\",\"Inter-Bold\"]},m4Hler83f:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Here at Be, we pride ourselves on having clear and competitive pricing structure. Our rates vary (this includes family therapy or couples counselling), depending on the qualifications and experience of our team members. Please see the breakdown below:\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"90-min Deep Dive Session:\"}),/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-utobz9, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a90rmm, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $195\"]})})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1yfvjw7, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Standard 50-min Session:\"}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-7rht60, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-zofkry, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $130\"]})}),/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-2n0hfo, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"psychologist\"}),\" is $220\"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-sheots, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-t2ptvp, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Payment is required upfront.\"})})]}),fonts:[\"Inter\",\"Inter-Bold\"]},uLp_MGQ8L:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Although a referral is not required to see a psychologist, you may be eligible to receive a Medicare rebate if assessed by your GP (under item 2710 \u2013 Mental Health Care Plan). Many private health funds offer rebates for psychological services. Please check rebate details with your health fund.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We are able to process your Medicare rebate on the day with a current Mental Health Care Plan (MHCP) referral. The current Registered Psychology rebate is $96.65, Clinical Psychology rebate is $141.85 and Social Worker $85.20.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Just a heads up, Medicare won't cover sessions until you've got one of these plans activated. After your first six sessions, circle back to your GP for a review. If needed, they'll hook you up with another referral for more Medicare-rebated sessions.\"})]})},x4DA7rBQQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Here at Be, we pride ourselves on having clear and competitive pricing structure. Our rates vary (this includes family therapy or couples counselling), depending on the qualifications and experience of our team members. Please see the breakdown below:\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"90-min Deep Dive Session:\"}),/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-utobz9, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-a90rmm, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $195\"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1nnc6r4, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Standard 50-min Session:\"}),/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1quuco0, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-kwuuhs, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"counsellor\"}),\" is $130\"]})}),/*#__PURE__*/_jsxs(motion.li,{children:[/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-niajgi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"with a \",/*#__PURE__*/_jsx(motion.strong,{children:\"psychologist\"}),\" is $220\"]}),/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-color\":\"var(--extracted-1mrmkp, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]})]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-8vgz36, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Payment is required upfront.\"})})]}),fonts:[\"Inter\",\"Inter-Bold\"]},ynTAZAz0u:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you\u2019re planning to use your private health insurance, you don\u2019t need a referral. Your rebate amount depends on your fund and coverage level. Contact your health fund for specifics. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"Our care packages also attract rebates for sessions with our psychologists. Please \",/*#__PURE__*/_jsx(Link,{href:\"tel:0862857777\",motionChild:true,nodeId:\"OO_S4C0ZJ\",openInNewTab:true,scopeId:\"Dv9oOyWf9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oqrjdn\",\"data-styles-preset\":\"qOHq8Ivnc\",children:\"call us\"})}),\" to see which care package suits you\"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Note: You can't use private insurance rebate to cover any Medicare gap payments.\"})]})}},baseVariant,gestureVariant)})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6p7k3\",\"data-framer-name\":\"Frame 1000008751\",layoutDependency:layoutDependency,layoutId:\"CIPY2PhzP\",style:{backgroundColor:\"var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Your Payment\"})}),className:\"framer-1pl8peq\",\"data-framer-name\":\"Your session\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Fio6YzLPg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CC6nkQdO1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Fee\"})})},dQ7YdNgdv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Care Packages\"})})},DXO7d5oSc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Fee\"})})},l12QR8TxQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Cancellation Fee\"})})},m4Hler83f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Care Packages\"})})},x4DA7rBQQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Care Packages\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We're here for you whenever you need us. Whether you pay per session or pay for a care package, all payments are required up front as they do differ among our therapists.\"})}),className:\"framer-ohfu02\",\"data-framer-name\":\"After your initial free 15-minute discovery call, you\u2019ll be invited to a 90-minute session to deep dive with our psychologist and wellness coordinator. They'll map out your needs and wants and give you a heads-up on the price of your personalised BE Plan price. Remember, everyone's journey is different \u2013 some folks sprint to their goals, others take a scenic route. That's the beauty of it!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j1K5ru6Pw\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{CC6nkQdO1:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},dQ7YdNgdv:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},DXO7d5oSc:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},l12QR8TxQ:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},m4Hler83f:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},x4DA7rBQQ:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CC6nkQdO1:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"If you have to cancel with less than 48 hours' notice, \",/*#__PURE__*/_jsx(motion.strong,{children:\"a fee equal to 50% of your appointment's full charge will apply\"}),\". \"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Also, if a pre-booked session remains unattended 20 minutes after its start time, it will be considered cancelled/unattended and the full fee of the appointment will be charged.\"})]}),fonts:[\"Inter\",\"Inter-Bold\"]},dQ7YdNgdv:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you have a care package with Be, you\u2019ll have access to continuous personal support that adapts to your evolving needs. Apart of that continuity includes you accessing support Mon-Fri if you need some extra support between appointments.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Please call us to confirm fees, as they do differ among our psychologists and counsellors at Be.\"})]})},DXO7d5oSc:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"If you have to cancel with less than 48 hours' notice, \",/*#__PURE__*/_jsx(motion.strong,{children:\"a fee equal to 50% of your appointment's full charge will apply\"}),\". \"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Also, if a pre-booked session remains unattended 20 minutes after its start time, it will be considered cancelled/unattended and the full fee of the appointment will be charged.\"})]}),fonts:[\"Inter\",\"Inter-Bold\"]},l12QR8TxQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:[\"If you have to cancel with less than 48 hours' notice, \",/*#__PURE__*/_jsx(motion.strong,{children:\"a fee equal to 50% of your appointment's full charge will apply\"}),\". \"]}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Also, if a pre-booked session remains unattended 20 minutes after its start time, it will be considered cancelled/unattended and the full fee of the appointment will be charged.\"})]}),fonts:[\"Inter\",\"Inter-Bold\"]},m4Hler83f:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you have a care package with Be, you\u2019ll have access to continuous personal support that adapts to your evolving needs. Apart of that continuity includes you accessing support Mon-Fri if you need some extra support between appointments.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Please call us to confirm fees, as they do differ among our psychologists and counsellors at Be.\"})]})},x4DA7rBQQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you have a care package with Be, you\u2019ll have access to continuous personal support that adapts to your evolving needs. Apart of that continuity includes you accessing support Mon-Fri if you need some extra support between appointments.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Please call us to confirm fees, as they do differ among our psychologists and counsellors at Be.\"})]})}},baseVariant,gestureVariant)})]})]}),isDisplayed18()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"},className:\"framer-cffq5h\",\"data-framer-name\":\"Cancellation image\",layoutDependency:layoutDependency,layoutId:\"S6EvZSA7P\",...addPropertyOverrides({CC6nkQdO1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,sizes:\"500px\",src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"}}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"},className:\"framer-k5wmom\",\"data-framer-name\":\"Cancellation image\",layoutDependency:layoutDependency,layoutId:\"pl_OqLfmO\",...addPropertyOverrides({DXO7d5oSc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:744,intrinsicWidth:652.5,pixelHeight:1488,pixelWidth:1305,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px, 1136px)`,src:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png?scale-down-to=1024 898w,https://framerusercontent.com/images/BzVoXNYydQqNUPdCM19N9foCDKY.png 1305w\"}}},baseVariant,gestureVariant)}),isDisplayed19()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:972,pixelWidth:1467,src:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png 1467w\"},className:\"framer-13beze4\",\"data-framer-name\":\"Rates image\",layoutDependency:layoutDependency,layoutId:\"PwB4KjVJd\",...addPropertyOverrides({m4Hler83f:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:972,pixelWidth:1467,sizes:\"500px\",src:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png 1467w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:972,pixelWidth:1467,src:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png 1467w\"},className:\"framer-o8apox\",\"data-framer-name\":\"Rates image\",layoutDependency:layoutDependency,layoutId:\"gZ1Uw9j5w\",...addPropertyOverrides({x4DA7rBQQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:733.5,pixelHeight:972,pixelWidth:1467,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px, 1136px)`,src:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IsHFHRYEYUCj4Flj8ohG7xQ2fE.png 1467w\"}}},baseVariant,gestureVariant)}),isDisplayed20()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"},className:\"framer-7z8qps\",\"data-framer-name\":\"Rebates\",layoutDependency:layoutDependency,layoutId:\"DnMQUjHq6\",...addPropertyOverrides({A8gX16Cah:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,sizes:\"500px\",src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"},className:\"framer-1w0d529\",\"data-framer-name\":\"Rebates\",layoutDependency:layoutDependency,layoutId:\"YqIAaRxfU\",...addPropertyOverrides({uLp_MGQ8L:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:690,intrinsicWidth:829.5,pixelHeight:1380,pixelWidth:1659,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 32px, 1136px)`,src:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6AiOQ2a8H47AIB0KHKSTj6frk4.png 1659w\"}}},baseVariant,gestureVariant)})]}),isDisplayed21()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-nlng3k\",layoutDependency:layoutDependency,layoutId:\"PVbcc0qxM\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kx5doh\",\"data-framer-name\":\"Frame 1000008753\",layoutDependency:layoutDependency,layoutId:\"R931jknVc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14glhdh\",\"data-framer-name\":\"Frame 1000008751\",layoutDependency:layoutDependency,layoutId:\"iagB3W2pJ\",style:{backgroundColor:\"var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Private Health Insurance Rebates\"})}),className:\"framer-13jntmh\",\"data-framer-name\":\"Your session\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jiSWs6Mjd\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A8gX16Cah:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Medicare Rebates\"})})},uLp_MGQ8L:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Medicare Rebates\"})})},ynTAZAz0u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Medicare Rebates\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"If you\u2019re planning to use your private health insurance, you don\u2019t need a referral. Your rebate amount depends on your fund and coverage level. Contact your health fund for specifics. \"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Note: You can't use private insurance rebate to cover any Medicare gap payments.\"})]}),className:\"framer-cyn5nj\",\"data-framer-name\":\"After your initial free 15-minute discovery call, you\u2019ll be invited to a 90-minute session to deep dive with our psychologist and wellness coordinator. They'll map out your needs and wants and give you a heads-up on the price of your personalised BE Plan price. Remember, everyone's journey is different \u2013 some folks sprint to their goals, others take a scenic route. That's the beauty of it!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zMhACAz0Q\",style:{\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{A8gX16Cah:{\"--extracted-14qxiz\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-ydz9fi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},uLp_MGQ8L:{\"--extracted-14qxiz\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-ydz9fi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"},ynTAZAz0u:{\"--extracted-14qxiz\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-ydz9fi\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A8gX16Cah:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Although a referral is not required to see a psychologist, you may be eligible to receive a Medicare rebate if assessed by your GP (under item 2710 \u2013 Mental Health Care Plan). Many private health funds offer rebates for psychological services. Please check rebate details with your health fund.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We are able to process your Medicare rebate on the day with a current Mental Health Care Plan (MHCP) referral. The current Registered Psychology rebate is $96.65.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Just a heads up, Medicare won't cover sessions until you've got one of these plans activated. After your first six sessions, circle back to your GP for a review. If needed, they'll hook you up with another referral for more Medicare-rebated sessions.\"})]})},uLp_MGQ8L:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Although a referral is not required to see a psychologist, you may be eligible to receive a Medicare rebate if assessed by your GP (under item 2710 \u2013 Mental Health Care Plan). Many private health funds offer rebates for psychological services. Please check rebate details with your health fund.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We are able to process your Medicare rebate on the day with a current Mental Health Care Plan (MHCP) referral. The current Registered Psychology rebate is $96.65.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Just a heads up, Medicare won't cover sessions until you've got one of these plans activated. After your first six sessions, circle back to your GP for a review. If needed, they'll hook you up with another referral for more Medicare-rebated sessions.\"})]})},ynTAZAz0u:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Although a referral is not required to see a psychologist, you may be eligible to receive a Medicare rebate if assessed by your GP (under item 2710 \u2013 Mental Health Care Plan). Many private health funds offer rebates for psychological services. Please check rebate details with your health fund.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We are able to process your Medicare rebate on the day with a current Mental Health Care Plan (MHCP) referral. The current Registered Psychology rebate is $96.65.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-ydz9fi, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Just a heads up, Medicare won't cover sessions until you've got one of these plans activated. After your first six sessions, circle back to your GP for a review. If needed, they'll hook you up with another referral for more Medicare-rebated sessions.\"})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kmylug\",\"data-framer-name\":\"Frame 1000008751\",layoutDependency:layoutDependency,layoutId:\"bKVsbIhxf\",style:{backgroundColor:\"var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1t2if0\",\"data-styles-preset\":\"pSt6cBsl1\",children:\"Private billing\"})}),className:\"framer-52bmn1\",\"data-framer-name\":\"Your session\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"R7gmayP_u\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We work on a private billing basis, so there's a gap between appointment costs and Medicare rebates. Just a heads up, sessions with provisionally registered psychologists or counsellors aren't eligible for Medicare rebates.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"EFTPOS facilities are available and payment is required at time of consultation. If you have a care package at Be we can also make a claim in the same way if you have received a service which\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"attracts a rebate.\"})]}),className:\"framer-1g0s4uh\",\"data-framer-name\":\"After your initial free 15-minute discovery call, you\u2019ll be invited to a 90-minute session to deep dive with our psychologist and wellness coordinator. They'll map out your needs and wants and give you a heads-up on the price of your personalised BE Plan price. Remember, everyone's journey is different \u2013 some folks sprint to their goals, others take a scenic route. That's the beauty of it!\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mWEyvWuXN\",style:{\"--extracted-14qxiz\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-1iakedh\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-2gxw0f\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ynTAZAz0u:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"We work on a private billing basis, so there's a gap between appointment costs and Medicare rebates. Just a heads up, sessions with counsellors aren't eligible for Medicare rebates.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-1iakedh, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"EFTPOS facilities are available and payment is required at time of consultation. If you have a care package at Be we can also make a claim in the same way if you have received a service which\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-color\":\"var(--extracted-14qxiz, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"attracts a rebate.\"})]})}},baseVariant,gestureVariant)})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vGgPy.framer-1bn8q1w, .framer-vGgPy .framer-1bn8q1w { display: block; }\",\".framer-vGgPy.framer-1tnqc4x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-vGgPy .framer-dn0ekt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vGgPy .framer-kwkhk5 { 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: 10px 12px 10px 12px; position: relative; width: min-content; }\",\".framer-vGgPy .framer-1ckp4r8, .framer-vGgPy .framer-114jdhf, .framer-vGgPy .framer-16wk5n5, .framer-vGgPy .framer-y7d75o { flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-vGgPy .framer-1dxrdvz, .framer-vGgPy .framer-14n98a7, .framer-vGgPy .framer-12brq5t, .framer-vGgPy .framer-1qy53ey, .framer-vGgPy .framer-1qr4hmx, .framer-vGgPy .framer-2f3gsu, .framer-vGgPy .framer-10i4h2c, .framer-vGgPy .framer-1efavbc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-vGgPy .framer-4xey2, .framer-vGgPy .framer-obbfdz, .framer-vGgPy .framer-18xgugr { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 12px 10px 12px; position: relative; width: min-content; }\",\".framer-vGgPy .framer-1qxh14i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-vGgPy .framer-d9b97e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; max-width: 1136px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vGgPy .framer-5r9mue { aspect-ratio: 0.8638059701492538 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 579px); overflow: visible; position: relative; width: 500px; }\",\".framer-vGgPy .framer-mehgve, .framer-vGgPy .framer-7z8qps { aspect-ratio: 1.2021739130434783 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 416px); overflow: visible; position: relative; width: 500px; }\",\".framer-vGgPy .framer-19xck3a, .framer-vGgPy .framer-cffq5h { aspect-ratio: 0.8770161290322581 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 570px); overflow: visible; position: relative; width: 500px; }\",\".framer-vGgPy .framer-1l53ay { aspect-ratio: 1.0976948408342482 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 456px); overflow: visible; position: relative; width: 500px; }\",\".framer-vGgPy .framer-1uj4edt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vGgPy .framer-1p4mnwk, .framer-vGgPy .framer-i6p7k3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 100%; }\",\".framer-vGgPy .framer-ewl586, .framer-vGgPy .framer-1ppbbhm, .framer-vGgPy .framer-1pl8peq, .framer-vGgPy .framer-ohfu02, .framer-vGgPy .framer-13jntmh, .framer-vGgPy .framer-cyn5nj, .framer-vGgPy .framer-52bmn1, .framer-vGgPy .framer-1g0s4uh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vGgPy .framer-k5wmom { aspect-ratio: 0.8770161290322581 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 228px); overflow: visible; position: relative; width: 1px; }\",\".framer-vGgPy .framer-13beze4 { aspect-ratio: 1.5092592592592593 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 331px); overflow: visible; position: relative; width: 500px; }\",\".framer-vGgPy .framer-o8apox { aspect-ratio: 1.5092592592592593 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 133px); overflow: visible; position: relative; width: 1px; }\",\".framer-vGgPy .framer-1w0d529 { aspect-ratio: 1.2021739130434783 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 166px); overflow: visible; position: relative; width: 1px; }\",\".framer-vGgPy .framer-nlng3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1136px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vGgPy .framer-1kx5doh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vGgPy .framer-14glhdh { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-vGgPy .framer-1kmylug { 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-start; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-1tnqc4x, .framer-vGgPy .framer-dn0ekt, .framer-vGgPy .framer-kwkhk5, .framer-vGgPy .framer-4xey2, .framer-vGgPy .framer-obbfdz, .framer-vGgPy .framer-18xgugr, .framer-vGgPy .framer-d9b97e, .framer-vGgPy .framer-1uj4edt, .framer-vGgPy .framer-1p4mnwk, .framer-vGgPy .framer-i6p7k3, .framer-vGgPy .framer-1kx5doh, .framer-vGgPy .framer-14glhdh, .framer-vGgPy .framer-1kmylug { gap: 0px; } .framer-vGgPy.framer-1tnqc4x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vGgPy.framer-1tnqc4x > :first-child, .framer-vGgPy .framer-1uj4edt > :first-child, .framer-vGgPy .framer-1p4mnwk > :first-child, .framer-vGgPy .framer-i6p7k3 > :first-child, .framer-vGgPy .framer-14glhdh > :first-child, .framer-vGgPy .framer-1kmylug > :first-child { margin-top: 0px; } .framer-vGgPy.framer-1tnqc4x > :last-child, .framer-vGgPy .framer-1uj4edt > :last-child, .framer-vGgPy .framer-1p4mnwk > :last-child, .framer-vGgPy .framer-i6p7k3 > :last-child, .framer-vGgPy .framer-14glhdh > :last-child, .framer-vGgPy .framer-1kmylug > :last-child { margin-bottom: 0px; } .framer-vGgPy .framer-dn0ekt > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-vGgPy .framer-dn0ekt > :first-child, .framer-vGgPy .framer-kwkhk5 > :first-child, .framer-vGgPy .framer-4xey2 > :first-child, .framer-vGgPy .framer-obbfdz > :first-child, .framer-vGgPy .framer-18xgugr > :first-child, .framer-vGgPy .framer-d9b97e > :first-child, .framer-vGgPy .framer-1kx5doh > :first-child { margin-left: 0px; } .framer-vGgPy .framer-dn0ekt > :last-child, .framer-vGgPy .framer-kwkhk5 > :last-child, .framer-vGgPy .framer-4xey2 > :last-child, .framer-vGgPy .framer-obbfdz > :last-child, .framer-vGgPy .framer-18xgugr > :last-child, .framer-vGgPy .framer-d9b97e > :last-child, .framer-vGgPy .framer-1kx5doh > :last-child { margin-right: 0px; } .framer-vGgPy .framer-kwkhk5 > *, .framer-vGgPy .framer-4xey2 > *, .framer-vGgPy .framer-obbfdz > *, .framer-vGgPy .framer-18xgugr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vGgPy .framer-d9b97e > *, .framer-vGgPy .framer-1kx5doh > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vGgPy .framer-1uj4edt > *, .framer-vGgPy .framer-1p4mnwk > *, .framer-vGgPy .framer-i6p7k3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy .framer-14glhdh > *, .framer-vGgPy .framer-1kmylug > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-vGgPy.framer-v-ygpijo .framer-kwkhk5, .framer-vGgPy.framer-v-1972ztn .framer-kwkhk5, .framer-vGgPy.framer-v-17cudyv .framer-kwkhk5, .framer-vGgPy.framer-v-1kfsxk7 .framer-kwkhk5, .framer-vGgPy.framer-v-1q0j46x .framer-kwkhk5, .framer-vGgPy.framer-v-1yq65dy .framer-kwkhk5 { cursor: pointer; }\",\".framer-vGgPy.framer-v-ygpijo .framer-1l53ay { order: 3; }\",\".framer-vGgPy.framer-v-ygpijo .framer-1uj4edt, .framer-vGgPy.framer-v-17cudyv .framer-1uj4edt { order: 2; }\",\".framer-vGgPy.framer-v-1972ztn .framer-1qxh14i, .framer-vGgPy.framer-v-1q0j46x .framer-1qxh14i { gap: 32px; justify-content: flex-start; }\",\".framer-vGgPy.framer-v-1972ztn .framer-mehgve { order: 1; }\",\".framer-vGgPy.framer-v-1972ztn .framer-1uj4edt { align-content: flex-start; align-items: flex-start; order: 0; }\",\".framer-vGgPy.framer-v-1972ztn .framer-1p4mnwk { gap: 8px; max-width: 552px; }\",\".framer-vGgPy.framer-v-1972ztn .framer-1kx5doh { height: 430px; order: 0; }\",\".framer-vGgPy.framer-v-1972ztn .framer-14glhdh { align-self: unset; height: 100%; }\",\".framer-vGgPy.framer-v-1972ztn .framer-1kmylug { height: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1972ztn .framer-1qxh14i, .framer-vGgPy.framer-v-1972ztn .framer-1p4mnwk { gap: 0px; } .framer-vGgPy.framer-v-1972ztn .framer-1qxh14i > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vGgPy.framer-v-1972ztn .framer-1qxh14i > :first-child { margin-left: 0px; } .framer-vGgPy.framer-v-1972ztn .framer-1qxh14i > :last-child { margin-right: 0px; } .framer-vGgPy.framer-v-1972ztn .framer-1p4mnwk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-vGgPy.framer-v-1972ztn .framer-1p4mnwk > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1972ztn .framer-1p4mnwk > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-17cudyv .framer-19xck3a { order: 0; }\",\".framer-vGgPy.framer-v-1xsy39.framer-1tnqc4x, .framer-vGgPy.framer-v-1kfsxk7.framer-1tnqc4x, .framer-vGgPy.framer-v-1q0j46x.framer-1tnqc4x, .framer-vGgPy.framer-v-1yq65dy.framer-1tnqc4x { width: 800px; }\",\".framer-vGgPy.framer-v-1xsy39 .framer-d9b97e, .framer-vGgPy.framer-v-1kfsxk7 .framer-d9b97e, .framer-vGgPy.framer-v-1q0j46x .framer-d9b97e, .framer-vGgPy.framer-v-1yq65dy .framer-d9b97e, .framer-vGgPy.framer-v-k6t8o4 .framer-d9b97e, .framer-vGgPy.framer-v-1yuk2l0 .framer-d9b97e, .framer-vGgPy.framer-v-imow2m .framer-d9b97e, .framer-vGgPy.framer-v-6x2f7n .framer-d9b97e { flex-direction: column; }\",\".framer-vGgPy.framer-v-1xsy39 .framer-5r9mue { order: 6; }\",\".framer-vGgPy.framer-v-1xsy39 .framer-1uj4edt, .framer-vGgPy.framer-v-1yq65dy .framer-1uj4edt, .framer-vGgPy.framer-v-k6t8o4 .framer-1uj4edt, .framer-vGgPy.framer-v-6x2f7n .framer-1uj4edt { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1xsy39 .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-1xsy39 .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-1xsy39 .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1xsy39 .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-1kfsxk7 .framer-4xey2, .framer-vGgPy.framer-v-1q0j46x .framer-obbfdz, .framer-vGgPy.framer-v-1yq65dy .framer-18xgugr { cursor: unset; }\",\".framer-vGgPy.framer-v-1kfsxk7 .framer-1uj4edt, .framer-vGgPy.framer-v-1yuk2l0 .framer-1uj4edt { flex: none; order: 2; width: 100%; }\",\".framer-vGgPy.framer-v-1kfsxk7 .framer-13beze4 { height: var(--framer-aspect-ratio-supported, 332px); order: 7; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1kfsxk7 .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-1kfsxk7 .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-1kfsxk7 .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1kfsxk7 .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-1q0j46x .framer-1uj4edt, .framer-vGgPy.framer-v-imow2m .framer-1uj4edt { align-content: flex-start; align-items: flex-start; flex: none; order: 0; width: 100%; }\",\".framer-vGgPy.framer-v-1q0j46x .framer-1p4mnwk, .framer-vGgPy.framer-v-imow2m .framer-1p4mnwk { gap: 8px; }\",\".framer-vGgPy.framer-v-1q0j46x .framer-7z8qps { order: 9; }\",\".framer-vGgPy.framer-v-1q0j46x .framer-1kx5doh, .framer-vGgPy.framer-v-imow2m .framer-1kx5doh { flex-direction: column; order: 0; }\",\".framer-vGgPy.framer-v-1q0j46x .framer-14glhdh, .framer-vGgPy.framer-v-imow2m .framer-14glhdh { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-vGgPy.framer-v-1q0j46x .framer-1kmylug, .framer-vGgPy.framer-v-imow2m .framer-1kmylug { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1q0j46x .framer-1qxh14i, .framer-vGgPy.framer-v-1q0j46x .framer-d9b97e, .framer-vGgPy.framer-v-1q0j46x .framer-1p4mnwk, .framer-vGgPy.framer-v-1q0j46x .framer-1kx5doh { gap: 0px; } .framer-vGgPy.framer-v-1q0j46x .framer-1qxh14i > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vGgPy.framer-v-1q0j46x .framer-1qxh14i > :first-child { margin-left: 0px; } .framer-vGgPy.framer-v-1q0j46x .framer-1qxh14i > :last-child { margin-right: 0px; } .framer-vGgPy.framer-v-1q0j46x .framer-d9b97e > *, .framer-vGgPy.framer-v-1q0j46x .framer-1kx5doh > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-1q0j46x .framer-d9b97e > :first-child, .framer-vGgPy.framer-v-1q0j46x .framer-1p4mnwk > :first-child, .framer-vGgPy.framer-v-1q0j46x .framer-1kx5doh > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1q0j46x .framer-d9b97e > :last-child, .framer-vGgPy.framer-v-1q0j46x .framer-1p4mnwk > :last-child, .framer-vGgPy.framer-v-1q0j46x .framer-1kx5doh > :last-child { margin-bottom: 0px; } .framer-vGgPy.framer-v-1q0j46x .framer-1p4mnwk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-vGgPy.framer-v-1yq65dy .framer-cffq5h { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1yq65dy .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-1yq65dy .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-1yq65dy .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1yq65dy .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-k6t8o4.framer-1tnqc4x, .framer-vGgPy.framer-v-1yuk2l0.framer-1tnqc4x, .framer-vGgPy.framer-v-imow2m.framer-1tnqc4x, .framer-vGgPy.framer-v-6x2f7n.framer-1tnqc4x, .framer-vGgPy.framer-v-ttittj.framer-1tnqc4x, .framer-vGgPy.framer-v-u3fi7q.framer-1tnqc4x, .framer-vGgPy.framer-v-1sfnwox.framer-1tnqc4x, .framer-vGgPy.framer-v-1xumg6w.framer-1tnqc4x { width: 320px; }\",\".framer-vGgPy.framer-v-k6t8o4 .framer-dn0ekt, .framer-vGgPy.framer-v-1yuk2l0 .framer-dn0ekt, .framer-vGgPy.framer-v-imow2m .framer-dn0ekt, .framer-vGgPy.framer-v-6x2f7n .framer-dn0ekt, .framer-vGgPy.framer-v-ttittj .framer-dn0ekt, .framer-vGgPy.framer-v-u3fi7q .framer-dn0ekt, .framer-vGgPy.framer-v-1sfnwox .framer-dn0ekt, .framer-vGgPy.framer-v-1xumg6w .framer-dn0ekt { width: 100%; }\",\".framer-vGgPy.framer-v-k6t8o4 .framer-kwkhk5, .framer-vGgPy.framer-v-ttittj .framer-kwkhk5 { cursor: pointer; flex: 1 0 0px; order: 5; width: 1px; }\",\".framer-vGgPy.framer-v-k6t8o4 .framer-1qxh14i, .framer-vGgPy.framer-v-1yuk2l0 .framer-1qxh14i, .framer-vGgPy.framer-v-6x2f7n .framer-1qxh14i { padding: 16px; }\",\".framer-vGgPy.framer-v-k6t8o4 .framer-5r9mue { height: var(--framer-aspect-ratio-supported, 333px); order: 6; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-k6t8o4 .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-k6t8o4 .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-k6t8o4 .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-k6t8o4 .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-1yuk2l0 .framer-4xey2, .framer-vGgPy.framer-v-imow2m .framer-obbfdz, .framer-vGgPy.framer-v-6x2f7n .framer-18xgugr, .framer-vGgPy.framer-v-1sfnwox .framer-obbfdz, .framer-vGgPy.framer-v-1xumg6w .framer-18xgugr { flex: 1 0 0px; width: 1px; }\",\".framer-vGgPy.framer-v-1yuk2l0 .framer-o8apox { flex: none; height: var(--framer-aspect-ratio-supported, 191px); order: 8; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-1yuk2l0 .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-1yuk2l0 .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-1yuk2l0 .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-1yuk2l0 .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-imow2m .framer-1qxh14i { gap: 32px; justify-content: flex-start; padding: 16px; }\",\".framer-vGgPy.framer-v-imow2m .framer-1w0d529 { flex: none; height: var(--framer-aspect-ratio-supported, 239px); order: 10; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-imow2m .framer-1qxh14i, .framer-vGgPy.framer-v-imow2m .framer-d9b97e, .framer-vGgPy.framer-v-imow2m .framer-1p4mnwk, .framer-vGgPy.framer-v-imow2m .framer-1kx5doh { gap: 0px; } .framer-vGgPy.framer-v-imow2m .framer-1qxh14i > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-vGgPy.framer-v-imow2m .framer-1qxh14i > :first-child { margin-left: 0px; } .framer-vGgPy.framer-v-imow2m .framer-1qxh14i > :last-child { margin-right: 0px; } .framer-vGgPy.framer-v-imow2m .framer-d9b97e > *, .framer-vGgPy.framer-v-imow2m .framer-1kx5doh > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-imow2m .framer-d9b97e > :first-child, .framer-vGgPy.framer-v-imow2m .framer-1p4mnwk > :first-child, .framer-vGgPy.framer-v-imow2m .framer-1kx5doh > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-imow2m .framer-d9b97e > :last-child, .framer-vGgPy.framer-v-imow2m .framer-1p4mnwk > :last-child, .framer-vGgPy.framer-v-imow2m .framer-1kx5doh > :last-child { margin-bottom: 0px; } .framer-vGgPy.framer-v-imow2m .framer-1p4mnwk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-vGgPy.framer-v-6x2f7n .framer-k5wmom { flex: none; height: var(--framer-aspect-ratio-supported, 329px); order: 5; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vGgPy.framer-v-6x2f7n .framer-d9b97e { gap: 0px; } .framer-vGgPy.framer-v-6x2f7n .framer-d9b97e > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vGgPy.framer-v-6x2f7n .framer-d9b97e > :first-child { margin-top: 0px; } .framer-vGgPy.framer-v-6x2f7n .framer-d9b97e > :last-child { margin-bottom: 0px; } }\",\".framer-vGgPy.framer-v-u3fi7q .framer-4xey2 { flex: 1 0 0px; padding: 10px 12px 12px 12px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-vGgPy[data-border=\"true\"]::after, .framer-vGgPy [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 691\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dQ7YdNgdv\":{\"layout\":[\"fixed\",\"auto\"]},\"ynTAZAz0u\":{\"layout\":[\"fixed\",\"auto\"]},\"l12QR8TxQ\":{\"layout\":[\"fixed\",\"auto\"]},\"UKHqvcNpE\":{\"layout\":[\"fixed\",\"auto\"]},\"m4Hler83f\":{\"layout\":[\"fixed\",\"auto\"]},\"A8gX16Cah\":{\"layout\":[\"fixed\",\"auto\"]},\"CC6nkQdO1\":{\"layout\":[\"fixed\",\"auto\"]},\"Dz9GpCeeb\":{\"layout\":[\"fixed\",\"auto\"]},\"x4DA7rBQQ\":{\"layout\":[\"fixed\",\"auto\"]},\"uLp_MGQ8L\":{\"layout\":[\"fixed\",\"auto\"]},\"DXO7d5oSc\":{\"layout\":[\"fixed\",\"auto\"]},\"guxAKpuQR\":{\"layout\":[\"fixed\",\"auto\"]},\"CvVtXWuVQ\":{\"layout\":[\"fixed\",\"auto\"]},\"QYJ9phDnB\":{\"layout\":[\"fixed\",\"auto\"]},\"YJEdnls16\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDv9oOyWf9=withCSS(Component,css,\"framer-vGgPy\");export default FramerDv9oOyWf9;FramerDv9oOyWf9.displayName=\"Tabs\";FramerDv9oOyWf9.defaultProps={height:691,width:1200};addPropertyControls(FramerDv9oOyWf9,{variant:{options:[\"YTMbFdR13\",\"dQ7YdNgdv\",\"ynTAZAz0u\",\"l12QR8TxQ\",\"UKHqvcNpE\",\"m4Hler83f\",\"A8gX16Cah\",\"CC6nkQdO1\",\"Dz9GpCeeb\",\"x4DA7rBQQ\",\"uLp_MGQ8L\",\"DXO7d5oSc\",\"guxAKpuQR\",\"CvVtXWuVQ\",\"QYJ9phDnB\",\"YJEdnls16\"],optionTitles:[\"Desktop What to Expect\",\"Desktop Rates\",\"Desktop Rebates\",\"Desktop Cancellations\",\"Tablet What to expect\",\"Tablet Rates\",\"Tablet Rebates\",\"Tablet Cancellations\",\"Mobile Expect Open\",\"Mobile Rates Open\",\"Mobile Rebates Open\",\"Mobile Cancellations Open\",\"Mobile Expect Closed\",\"Mobile Rates Closed\",\"Mobile Rebates Closed\",\"Mobile Cancellations Closed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDv9oOyWf9,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDv9oOyWf9\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"691\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dQ7YdNgdv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ynTAZAz0u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l12QR8TxQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UKHqvcNpE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m4Hler83f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A8gX16Cah\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CC6nkQdO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dz9GpCeeb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x4DA7rBQQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uLp_MGQ8L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DXO7d5oSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"guxAKpuQR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CvVtXWuVQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QYJ9phDnB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YJEdnls16\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dv9oOyWf9.map", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/KlvmoUUq2XBcgMdJKolu/T3Jjjs8CoIRLlWxqrDSf/dm3Aapkby.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={tJ2v6UHhj:{hover:true,pressed:true}};const cycleOrder=[\"tJ2v6UHhj\",\"fRv_EzQxV\",\"KvCnO2Mc_\",\"PC0cgNQGx\",\"Ott7ch_3e\"];const serializationHash=\"framer-Xqq1O\";const variantClassNames={fRv_EzQxV:\"framer-v-mbwfix\",KvCnO2Mc_:\"framer-v-1m2e6ia\",Ott7ch_3e:\"framer-v-1hw5ba6\",PC0cgNQGx:\"framer-v-1rrbuvp\",tJ2v6UHhj:\"framer-v-9vloel\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"tJ2v6UHhj\",Disabled:\"KvCnO2Mc_\",Error:\"Ott7ch_3e\",Loading:\"fRv_EzQxV\",Success:\"PC0cgNQGx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tJ2v6UHhj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tJ2v6UHhj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fRv_EzQxV\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"fRv_EzQxV\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9vloel\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"tJ2v6UHhj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-d8ffd045-4f4e-48ed-81c9-a4acd54a00f9, rgb(227, 145, 133))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"tJ2v6UHhj-hover\":{backgroundColor:\"var(--token-d6a68b3e-8d27-4d19-a727-8262f08c74cb, rgb(239, 177, 168))\"},KvCnO2Mc_:{opacity:.5},Ott7ch_3e:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"tJ2v6UHhj-hover\":{\"data-framer-name\":undefined},\"tJ2v6UHhj-pressed\":{\"data-framer-name\":undefined},fRv_EzQxV:{\"data-framer-name\":\"Loading\"},KvCnO2Mc_:{\"data-framer-name\":\"Disabled\"},Ott7ch_3e:{\"data-framer-name\":\"Error\"},PC0cgNQGx:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ew7d1g\",\"data-styles-preset\":\"dm3Aapkby\",children:\"Submit\"})}),className:\"framer-1vbfjnd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RsnRkwPHe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{Ott7ch_3e:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ott7ch_3e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},PC0cgNQGx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ew7d1g\",\"data-styles-preset\":\"dm3Aapkby\",children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhnda9\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"ZM90i9W90\",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-hvz5it\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ZdDwPMoLS\",style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)) /* {\"name\":\"Secondary 500\"} */ 7.208614864864882deg, var(--token-d8ffd045-4f4e-48ed-81c9-a4acd54a00f9, rgb(227, 145, 133)) /* {\"name\":\"Primary 500\"} */ 355.49239864864865deg)',mask:\"none\",WebkitMask:\"none\"},variants:{fRv_EzQxV:{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-1a166m3\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"W0dJYw0DX\",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-Xqq1O.framer-1jj1lz3, .framer-Xqq1O .framer-1jj1lz3 { display: block; }\",\".framer-Xqq1O.framer-9vloel { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-Xqq1O .framer-1vbfjnd { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Xqq1O .framer-1fhnda9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-Xqq1O .framer-hvz5it { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-Xqq1O .framer-1a166m3 { 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-Xqq1O.framer-9vloel { gap: 0px; } .framer-Xqq1O.framer-9vloel > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Xqq1O.framer-9vloel > :first-child { margin-left: 0px; } .framer-Xqq1O.framer-9vloel > :last-child { margin-right: 0px; } }\",\".framer-Xqq1O.framer-v-mbwfix.framer-9vloel, .framer-Xqq1O.framer-v-1m2e6ia.framer-9vloel, .framer-Xqq1O.framer-v-1rrbuvp.framer-9vloel, .framer-Xqq1O.framer-v-1hw5ba6.framer-9vloel { cursor: unset; }\",\".framer-Xqq1O.framer-v-mbwfix .framer-hvz5it { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fRv_EzQxV\":{\"layout\":[\"fixed\",\"fixed\"]},\"KvCnO2Mc_\":{\"layout\":[\"fixed\",\"fixed\"]},\"PC0cgNQGx\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ott7ch_3e\":{\"layout\":[\"fixed\",\"fixed\"]},\"nT9lJ1Iuc\":{\"layout\":[\"fixed\",\"fixed\"]},\"EJAqkM3P4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroNN_ZxCnP=withCSS(Component,css,\"framer-Xqq1O\");export default FrameroNN_ZxCnP;FrameroNN_ZxCnP.displayName=\"Button 3\";FrameroNN_ZxCnP.defaultProps={height:40,width:240};addPropertyControls(FrameroNN_ZxCnP,{variant:{options:[\"tJ2v6UHhj\",\"fRv_EzQxV\",\"KvCnO2Mc_\",\"PC0cgNQGx\",\"Ott7ch_3e\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroNN_ZxCnP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroNN_ZxCnP\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fRv_EzQxV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KvCnO2Mc_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PC0cgNQGx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ott7ch_3e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nT9lJ1Iuc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EJAqkM3P4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"240\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oNN_ZxCnP.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;KoPub Batang Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"KoPub Batang Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/14VGvv7NrVBJKLjCWoTdXoGs8U.woff2\"}]}];export const css=[\".framer-Z3dab .framer-styles-preset-zoz9z3:not(.rich-text-wrapper), .framer-Z3dab .framer-styles-preset-zoz9z3.rich-text-wrapper p { --framer-font-family: \\\"KoPub Batang Bold\\\", \\\"KoPub Batang Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, #476969); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",\"@media (max-width: 1199px) and (min-width: 810px) { .framer-Z3dab .framer-styles-preset-zoz9z3:not(.rich-text-wrapper), .framer-Z3dab .framer-styles-preset-zoz9z3.rich-text-wrapper p { --framer-font-family: \\\"KoPub Batang Bold\\\", \\\"KoPub Batang Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, #476969); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\",\"@media (max-width: 809px) and (min-width: 0px) { .framer-Z3dab .framer-styles-preset-zoz9z3:not(.rich-text-wrapper), .framer-Z3dab .framer-styles-preset-zoz9z3.rich-text-wrapper p { --framer-font-family: \\\"KoPub Batang Bold\\\", \\\"KoPub Batang Bold Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, #476969); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }\"];export const className=\"framer-Z3dab\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/zB28azteRiXZ3O8UgK6O/87ixJyxhiinYvArMLZqn/ED6sUGlHF.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/d1rh479Mf8EKyWeK0fzi/21wv0JzPNIGGdJAiVC48/oA6moorkc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sI1EHkUdMOUR7Vp6KVKS/8Ga6Q8HU97qryi56nwIz/shNW9Vn8Y.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/7Agttoy1KGlr6diHhZ35/XtzVzetWmMeQFiC0wubH/X_WqcGUmd.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"eYtVOajLw\",\"AKxM124bc\",\"Zvuhe2u3L\"];const serializationHash=\"framer-ZqE9j\";const variantClassNames={AKxM124bc:\"framer-v-1v34qtr\",eYtVOajLw:\"framer-v-jlaqa\",Zvuhe2u3L:\"framer-v-1nd3sfk\"};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={Desktop:\"eYtVOajLw\",Mobile:\"AKxM124bc\",Tablet:\"Zvuhe2u3L\"};const getProps=({backgroundColour,cardColour,height,id,width,...props})=>{return{...props,ulO3yYOe8:cardColour??props.ulO3yYOe8??\"var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"eYtVOajLw\",ZtBvhnnqB:backgroundColour??props.ZtBvhnnqB??\"var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255))\"};};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,ZtBvhnnqB,ulO3yYOe8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eYtVOajLw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jlaqa\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"eYtVOajLw\",ref:refBinding,style:{backgroundColor:ZtBvhnnqB,...style},...addPropertyOverrides({AKxM124bc:{\"data-framer-name\":\"Mobile\"},Zvuhe2u3L:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5so864\",layoutDependency:layoutDependency,layoutId:\"P0ubKratA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aprf9y\",\"data-framer-name\":\"Section Title\",layoutDependency:layoutDependency,layoutId:\"uzEifHFaD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-18f70qu\",\"data-styles-preset\":\"shNW9Vn8Y\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Team\"})}),className:\"framer-z1bhe5\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lI_l11ySC\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Meet our wonderful BE team.\"})}),className:\"framer-x97yd0\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QfkH0AMEk\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f9mf72\",\"data-framer-name\":\"Bird\",layoutDependency:layoutDependency,layoutId:\"p5rxCkFei\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-awdull\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"gpaWC3HVa\",svg:'<svg width=\"47\" height=\"44\" viewBox=\"0 0 47 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_4844_658\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"47\" height=\"44\">\\n<path d=\"M46.1567 17.7208L14.5781 0L0.00036753 25.9776L31.5789 43.6984L46.1567 17.7208Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_4844_658)\">\\n<path d=\"M21.5463 22.6226C16.6986 18.8521 12.9088 10.7777 14.543 4.30859C14.543 4.30859 21.0077 4.30902 29.0883 15.0817\" fill=\"#EFB1A8\"/>\\n<path d=\"M40.9698 18.2567C40.9698 18.2567 40.1468 15.6888 38.9586 14.7807C37.7703 13.8727 35.9099 13.2245 35.3195 13.2565C34.7281 13.2885 29.0422 15.4089 27.8863 16.7322C24.7773 18.8519 26.3932 16.2757 21.0069 22.6223C16.2722 28.2015 5.41699 26.9314 5.41699 26.9314C5.41699 26.9314 13.3356 31.9192 17.7955 32.2822C19.8262 32.4481 26.0011 30.5371 28.2548 28.7843C30.5084 27.0327 40.9666 18.2544 40.9666 18.2544L40.9698 18.2567Z\" fill=\"#EFB1A8\"/>\\n<path d=\"M19.4604 20.7012C19.7631 21.0286 20.2748 21.0483 20.6023 20.745C20.9298 20.4419 20.9492 19.9307 20.6454 19.6033L19.4604 20.7012ZM37.3905 14.5246L37.8344 13.8495L37.8322 13.8477L37.3905 14.5246ZM20.0529 20.1522C20.6454 19.6033 20.6465 19.6034 20.6465 19.6035C20.6465 19.6035 20.6465 19.6034 20.6454 19.6033C20.6454 19.603 20.6454 19.6024 20.6443 19.6013C20.6422 19.599 20.6389 19.5954 20.6335 19.5902C20.6238 19.5797 20.6098 19.5634 20.5894 19.5412C20.5506 19.4968 20.4903 19.4291 20.4138 19.3395C20.2597 19.1602 20.0367 18.8931 19.7652 18.5479C19.2234 17.857 18.493 16.8565 17.7443 15.6248C16.2404 13.1502 14.6977 9.79744 14.4133 6.17639L12.8028 6.30287C13.1142 10.2778 14.7936 13.8813 16.3632 16.464C17.1518 17.761 17.921 18.8144 18.4941 19.5453C18.7806 19.9109 19.0198 20.1966 19.1878 20.3924C19.2719 20.4904 19.3387 20.5659 19.385 20.6177C19.4076 20.6436 19.4259 20.6636 19.4388 20.6776C19.4453 20.6846 19.4496 20.6901 19.4539 20.694C19.455 20.6959 19.4571 20.6975 19.4582 20.6987C19.4582 20.6993 19.4593 20.6998 19.4593 20.7002C19.4593 20.7001 19.4593 20.7004 19.4593 20.7002C19.4604 20.7004 19.4604 20.7012 20.0529 20.1522ZM15.7643 5.33979C19.2169 7.11901 24.9329 10.9694 26.119 17.2377L27.7069 16.9372C26.37 9.87479 20.0195 5.71457 16.5043 3.90335L15.7643 5.33979ZM26.119 17.2377C26.5575 19.5481 26.0005 21.09 25.1775 22.1421C24.3297 23.2261 23.1382 23.8662 22.2107 24.2229L22.7902 25.7312C23.8578 25.3206 25.3509 24.5432 26.4508 23.1376C27.5744 21.7005 28.2272 19.6812 27.7069 16.9372L26.119 17.2377ZM22.2559 24.2733C22.8032 22.7273 24.2672 19.8559 28.1023 16.9162L27.1198 15.6337C23.0218 18.7747 21.379 21.9105 20.7326 23.7334L22.2559 24.2733ZM28.1023 16.9162C30.984 14.707 33.1094 14.2729 34.5023 14.3527C35.8985 14.4326 36.6871 15.0304 36.9499 15.2015L37.8322 13.8477C37.5607 13.6707 36.4555 12.846 34.595 12.7394C32.7292 12.6325 30.232 13.2476 27.1198 15.6337L28.1023 16.9162ZM36.9467 15.1996C37.9852 15.8821 38.7371 16.8678 39.2381 17.7143C39.4848 18.1333 39.6636 18.507 39.7799 18.7736C39.8381 18.9067 39.8801 19.0122 39.907 19.0824C39.92 19.1174 39.9297 19.1435 39.9361 19.1598C39.9383 19.1679 39.9404 19.1736 39.9415 19.1766C39.9426 19.1781 39.9426 19.179 39.9426 19.1792C39.9426 19.1791 39.9426 19.1782 39.9426 19.1781C39.9426 19.178 39.9415 19.1778 40.7075 18.9196C41.4734 18.6615 41.4734 18.6611 41.4734 18.6609C41.4734 18.6611 41.4734 18.6608 41.4734 18.6609C41.4723 18.6606 41.4723 18.6596 41.4723 18.6592C41.4723 18.6582 41.4712 18.6572 41.4712 18.6559C41.4702 18.6533 41.4691 18.65 41.468 18.6462C41.4648 18.6383 41.4615 18.6279 41.4572 18.6147C41.4475 18.5885 41.4346 18.552 41.4163 18.5063C41.3818 18.4149 41.3301 18.286 41.2612 18.1281C41.1244 17.8129 40.9164 17.3785 40.6288 16.8925C40.06 15.9291 39.154 14.7172 37.8344 13.8495L36.9467 15.1996ZM22.2107 24.2229C22.173 24.2373 22.1622 24.2314 22.174 24.2334C22.1848 24.2354 22.202 24.2423 22.2182 24.2583C22.2354 24.2744 22.243 24.2927 22.2462 24.3053C22.2473 24.3109 22.2473 24.3123 22.2473 24.3083C22.2473 24.3042 22.2484 24.2927 22.2559 24.2733L20.7326 23.7334C20.515 24.3472 20.654 24.9938 21.0957 25.4206C21.5363 25.8463 22.1859 25.9637 22.7902 25.7312L22.2107 24.2229ZM14.4133 6.17639C14.3573 5.46205 15.0403 4.96705 15.7643 5.33979L16.5043 3.90335C14.743 2.99553 12.6402 4.2303 12.8028 6.30287L14.4133 6.17639Z\" fill=\"#EFB1A8\"/>\\n<path d=\"M5.00879 27.0661C5.00879 27.0661 15.2644 34.9108 24.4773 31.2362C30.4842 28.8393 31.8308 25.7165 36.2788 21.9408C40.7258 18.1651 43.1066 19.3464 43.9943 19.598\" stroke=\"#EFB1A8\" stroke-width=\"1.5\" stroke-miterlimit=\"10\" stroke-linecap=\"round\"/>\\n<path d=\"M35.2487 18.0646C35.6343 18.2813 36.4531 18.0549 36.6814 17.6494C36.9087 17.2437 36.4638 16.6907 36.0017 16.5784C35.5686 16.4733 35.1894 16.5322 34.961 16.9379C34.7337 17.3436 34.8619 17.848 35.2487 18.0646Z\" fill=\"#EFB1A8\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9oqvrp-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tQOik_HJh-container\",nodeId:\"tQOik_HJh\",rendersWithMotion:true,scopeId:\"YNeFpe9Ip\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-d6a68b3e-8d27-4d19-a727-8262f08c74cb, rgb(239, 177, 168))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",id:\"tQOik_HJh\",intervalControl:1.5,itemAmount:3,layoutId:\"tQOik_HJh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-d6a68b3e-8d27-4d19-a727-8262f08c74cb, rgb(239, 177, 168))\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-50,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b91wmy\",\"data-border\":true,\"data-framer-name\":\"Rebecca\",layoutDependency:layoutDependency,layoutId:\"W_2MbzIQI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ulO3yYOe8,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:813.3333548793092,intrinsicWidth:926.6666912149507,pixelHeight:732,pixelWidth:834,sizes:\"248px\",src:\"https://framerusercontent.com/images/2LVmNweA9EQk8s4tjohpIfz1M.png\",srcSet:\"https://framerusercontent.com/images/2LVmNweA9EQk8s4tjohpIfz1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/2LVmNweA9EQk8s4tjohpIfz1M.png 834w\"},className:\"framer-exn2je\",\"data-framer-name\":\"Rebecca\",layoutDependency:layoutDependency,layoutId:\"BEur3mM2k\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cs3dcs\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Y2O1tjDqF\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1462abo\",\"data-framer-name\":\"Frame 3128143\",layoutDependency:layoutDependency,layoutId:\"A118Rs62L\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1rsuu0l\",\"data-styles-preset\":\"ED6sUGlHF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rebecca Fitzpatrick\"})}),className:\"framer-1qy9cru\",\"data-framer-name\":\"Elizabeth Cole\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fbAuZaR8L\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoz9z3\",\"data-styles-preset\":\"X_WqcGUmd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)))\"},children:\"Chief Psychologist & Clinical Director\"})}),className:\"framer-19ov365\",\"data-framer-name\":\"Clinical Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HG2si_aJU\",style:{\"--extracted-r6o4lv\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Rebecca (GAICD, FAIM) has over 20 years experience in mental health. She blends psychology and business acumen to lead meaningful change across organisations. Having held Board and Executive leadership roles, her focus is on building strong teams, improving client outcomes, and driving innovation to make mental health services more effective, accessible, and sustainable.\"})}),className:\"framer-1ha1r0w\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RCOwuYsvr\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rwkuvr\",\"data-border\":true,\"data-framer-name\":\"Anita\",layoutDependency:layoutDependency,layoutId:\"XhJLwJ5M7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ulO3yYOe8,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:454.5,pixelHeight:780,pixelWidth:909,sizes:\"246px\",src:\"https://framerusercontent.com/images/7uPq6inbuhqzo7OJiExt2TX0FU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7uPq6inbuhqzo7OJiExt2TX0FU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7uPq6inbuhqzo7OJiExt2TX0FU.png 909w\"},className:\"framer-tnj0lr\",\"data-framer-name\":\"Anita\",layoutDependency:layoutDependency,layoutId:\"QPt9MNhx0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1778go5\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"qFsbfqF2r\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wne76o\",\"data-framer-name\":\"Frame 3128143\",layoutDependency:layoutDependency,layoutId:\"wHVYi82Sv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1rsuu0l\",\"data-styles-preset\":\"ED6sUGlHF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Anita Wong\"})}),className:\"framer-bbcydv\",\"data-framer-name\":\"Natasha Lorie\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WSB0xJsKt\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoz9z3\",\"data-styles-preset\":\"X_WqcGUmd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)))\"},children:\"Counsellor & Holistic Practitioner\"})}),className:\"framer-1js8i23\",\"data-framer-name\":\"Clinical Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"avgGMRVJr\",style:{\"--extracted-r6o4lv\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Anita is an experienced counsellor who has been using body-based tools, such as yoga, alongside more traditional therapies to help guide and support her clients to live fulfilling and balanced lives in line with their values. She brings a grounded, person-centred approach to tailor strategies and insights for every client, ensuring a uniquely supportive experience.\"})}),className:\"framer-ybuqlf\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xwtDndiS6\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1llu3gx\",\"data-border\":true,\"data-framer-name\":\"Lucy\",layoutDependency:layoutDependency,layoutId:\"uthX5eoU7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ulO3yYOe8,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:345,intrinsicWidth:418.5,pixelHeight:690,pixelWidth:837,sizes:\"248px\",src:\"https://framerusercontent.com/images/5LYakcyN7Z7hAYjE10IqXqXBdh8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5LYakcyN7Z7hAYjE10IqXqXBdh8.png?scale-down-to=512 512w,https://framerusercontent.com/images/5LYakcyN7Z7hAYjE10IqXqXBdh8.png 837w\"},className:\"framer-1ah7ak2\",\"data-framer-name\":\"Lucy Tyler\",layoutDependency:layoutDependency,layoutId:\"Gojep_63O\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5khr41\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yVxm3H8FH\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yripd8\",\"data-framer-name\":\"Frame 3128143\",layoutDependency:layoutDependency,layoutId:\"S5xQ_ilWT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1rsuu0l\",\"data-styles-preset\":\"ED6sUGlHF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lucy Tyler\"})}),className:\"framer-crzgkm\",\"data-framer-name\":\"Elizabeth Cole\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RE4SCcEgg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoz9z3\",\"data-styles-preset\":\"X_WqcGUmd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)))\"},children:\"Administrator\"})}),className:\"framer-14ykghq\",\"data-framer-name\":\"Clinical Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pouCUR7dJ\",style:{\"--extracted-r6o4lv\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Lucy brings her passion for organisation and a love for staying active to our psychology clinic. With experience in real estate and running a coffee shop, she ensures seamless support while embracing a vibrant, health-conscious lifestyle. Lucy\u2019s dynamic approach and dedication make her an invaluable asset to the team.\"})}),className:\"framer-bjxxp7\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OehON6SO4\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zu4yva\",\"data-border\":true,\"data-framer-name\":\"Laura\",layoutDependency:layoutDependency,layoutId:\"eUrVSKWw0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ulO3yYOe8,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:366,intrinsicWidth:417.5,pixelHeight:732,pixelWidth:835,sizes:\"233px\",src:\"https://framerusercontent.com/images/y5EGOc9VQ2BBbEZrVIUGhggh3Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/y5EGOc9VQ2BBbEZrVIUGhggh3Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/y5EGOc9VQ2BBbEZrVIUGhggh3Q.png 835w\"},className:\"framer-1eb0o2j\",\"data-framer-name\":\"Frame_3124737\",layoutDependency:layoutDependency,layoutId:\"vLzNSHQka\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12r4n2k\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"VgmHS9Fi4\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14j9k57\",\"data-framer-name\":\"Frame 3128143\",layoutDependency:layoutDependency,layoutId:\"uRGXQTdX2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1rsuu0l\",\"data-styles-preset\":\"ED6sUGlHF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Laura Willox\"})}),className:\"framer-1fiq3aj\",\"data-framer-name\":\"Stacy Lee\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iPQXmMrBR\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoz9z3\",\"data-styles-preset\":\"X_WqcGUmd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)))\"},children:\"CEO and Founder\"})}),className:\"framer-1o72ri4\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n7ELxoVcO\",style:{\"--extracted-r6o4lv\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\"Laura is all about helping people navigate the twists and turns of life. Having started a legal practice in 2008, she and her team offer practical support with a no-nonsense approach. Now, her passion for helping others is driving her to look at the person holistically, starting with mental health. This way, she can ensure her clients are supported every step of the way.\"})}),className:\"framer-19zhw9j\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JrHsif2Nl\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yx5e5q\",\"data-border\":true,\"data-framer-name\":\"Corrinna\",layoutDependency:layoutDependency,layoutId:\"tNkdWg6GQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9a0dc050-6817-41f8-ab01-bc354affd10f, rgb(247, 229, 227))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:ulO3yYOe8,borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:378,intrinsicWidth:454.5,pixelHeight:756,pixelWidth:909,sizes:\"246px\",src:\"https://framerusercontent.com/images/q8BOut77WabGpLSDnkE3ZcE7V4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/q8BOut77WabGpLSDnkE3ZcE7V4.png?scale-down-to=512 512w,https://framerusercontent.com/images/q8BOut77WabGpLSDnkE3ZcE7V4.png 909w\"},className:\"framer-teu3oq\",\"data-framer-name\":\"Corrinne Rice\",layoutDependency:layoutDependency,layoutId:\"NjxrPJa7L\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e70j9x\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"IE1RL0Ggz\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rgfl2p\",\"data-framer-name\":\"Frame 3128143\",layoutDependency:layoutDependency,layoutId:\"ZdBoIQsn7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1rsuu0l\",\"data-styles-preset\":\"ED6sUGlHF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Corrinna Rice\"})}),className:\"framer-ardi9t\",\"data-framer-name\":\"Natasha Lorie\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"To8UQkuCb\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoz9z3\",\"data-styles-preset\":\"X_WqcGUmd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105)))\"},children:\"Finance Manager\"})}),className:\"framer-a1d01r\",\"data-framer-name\":\"Clinical Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b3BgYoOtn\",style:{\"--extracted-r6o4lv\":\"var(--token-9d67821c-613d-4022-9f9d-565a9ce9381a, rgb(71, 105, 105))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jntbdf\",\"data-styles-preset\":\"oA6moorkc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67)))\"},children:\" Corrinna brings a wealth of experience as our Financial Manager from the worlds of law, engineering, and oil & gas to our psychology clinic. With over 15 years of experience turning numbers into success stories, she\u2019s now on a mission to keep our clinic running smoothly. Corrinna\u2019s excited to crunch the numbers and help us help you \u2013 one balance sheet at a time.\"})}),className:\"framer-mx3b9n\",\"data-framer-name\":\"Registered Psychologist\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gxO6nRwrJ\",style:{\"--extracted-r6o4lv\":\"var(--token-4a4da850-bc9c-4659-addd-7f397cc1aa16, rgb(51, 62, 67))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({AKxM124bc:{arrowOptions:{arrowFill:\"var(--token-d6a68b3e-8d27-4d19-a727-8262f08c74cb, rgb(239, 177, 168))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},itemAmount:1},Zvuhe2u3L:{itemAmount:2,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-d6a68b3e-8d27-4d19-a727-8262f08c74cb, rgb(239, 177, 168))\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-50,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZqE9j.framer-1b21ltt, .framer-ZqE9j .framer-1b21ltt { display: block; }\",\".framer-ZqE9j.framer-jlaqa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 24px 60px 24px; position: relative; width: 1248px; }\",\".framer-ZqE9j .framer-5so864 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-aprf9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-z1bhe5, .framer-ZqE9j .framer-x97yd0, .framer-ZqE9j .framer-1qy9cru, .framer-ZqE9j .framer-19ov365, .framer-ZqE9j .framer-1ha1r0w, .framer-ZqE9j .framer-bbcydv, .framer-ZqE9j .framer-1js8i23, .framer-ZqE9j .framer-ybuqlf, .framer-ZqE9j .framer-crzgkm, .framer-ZqE9j .framer-14ykghq, .framer-ZqE9j .framer-bjxxp7, .framer-ZqE9j .framer-1fiq3aj, .framer-ZqE9j .framer-1o72ri4, .framer-ZqE9j .framer-19zhw9j, .framer-ZqE9j .framer-ardi9t, .framer-ZqE9j .framer-a1d01r, .framer-ZqE9j .framer-mx3b9n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZqE9j .framer-1f9mf72 { flex: none; height: 44px; left: 390px; overflow: hidden; position: absolute; top: 10px; width: 47px; z-index: 1; }\",\".framer-ZqE9j .framer-awdull { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ZqE9j .framer-9oqvrp-container { flex: none; height: 620px; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-1b91wmy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZqE9j .framer-exn2je { aspect-ratio: 1.139344262295082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 218px); max-width: 248px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-cs3dcs, .framer-ZqE9j .framer-1778go5, .framer-ZqE9j .framer-5khr41, .framer-ZqE9j .framer-12r4n2k, .framer-ZqE9j .framer-e70j9x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 350px; overflow: visible; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-1462abo, .framer-ZqE9j .framer-1wne76o, .framer-ZqE9j .framer-1yripd8, .framer-ZqE9j .framer-14j9k57, .framer-ZqE9j .framer-1rgfl2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-1rwkuvr, .framer-ZqE9j .framer-1llu3gx, .framer-ZqE9j .framer-yx5e5q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZqE9j .framer-tnj0lr, .framer-ZqE9j .framer-teu3oq { aspect-ratio: 1.2023809523809523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 205px); max-width: 246px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-1ah7ak2 { aspect-ratio: 1.2130434782608697 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); max-width: 248px; overflow: visible; position: relative; width: 100%; }\",\".framer-ZqE9j .framer-zu4yva { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZqE9j .framer-1eb0o2j { aspect-ratio: 1.1407103825136613 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 204px); max-width: 233px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZqE9j.framer-jlaqa, .framer-ZqE9j .framer-5so864, .framer-ZqE9j .framer-aprf9y, .framer-ZqE9j .framer-1b91wmy, .framer-ZqE9j .framer-cs3dcs, .framer-ZqE9j .framer-1462abo, .framer-ZqE9j .framer-1rwkuvr, .framer-ZqE9j .framer-1778go5, .framer-ZqE9j .framer-1wne76o, .framer-ZqE9j .framer-1llu3gx, .framer-ZqE9j .framer-5khr41, .framer-ZqE9j .framer-1yripd8, .framer-ZqE9j .framer-zu4yva, .framer-ZqE9j .framer-12r4n2k, .framer-ZqE9j .framer-14j9k57, .framer-ZqE9j .framer-yx5e5q, .framer-ZqE9j .framer-e70j9x, .framer-ZqE9j .framer-1rgfl2p { gap: 0px; } .framer-ZqE9j.framer-jlaqa > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-ZqE9j.framer-jlaqa > :first-child, .framer-ZqE9j .framer-5so864 > :first-child, .framer-ZqE9j .framer-aprf9y > :first-child, .framer-ZqE9j .framer-1b91wmy > :first-child, .framer-ZqE9j .framer-cs3dcs > :first-child, .framer-ZqE9j .framer-1462abo > :first-child, .framer-ZqE9j .framer-1rwkuvr > :first-child, .framer-ZqE9j .framer-1778go5 > :first-child, .framer-ZqE9j .framer-1wne76o > :first-child, .framer-ZqE9j .framer-1llu3gx > :first-child, .framer-ZqE9j .framer-5khr41 > :first-child, .framer-ZqE9j .framer-1yripd8 > :first-child, .framer-ZqE9j .framer-zu4yva > :first-child, .framer-ZqE9j .framer-12r4n2k > :first-child, .framer-ZqE9j .framer-14j9k57 > :first-child, .framer-ZqE9j .framer-yx5e5q > :first-child, .framer-ZqE9j .framer-e70j9x > :first-child, .framer-ZqE9j .framer-1rgfl2p > :first-child { margin-top: 0px; } .framer-ZqE9j.framer-jlaqa > :last-child, .framer-ZqE9j .framer-5so864 > :last-child, .framer-ZqE9j .framer-aprf9y > :last-child, .framer-ZqE9j .framer-1b91wmy > :last-child, .framer-ZqE9j .framer-cs3dcs > :last-child, .framer-ZqE9j .framer-1462abo > :last-child, .framer-ZqE9j .framer-1rwkuvr > :last-child, .framer-ZqE9j .framer-1778go5 > :last-child, .framer-ZqE9j .framer-1wne76o > :last-child, .framer-ZqE9j .framer-1llu3gx > :last-child, .framer-ZqE9j .framer-5khr41 > :last-child, .framer-ZqE9j .framer-1yripd8 > :last-child, .framer-ZqE9j .framer-zu4yva > :last-child, .framer-ZqE9j .framer-12r4n2k > :last-child, .framer-ZqE9j .framer-14j9k57 > :last-child, .framer-ZqE9j .framer-yx5e5q > :last-child, .framer-ZqE9j .framer-e70j9x > :last-child, .framer-ZqE9j .framer-1rgfl2p > :last-child { margin-bottom: 0px; } .framer-ZqE9j .framer-5so864 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZqE9j .framer-aprf9y > *, .framer-ZqE9j .framer-cs3dcs > *, .framer-ZqE9j .framer-1778go5 > *, .framer-ZqE9j .framer-5khr41 > *, .framer-ZqE9j .framer-12r4n2k > *, .framer-ZqE9j .framer-e70j9x > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZqE9j .framer-1b91wmy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZqE9j .framer-1462abo > *, .framer-ZqE9j .framer-1wne76o > *, .framer-ZqE9j .framer-1yripd8 > *, .framer-ZqE9j .framer-14j9k57 > *, .framer-ZqE9j .framer-1rgfl2p > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ZqE9j .framer-1rwkuvr > *, .framer-ZqE9j .framer-1llu3gx > *, .framer-ZqE9j .framer-yx5e5q > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZqE9j .framer-zu4yva > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } }\",\".framer-ZqE9j.framer-v-1v34qtr.framer-jlaqa { width: 390px; }\",\".framer-ZqE9j.framer-v-1v34qtr .framer-aprf9y { gap: 8px; }\",\".framer-ZqE9j.framer-v-1v34qtr .framer-z1bhe5 { order: 0; }\",\".framer-ZqE9j.framer-v-1v34qtr .framer-x97yd0 { order: 2; }\",\".framer-ZqE9j.framer-v-1v34qtr .framer-1f9mf72 { left: unset; order: 1; position: relative; top: unset; }\",\".framer-ZqE9j.framer-v-1v34qtr .framer-9oqvrp-container { height: 660px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZqE9j.framer-v-1v34qtr .framer-aprf9y { gap: 0px; } .framer-ZqE9j.framer-v-1v34qtr .framer-aprf9y > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ZqE9j.framer-v-1v34qtr .framer-aprf9y > :first-child { margin-top: 0px; } .framer-ZqE9j.framer-v-1v34qtr .framer-aprf9y > :last-child { margin-bottom: 0px; } }\",\".framer-ZqE9j.framer-v-1nd3sfk.framer-jlaqa { width: 810px; }\",\".framer-ZqE9j.framer-v-1nd3sfk .framer-9oqvrp-container { height: 650px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-ZqE9j[data-border=\"true\"]::after, .framer-ZqE9j [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 864\n * @framerIntrinsicWidth 1248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AKxM124bc\":{\"layout\":[\"fixed\",\"auto\"]},\"Zvuhe2u3L\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ZtBvhnnqB\":\"backgroundColour\",\"ulO3yYOe8\":\"cardColour\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYNeFpe9Ip=withCSS(Component,css,\"framer-ZqE9j\");export default FramerYNeFpe9Ip;FramerYNeFpe9Ip.displayName=\"Our Team Section\";FramerYNeFpe9Ip.defaultProps={height:864,width:1248};addPropertyControls(FramerYNeFpe9Ip,{variant:{options:[\"eYtVOajLw\",\"AKxM124bc\",\"Zvuhe2u3L\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum},ZtBvhnnqB:{defaultValue:'var(--token-295fcb57-9098-4915-ada6-8a5330ed476a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Background colour\",type:ControlType.Color},ulO3yYOe8:{defaultValue:'var(--token-f03682fa-cefc-4226-837d-04820d5af0bb, rgb(252, 247, 245)) /* {\"name\":\"Primary 100\"} */',title:\"Card Colour\",type:ControlType.Color}});addFonts(FramerYNeFpe9Ip,[{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\"}]},...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYNeFpe9Ip\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AKxM124bc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zvuhe2u3L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"ZtBvhnnqB\\\":\\\"backgroundColour\\\",\\\"ulO3yYOe8\\\":\\\"cardColour\\\"}\",\"framerIntrinsicHeight\":\"864\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1248\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YNeFpe9Ip.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.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://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.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://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.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://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.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://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.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://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-08WaG .framer-styles-preset-nb600i:not(.rich-text-wrapper), .framer-08WaG .framer-styles-preset-nb600i.rich-text-wrapper p { --framer-font-family: \"Inter\", 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-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-08WaG .framer-styles-preset-nb600i:not(.rich-text-wrapper), .framer-08WaG .framer-styles-preset-nb600i.rich-text-wrapper p { --framer-font-family: \"Inter\", 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-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-08WaG .framer-styles-preset-nb600i:not(.rich-text-wrapper), .framer-08WaG .framer-styles-preset-nb600i.rich-text-wrapper p { --framer-font-family: \"Inter\", 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-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-08WaG\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "createId", "HideElementComponent", "Y", "ref", "p", "HIDDEN_CLASS_NAME", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "createId", "u", "CANVAS_HIDDEN_CLASS_NAME", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "DataInput", "props", "type", "isCanvas", "RenderTarget", "isOptimizing", "window", "value", "setValue", "ye", "text", "ue", "utms", "key", "_get", "p", "HiddenComponentLabel", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1k69kro", "args", "onTap1exkd2s", "onTap1devt9j", "onTap1qn31t4", "onTap1cfb2bi", "onTaprk97pf", "onTapqnedxk", "onTapzu0l38", "onTap9m66vm", "onTaplionp1", "onTap1h4aq24", "onTap1om51vk", "onTapl1rbh5", "onTap1o325xa", "onTap1flcj2v", "onTapbfyugw", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "LayoutGroup", "u", "RichText2", "SVG", "Image2", "Link", "css", "FramerDv9oOyWf9", "withCSS", "Dv9oOyWf9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FrameroNN_ZxCnP", "withCSS", "oNN_ZxCnP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "createGeneratorEasing", "e", "t", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "o", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "dispatchViewEvent", "se", "i", "s", "__rest", "inView$1", "o", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundColour", "cardColour", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ZtBvhnnqB", "ulO3yYOe8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "css", "FramerYNeFpe9Ip", "withCSS", "YNeFpe9Ip_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className"]
}
