{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/nPpaqUwiZw9qXDXlRf0o/a6wCzxpzhApy4kdrIV5A/OPar1ef2O.js", "ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/54ksz3xIuN0NuPob9sWP/duQiXUn4MuH9lBIB9T40/wSHz38mMF.js", "ssg:https://framerusercontent.com/modules/aoTEQYiKEQKW4P9TdVQ6/nn1kO0j4uYmJP0090Qo3/HqjQpw7TW.js"],
  "sourcesContent": ["// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bricolage Grotesque-700\",\"GF;Bricolage Grotesque-800\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2\",weight:\"700\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvZvlyMgvs-wJDtw.woff2\",weight:\"800\"}]}];export const css=['.framer-PjfzW .framer-styles-preset-iiakrx:not(.rich-text-wrapper), .framer-PjfzW .framer-styles-preset-iiakrx.rich-text-wrapper p { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: -0.02em; --framer-line-height: 90%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #7a2e0e; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-PjfzW\";\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\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"A0JqNaqYm\",\"s4xoizrsu\",\"uk8Gfn7q_\",\"LQWdzclIA\",\"m0dha6yG7\",\"o8IujT2ag\",\"W8Cf4EPEm\",\"elUXwh3K4\",\"YzdUaknGH\",\"Uz9OMVlKs\",\"HNgGBACP_\",\"MCFrsR6__\"];const serializationHash=\"framer-1XsT3\";const variantClassNames={A0JqNaqYm:\"framer-v-tagx0t\",elUXwh3K4:\"framer-v-1cg0ts\",HNgGBACP_:\"framer-v-1jiew9t\",LQWdzclIA:\"framer-v-127jw6x\",m0dha6yG7:\"framer-v-2advef\",MCFrsR6__:\"framer-v-133nqd0\",o8IujT2ag:\"framer-v-5kdoo2\",s4xoizrsu:\"framer-v-jp6yv\",uk8Gfn7q_:\"framer-v-udp39g\",Uz9OMVlKs:\"framer-v-1jkl1sa\",W8Cf4EPEm:\"framer-v-109i7cc\",YzdUaknGH:\"framer-v-vo8s4s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Arrow Right\":\"LQWdzclIA\",\"Menu / Dots\":\"m0dha6yG7\",\"Menu / Hamburger\":\"o8IujT2ag\",Calendar:\"W8Cf4EPEm\",Close:\"elUXwh3K4\",Facebook:\"Uz9OMVlKs\",Instagram:\"HNgGBACP_\",Mail:\"A0JqNaqYm\",Phone:\"s4xoizrsu\",Play:\"YzdUaknGH\",WhatsApp:\"uk8Gfn7q_\",YouTube:\"MCFrsR6__\"};const getProps=({colour,height,id,width,...props})=>{return{...props,jSYpUJHuN:colour??props.jSYpUJHuN??\"var(--token-6cee9333-66e6-4829-a473-f1dc767e40d6, rgb(242, 242, 217))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"A0JqNaqYm\"};};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,jSYpUJHuN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A0JqNaqYm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tagx0t\",className,classNames),\"data-framer-name\":\"Mail\",layoutDependency:layoutDependency,layoutId:\"A0JqNaqYm\",ref:refBinding,style:{...style},...addPropertyOverrides({elUXwh3K4:{\"data-framer-name\":\"Close\"},HNgGBACP_:{\"data-framer-name\":\"Instagram\"},LQWdzclIA:{\"data-framer-name\":\"Arrow Right\"},m0dha6yG7:{\"data-framer-name\":\"Menu / Dots\"},MCFrsR6__:{\"data-framer-name\":\"YouTube\"},o8IujT2ag:{\"data-framer-name\":\"Menu / Hamburger\"},s4xoizrsu:{\"data-framer-name\":\"Phone\"},uk8Gfn7q_:{\"data-framer-name\":\"WhatsApp\"},Uz9OMVlKs:{\"data-framer-name\":\"Facebook\"},W8Cf4EPEm:{\"data-framer-name\":\"Calendar\"},YzdUaknGH:{\"data-framer-name\":\"Play\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h0wzzw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HdqGfB1Ym-container\",nodeId:\"HdqGfB1Ym\",rendersWithMotion:true,scopeId:\"wSHz38mMF\",children:/*#__PURE__*/_jsx(SVG,{customColor:jSYpUJHuN,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Send-Email--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Send Email Streamline Icon: https://streamlinehq.com</desc><g id=\"send-email--mail-send-email-paper-airplane\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M4.8682083333333335 12.829791666666667c-1.9881916666666666 -1.4134583333333335 -3.1144875 -2.3484583333333338 -3.7453875 -2.9311666666666665 -0.3457291666666667 -0.31933333333333336 -0.5275083333333334 -0.7548333333333334 -0.49385416666666665 -1.2034583333333335 0.033683333333333336 -0.44899999999999995 0.27887500000000004 -0.852875 0.6706333333333334 -1.1160833333333333 1.5000833333333334 -1.0078333333333334 4.4138166666666665 -2.543041666666667 7.490191666666667 -3.9171750000000003 3.0692083333333335 -1.3709458333333333 6.381375 -2.618375 8.670625000000001 -3.0122375000000003 1.1195833333333334 -0.19262083333333332 1.986 0.736275 1.9098333333333333 1.7857375000000002 -0.15970833333333334 2.2007583333333334 -0.6654166666666667 5.388508333333334 -1.3140416666666668 8.351758333333333 -0.642875 2.937125 -1.447875 5.758541666666667 -2.2360833333333336 7.166333333333334 -0.4305833333333334 0.7690833333333335 -1.326875 0.884625 -1.9857916666666668 0.5479583333333333 -0.57225 -0.29233333333333333 -1.4931666666666668 -0.8004166666666667 -2.8495 -1.64975 -1.1580416666666669 1.2273333333333334 -2.489375 2.1302499999999998 -3.8266666666666667 2.4493333333333336 0.6664583333333334 -2.0892083333333336 1.3544166666666666 -4.886 1.5262083333333334 -5.594791666666667 1.2416666666666667 -1.5639583333333333 3.277416666666667 -3.851 5.016916666666667 -5.761458333333334 0.8677499999999999 -0.9530833333333333 1.6570833333333332 -1.80725 2.2294583333333335 -2.423208333333333 0.2861666666666667 -0.30791666666666667 0.5180416666666667 -0.5562083333333333 0.6782083333333333 -0.727375 0.080125 -0.08562499999999999 0.14229166666666668 -0.15191666666666667 0.184375 -0.19675l0.06366666666666666 -0.06775c0.3154166666666667 -0.33516666666666667 0.29966666666666664 -0.8627833333333333 -0.035500000000000004 -1.1782083333333335 -0.335125 -0.31542916666666665 -0.8625416666666668 -0.29944583333333336 -1.1779583333333334 0.03570416666666667l-0.0003333333333333334 0.000325 -0.06508333333333334 0.06928333333333334c-0.042625 0.045420833333333334 -0.10537500000000001 0.11232916666666667 -0.1860416666666667 0.19855416666666667 -0.161375 0.1724375 -0.39458333333333334 0.42214166666666664 -0.6822083333333333 0.7316333333333334 -0.5751666666666667 0.6189583333333334 -1.3684583333333333 1.4774166666666666 -2.2409583333333334 2.4357083333333334 -1.7394583333333333 1.9104166666666667 -3.8126666666666664 4.238 -5.093375 5.8516666666666675 -0.1530416666666667 0.19283333333333333 -0.25520833333333337 0.40937500000000004 -0.3107916666666667 0.6387083333333333 -0.167875 0.692625 -0.7862083333333334 3.2005833333333333 -1.3961666666666668 5.1695 0 0 -0.00004166666666666667 0.00020833333333333335 -0.000125 0.0005833333333333334 -0.08645833333333333 -0.19045833333333334 -0.158 -0.3994166666666667 -0.21870833333333337 -0.611125 -0.18525 -0.64625 -0.309375 -1.46425 -0.39425000000000004 -2.2448333333333332 -0.08566666666666667 -0.7873333333333333 -0.13437500000000002 -1.5657083333333333 -0.16170833333333334 -2.1452083333333336 -0.012416666666666668 -0.2632083333333334 -0.0205 -0.4864583333333333 -0.025583333333333336 -0.6522083333333333Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>',description:\"\",height:\"100%\",id:\"HdqGfB1Ym\",layoutId:\"HdqGfB1Ym\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({elUXwh3K4:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Delete-1--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Delete 1 Streamline Icon: https://streamlinehq.com</desc><g id=\"Solid/Interface Essential/Add Remove Delete/delete-1--remove-add-button-buttons-delete-cross-x-mathematics-multiply-math\"><path id=\"Union\" fill=\"#f2f2d9\" d=\"M18.625875 0.321c-0.2861666666666667 -0.15533333333333335 -0.583125 -0.14654166666666668 -0.8479166666666668 -0.055125 -0.259125 0.0895 -0.494 0.25925 -0.6859583333333334 0.441875 -1.045125 0.9945833333333334 -3.555125 3.4024166666666673 -7.092041666666668 6.919708333333333C6.463125 4.110166666666667 3.9530833333333333 1.7023333333333335 2.907958333333333 0.7077500000000001 2.7160833333333336 0.5251250000000001 2.4811666666666667 0.355375 2.222041666666667 0.26587500000000003 1.9572500000000002 0.17445833333333335 1.6602916666666667 0.16566666666666668 1.374125 0.321c-0.184375 0.10004166666666667 -0.38558333333333333 0.24616666666666667 -0.5962500000000001 0.45683333333333337 -0.21062499999999998 0.21062499999999998 -0.35675 0.41187500000000005 -0.45683333333333337 0.5962083333333333 -0.15533333333333335 0.2861666666666667 -0.14654166666666668 0.5831666666666667 -0.05508333333333334 0.8479583333333334 0.08945833333333333 0.259125 0.25925 0.494 0.441875 0.6859166666666667 0.9945416666666667 1.045125 3.4023749999999997 3.555166666666667 6.919708333333333 7.092041666666668C4.110166666666667 13.536916666666666 1.70225 16.046958333333336 0.7076666666666667 17.092125c-0.18258333333333332 0.19187500000000002 -0.352375 0.42675 -0.44183333333333336 0.685875 -0.09145833333333334 0.26483333333333337 -0.10025 0.5617916666666667 0.05508333333333334 0.8479583333333334 0.10008333333333333 0.18433333333333335 0.24620833333333333 0.38558333333333333 0.45683333333333337 0.5962500000000001 0.2106666666666667 0.21058333333333332 0.41187500000000005 0.35670833333333335 0.5962500000000001 0.45683333333333337 0.2861666666666667 0.15529166666666666 0.583125 0.14650000000000002 0.8479166666666668 0.05508333333333334 0.259125 -0.0895 0.494 -0.25925 0.6859166666666667 -0.441875C3.9529583333333336 18.297666666666668 6.463041666666667 15.889833333333332 10 12.372416666666666c3.536958333333333 3.517416666666667 6.047041666666667 5.92525 7.092166666666667 6.919833333333334 0.19187500000000002 0.182625 0.42675 0.352375 0.685875 0.441875 0.26483333333333337 0.09141666666666667 0.5617916666666667 0.10020833333333333 0.8479583333333334 -0.05508333333333334 0.18433333333333335 -0.100125 0.38558333333333333 -0.24625 0.5962500000000001 -0.45683333333333337 0.21062499999999998 -0.2106666666666667 0.35675 -0.4119166666666667 0.45683333333333337 -0.5962500000000001 0.15533333333333335 -0.2861666666666667 0.14654166666666668 -0.583125 0.05508333333333334 -0.8479583333333334 -0.08945833333333333 -0.259125 -0.25925 -0.494 -0.441875 -0.685875 -0.9945833333333334 -1.0451666666666668 -3.4024166666666673 -3.5552083333333337 -6.919833333333334 -7.092166666666667C15.88975 6.4630833333333335 18.297625 3.9530416666666666 19.292166666666667 2.907916666666667c0.18266666666666667 -0.19191666666666668 0.352375 -0.4267916666666667 0.441875 -0.6859166666666667 0.09145833333333334 -0.26479166666666665 0.10025 -0.5617916666666667 -0.055125 -0.8479583333333334 -0.10004166666666667 -0.18433333333333335 -0.24616666666666667 -0.38558333333333333 -0.45683333333333337 -0.5962083333333333 -0.21062499999999998 -0.21062499999999998 -0.41183333333333333 -0.35675 -0.5962083333333333 -0.45683333333333337Z\" stroke-width=\"0.4167\"></path></g></svg>'},HNgGBACP_:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Instagram-Logo--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Instagram Logo Streamline Icon: https://streamlinehq.com</desc><g id=\"instagram-logo\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M5.190458333333334 0.7350708333333333C6.439708333333333 0.6721625 8.032416666666666 0.625 10 0.625c1.9675833333333335 0 3.560291666666667 0.04716666666666667 4.809541666666667 0.11007083333333334C17.26375 0.8586541666666668 19.141333333333336 2.73625 19.264916666666668 5.190416666666668c0.06291666666666666 1.2492916666666667 0.11008333333333334 2.842 0.11008333333333334 4.809583333333333 0 1.9675833333333335 -0.04716666666666667 3.560291666666667 -0.11008333333333334 4.809583333333333 -0.12358333333333332 2.4541666666666666 -2.0011666666666668 4.33175 -4.455375 4.455333333333334 -1.2492500000000002 0.06291666666666666 -2.841958333333334 0.11008333333333334 -4.809541666666667 0.11008333333333334 -1.9675833333333335 0 -3.560291666666667 -0.04716666666666667 -4.809541666666667 -0.11008333333333334C2.73625 19.141333333333336 0.8586541666666668 17.26375 0.7350708333333333 14.809541666666668 0.6721625 13.560291666666666 0.625 11.967583333333334 0.625 10c0 -1.9675833333333335 0.04716666666666667 -3.560291666666667 0.11007083333333334 -4.809583333333333C0.8586541666666668 2.7362458333333333 2.73625 0.8586541666666668 5.190458333333334 0.7350708333333333ZM14.583333333333334 4.166666666666667c0 -0.4602375 0.3730833333333333 -0.8333333333333334 0.8333333333333334 -0.8333333333333334h0.4166666666666667c0.46025000000000005 0 0.8333333333333334 0.37309583333333335 0.8333333333333334 0.8333333333333334 0 0.46025000000000005 -0.3730833333333333 0.8333333333333334 -0.8333333333333334 0.8333333333333334h-0.4166666666666667c-0.46025000000000005 0 -0.8333333333333334 -0.3730833333333333 -0.8333333333333334 -0.8333333333333334Zm-4.583333333333334 2.5c-1.8409583333333335 0 -3.3333333333333335 1.492375 -3.3333333333333335 3.3333333333333335s1.492375 3.3333333333333335 3.3333333333333335 3.3333333333333335 3.3333333333333335 -1.492375 3.3333333333333335 -3.3333333333333335 -1.492375 -3.3333333333333335 -3.3333333333333335 -3.3333333333333335Zm-5 3.3333333333333335c0 -2.761416666666667 2.2385833333333336 -5 5 -5s5 2.2385833333333336 5 5 -2.2385833333333336 5 -5 5 -5 -2.2385833333333336 -5 -5Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},LQWdzclIA:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Triangle-Arrow-Right-1--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Triangle Arrow Right 1 Streamline Icon: https://streamlinehq.com</desc><g id=\"Solid/Arrows/Single Triangle arrow/triangle-arrow-right-1--arrow-right-keyboard\"><path id=\"Union\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M13.938041666666669 16.055833333333332c-0.8483333333333334 0.6932083333333333 -1.9075000000000002 0.21208333333333335 -1.9794166666666668 -0.8810416666666667 -0.04558333333333334 -0.69225 -0.08741666666666667 -1.5756666666666668 -0.11349999999999999 -2.684375 -0.036458333333333336 0.0047083333333333335 -0.073625 0.0070416666666666666 -0.11141666666666668 0.0068333333333333345 -4.4374166666666675 -0.022541666666666668 -8.045033333333334 -0.21916666666666668 -9.788908333333334 -0.3332916666666667 -0.6848000000000001 -0.044833333333333336 -1.2442291666666667 -0.5218333333333334 -1.2907 -1.2065416666666668 -0.0181375 -0.26725 -0.030320833333333335 -0.5854583333333334 -0.030320833333333335 -0.958 0 -0.3725833333333333 0.012183333333333332 -0.6907916666666667 0.030320833333333335 -0.9580416666666668 0.046470833333333336 -0.6847083333333334 0.6059 -1.1617083333333333 1.2907 -1.2065416666666668 1.743875 -0.11412499999999999 5.351491666666667 -0.31075 9.788908333333334 -0.3332916666666667 0.03775 -0.00020833333333333335 0.07495833333333334 0.002125 0.11141666666666668 0.0068333333333333345 0.026041666666666668 -1.1085416666666668 0.067875 -1.9919166666666666 0.11341666666666667 -2.6841250000000003 0.07195833333333333 -1.0934208333333335 1.1315416666666667 -1.5745833333333334 1.980041666666667 -0.8812166666666668 0.5717500000000001 0.4672166666666667 1.2993750000000002 1.0948833333333334 2.205625 1.9320083333333335 1.59825 1.4763333333333335 2.487833333333333 2.5823333333333336 2.9634583333333335 3.275375 0.358625 0.5225416666666667 0.35858333333333337 1.1748333333333334 -0.00008333333333333334 1.6973333333333334 -0.475625 0.6929583333333333 -1.3652083333333334 1.7988750000000002 -2.963375 3.2754166666666666 -0.9065416666666667 0.8375416666666667 -1.6343333333333334 1.4654166666666666 -2.206166666666667 1.9326666666666668Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},m0dha6yG7:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Horizontal-Menu--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Horizontal Menu Streamline Icon: https://streamlinehq.com</desc><g id=\"horizontal-menu--navigation-dots-three-circle-button-horizontal-menu\"><path id=\"Union\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M3.3333333333333335 7.083333333333334c-1.6108291666666668 0 -2.916666666666667 1.3058333333333334 -2.916666666666667 2.916666666666667s1.3058375 2.916666666666667 2.916666666666667 2.916666666666667c1.6108333333333333 0 2.916666666666667 -1.3058333333333334 2.916666666666667 -2.916666666666667s-1.3058333333333334 -2.916666666666667 -2.916666666666667 -2.916666666666667Zm13.333333333333334 0c-1.6108333333333333 0 -2.916666666666667 1.3058333333333334 -2.916666666666667 2.916666666666667s1.3058333333333334 2.916666666666667 2.916666666666667 2.916666666666667 2.916666666666667 -1.3058333333333334 2.916666666666667 -2.916666666666667 -1.3058333333333334 -2.916666666666667 -2.916666666666667 -2.916666666666667Zm-9.583333333333334 2.916666666666667c0 -1.6108333333333333 1.3058333333333334 -2.916666666666667 2.916666666666667 -2.916666666666667s2.916666666666667 1.3058333333333334 2.916666666666667 2.916666666666667 -1.3058333333333334 2.916666666666667 -2.916666666666667 2.916666666666667 -2.916666666666667 -1.3058333333333334 -2.916666666666667 -2.916666666666667Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},MCFrsR6__:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Youtube-Logo--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Youtube Logo Streamline Icon: https://streamlinehq.com</desc><g id=\"youtube-logo--youtube-clip-social-video\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M2.98085 2.8871375C4.395458333333333 2.8011708333333334 6.6894583333333335 2.7083333333333335 10 2.7083333333333335c3.3105416666666665 0 5.604541666666667 0.0928375 7.019166666666667 0.17880416666666668 1.3417500000000002 0.08154583333333333 2.4407916666666667 1.0698958333333335 2.574666666666667 2.4410291666666666 0.10291666666666667 1.0535833333333333 0.19783333333333333 2.58975 0.19783333333333333 4.671833333333334 0 2.0820833333333333 -0.09491666666666668 3.61825 -0.19783333333333333 4.671833333333334 -0.133875 1.3711250000000001 -1.2329166666666667 2.3595 -2.574666666666667 2.441041666666667 -1.414625 0.08595833333333334 -3.7086250000000005 0.17879166666666665 -7.019166666666667 0.17879166666666665s-5.604541666666667 -0.09283333333333334 -7.0191541666666675 -0.17879166666666665c-1.3417666666666668 -0.08154166666666668 -2.4407958333333335 -1.0699166666666668 -2.5746995833333335 -2.441041666666667C0.30325625 13.61825 0.20833333333333334 12.082083333333333 0.20833333333333334 10c0 -2.0820833333333333 0.09492375 -3.61825 0.19781375 -4.671833333333334C0.54005 3.957033333333334 1.6390791666666669 2.968679166666667 2.98085 2.8871375ZM7.614041666666668 6.884708333333333c0.3156666666666667 -0.196375 0.713375 -0.23620833333333333 1.110375 -0.082625 0.4856666666666667 0.18791666666666668 1.1356666666666668 0.47916666666666663 1.9860833333333336 0.9309583333333334 0.81325 0.43204166666666666 1.442 0.8155 1.917875 1.1335833333333334 0.41979166666666673 0.280625 0.6420416666666666 0.70125 0.6420416666666666 1.1337083333333333 0 0.43250000000000005 -0.22225 0.8530833333333334 -0.6420416666666666 1.1337083333333333 -0.475875 0.318125 -1.104625 0.7015833333333333 -1.917875 1.133625 -0.8504166666666667 0.45175000000000004 -1.5004166666666667 0.7430416666666667 -1.9860833333333336 0.9309166666666667 -0.397 0.153625 -0.7947083333333333 0.11375000000000002 -1.110375 -0.08258333333333333 -0.31412500000000004 -0.19541666666666666 -0.5300416666666667 -0.5350416666666667 -0.59 -0.9500416666666667 -0.08045833333333334 -0.557 -0.14904166666666668 -1.2889166666666667 -0.14904166666666668 -2.165625s0.06858333333333333 -1.608625 0.14904166666666668 -2.165625c0.059958333333333336 -0.41500000000000004 0.27587500000000004 -0.7545833333333334 0.59 -0.95Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},o8IujT2ag:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Hamburger-Menu-1--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Hamburger Menu 1 Streamline Icon: https://streamlinehq.com</desc><g id=\"hamburger-menu-1--button-parallel-horizontal-lines-menu-navigation-three-hamburger\"><path id=\"Union\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M10 1.0416666666666667c4.244083333333334 0 7.0612916666666665 0.11000000000000001 8.292375000000002 0.1706666666666667 0.6708333333333334 0.0330625 1.322 0.49352916666666663 1.4345 1.2532875C19.763416666666668 2.7123749999999998 19.791666666666668 3.0079208333333334 19.791666666666668 3.3333333333333335c0 0.3254125 -0.02825 0.6209583333333334 -0.06479166666666666 0.8677083333333334 -0.11250000000000002 0.75975 -0.7636666666666667 1.22025 -1.4345 1.2532916666666667C17.061291666666666 5.515000000000001 14.244083333333334 5.625 10 5.625c-4.244083333333334 0 -7.0613125000000005 -0.11000000000000001 -8.292366666666666 -0.1706666666666667 -0.6708458333333334 -0.033041666666666664 -1.3219975000000002 -0.4935416666666667 -1.4345154166666667 -1.2532916666666667C0.23657499999999998 3.9542916666666668 0.20833333333333334 3.658745833333333 0.20833333333333334 3.3333333333333335c0 -0.3254125 0.028241666666666672 -0.6209583333333334 0.06478458333333334 -0.8677125000000001C0.38563583333333334 1.7058625000000003 1.0367875000000002 1.2453958333333335 1.7076333333333336 1.2123333333333335 2.9386875000000003 1.1516666666666666 5.755916666666667 1.0416666666666667 10 1.0416666666666667Zm0 6.666666666666667c4.244083333333334 0 7.0612916666666665 0.11000000000000001 8.292375000000002 0.1706666666666667 0.6708333333333334 0.033041666666666664 1.322 0.4935416666666667 1.4345 1.2532916666666667 0.03654166666666667 0.24675 0.06479166666666666 0.5422916666666667 0.06479166666666666 0.8677083333333334 0 0.3254166666666667 -0.02825 0.6209583333333334 -0.06479166666666666 0.8677083333333334 -0.11250000000000002 0.75975 -0.7636666666666667 1.22025 -1.4345 1.2532916666666667C17.061291666666666 12.181666666666667 14.244083333333334 12.291666666666668 10 12.291666666666668c-4.244083333333334 0 -7.0613125000000005 -0.11000000000000001 -8.292366666666666 -0.1706666666666667 -0.6708458333333334 -0.033041666666666664 -1.3219975000000002 -0.4935416666666667 -1.4345154166666667 -1.2532916666666667C0.23657499999999998 10.620958333333334 0.20833333333333334 10.325416666666667 0.20833333333333334 10c0 -0.3254166666666667 0.028241666666666672 -0.6209583333333334 0.06478458333333334 -0.8677083333333334 0.11251791666666666 -0.75975 0.7636695833333333 -1.22025 1.4345154166666667 -1.2532916666666667C2.9386875000000003 7.818333333333333 5.755916666666667 7.708333333333334 10 7.708333333333334Zm8.292375000000002 6.837333333333334C17.061291666666666 14.485000000000001 14.244083333333334 14.375 10 14.375c-4.244083333333334 0 -7.0613125000000005 0.11000000000000001 -8.292366666666666 0.1706666666666667 -0.6708458333333334 0.033041666666666664 -1.3219975000000002 0.4935416666666667 -1.4345154166666667 1.2532916666666667C0.23657499999999998 16.045708333333334 0.20833333333333334 16.341250000000002 0.20833333333333334 16.666666666666668c0 0.3254166666666667 0.028241666666666672 0.6209583333333334 0.06478458333333334 0.8677083333333334 0.11251791666666666 0.75975 0.7636695833333333 1.22025 1.4345154166666667 1.2532916666666667C2.9386875000000003 18.848333333333333 5.755916666666667 18.958333333333336 10 18.958333333333336c4.244083333333334 0 7.0612916666666665 -0.11000000000000001 8.292375000000002 -0.1706666666666667 0.6708333333333334 -0.033041666666666664 1.322 -0.4935416666666667 1.4345 -1.2532916666666667 0.03654166666666667 -0.24675 0.06479166666666666 -0.5422916666666667 0.06479166666666666 -0.8677083333333334 0 -0.3254166666666667 -0.02825 -0.6209583333333334 -0.06479166666666666 -0.8677083333333334 -0.11250000000000002 -0.75975 -0.7636666666666667 -1.22025 -1.4345 -1.2532916666666667Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},s4xoizrsu:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Phone--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Phone Streamline Icon: https://streamlinehq.com</desc><g id=\"Solid/Phone/Mobile Phone/phone--android-phone-mobile-device-smartphone-iphone\"><path id=\"Union\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M14.583333333333334 0.625c2.6463750000000004 0 4.791666666666667 2.1453041666666666 4.791666666666667 4.791666666666667v0.5551250000000001c0 0.03141666666666667 -0.0023333333333333335 0.06258333333333334 -0.006916666666666667 0.09325C19.135583333333336 13.4555 13.071666666666667 19.375 5.625 19.375H5.416666666666667C2.7703041666666666 19.375 0.625 17.229708333333335 0.625 14.583333333333334v-0.23704166666666665c0 -0.7667083333333334 0.46678333333333333 -1.4561666666666668 1.1786416666666666 -1.740875l2.5688583333333335 -1.0275416666666668c0.8511666666666667 -0.3405 1.8233333333333335 -0.14095833333333332 2.471541666666667 0.5072916666666667l1.2818749999999999 1.2818749999999999c0.05666666666666667 0.05666666666666667 0.12029166666666667 0.06337500000000001 0.15912500000000002 0.051583333333333335 2.452666666666667 -0.7448333333333333 4.38875 -2.6809166666666666 5.133583333333334 -5.133583333333334 0.011791666666666667 -0.03883333333333334 0.005083333333333334 -0.10245833333333335 -0.051583333333333335 -0.15912500000000002l-1.2818749999999999 -1.2818749999999999c-0.6482083333333334 -0.6482083333333334 -0.8477916666666667 -1.6203750000000001 -0.5072916666666667 -2.471541666666667l1.0275416666666668 -2.5688583333333335C12.890125 1.0917833333333335 13.579583333333334 0.625 14.346291666666668 0.625H14.583333333333334Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},uk8Gfn7q_:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Whatsapp-Logo--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Whatsapp Logo Streamline Icon: https://streamlinehq.com</desc><g id=\"whatsapp-logo\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M0.20833333333333334 10C0.20833333333333334 4.592208333333334 4.592208333333334 0.20833333333333334 10 0.20833333333333334S19.791666666666668 4.592208333333334 19.791666666666668 10 15.407791666666668 19.791666666666668 10 19.791666666666668c-1.7814166666666669 0 -3.452291666666667 -0.4759166666666667 -4.89175 -1.307625 -1.0898541666666668 0.4025 -2.326766666666667 0.7980416666666666 -3.5426541666666673 1.0797500000000002 -0.6909500000000001 0.16008333333333333 -1.3095354166666668 -0.4315416666666667 -1.1709783333333332 -1.1302083333333333 0.25223666666666666 -1.271875 0.6429991666666667 -2.5475 1.0596533333333333 -3.6502083333333335C0.6607375 13.368666666666668 0.20833333333333334 11.736875000000001 0.20833333333333334 10Zm8.876 -3.0909583333333335c0.2707083333333334 0.34070833333333334 0.253375 0.8321250000000001 -0.05433333333333333 1.1398333333333333l-0.4572083333333333 0.4572083333333333c-0.148125 0.148125 -0.23512500000000003 0.3486666666666667 -0.18575 0.5522916666666666 0.08295833333333334 0.3421666666666667 0.31875000000000003 0.925375 0.9865833333333334 1.5931666666666666 0.6677916666666667 0.6678333333333334 1.2510000000000001 0.903625 1.5931666666666666 0.9865833333333334 0.20362500000000003 0.049375 0.4041666666666667 -0.037625000000000006 0.5522916666666666 -0.18575l0.4572083333333333 -0.4572083333333333c0.30770833333333336 -0.30770833333333336 0.799125 -0.3250416666666667 1.1398333333333333 -0.05433333333333333 0.5480833333333334 0.43545833333333334 1.0178333333333334 0.7609166666666667 1.4008333333333334 1.0014583333333336 0.5246250000000001 0.32945833333333335 0.67575 1.13975 0.23770833333333335 1.5777916666666667l-0.458 0.458c-0.8028333333333334 0.8028333333333334 -1.8795416666666669 1.3268333333333335 -2.9695 1.0090833333333336 -1.0277500000000002 -0.299625 -2.4122083333333335 -0.9640833333333334 -3.8686250000000006 -2.420541666666667 -1.4564583333333334 -1.4564583333333334 -2.1209583333333333 -2.840875 -2.420541666666667 -3.8686250000000006 -0.31775 -1.0899583333333334 0.20625000000000002 -2.166666666666667 1.0090833333333336 -2.9695l0.458 -0.458c0.43804166666666666 -0.43804166666666666 1.2483333333333333 -0.28691666666666665 1.57775 0.2376666666666667 0.24054166666666668 0.38304166666666667 0.5660416666666667 0.8527916666666667 1.0015 1.400875Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},Uz9OMVlKs:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Facebook-Logo-1--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Facebook Logo 1 Streamline Icon: https://streamlinehq.com</desc><g id=\"facebook-logo-1--media-facebook-social\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M3.3898791666666668 0.8516208333333335C4.753041666666666 0.7408666666666668 6.916083333333334 0.625 10 0.625c3.0839166666666666 0 5.246958333333334 0.11586666666666667 6.610125 0.22662083333333333 1.3699166666666667 0.11130833333333333 2.4269583333333333 1.1683166666666667 2.53825 2.5382541666666665 0.11075 1.3631666666666666 0.22662500000000002 3.5262083333333334 0.22662500000000002 6.610125 0 3.0839166666666666 -0.115875 5.246958333333334 -0.22662500000000002 6.610125 -0.11129166666666668 1.3699583333333334 -1.1683333333333332 2.4269583333333333 -2.53825 2.53825 -0.9960000000000001 0.08091666666666668 -2.419 0.16458333333333336 -4.316208333333334 0.20379166666666668 0.002916666666666667 -0.02758333333333333 0.004416666666666667 -0.05562500000000001 0.004416666666666667 -0.08395833333333334V12.516791666666666h2.307875c0.37004166666666666 0 0.703125 -0.24366666666666667 0.7572083333333334 -0.60975 0.08945833333333333 -0.6055416666666668 0.051458333333333335 -1.156125 -0.006416666666666667 -1.5477083333333335 -0.053125000000000006 -0.3594166666666667 -0.37345833333333334 -0.5960416666666667 -0.7367916666666667 -0.5960416666666667H12.298333333333334c0 -2.080625 0.34625 -2.3834166666666667 2.297875 -2.42125 0.3744583333333334 -0.0072499999999999995 0.7106250000000001 -0.2545 0.7649583333333334 -0.6250833333333333 0.091375 -0.6229166666666668 0.05495833333333333 -1.1672083333333334 -0.0023750000000000004 -1.5500416666666668 -0.05295833333333333 -0.3536666666666667 -0.3700833333333333 -0.5842499999999999 -0.7276666666666667 -0.581125 -3.449333333333333 0.030083333333333333 -5.413916666666666 0.43795833333333334 -5.413916666666666 5.1775h-1.7870000000000001c-0.34729166666666667 0 -0.655625 0.21766666666666667 -0.7081666666666667 0.5609583333333333 -0.05658333333333334 0.36983333333333335 -0.09079166666666667 0.906 0.003666666666666667 1.5580416666666668 0.05458333333333334 0.37675000000000003 0.3934166666666667 0.6345 0.7740833333333333 0.6345h1.7174166666666668v6.855666666666668c-2.6708333333333334 -0.017541666666666667 -4.582541666666668 -0.12295833333333332 -5.827333333333334 -0.22408333333333333 -1.3699375 -0.11129166666666668 -2.42695 -1.1682916666666667 -2.5382541666666665 -2.53825C0.7408666666666668 15.246958333333334 0.625 13.083916666666667 0.625 10c0 -3.0839166666666666 0.11586666666666667 -5.246958333333334 0.22662083333333333 -6.610125 0.11130416666666666 -1.3699375 1.1683166666666667 -2.42695 2.5382541666666665 -2.5382541666666665l0.050487500000000005 0.621375 -0.05048333333333334 -0.621375Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},W8Cf4EPEm:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Calendar-Mark--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Calendar Mark Streamline Icon: https://streamlinehq.com</desc><g id=\"Solid/Interface Essential/Calendar/calendar-mark--calendar-date-day-month-mark\"><path id=\"Subtract\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M15.732875 1.4744583333333334c0.010333333333333333 0.280625 0.018375000000000002 0.6179166666666668 0.019208333333333334 1.0005 0.37254166666666666 0.021166666666666667 0.7066666666666667 0.043208333333333335 1.0035833333333333 0.06504166666666666 1.3960000000000001 0.10266666666666667 2.493916666666667 1.1655000000000002 2.614125 2.570291666666667 0.10875000000000001 1.2717083333333332 0.21716666666666667 3.2240833333333336 0.21716666666666667 5.954916666666667 0 2.730875 -0.10841666666666666 4.683208333333333 -0.21716666666666667 5.954916666666667 -0.12020833333333333 1.4047916666666669 -1.2181250000000001 2.467625 -2.614125 2.5703333333333336 -1.3922083333333333 0.10233333333333335 -3.6027916666666666 0.20954166666666668 -6.7556666666666665 0.20954166666666668s-5.363458333333333 -0.10720833333333332 -6.755625 -0.20954166666666668c-1.3960833333333333 -0.10270833333333333 -2.4939583333333335 -1.1655416666666667 -2.614125 -2.5703333333333336 -0.10879166666666668 -1.2717083333333332 -0.21720833333333334 -3.2240833333333336 -0.21720833333333334 -5.954916666666667s0.10841666666666666 -4.683208333333333 0.21720833333333334 -5.954875C0.7504166666666666 3.7055000000000002 1.8482916666666669 2.6426666666666665 3.2443750000000002 2.54c0.296875 -0.021833333333333337 0.631 -0.043875000000000004 1.0035416666666668 -0.06504166666666666 0.0008333333333333334 -0.38258333333333333 0.008875000000000001 -0.719875 0.019208333333333334 -1.0005 0.023958333333333335 -0.6491666666666667 0.4415416666666667 -1.2185833333333334 1.1405833333333335 -1.2596666666666667 0.15695833333333334 -0.009208333333333334 0.337375 -0.014791666666666667 0.5444583333333334 -0.014791666666666667s0.3875416666666667 0.005583333333333333 0.5444583333333334 0.014791666666666667c0.6990416666666667 0.04108333333333333 1.1166666666666667 0.6105 1.1405833333333335 1.2596666666666667 0.009250000000000001 0.25004166666666666 0.016625 0.5451250000000001 0.018708333333333334 0.8770833333333333 0.7146666666666667 -0.013333333333333334 1.49525 -0.021125 2.3440833333333333 -0.021125s1.6294166666666667 0.007791666666666667 2.3440833333333333 0.021125c0.002125 -0.33195833333333336 0.009458333333333334 -0.6270416666666666 0.018708333333333334 -0.8770833333333333 0.023916666666666666 -0.6491666666666667 0.4415416666666667 -1.2185833333333334 1.1405833333333335 -1.2596666666666667 0.15691666666666668 -0.009208333333333334 0.337375 -0.014791666666666667 0.5444583333333334 -0.014791666666666667s0.3875 0.005583333333333333 0.5444583333333334 0.014791666666666667c0.6990416666666667 0.04108333333333333 1.116625 0.6105 1.1405833333333335 1.2596666666666667ZM5.313041666666667 8.295666666666667c-0.8236249999999999 0 -1.4912916666666667 0.6676666666666667 -1.4912916666666667 1.4912916666666667s0.6676666666666667 1.4912916666666667 1.4912916666666667 1.4912916666666667 1.4912916666666667 -0.6676666666666667 1.4912916666666667 -1.4912916666666667 -0.6676666666666667 -1.4912916666666667 -1.4912916666666667 -1.4912916666666667Zm0 4.686958333333333c-0.8236249999999999 0 -1.4912916666666667 0.6676666666666667 -1.4912916666666667 1.4912916666666667s0.6676666666666667 1.4912916666666667 1.4912916666666667 1.4912916666666667 1.4912916666666667 -0.6676666666666667 1.4912916666666667 -1.4912916666666667 -0.6676666666666667 -1.4912916666666667 -1.4912916666666667 -1.4912916666666667Zm7.882625 -3.195666666666667c0 -0.8236249999999999 0.6676666666666667 -1.4912916666666667 1.4912916666666667 -1.4912916666666667s1.4912916666666667 0.6676666666666667 1.4912916666666667 1.4912916666666667 -0.6676666666666667 1.4912916666666667 -1.4912916666666667 1.4912916666666667 -1.4912916666666667 -0.6676666666666667 -1.4912916666666667 -1.4912916666666667ZM10 8.295666666666667c-0.8236249999999999 0 -1.4912916666666667 0.6676666666666667 -1.4912916666666667 1.4912916666666667S9.176375 11.27825 10 11.27825s1.4912916666666667 -0.6676666666666667 1.4912916666666667 -1.4912916666666667S10.823625000000002 8.295666666666667 10 8.295666666666667Zm-1.4912916666666667 6.17825c0 -0.8236249999999999 0.6676666666666667 -1.4912916666666667 1.4912916666666667 -1.4912916666666667s1.4912916666666667 0.6676666666666667 1.4912916666666667 1.4912916666666667S10.823625000000002 15.965208333333333 10 15.965208333333333s-1.4912916666666667 -0.6676666666666667 -1.4912916666666667 -1.4912916666666667Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'},YzdUaknGH:{customSvgCode:'<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"Button-Play-Pause--Streamline-Plump\" height=\"20\" width=\"20\"><desc>Button Play Pause Streamline Icon: https://streamlinehq.com</desc><g id=\"Solid/Entertainment/Control Buttons/button-play-pause--button-television-buttons-movies-play-pause-video-controls\"><path id=\"Union\" fill=\"#f2f2d9\" fill-rule=\"evenodd\" d=\"M12.291666666666668 1.875c-0.21758333333333335 0 -0.40975000000000006 0.010345833333333334 -0.5790833333333333 0.027625 -0.931 0.09500416666666667 -1.3497083333333335 0.9135708333333333 -1.3777083333333335 1.6099166666666667 -0.045625 1.134625 -0.11895833333333333 3.3580833333333335 -0.126 6.068416666666667 -0.06629166666666667 -0.38170833333333337 -0.224 -0.7527083333333333 -0.47308333333333336 -1.08325 -0.67825 -0.9000833333333335 -1.8284583333333335 -2.2565833333333334 -3.626958333333334 -3.9069166666666666 -1.04575 -0.9596000000000001 -1.8787083333333332 -1.62215 -2.533491666666667 -2.0803125000000002 -0.6601208333333334 -0.4618875 -1.4159666666666668 -0.5331125000000001 -2.0459708333333335 -0.17928333333333335 -0.6065208333333334 0.3406416666666667 -0.9696750000000001 1.0040083333333334 -1.044925 1.7577916666666669C0.34666833333333336 5.469083333333334 0.20833333333333334 7.481583333333334 0.20833333333333334 9.999208333333334c0 2.5176250000000002 0.138335 4.530083333333334 0.2761125 5.910208333333333 0.07525000000000001 0.7537916666666666 0.4384041666666667 1.4171666666666667 1.044925 1.7577916666666669 0.6300041666666667 0.35383333333333333 1.38585 0.282625 2.0459708333333335 -0.17929166666666668 0.6547833333333334 -0.458125 1.4877416666666667 -1.1207083333333334 2.533491666666667 -2.0802916666666667 1.7985 -1.6503333333333334 2.9487083333333337 -3.0068333333333337 3.626958333333334 -3.9069166666666666 0.24908333333333335 -0.3305416666666667 0.40679166666666666 -0.7015416666666667 0.47308333333333336 -1.08325 0.007 2.7110416666666666 0.08033333333333334 4.935125 0.126 6.069958333333333 0.028 0.6964166666666667 0.44675000000000004 1.5150000000000001 1.3777916666666667 1.6099583333333334 0.16929166666666667 0.017291666666666667 0.3614583333333334 0.027625 0.579 0.027625 0.2175416666666667 0 0.40970833333333334 -0.010333333333333333 0.579 -0.027625 0.9310416666666668 -0.09495833333333334 1.3497916666666667 -0.9135416666666667 1.3777916666666667 -1.6099583333333334 0.04795833333333333 -1.1925833333333333 0.1265416666666667 -3.588041666666667 0.1265416666666667 -6.487416666666667 0 -2.8994166666666668 -0.07858333333333334 -5.294875 -0.1265416666666667 -6.4874583333333335 -0.028 -0.6963458333333333 -0.4467083333333334 -1.5149125 -1.3777083333333335 -1.6099166666666667C12.701416666666667 1.8853458333333333 12.509250000000002 1.875 12.291666666666668 1.875Zm4.837583333333334 0.027625c0.16933333333333334 -0.01727916666666667 0.36150000000000004 -0.027625 0.5790833333333333 -0.027625 0.21758333333333335 0 0.40975000000000006 0.010345833333333334 0.5790833333333333 0.027625 0.931 0.09500416666666667 1.3497083333333335 0.9135708333333333 1.3777083333333335 1.6099166666666667 0.04795833333333333 1.1925833333333333 0.1265416666666667 3.588041666666667 0.1265416666666667 6.4874583333333335 0 2.899375 -0.07858333333333334 5.294833333333333 -0.1265416666666667 6.487416666666667 -0.028 0.6964166666666667 -0.44675000000000004 1.5150000000000001 -1.3777916666666667 1.6099583333333334 -0.16929166666666667 0.017291666666666667 -0.3614583333333334 0.027625 -0.579 0.027625 -0.2175416666666667 0 -0.40970833333333334 -0.010333333333333333 -0.579 -0.027625 -0.9310416666666668 -0.09495833333333334 -1.3497916666666667 -0.9135416666666667 -1.3777916666666667 -1.6099583333333334C15.703583333333334 15.294833333333333 15.625 12.899375000000001 15.625 10c0 -2.899375 0.07858333333333334 -5.294875 0.1265416666666667 -6.4874583333333335 0.028 -0.6963458333333333 0.4467083333333334 -1.5149125 1.3777083333333335 -1.6099166666666667Z\" clip-rule=\"evenodd\" stroke-width=\"0.4167\"></path></g></svg>'}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1XsT3.framer-1c3crqp, .framer-1XsT3 .framer-1c3crqp { display: block; }\",\".framer-1XsT3.framer-tagx0t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-1XsT3 .framer-1h0wzzw-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1XsT3.framer-tagx0t { gap: 0px; } .framer-1XsT3.framer-tagx0t > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1XsT3.framer-tagx0t > :first-child { margin-left: 0px; } .framer-1XsT3.framer-tagx0t > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"s4xoizrsu\":{\"layout\":[\"fixed\",\"fixed\"]},\"uk8Gfn7q_\":{\"layout\":[\"fixed\",\"fixed\"]},\"LQWdzclIA\":{\"layout\":[\"fixed\",\"fixed\"]},\"m0dha6yG7\":{\"layout\":[\"fixed\",\"fixed\"]},\"o8IujT2ag\":{\"layout\":[\"fixed\",\"fixed\"]},\"W8Cf4EPEm\":{\"layout\":[\"fixed\",\"fixed\"]},\"elUXwh3K4\":{\"layout\":[\"fixed\",\"fixed\"]},\"YzdUaknGH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Uz9OMVlKs\":{\"layout\":[\"fixed\",\"fixed\"]},\"HNgGBACP_\":{\"layout\":[\"fixed\",\"fixed\"]},\"MCFrsR6__\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jSYpUJHuN\":\"colour\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwSHz38mMF=withCSS(Component,css,\"framer-1XsT3\");export default FramerwSHz38mMF;FramerwSHz38mMF.displayName=\"V2 / Icons 2\";FramerwSHz38mMF.defaultProps={height:20,width:20};addPropertyControls(FramerwSHz38mMF,{variant:{options:[\"A0JqNaqYm\",\"s4xoizrsu\",\"uk8Gfn7q_\",\"LQWdzclIA\",\"m0dha6yG7\",\"o8IujT2ag\",\"W8Cf4EPEm\",\"elUXwh3K4\",\"YzdUaknGH\",\"Uz9OMVlKs\",\"HNgGBACP_\",\"MCFrsR6__\"],optionTitles:[\"Mail\",\"Phone\",\"WhatsApp\",\"Arrow Right\",\"Menu / Dots\",\"Menu / Hamburger\",\"Calendar\",\"Close\",\"Play\",\"Facebook\",\"Instagram\",\"YouTube\"],title:\"Variant\",type:ControlType.Enum},jSYpUJHuN:{defaultValue:'var(--token-6cee9333-66e6-4829-a473-f1dc767e40d6, rgb(242, 242, 217)) /* {\"name\":\"Sand\"} */',title:\"Colour\",type:ControlType.Color}});addFonts(FramerwSHz38mMF,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwSHz38mMF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"20\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"s4xoizrsu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uk8Gfn7q_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LQWdzclIA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m0dha6yG7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o8IujT2ag\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W8Cf4EPEm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"elUXwh3K4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YzdUaknGH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Uz9OMVlKs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HNgGBACP_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MCFrsR6__\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"jSYpUJHuN\\\":\\\"colour\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wSHz38mMF.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,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 sharedStyle from\"https://framerusercontent.com/modules/nPpaqUwiZw9qXDXlRf0o/a6wCzxpzhApy4kdrIV5A/OPar1ef2O.js\";import V2Icons2 from\"https://framerusercontent.com/modules/54ksz3xIuN0NuPob9sWP/duQiXUn4MuH9lBIB9T40/wSHz38mMF.js\";const V2Icons2Fonts=getFonts(V2Icons2);const V2Icons2Controls=getPropertyControls(V2Icons2);const enabledGestures={kGK5fY7LZ:{hover:true},oiQR1QPJH:{hover:true}};const cycleOrder=[\"kGK5fY7LZ\",\"oiQR1QPJH\",\"Kg27SXf_w\"];const serializationHash=\"framer-szXZB\";const variantClassNames={Kg27SXf_w:\"framer-v-1bbkr65\",kGK5fY7LZ:\"framer-v-3stdcy\",oiQR1QPJH:\"framer-v-cdwwpo\"};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 humanReadableEnumMap={\"Arrow Right\":\"LQWdzclIA\",\"Menu / Dots\":\"m0dha6yG7\",\"Menu / Hamburger\":\"o8IujT2ag\",Calendar:\"W8Cf4EPEm\",Close:\"elUXwh3K4\",Mail:\"A0JqNaqYm\",Phone:\"s4xoizrsu\",WhatsApp:\"uk8Gfn7q_\"};const humanReadableVariantMap={\"Icon Front\":\"oiQR1QPJH\",\"Variant 1\":\"kGK5fY7LZ\",Menu:\"Kg27SXf_w\"};const getProps=({height,iconAfter,iconBefore,id,link,tap,title,width,...props})=>{return{...props,bbYMrNQ_x:title??props.bbYMrNQ_x??\"BOOK NOW\",dLy4Jqtpl:humanReadableEnumMap[iconAfter]??iconAfter??props.dLy4Jqtpl??\"LQWdzclIA\",KqAIvY8DA:link??props.KqAIvY8DA,Qeu_aMtQa:humanReadableEnumMap[iconBefore]??iconBefore??props.Qeu_aMtQa??\"W8Cf4EPEm\",variant:humanReadableVariantMap[props.variant]??props.variant??\"kGK5fY7LZ\",VY0K4Tjqk:tap??props.VY0K4Tjqk};};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,bbYMrNQ_x,KqAIvY8DA,VY0K4Tjqk,dLy4Jqtpl,Qeu_aMtQa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kGK5fY7LZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapbyqxzf=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(VY0K4Tjqk){const res=await VY0K4Tjqk(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"oiQR1QPJH-hover\")return true;if(baseVariant===\"oiQR1QPJH\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Kg27SXf_w\")return false;return true;};const isDisplayed2=()=>{if(gestureVariant===\"oiQR1QPJH-hover\")return false;if(baseVariant===\"oiQR1QPJH\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:KqAIvY8DA,motionChild:true,nodeId:\"kGK5fY7LZ\",openInNewTab:false,scopeId:\"HqjQpw7TW\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-3stdcy\",className,classNames)} framer-13pheqe`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kGK5fY7LZ\",onTap:onTapbyqxzf,ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(253, 176, 34)\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 1px 2px 0px rgba(16, 24, 40, 0.05000000074505806)\",...style},...addPropertyOverrides({\"kGK5fY7LZ-hover\":{\"data-framer-name\":undefined},\"oiQR1QPJH-hover\":{\"data-framer-name\":undefined},Kg27SXf_w:{\"data-framer-name\":\"Menu\"},oiQR1QPJH:{\"data-framer-name\":\"Icon Front\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({oiQR1QPJH:{height:20,width:\"20px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||44)-24-20)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y2nn8y-container\",\"data-framer-name\":\"Icon / Before\",layoutDependency:layoutDependency,layoutId:\"UAekiKJks-container\",name:\"Icon / Before\",nodeId:\"UAekiKJks\",rendersWithMotion:true,scopeId:\"HqjQpw7TW\",children:/*#__PURE__*/_jsx(V2Icons2,{height:\"100%\",id:\"UAekiKJks\",jSYpUJHuN:\"rgb(169, 93, 21)\",layoutId:\"UAekiKJks\",name:\"Icon / Before\",style:{height:\"100%\",width:\"100%\"},variant:Qeu_aMtQa,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xi0hwc\",layoutDependency:layoutDependency,layoutId:\"bkgJ_3Kbp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-iiakrx\",\"data-styles-preset\":\"OPar1ef2O\",children:\"BOOK NOW\"})}),className:\"framer-1l4rzws\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g6z2RPIKP\",text:bbYMrNQ_x,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||44)-24-20)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y5mrox-container\",\"data-framer-name\":\"Icon / After\",layoutDependency:layoutDependency,layoutId:\"KNY_s8pgw-container\",name:\"Icon / After\",nodeId:\"KNY_s8pgw\",rendersWithMotion:true,scopeId:\"HqjQpw7TW\",children:/*#__PURE__*/_jsx(V2Icons2,{height:\"100%\",id:\"KNY_s8pgw\",jSYpUJHuN:\"rgb(169, 93, 21)\",layoutId:\"KNY_s8pgw\",name:\"Icon / After\",style:{height:\"100%\",width:\"100%\"},variant:dLy4Jqtpl,width:\"100%\",...addPropertyOverrides({Kg27SXf_w:{variant:\"m0dha6yG7\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-szXZB.framer-13pheqe, .framer-szXZB .framer-13pheqe { display: block; }\",\".framer-szXZB.framer-3stdcy { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-szXZB .framer-1y2nn8y-container, .framer-szXZB .framer-1y5mrox-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-szXZB .framer-1xi0hwc { 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: 1px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-szXZB .framer-1l4rzws { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-szXZB.framer-3stdcy, .framer-szXZB .framer-1xi0hwc { gap: 0px; } .framer-szXZB.framer-3stdcy > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-szXZB.framer-3stdcy > :first-child, .framer-szXZB .framer-1xi0hwc > :first-child { margin-left: 0px; } .framer-szXZB.framer-3stdcy > :last-child, .framer-szXZB .framer-1xi0hwc > :last-child { margin-right: 0px; } .framer-szXZB .framer-1xi0hwc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-szXZB.framer-v-1bbkr65.framer-3stdcy { padding: 12px; }\",...sharedStyle.css,'.framer-szXZB[data-border=\"true\"]::after, .framer-szXZB [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 44\n * @framerIntrinsicWidth 153.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"oiQR1QPJH\":{\"layout\":[\"auto\",\"auto\"]},\"Kg27SXf_w\":{\"layout\":[\"auto\",\"auto\"]},\"MYXH19FQ4\":{\"layout\":[\"auto\",\"auto\"]},\"a67HDeMZM\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"bbYMrNQ_x\":\"title\",\"KqAIvY8DA\":\"link\",\"VY0K4Tjqk\":\"tap\",\"dLy4Jqtpl\":\"iconAfter\",\"Qeu_aMtQa\":\"iconBefore\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHqjQpw7TW=withCSS(Component,css,\"framer-szXZB\");export default FramerHqjQpw7TW;FramerHqjQpw7TW.displayName=\"Button\";FramerHqjQpw7TW.defaultProps={height:44,width:153.5};addPropertyControls(FramerHqjQpw7TW,{variant:{options:[\"kGK5fY7LZ\",\"oiQR1QPJH\",\"Kg27SXf_w\"],optionTitles:[\"Variant 1\",\"Icon Front\",\"Menu\"],title:\"Variant\",type:ControlType.Enum},bbYMrNQ_x:{defaultValue:\"BOOK NOW\",displayTextArea:false,title:\"Title\",type:ControlType.String},KqAIvY8DA:{title:\"Link\",type:ControlType.Link},VY0K4Tjqk:{title:\"Tap\",type:ControlType.EventHandler},dLy4Jqtpl:V2Icons2Controls?.[\"variant\"]&&{...V2Icons2Controls[\"variant\"],defaultValue:\"LQWdzclIA\",description:undefined,hidden:undefined,title:\"Icon / After\"},Qeu_aMtQa:V2Icons2Controls?.[\"variant\"]&&{...V2Icons2Controls[\"variant\"],defaultValue:\"W8Cf4EPEm\",description:undefined,hidden:undefined,title:\"Icon / Before\"}});addFonts(FramerHqjQpw7TW,[{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\"}]},...V2Icons2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHqjQpw7TW\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"bbYMrNQ_x\\\":\\\"title\\\",\\\"KqAIvY8DA\\\":\\\"link\\\",\\\"VY0K4Tjqk\\\":\\\"tap\\\",\\\"dLy4Jqtpl\\\":\\\"iconAfter\\\",\\\"Qeu_aMtQa\\\":\\\"iconBefore\\\"}\",\"framerIntrinsicHeight\":\"44\",\"framerIntrinsicWidth\":\"153.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"oiQR1QPJH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kg27SXf_w\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MYXH19FQ4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a67HDeMZM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["fontStore", "fonts", "css", "className", "SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "colour", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jSYpUJHuN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerwSHz38mMF", "withCSS", "wSHz38mMF_default", "addPropertyControls", "ControlType", "addFonts", "V2Icons2Fonts", "getFonts", "wSHz38mMF_default", "V2Icons2Controls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "iconAfter", "iconBefore", "id", "link", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bbYMrNQ_x", "KqAIvY8DA", "VY0K4Tjqk", "dLy4Jqtpl", "Qeu_aMtQa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapbyqxzf", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerHqjQpw7TW", "withCSS", "HqjQpw7TW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
