{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/yCymLwLLTl77dXBk5ZCQ/NBvc1ddCA2YWQsI8qGRc/Counter.js", "ssg:https://framerusercontent.com/modules/oCfj3gW89hRlsAdAPA6V/p8MXUDHXxIxW97NJVGVB/QMuEq11PS.js", "ssg:https://framerusercontent.com/modules/2iiTOMbIAAsV87ScXyWM/283rpQ0PdxRUZWUxM1Z6/UeNFeauCj.js", "ssg:https://ga.jspm.io/npm:@emotion/hash@0.8.0/dist/hash.browser.esm.js", "ssg:https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.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/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/mv5yMg2y3cDoySIhdSMN/AX5KI9rzSAnKiMwqwJgC/Heo55BgD4.js", "ssg:https://framerusercontent.com/modules/cDenN0mwB3BoxJBrmBLG/lN1fvqYve3xx3XlenDbm/iLvBdfOs8.js", "ssg:https://framerusercontent.com/modules/6qbg9KNVpC6N1EIO7pU8/UkmL0szGDvwiDEDiIwU3/IsgMMPEHU.js", "ssg:https://framerusercontent.com/modules/pPO20IMMjvkVNs5sq2Db/DIs870ttM2fI4lRmVIX9/qfmAoIwxN.js", "ssg:https://framerusercontent.com/modules/4L6TFy5RMpgHqOs3hgEB/UiIwvSegIeYikkpqLN3l/iV8GXG0Ck.js", "ssg:https://framerusercontent.com/modules/vu5Wtg4NhsgnyXboQai7/To91w1qk8BuZODzwvfwm/rZemCCbaP.js", "ssg:https://framerusercontent.com/modules/pYJMhwgcNBtCKH81Qdkx/I3MCZF45XKONJjuyEIUr/urlDCZwpF.js", "ssg:https://framerusercontent.com/modules/e6enuRA469KCyxAhG8Xc/v3NGQI536FFI0whgZ8Zk/VLQCZcVpG.js", "ssg:https://framerusercontent.com/modules/7OhUDgDSSTfjwmvmUoW0/CZgWdlmhQMcbW50MjOVO/QJ12gIOBS.js", "ssg:https://framerusercontent.com/modules/1z8dH1FUVWlCI8GQX93x/4JLmstOITJLas0FDtodG/s0HwBJzsu.js", "ssg:https://framerusercontent.com/modules/iehOxljfriNfkg6xouhr/v0UTTKofnFgvZApzrFyC/TmKkx3AEs.js", "ssg:https://framerusercontent.com/modules/IwgiIpMvQQpB5HxHhRDF/NxW6YT2T50Ee1zmdrDJl/wydDLfhpQ.js", "ssg:https://framerusercontent.com/modules/2ZGk8ORpvZyjLGkFIJJD/GS6eBGBYpkMJxSONNBKP/qND2LHqb8.js", "ssg:https://framerusercontent.com/modules/gK2JfwAXWFRrjp8JCk59/n4rP52Fs2k2ajlNQ3TSi/yd7nMFDHh.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";import{useInView,useMotionValue,useSpring}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Counter({decimal,value,decimalValue,direction,stiffness,damping,prefix,prefixText,suffix,suffixText,color,fontStyle}){const initialValue=0;const ref=useRef(null);const updatedDecimalValue=decimal===true?decimalValue:value;const motionValue=useMotionValue(direction===\"down\"?updatedDecimalValue:initialValue);const springValue=useSpring(motionValue,{damping:damping,stiffness:stiffness});const isInView=useInView(ref,{once:true,margin:\"-100px\"});useEffect(()=>{if(isInView){motionValue.set(direction===\"down\"?initialValue:updatedDecimalValue);}},[motionValue,isInView]);useEffect(()=>springValue.on(\"change\",latest=>{if(ref.current){ref.current.textContent=Intl.NumberFormat(\"en-US\").format(latest.toFixed(decimal===true?2:0));}}),[springValue]);return /*#__PURE__*/_jsxs(_Fragment,{children:[prefix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:prefixText}):null,/*#__PURE__*/_jsx(\"span\",{ref:ref,style:{...fontStyle,color:color},children:initialValue}),suffix?/*#__PURE__*/_jsx(\"span\",{style:{...fontStyle,color:color},children:suffixText}):null]});}Counter.defaultProps={decimal:false,value:100,decimalValue:100,direction:\"up\",stiffness:300,damping:100,prefix:false,prefixText:\"\",suffix:false,suffixText:\"\",color:\"#000000\",fontStyle:\"\"};addPropertyControls(Counter,{decimal:{title:\"Decimal\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},value:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,hidden(props){return props.decimal===true;}},decimalValue:{title:\"Value\",type:ControlType.Number,min:0,max:1e3,step:.01,hidden(props){return props.decimal===false;}},prefix:{title:\"Prefix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},prefixText:{title:\"Prefix Value\",type:ControlType.String,hidden(props){return props.prefix===false;}},suffix:{title:\"Suffix\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},suffixText:{title:\"Suffix Value\",type:ControlType.String,hidden(props){return props.suffix===false;}},direction:{title:\"Direction\",type:ControlType.Enum,options:[\"up\",\"down\"]},stiffness:{title:\"Stiffness\",type:ControlType.Number,min:1,max:1e3},damping:{title:\"Damping\",type:ControlType.Number,min:0,max:100},color:{title:\"Color\",type:ControlType.Color},fontStyle:{title:\"Font Style\",type:\"font\",controls:\"extended\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-medium\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}]}];export const css=['.framer-6i9Nz .framer-styles-preset-1vcau2:not(.rich-text-wrapper), .framer-6i9Nz .framer-styles-preset-1vcau2.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-size: 17px; --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: 500; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: #bababa; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-6i9Nz\";\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 (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Counter from\"https://framerusercontent.com/modules/yCymLwLLTl77dXBk5ZCQ/NBvc1ddCA2YWQsI8qGRc/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oCfj3gW89hRlsAdAPA6V/p8MXUDHXxIxW97NJVGVB/QMuEq11PS.js\";const CounterFonts=getFonts(Counter);const cycleOrder=[\"ZEl1lBlP5\",\"htpOHhC0I\"];const serializationHash=\"framer-KJ2MH\";const variantClassNames={htpOHhC0I:\"framer-v-1hz58rw\",ZEl1lBlP5:\"framer-v-9xpgeo\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ZEl1lBlP5\",\"Variant 2\":\"htpOHhC0I\"};const getProps=({fontSize,height,id,suffix,title,value,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,FCzUNk8zj:(_ref=suffix!==null&&suffix!==void 0?suffix:props.FCzUNk8zj)!==null&&_ref!==void 0?_ref:\"+\",lfxR4tjrX:(_ref1=fontSize!==null&&fontSize!==void 0?fontSize:props.lfxR4tjrX)!==null&&_ref1!==void 0?_ref1:80,QZmyCi6ep:(_ref2=value!==null&&value!==void 0?value:props.QZmyCi6ep)!==null&&_ref2!==void 0?_ref2:100,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"ZEl1lBlP5\",x9jw34lHv:(_ref4=title!==null&&title!==void 0?title:props.x9jw34lHv)!==null&&_ref4!==void 0?_ref4:\"YEARS OF EXPERIENCE\"};};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,x9jw34lHv,FCzUNk8zj,QZmyCi6ep,lfxR4tjrX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZEl1lBlP5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-9xpgeo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZEl1lBlP5\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\",...style},...addPropertyOverrides({htpOHhC0I:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5uxkex\",layoutDependency:layoutDependency,layoutId:\"tAPQtWLbS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yprmho-container\",layoutDependency:layoutDependency,layoutId:\"tsN8tbao2-container\",children:/*#__PURE__*/_jsx(Counter,{color:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",damping:44,decimal:false,decimalValue:99.99,direction:\"up\",fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"133px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"tsN8tbao2\",layoutId:\"tsN8tbao2\",prefix:false,prefixText:\"$\",stiffness:59,suffix:false,suffixText:\"\",value:QZmyCi6ep,width:\"100%\",...addPropertyOverrides({htpOHhC0I:{fontStyle:{fontFamily:'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',fontSize:\"96px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lfxR4tjrX-UeNFeauCj) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62)))\"},children:\"+\"})}),className:\"framer-z3rs3y\",fonts:[\"FS;Clash Display-medium\"],layoutDependency:layoutDependency,layoutId:\"PBRSB7RJQ\",style:{\"--extracted-r6o4lv\":\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(207, 72, 62))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-lfxR4tjrX-UeNFeauCj\":lfxR4tjrX},text:FCzUNk8zj,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vcau2\",\"data-styles-preset\":\"QMuEq11PS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234)))\"},children:\"YEARS OF EXPERIENCE\"})}),className:\"framer-7ejxhh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ev4MQNMc9\",style:{\"--extracted-r6o4lv\":\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:x9jw34lHv,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KJ2MH.framer-1xeuwm1, .framer-KJ2MH .framer-1xeuwm1 { display: block; }\",\".framer-KJ2MH.framer-9xpgeo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 535px; }\",\".framer-KJ2MH .framer-5uxkex { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KJ2MH .framer-yprmho-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KJ2MH .framer-z3rs3y { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-KJ2MH .framer-7ejxhh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KJ2MH.framer-9xpgeo, .framer-KJ2MH .framer-5uxkex { gap: 0px; } .framer-KJ2MH.framer-9xpgeo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KJ2MH.framer-9xpgeo > :first-child { margin-top: 0px; } .framer-KJ2MH.framer-9xpgeo > :last-child { margin-bottom: 0px; } .framer-KJ2MH .framer-5uxkex > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-KJ2MH .framer-5uxkex > :first-child { margin-left: 0px; } .framer-KJ2MH .framer-5uxkex > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 238.5\n * @framerIntrinsicWidth 535\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"htpOHhC0I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"x9jw34lHv\":\"title\",\"FCzUNk8zj\":\"suffix\",\"QZmyCi6ep\":\"value\",\"lfxR4tjrX\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUeNFeauCj=withCSS(Component,css,\"framer-KJ2MH\");export default FramerUeNFeauCj;FramerUeNFeauCj.displayName=\"Stats\";FramerUeNFeauCj.defaultProps={height:238.5,width:535};addPropertyControls(FramerUeNFeauCj,{variant:{options:[\"ZEl1lBlP5\",\"htpOHhC0I\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},x9jw34lHv:{defaultValue:\"YEARS OF EXPERIENCE\",displayTextArea:false,title:\"Title\",type:ControlType.String},FCzUNk8zj:{defaultValue:\"+\",displayTextArea:false,title:\"Suffix\",type:ControlType.String},QZmyCi6ep:{defaultValue:100,max:1e3,min:0,title:\"Value\",type:ControlType.Number},lfxR4tjrX:{defaultValue:80,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerUeNFeauCj,[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{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\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUeNFeauCj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"htpOHhC0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"x9jw34lHv\\\":\\\"title\\\",\\\"FCzUNk8zj\\\":\\\"suffix\\\",\\\"QZmyCi6ep\\\":\\\"value\\\",\\\"lfxR4tjrX\\\":\\\"fontSize\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"535\",\"framerIntrinsicHeight\":\"238.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UeNFeauCj.map", "function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=hash.browser.esm.js.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{Children as i}from\"react\";import{addPropertyControls as n,ControlType as a,RenderTarget as l,withCSS as r}from\"framer\";import{motion as o}from\"framer-motion\";import p from\"@emotion/hash\";import{renderToString as s}from\"react-dom/server\";/**\n * ARC TEXT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */let d=r(function(n){let a,r,d;// Checks\nlet x=i.count(n.slots)>0,b=l.current()===l.canvas,$=x&&\"graphic\"===n.type,w=\"circle\"===n.type,S=\"ellipse\"===n.type,v=S?n.cylinderHeight/2:0,V=f(n.flip,v);// If graphic is connected\nif($){let i=m(n.slots),l=m(i.props.svg),o=m(i.props.children);// Show placeholder on canvas if connected layer isn\u2019t a graphic\nif(b&&!o.props.frame)return /*#__PURE__*/t(\"div\",{style:u,children:[/*#__PURE__*/e(\"div\",{style:h,children:\"\uD83D\uDC8E\"}),/*#__PURE__*/e(\"p\",{style:g,children:\"Please connect to Graphic\"}),/*#__PURE__*/e(\"p\",{style:y,children:\"You can only connect the Arc to a Graphic with a single path.\"})]});// Grab the react element from the canvas and turn it into SVG\nif(b&&o){let e=s(o),t=o.props.frame;for(let i of(r=`0 0 ${t.width} ${t.height}`,e.match(/[\\w-]+=\"[^\"]*\"/g)))i.includes(\"d=\")&&(a=c(i));}// On the preview/deploy we already get the SVG string\nif(!b&&l){let e=l.match(/[\\w-]+=\"[^\"]*\"/g);for(let t of(r=(r=(r=l.split(\"viewBox=\")[1]).split(\">\")[0]).replace(/^\"(.+(?=\"$))\"$/,\"$1\"),e))t.includes(\"d=\")&&(a=c(t));}}// Unique IDs to avoid multiple instances on the canvas sharing a single path\nlet C=`curve-${p(a||V)}`;return\"top\"===n.alignmentBaseline&&(d=\"Text Top\"),\"center\"===n.alignmentBaseline&&(d=\"Central\"),\"bottom\"===n.alignmentBaseline&&(d=\"Hanging\"),/*#__PURE__*/e(o.div,{style:{width:\"100%\",height:\"100%\",// userSelect: \"none\",\n// pointerEvents: \"none\",\nposition:\"relative\"},draggable:\"false\",children:/*#__PURE__*/t(o.svg,{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",position:\"absolute\",inset:0,transformOrigin:\"center\",willChange:n.rotate&&\"transform\"},viewBox:$?r:\"0 0 100 100\",overflow:\"visible\",animate:w&&n.rotate&&{rotate:360},transition:w&&n.rotate&&{duration:100/n.rotateSpeed,repeat:1/0,ease:\"linear\"},children:[/*#__PURE__*/e(\"path\",{id:C,d:$?a:V,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/e(\"text\",{children:/*#__PURE__*/t(\"textPath\",{href:`#${C}`,startOffset:n.startOffset,dominantBaseline:d,style:{...n.font,wordSpacing:n.wordSpacing,fill:n.color},children:[n.text,!b&&n.animate&&/*#__PURE__*/e(\"animate\",{attributeName:\"startOffset\",from:`${n.animateStart}%`,to:`${n.animateEnd}%`,begin:\"0s\",dur:`${n.animateDuration}s`,repeatCount:\"indefinite\"})]})})]})});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);export default d;/* Method to get the first child */function m(e){let t;return i.map(e,e=>{void 0===t&&(t=e);}),t;}d.defaultProps={height:50,width:50},n(d,{text:{title:\"Content\",type:a.String,defaultValue:\"\u2726 THANK YOU \u2726 FOR VISITING\",displayTextArea:!0},type:{title:\"Type\",type:a.Enum,options:[\"circle\",\"ellipse\",\"graphic\"],optionTitles:[\"Circle\",\"Ellipse\",\"Graphic\"],defaultValue:!0},cylinderHeight:{title:\"Height\",type:a.Number,unit:\"px\",min:0,max:1e3,hidden:({type:e})=>\"ellipse\"!==e},rotate:{type:a.Boolean,title:\"Rotate\",defaultValue:!1,hidden:({type:e})=>\"circle\"!==e},rotateSpeed:{type:a.Number,title:\"Speed\",min:0,max:50,defaultValue:5,displayStepper:!0,step:1,hidden:({type:e,rotate:t})=>\"circle\"!==e||!t},slots:{type:a.ComponentInstance,title:\"Graphic\",hidden:({type:e})=>\"graphic\"!==e},alignmentBaseline:{title:\"Align\",type:a.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:!0},flip:{type:a.Boolean,defaultValue:!1,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\",hidden:({type:e})=>\"graphic\"===e},startOffset:{title:\"Offset\",type:a.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},color:{title:\"Color\",type:a.Color,defaultValue:\"#999\"},font:{type:a.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:!1},wordSpacing:{type:a.Number,step:1,defaultValue:0,title:\"Word\",displayStepper:!0},animate:{type:a.Boolean,defaultValue:!1,title:\"Animate\"},animateStart:{type:a.Number,min:-200,max:200,step:.1,defaultValue:-50,title:\"From\",unit:\"%\",hidden:e=>!e.animate},animateEnd:{type:a.Number,min:-200,max:200,step:.1,defaultValue:150,title:\"To\",unit:\"%\",hidden:e=>!e.animate},animateDuration:{type:a.Number,min:0,max:50,defaultValue:5,title:\"Time\",unit:\"s\",displayStepper:!0,hidden:e=>!e.animate}});/* Method to get stringless attributes */let c=e=>e.split(\"=\")[1].replace(/['\"]+/g,\"\"),f=(e,t)=>{let i=50-t,n=50+t;return e?`M 0 50 L 0 ${n} A 1 1 0 1 0 100 ${n} L 100 ${i} A 1 1 0 1 0 0 ${i} L 0 50`:`M 0 50 L 0 ${i} A 1 1 0 0 1 100 ${i} L 100 50 L 100 ${n} A 1 1 0 0 1 0 ${n} L 0 ${i}`;},u={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\"},h={fontSize:32,marginBottom:10},g={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},y={margin:0,opacity:.7,maxWidth:160,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"150\",\"framerIntrinsicHeight\":\"150\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.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 isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);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 r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}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,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{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as localizedValues from\"./Heo55BgD4-0.js\";const PhosphorFonts=getFonts(Phosphor);const ArcFonts=getFonts(Arc);const cycleOrder=[\"Rmwr2RAOf\",\"oyYqst7s4\"];const serializationHash=\"framer-oHos7\";const variantClassNames={oyYqst7s4:\"framer-v-12p1dr7\",Rmwr2RAOf:\"framer-v-17pr28w\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Rmwr2RAOf\",\"Variant 2\":\"oyYqst7s4\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,qGMvZtB2D:tap!==null&&tap!==void 0?tap:props.qGMvZtB2D,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Rmwr2RAOf\"};};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,qGMvZtB2D,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Rmwr2RAOf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2n98x0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(qGMvZtB2D){const res=await qGMvZtB2D(...args);if(res===false)return false;}});const onAppear18vjv42=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oyYqst7s4\"),100);});useOnVariantChange(baseVariant,{default:onAppear18vjv42});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17pr28w\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Rmwr2RAOf\",onTap:onTap2n98x0,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05))\",borderBottomLeftRadius:123,borderBottomRightRadius:123,borderTopLeftRadius:123,borderTopRightRadius:123,WebkitBackdropFilter:\"blur(5px)\",...style},...addPropertyOverrides({oyYqst7s4:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wvgxd\",\"data-framer-name\":\"Play Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"XddfZbFia\",style:{backgroundColor:\"rgba(242, 236, 230, 0.43)\",borderBottomLeftRadius:170,borderBottomRightRadius:170,borderTopLeftRadius:170,borderTopRightRadius:170},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qoq3co-container\",layoutDependency:layoutDependency,layoutId:\"c3kWHksXj-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"c3kWHksXj\",layoutId:\"c3kWHksXj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lv2gvb-container\",layoutDependency:layoutDependency,layoutId:\"s2xcmZeZp-container\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:5,animateEnd:150,animateStart:-50,color:\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",cylinderHeight:0,flip:false,font:{},height:\"100%\",id:\"s2xcmZeZp\",layoutId:\"s2xcmZeZp\",rotate:true,rotateSpeed:5,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"\u2726 PLAY VIDEO \u2726 KNOW ABOUT US \u2726 GREENSCAPE \",type:\"circle\",width:\"100%\",wordSpacing:1,...addPropertyOverrides({oyYqst7s4:{text:\"\u2726  PLAY VIDEO LEARN ABOUT PETER MARTINEZ\",wordSpacing:4}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oHos7.framer-15t12v6, .framer-oHos7 .framer-15t12v6 { display: block; }\",\".framer-oHos7.framer-17pr28w { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: 31px; will-change: var(--framer-will-change-override, transform); }\",\".framer-oHos7 .framer-wvgxd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 84px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-oHos7 .framer-qoq3co-container { flex: none; height: 16px; left: calc(49.3975903614458% - 16px / 2); position: absolute; top: calc(49.3975903614458% - 16px / 2); width: 16px; }\",\".framer-oHos7 .framer-1lv2gvb-container { flex: none; height: 118px; left: calc(50.00000000000002% - 118px / 2); position: absolute; top: calc(50.00000000000002% - 118px / 2); width: 118px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oHos7.framer-17pr28w { gap: 0px; } .framer-oHos7.framer-17pr28w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oHos7.framer-17pr28w > :first-child { margin-left: 0px; } .framer-oHos7.framer-17pr28w > :last-child { margin-right: 0px; } }\",\".framer-oHos7.framer-v-12p1dr7.framer-17pr28w { height: 131px; width: 131px; }\",\".framer-oHos7.framer-v-12p1dr7 .framer-qoq3co-container { height: 62px; left: calc(49.3975903614458% - 62px / 2); top: calc(49.3975903614458% - 62px / 2); width: 62px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 31\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oyYqst7s4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"qGMvZtB2D\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHeo55BgD4=withCSS(Component,css,\"framer-oHos7\");export default FramerHeo55BgD4;FramerHeo55BgD4.displayName=\"Cursor\";FramerHeo55BgD4.defaultProps={height:31,width:31};addPropertyControls(FramerHeo55BgD4,{variant:{options:[\"Rmwr2RAOf\",\"oyYqst7s4\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},qGMvZtB2D:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerHeo55BgD4,[{explicitInter:true,fonts:[]},...PhosphorFonts,...ArcFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHeo55BgD4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"31\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"qGMvZtB2D\\\":\\\"tap\\\"}\",\"framerIntrinsicWidth\":\"31\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oyYqst7s4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Heo55BgD4.map", "// Generated by Framer (0f540f8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-regular\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"}]}];export const css=['.framer-AEXg3 .framer-styles-preset-g6micz:not(.rich-text-wrapper), .framer-AEXg3 .framer-styles-preset-g6micz.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --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: 10px; --framer-text-alignment: left; --framer-text-color: var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-AEXg3\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Unbounded-300\",\"GF;Unbounded-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG60bx04jHgP6LR0Y.woff2\",weight:\"300\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6xjx04jHgP6LR0Y.woff2\",weight:\"400\"}]}];export const css=['.framer-pWP7h .framer-styles-preset-usmfc9:not(.rich-text-wrapper), .framer-pWP7h .framer-styles-preset-usmfc9.rich-text-wrapper h4 { --framer-font-family: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-family-bold: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, #384036); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-pWP7h .framer-styles-preset-usmfc9:not(.rich-text-wrapper), .framer-pWP7h .framer-styles-preset-usmfc9.rich-text-wrapper h4 { --framer-font-family: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-family-bold: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, #384036); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-pWP7h .framer-styles-preset-usmfc9:not(.rich-text-wrapper), .framer-pWP7h .framer-styles-preset-usmfc9.rich-text-wrapper h4 { --framer-font-family: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-family-bold: \"Unbounded\", \"Unbounded Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 300; --framer-font-weight-bold: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, #384036); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-pWP7h\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cDenN0mwB3BoxJBrmBLG/lN1fvqYve3xx3XlenDbm/iLvBdfOs8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6qbg9KNVpC6N1EIO7pU8/UkmL0szGDvwiDEDiIwU3/IsgMMPEHU.js\";import*as localizedValues from\"./qfmAoIwxN-0.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={BoLV82S49:{hover:true},FONXamMw7:{hover:true}};const cycleOrder=[\"BoLV82S49\",\"FONXamMw7\"];const serializationHash=\"framer-ugUH6\";const variantClassNames={BoLV82S49:\"framer-v-11yifgs\",FONXamMw7:\"framer-v-1cym70b\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:40,delay:0,mass:1,stiffness:232,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};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(React.Fragment);const humanReadableVariantMap={Collapsed:\"FONXamMw7\",Open:\"BoLV82S49\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,UkcAZJv33:(_ref=answer!==null&&answer!==void 0?answer:props.UkcAZJv33)!==null&&_ref!==void 0?_ref:\"GreenScape offers a wide range of landscaping services including landscape design and installation, lawn maintenance, hardscaping, irrigation systems, tree and shrub care, and more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"BoLV82S49\",zNMII1rLe:(_ref2=question!==null&&question!==void 0?question:props.zNMII1rLe)!==null&&_ref2!==void 0?_ref2:\"What services do you offer?\"};};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,zNMII1rLe,UkcAZJv33,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BoLV82S49\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1mlpz6w=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FONXamMw7\");});const onTap11urxvn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"BoLV82S49\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"FONXamMw7-hover\")return false;if(baseVariant===\"FONXamMw7\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,...addPropertyOverrides({FONXamMw7:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11yifgs\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BoLV82S49\",onTap:onTap1mlpz6w,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-175a2ee3-e73a-4465-a45f-78833a0f6493, rgba(13, 13, 13, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(5px)\",backgroundColor:\"var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,WebkitBackdropFilter:\"blur(5px)\",...style},variants:{\"FONXamMw7-hover\":{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\"}},...addPropertyOverrides({\"BoLV82S49-hover\":{\"data-framer-name\":undefined},\"FONXamMw7-hover\":{\"data-framer-name\":undefined},FONXamMw7:{\"data-framer-name\":\"Collapsed\",onTap:onTap11urxvn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2zjna\",\"data-framer-name\":\"Question Wrapper\",layoutDependency:layoutDependency,layoutId:\"hVg8pzOmt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-usmfc9\",\"data-styles-preset\":\"IsgMMPEHU\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"What services do you offer?\"})}),className:\"framer-qvamp2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rwluB66Bh\",style:{\"--extracted-1eung3n\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:zNMII1rLe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w0o78d\",layoutDependency:layoutDependency,layoutId:\"Z8k69Nnfe\",style:{backgroundColor:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(217, 76, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xpuybe-container\",layoutDependency:layoutDependency,layoutId:\"dHfm7uLCH-container\",style:{rotate:-180},variants:{\"FONXamMw7-hover\":{rotate:0},FONXamMw7:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"dHfm7uLCH\",layoutId:\"dHfm7uLCH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g6micz\",\"data-styles-preset\":\"iLvBdfOs8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"GreenScape offers a wide range of landscaping services including landscape design and installation, lawn maintenance, hardscaping, irrigation systems, tree and shrub care, and more.\"})}),className:\"framer-1c97uy6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HZV3HHWtU\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:UkcAZJv33,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ugUH6.framer-1d0zop9, .framer-ugUH6 .framer-1d0zop9 { display: block; }\",\".framer-ugUH6.framer-11yifgs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 800px; }\",\".framer-ugUH6 .framer-1f2zjna { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-ugUH6 .framer-qvamp2 { flex: 0.95 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-ugUH6 .framer-1w0o78d { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 34px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 34px; }\",\".framer-ugUH6 .framer-xpuybe-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-ugUH6 .framer-1c97uy6 { flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ugUH6.framer-11yifgs, .framer-ugUH6 .framer-1w0o78d { gap: 0px; } .framer-ugUH6.framer-11yifgs > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-ugUH6.framer-11yifgs > :first-child { margin-top: 0px; } .framer-ugUH6.framer-11yifgs > :last-child { margin-bottom: 0px; } .framer-ugUH6 .framer-1w0o78d > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ugUH6 .framer-1w0o78d > :first-child { margin-left: 0px; } .framer-ugUH6 .framer-1w0o78d > :last-child { margin-right: 0px; } }\",\".framer-ugUH6.framer-v-1cym70b.hover.framer-11yifgs { padding: 20px 20px 20px 40px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ugUH6[data-border=\"true\"]::after, .framer-ugUH6 [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 160\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FONXamMw7\":{\"layout\":[\"fixed\",\"auto\"]},\"NcjpOSZVF\":{\"layout\":[\"fixed\",\"auto\"]},\"oGNRiWbLL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zNMII1rLe\":\"question\",\"UkcAZJv33\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqfmAoIwxN=withCSS(Component,css,\"framer-ugUH6\");export default FramerqfmAoIwxN;FramerqfmAoIwxN.displayName=\"FAQ - Single\";FramerqfmAoIwxN.defaultProps={height:160,width:800};addPropertyControls(FramerqfmAoIwxN,{variant:{options:[\"BoLV82S49\",\"FONXamMw7\"],optionTitles:[\"Open\",\"Collapsed\"],title:\"Variant\",type:ControlType.Enum},zNMII1rLe:{defaultValue:\"What services do you offer?\",displayTextArea:true,title:\"Question\",type:ControlType.String},UkcAZJv33:{defaultValue:\"GreenScape offers a wide range of landscaping services including landscape design and installation, lawn maintenance, hardscaping, irrigation systems, tree and shrub care, and more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerqfmAoIwxN,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqfmAoIwxN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FONXamMw7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NcjpOSZVF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oGNRiWbLL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"zNMII1rLe\\\":\\\"question\\\",\\\"UkcAZJv33\\\":\\\"answer\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"160\",\"framerIntrinsicWidth\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qfmAoIwxN.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./iV8GXG0Ck-0.js\";import FAQSingle from\"https://framerusercontent.com/modules/pPO20IMMjvkVNs5sq2Db/DIs870ttM2fI4lRmVIX9/qfmAoIwxN.js\";const FAQSingleFonts=getFonts(FAQSingle);const serializationHash=\"framer-VjlBU\";const variantClassNames={UO6l1ScjL:\"framer-v-16eibbv\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UO6l1ScjL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-16eibbv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UO6l1ScjL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+0+0),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9edpkr-container\",layoutDependency:layoutDependency,layoutId:\"UQO0fZHp5-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"UQO0fZHp5\",layoutId:\"UQO0fZHp5\",style:{width:\"100%\"},UkcAZJv33:\"I am running for the board of trustees because I am passionate about forming stronger connections between the community and higher education programs, such as adult programs, noncredit programs, and certificate and retraining programs, to help enhance economic development opportunities. My steadfast dedication to preserving and enhancing the quality of our education system provides reassurance and confidence to our community. Collaborating with feeder schools, city government, community-based organizations, and local businesses is at the core of my leadership.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"What motivates you to run for the board of trustees?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+160+20),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kllug3-container\",layoutDependency:layoutDependency,layoutId:\"myA8v33DJ-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"myA8v33DJ\",layoutId:\"myA8v33DJ\",style:{width:\"100%\"},UkcAZJv33:\"With a rich experience of 28 years in higher education, I have had the privilege of serving in diverse roles.  I have led as an academic senate president at the local level, contributed for three years as a statewide committee member of the occupational & vocational cooperative education for California academic senate for community colleges, and served as a regional IX Coordinator for California community colleges extended Opportunities Programs and Services PVC for 5 years. My membership in the California Teachers Association, along with my role as a statewide allocations & Budgeting taskforce committee member for EOPS, have further enriched my professional journey. I have also been part of the strong workforce for over a decade, a platform for community college enhancement.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"What experience or skills do you bring to the board?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+320+40),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17avisp-container\",layoutDependency:layoutDependency,layoutId:\"s6c_ZEgij-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"s6c_ZEgij\",layoutId:\"s6c_ZEgij\",style:{width:\"100%\"},UkcAZJv33:\"My commitment to Student Learning Outcomes (SLOs) is a cornerstone of my educational leadership, ensuring that our students receive the best possible education. This dedication is part of a broader commitment to Enrollment Management, Fiscal Responsibility, Accreditation Practices, Support for student government, community growth and development, board policies and administrative policies, support for staff and non-teaching personnel, workforce development, and community collaboration.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"What are you dedicated to?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+480+60),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a000ik-container\",layoutDependency:layoutDependency,layoutId:\"FhzCmiWN5-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"FhzCmiWN5\",layoutId:\"FhzCmiWN5\",style:{width:\"100%\"},UkcAZJv33:\"Focus on strategic planning practices, strengthen community participation, work closely with our stakeholders, build on economic development concepts, strengthen public and private sector working relationships, contribute to the board effectiveness, allow shared governance to continue to be institutional be a top priority.  It is equally important to understand our community\u2019s concerns, building a trusting working relationship with the community and with those we serve.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"What are your top priorities if elected to the Board of Trustees?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+640+80),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyon8w-container\",layoutDependency:layoutDependency,layoutId:\"TKZWRopzY-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"TKZWRopzY\",layoutId:\"TKZWRopzY\",style:{width:\"100%\"},UkcAZJv33:\"Our commitment to shared governance is unwavering. We will focus on strategic planning practices, strengthen community participation, and work closely with our stakeholders. Building year after year on economic development concepts and strengthening public and private sector working relationships are key. Contributing to the board's effectiveness and understanding our community's concerns are also important. But above all, our commitment to shared governance will guide us in building a trusting working relationship with the community on campus and those we serve. \",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"How do you plan to engage with the community or stakeholders?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+800+100),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzrzwk-container\",layoutDependency:layoutDependency,layoutId:\"dWHMhFJbu-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"dWHMhFJbu\",layoutId:\"dWHMhFJbu\",style:{width:\"100%\"},UkcAZJv33:\"My vision for my college is to create an atmosphere where every individual feels accepted and valued. Every member of the college, including board members, should work together to find new and creative ways to make learning innovative, enjoyable, and rewarding. The vision is centered around prioritizing the needs of the students above all else.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"What is your vision for the future of the college?\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-1240)/2+960+120),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n790hb-container\",layoutDependency:layoutDependency,layoutId:\"fbKVA1f4H-container\",children:/*#__PURE__*/_jsx(FAQSingle,{height:\"100%\",id:\"fbKVA1f4H\",layoutId:\"fbKVA1f4H\",style:{width:\"100%\"},UkcAZJv33:\"A trustee's contribution involves developing school programs, planning for growth, providing financial support, and fostering strategic and leadership skills.\",variant:\"FONXamMw7\",width:\"100%\",zNMII1rLe:\"How do you view the role of the trustee?\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VjlBU.framer-12px84i, .framer-VjlBU .framer-12px84i { display: block; }\",\".framer-VjlBU.framer-16eibbv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-VjlBU .framer-9edpkr-container, .framer-VjlBU .framer-1kllug3-container, .framer-VjlBU .framer-17avisp-container, .framer-VjlBU .framer-a000ik-container, .framer-VjlBU .framer-eyon8w-container, .framer-VjlBU .framer-1mzrzwk-container, .framer-VjlBU .framer-1n790hb-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VjlBU.framer-16eibbv { gap: 0px; } .framer-VjlBU.framer-16eibbv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-VjlBU.framer-16eibbv > :first-child { margin-top: 0px; } .framer-VjlBU.framer-16eibbv > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 732\n * @framerIntrinsicWidth 1180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriV8GXG0Ck=withCSS(Component,css,\"framer-VjlBU\");export default FrameriV8GXG0Ck;FrameriV8GXG0Ck.displayName=\"FAQ List - Common\";FrameriV8GXG0Ck.defaultProps={height:732,width:1180};addFonts(FrameriV8GXG0Ck,[{explicitInter:true,fonts:[]},...FAQSingleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriV8GXG0Ck\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"732\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1180\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iV8GXG0Ck.map", "// Generated by Framer (b742ddc)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Clash Display-medium\",\"FS;Clash Display-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"}]}];export const css=['.framer-mxO0M .framer-styles-preset-4znnbj:not(.rich-text-wrapper), .framer-mxO0M .framer-styles-preset-4znnbj.rich-text-wrapper h2 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 49px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -1.8px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, #ffffff); --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: 1000px) { .framer-mxO0M .framer-styles-preset-4znnbj:not(.rich-text-wrapper), .framer-mxO0M .framer-styles-preset-4znnbj.rich-text-wrapper h2 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -1.8px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 0px) { .framer-mxO0M .framer-styles-preset-4znnbj:not(.rich-text-wrapper), .framer-mxO0M .framer-styles-preset-4znnbj.rich-text-wrapper h2 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -1.8px; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-mxO0M\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-black\",\"FS;Satoshi-black\",\"FS;Satoshi-black italic\",\"FS;Satoshi-black italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/5ICO57VJIN252OT5L2KLEIPW754DTLAO/ZU64SLR2IEO66N27IVY5Z6JJJRTJECJK/TCTRLNEXANFIGSFCZTGQL7PZ5362GYK6.woff2\",weight:\"900\"}]}];export const css=['.framer-RcHd1 .framer-styles-preset-5vsgqx:not(.rich-text-wrapper), .framer-RcHd1 .framer-styles-preset-5vsgqx.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", sans-serif; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-RcHd1 .framer-styles-preset-5vsgqx:not(.rich-text-wrapper), .framer-RcHd1 .framer-styles-preset-5vsgqx.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-RcHd1 .framer-styles-preset-5vsgqx:not(.rich-text-wrapper), .framer-RcHd1 .framer-styles-preset-5vsgqx.rich-text-wrapper p { --framer-font-family: \"Satoshi\", sans-serif; --framer-font-family-bold: \"Satoshi\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", sans-serif; --framer-font-family-italic: \"Satoshi\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 900; --framer-letter-spacing: 0em; --framer-line-height: 2em; --framer-paragraph-spacing: 24px; --framer-text-alignment: left; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-RcHd1\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/pYJMhwgcNBtCKH81Qdkx/I3MCZF45XKONJjuyEIUr/urlDCZwpF.js\";import*as localizedValues from\"./VLQCZcVpG-0.js\";const cycleOrder=[\"QdaMq0Dkc\",\"uoyC3kaEV\",\"HXKXPQGUH\"];const serializationHash=\"framer-0OUkj\";const variantClassNames={HXKXPQGUH:\"framer-v-17r5t02\",QdaMq0Dkc:\"framer-v-10ml71p\",uoyC3kaEV:\"framer-v-12zhzmo\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"QdaMq0Dkc\",\"Variant 2\":\"uoyC3kaEV\",\"Variant 3\":\"HXKXPQGUH\"};const getProps=({height,id,label,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,NNWJ0Hne9:(_ref=label!==null&&label!==void 0?label:props.NNWJ0Hne9)!==null&&_ref!==void 0?_ref:\"Experience\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"QdaMq0Dkc\"};};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,NNWJ0Hne9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QdaMq0Dkc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10ml71p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QdaMq0Dkc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\",borderBottomLeftRadius:39,borderBottomRightRadius:39,borderTopLeftRadius:39,borderTopRightRadius:39,...style},...addPropertyOverrides({HXKXPQGUH:{\"data-framer-name\":\"Variant 3\"},uoyC3kaEV:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 122, 59)))\"},children:\"Our Three Step Process\"})}),className:\"framer-1453sob\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p9tJvn7J7\",style:{\"--extracted-r6o4lv\":\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(255, 122, 59))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NNWJ0Hne9,variants:{HXKXPQGUH:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},uoyC3kaEV:{\"--extracted-r6o4lv\":\"var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(10, 10, 10))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HXKXPQGUH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},uoyC3kaEV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5vsgqx\",\"data-styles-preset\":\"urlDCZwpF\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eea41e84-741c-4ad1-8fa4-d13594d15041, rgb(10, 10, 10)))\"},children:\"Our Three Step Process\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0OUkj.framer-1tev78v, .framer-0OUkj .framer-1tev78v { display: block; }\",\".framer-0OUkj.framer-10ml71p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 3px 12px 3px 12px; position: relative; width: min-content; }\",\".framer-0OUkj .framer-1453sob { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0OUkj.framer-10ml71p { gap: 0px; } .framer-0OUkj.framer-10ml71p > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-0OUkj.framer-10ml71p > :first-child { margin-left: 0px; } .framer-0OUkj.framer-10ml71p > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 94\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uoyC3kaEV\":{\"layout\":[\"auto\",\"auto\"]},\"HXKXPQGUH\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"NNWJ0Hne9\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVLQCZcVpG=withCSS(Component,css,\"framer-0OUkj\");export default FramerVLQCZcVpG;FramerVLQCZcVpG.displayName=\"Tag\";FramerVLQCZcVpG.defaultProps={height:28,width:94};addPropertyControls(FramerVLQCZcVpG,{variant:{options:[\"QdaMq0Dkc\",\"uoyC3kaEV\",\"HXKXPQGUH\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},NNWJ0Hne9:{defaultValue:\"Experience\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerVLQCZcVpG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVLQCZcVpG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"94\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"28\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uoyC3kaEV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HXKXPQGUH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"NNWJ0Hne9\\\":\\\"label\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VLQCZcVpG.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wQeNPtEuJvZt52CIWU0i/fp4pSMWZPzNxF77ctAZo/DuMLJ2VUN.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vu5Wtg4NhsgnyXboQai7/To91w1qk8BuZODzwvfwm/rZemCCbaP.js\";import*as localizedValues from\"./QJ12gIOBS-0.js\";import Tag from\"https://framerusercontent.com/modules/e6enuRA469KCyxAhG8Xc/v3NGQI536FFI0whgZ8Zk/VLQCZcVpG.js\";const TagFonts=getFonts(Tag);const cycleOrder=[\"jNnXiOwGn\",\"TNOU60_OL\",\"KJ1G3Id0e\",\"eaYrV5aCy\",\"QnMn_0bHD\",\"eH7gyu2bN\",\"u4P6wTRAk\",\"lLa5v4PpE\"];const serializationHash=\"framer-McOPx\";const variantClassNames={eaYrV5aCy:\"framer-v-1cq5z9s\",eH7gyu2bN:\"framer-v-15aqcfi\",jNnXiOwGn:\"framer-v-120qdve\",KJ1G3Id0e:\"framer-v-n83exn\",lLa5v4PpE:\"framer-v-2wa00u\",QnMn_0bHD:\"framer-v-1oynr12\",TNOU60_OL:\"framer-v-1rqt7r2\",u4P6wTRAk:\"framer-v-116jili\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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(React.Fragment);const humanReadableVariantMap={\"2 Lines\":\"u4P6wTRAk\",\"Dark - Left Aligned\":\"TNOU60_OL\",\"Dark - Middle Aligned\":\"jNnXiOwGn\",\"Dark - Phone - No Animation \":\"QnMn_0bHD\",\"Light - Left Aligned\":\"eaYrV5aCy\",\"Light - Middle Aligned\":\"KJ1G3Id0e\",\"Light - Phone - No Animation\":\"eH7gyu2bN\",\"Variant 8\":\"lLa5v4PpE\"};const getProps=({heading,height,id,labelVisibility,subheading,subheadingVisibility,tag,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,ExBt4bIY2:(_ref=heading!==null&&heading!==void 0?heading:props.ExBt4bIY2)!==null&&_ref!==void 0?_ref:\"This is the heading\",GqTmcaQLx:(_ref1=tag!==null&&tag!==void 0?tag:props.GqTmcaQLx)!==null&&_ref1!==void 0?_ref1:\"This is the tag\",kAHPdHlCh:(_ref2=subheading!==null&&subheading!==void 0?subheading:props.kAHPdHlCh)!==null&&_ref2!==void 0?_ref2:\"This is the subheading or supporting text\",NlGfzfEF2:(_ref3=labelVisibility!==null&&labelVisibility!==void 0?labelVisibility:props.NlGfzfEF2)!==null&&_ref3!==void 0?_ref3:true,p1KubWiKz:(_ref4=subheadingVisibility!==null&&subheadingVisibility!==void 0?subheadingVisibility:props.p1KubWiKz)!==null&&_ref4!==void 0?_ref4:true,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"jNnXiOwGn\"};};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,GqTmcaQLx,ExBt4bIY2,kAHPdHlCh,p1KubWiKz,NlGfzfEF2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jNnXiOwGn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-120qdve\",className,classNames),\"data-framer-name\":\"Dark - Middle Aligned\",layoutDependency:layoutDependency,layoutId:\"jNnXiOwGn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({eaYrV5aCy:{\"data-framer-name\":\"Light - Left Aligned\"},eH7gyu2bN:{\"data-framer-name\":\"Light - Phone - No Animation\"},KJ1G3Id0e:{\"data-framer-name\":\"Light - Middle Aligned\"},lLa5v4PpE:{\"data-framer-name\":\"Variant 8\"},QnMn_0bHD:{\"data-framer-name\":\"Dark - Phone - No Animation \"},TNOU60_OL:{\"data-framer-name\":\"Dark - Left Aligned\"},u4P6wTRAk:{\"data-framer-name\":\"2 Lines\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4rk068\",\"data-framer-name\":\"Heading And Label Wrapper\",layoutDependency:layoutDependency,layoutId:\"Ea6hEEneD\",children:[NlGfzfEF2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-236.9)/2+0+0)+0+0,...addPropertyOverrides({lLa5v4PpE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-246.9)/2+0+0)+0+0},u4P6wTRAk:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-208.9)/2+0+0)+12.950000000000003}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1beyvwz-container\",layoutDependency:layoutDependency,layoutId:\"P4geMZ9Ub-container\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"P4geMZ9Ub\",layoutId:\"P4geMZ9Ub\",NNWJ0Hne9:GqTmcaQLx,variant:\"QdaMq0Dkc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)))\"},children:\"Our Three Step Process\"})}),className:\"framer-cyszvz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s8LAyXUrA\",style:{\"--extracted-1of0zx5\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ExBt4bIY2,variants:{eaYrV5aCy:{\"--extracted-1of0zx5\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},eH7gyu2bN:{\"--extracted-1of0zx5\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},KJ1G3Id0e:{\"--extracted-1of0zx5\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},lLa5v4PpE:{\"--extracted-1of0zx5\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},u4P6wTRAk:{\"--extracted-1of0zx5\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eaYrV5aCy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},eH7gyu2bN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},KJ1G3Id0e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},lLa5v4PpE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})},TNOU60_OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)))\"},children:\"Our Three Step Process\"})})},u4P6wTRAk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"Our Three Step Process\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1keuklz\",layoutDependency:layoutDependency,layoutId:\"jQZc3YX85\",children:p1KubWiKz&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})}),className:\"framer-wmkofx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zO54No9T8\",style:{\"--extracted-r6o4lv\":\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.9},text:kAHPdHlCh,variants:{eaYrV5aCy:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",opacity:.6},eH7gyu2bN:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",opacity:.6},KJ1G3Id0e:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",opacity:.6},lLa5v4PpE:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",opacity:.6},TNOU60_OL:{opacity:.8},u4P6wTRAk:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",opacity:.6}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eaYrV5aCy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})},eH7gyu2bN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})},KJ1G3Id0e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})},lLa5v4PpE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})},TNOU60_OL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})},u4P6wTRAk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"We believe in combining innovative design, sustainable practices, and exceptional craftsmanship to bring your vision to life.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-McOPx.framer-vewizp, .framer-McOPx .framer-vewizp { display: block; }\",\".framer-McOPx.framer-120qdve { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1180px; }\",\".framer-McOPx .framer-4rk068 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-McOPx .framer-1beyvwz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-McOPx .framer-cyszvz { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-McOPx .framer-1keuklz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-McOPx .framer-wmkofx { flex: 1 0 0px; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McOPx.framer-120qdve, .framer-McOPx .framer-4rk068, .framer-McOPx .framer-1keuklz { gap: 0px; } .framer-McOPx.framer-120qdve > *, .framer-McOPx .framer-4rk068 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-McOPx.framer-120qdve > :first-child, .framer-McOPx .framer-4rk068 > :first-child { margin-top: 0px; } .framer-McOPx.framer-120qdve > :last-child, .framer-McOPx .framer-4rk068 > :last-child { margin-bottom: 0px; } .framer-McOPx .framer-1keuklz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-McOPx .framer-1keuklz > :first-child { margin-left: 0px; } .framer-McOPx .framer-1keuklz > :last-child { margin-right: 0px; } }\",\".framer-McOPx.framer-v-1rqt7r2.framer-120qdve, .framer-McOPx.framer-v-1rqt7r2 .framer-4rk068, .framer-McOPx.framer-v-1cq5z9s.framer-120qdve, .framer-McOPx.framer-v-1cq5z9s .framer-4rk068 { align-content: flex-start; align-items: flex-start; }\",\".framer-McOPx.framer-v-116jili.framer-120qdve, .framer-McOPx.framer-v-2wa00u.framer-120qdve { align-content: flex-start; align-items: flex-start; gap: 20px; }\",\".framer-McOPx.framer-v-116jili .framer-4rk068 { flex-direction: row; gap: 24px; justify-content: flex-start; }\",\".framer-McOPx.framer-v-116jili .framer-cyszvz { flex: 1 0 0px; max-width: unset; width: 1px; }\",\".framer-McOPx.framer-v-116jili .framer-1keuklz { justify-content: flex-end; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McOPx.framer-v-116jili.framer-120qdve, .framer-McOPx.framer-v-116jili .framer-4rk068 { gap: 0px; } .framer-McOPx.framer-v-116jili.framer-120qdve > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-McOPx.framer-v-116jili.framer-120qdve > :first-child { margin-top: 0px; } .framer-McOPx.framer-v-116jili.framer-120qdve > :last-child { margin-bottom: 0px; } .framer-McOPx.framer-v-116jili .framer-4rk068 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-McOPx.framer-v-116jili .framer-4rk068 > :first-child { margin-left: 0px; } .framer-McOPx.framer-v-116jili .framer-4rk068 > :last-child { margin-right: 0px; } }\",\".framer-McOPx.framer-v-2wa00u .framer-4rk068 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; }\",\".framer-McOPx.framer-v-2wa00u .framer-1keuklz { justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McOPx.framer-v-2wa00u.framer-120qdve { gap: 0px; } .framer-McOPx.framer-v-2wa00u.framer-120qdve > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-McOPx.framer-v-2wa00u.framer-120qdve > :first-child { margin-top: 0px; } .framer-McOPx.framer-v-2wa00u.framer-120qdve > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 146\n * @framerIntrinsicWidth 1180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TNOU60_OL\":{\"layout\":[\"fixed\",\"auto\"]},\"KJ1G3Id0e\":{\"layout\":[\"fixed\",\"auto\"]},\"eaYrV5aCy\":{\"layout\":[\"fixed\",\"auto\"]},\"QnMn_0bHD\":{\"layout\":[\"fixed\",\"auto\"]},\"eH7gyu2bN\":{\"layout\":[\"fixed\",\"auto\"]},\"u4P6wTRAk\":{\"layout\":[\"fixed\",\"auto\"]},\"lLa5v4PpE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GqTmcaQLx\":\"tag\",\"ExBt4bIY2\":\"heading\",\"kAHPdHlCh\":\"subheading\",\"p1KubWiKz\":\"subheadingVisibility\",\"NlGfzfEF2\":\"labelVisibility\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQJ12gIOBS=withCSS(Component,css,\"framer-McOPx\");export default FramerQJ12gIOBS;FramerQJ12gIOBS.displayName=\"Heading\";FramerQJ12gIOBS.defaultProps={height:146,width:1180};addPropertyControls(FramerQJ12gIOBS,{variant:{options:[\"jNnXiOwGn\",\"TNOU60_OL\",\"KJ1G3Id0e\",\"eaYrV5aCy\",\"QnMn_0bHD\",\"eH7gyu2bN\",\"u4P6wTRAk\",\"lLa5v4PpE\"],optionTitles:[\"Dark - Middle Aligned\",\"Dark - Left Aligned\",\"Light - Middle Aligned\",\"Light - Left Aligned\",\"Dark - Phone - No Animation \",\"Light - Phone - No Animation\",\"2 Lines\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},GqTmcaQLx:{defaultValue:\"This is the tag\",displayTextArea:false,title:\"Tag\",type:ControlType.String},ExBt4bIY2:{defaultValue:\"This is the heading\",displayTextArea:true,title:\"Heading\",type:ControlType.String},kAHPdHlCh:{defaultValue:\"This is the subheading or supporting text\",displayTextArea:true,title:\"Subheading\",type:ControlType.String},p1KubWiKz:{defaultValue:true,title:\"Subheading Visibility\",type:ControlType.Boolean},NlGfzfEF2:{defaultValue:true,title:\"Label Visibility\",type:ControlType.Boolean}});addFonts(FramerQJ12gIOBS,[{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\"}]},...TagFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQJ12gIOBS\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"GqTmcaQLx\\\":\\\"tag\\\",\\\"ExBt4bIY2\\\":\\\"heading\\\",\\\"kAHPdHlCh\\\":\\\"subheading\\\",\\\"p1KubWiKz\\\":\\\"subheadingVisibility\\\",\\\"NlGfzfEF2\\\":\\\"labelVisibility\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TNOU60_OL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KJ1G3Id0e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eaYrV5aCy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QnMn_0bHD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eH7gyu2bN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u4P6wTRAk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lLa5v4PpE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"146\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1180\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./s0HwBJzsu-0.js\";const cycleOrder=[\"NUgujt6Gr\",\"t9NeFqH2E\"];const serializationHash=\"framer-Qv305\";const variantClassNames={NUgujt6Gr:\"framer-v-fv4gv5\",t9NeFqH2E:\"framer-v-6fz32u\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"NUgujt6Gr\",\"Variant 2\":\"t9NeFqH2E\"};const getProps=({avatar,backgroundBlur,clientName,designation,height,id,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,DiVXinioL:(_ref=clientName!==null&&clientName!==void 0?clientName:props.DiVXinioL)!==null&&_ref!==void 0?_ref:\"S. Thompson\",ImE1bDbog:(_ref1=testimonial!==null&&testimonial!==void 0?testimonial:props.ImE1bDbog)!==null&&_ref1!==void 0?_ref1:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",PNWVubnIT:(_ref2=backgroundBlur!==null&&backgroundBlur!==void 0?backgroundBlur:props.PNWVubnIT)!==null&&_ref2!==void 0?_ref2:10,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"NUgujt6Gr\",vvvuv92PD:(_ref4=avatar!==null&&avatar!==void 0?avatar:props.vvvuv92PD)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"},wnT5LM8TP:(_ref5=designation!==null&&designation!==void 0?designation:props.wnT5LM8TP)!==null&&_ref5!==void 0?_ref5:\"Company Name\"};};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,DiVXinioL,wnT5LM8TP,ImE1bDbog,vvvuv92PD,PNWVubnIT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NUgujt6Gr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fv4gv5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NUgujt6Gr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${PNWVubnIT}px)`,backgroundColor:\"var(--token-175a2ee3-e73a-4465-a45f-78833a0f6493, rgba(13, 13, 13, 0.1))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"none\",...style},variants:{t9NeFqH2E:{backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({t9NeFqH2E:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7rxc48\",layoutDependency:layoutDependency,layoutId:\"IpRa9pdcd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pel69m\",layoutDependency:layoutDependency,layoutId:\"vfUFJSM4m\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"They transformed my backyard into a tranquil retreat! Their attention to detail and professionalism were outstanding. I couldn't be happier with the results!\"})}),className:\"framer-1xpkxwk\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"Gc00mIHmt\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:ImE1bDbog,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16hkncp\",layoutDependency:layoutDependency,layoutId:\"qkfxOhW3H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lfgj0y\",\"data-framer-name\":\"bxs_quote_left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KPztorN79\",opacity:.3,style:{opacity:.3},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 55\"><path d=\"M 8.459 14.419 C 11.674 10.934 16.539 9.167 22.919 9.167 L 25.211 9.167 L 25.211 15.627 L 23.366 15.996 C 20.226 16.624 18.042 17.859 16.874 19.672 C 16.264 20.648 15.918 21.766 15.87 22.917 L 22.917 22.917 C 24.182 22.917 25.208 23.943 25.208 25.208 L 25.208 41.25 C 25.208 43.778 23.153 45.833 20.625 45.833 L 6.875 45.833 C 5.609 45.833 4.583 44.807 4.583 43.542 L 4.583 32.083 L 4.59 25.394 C 4.57 25.14 4.134 19.112 8.459 14.419 Z M 45.836 45.833 L 32.086 45.833 C 30.82 45.833 29.794 44.807 29.794 43.542 L 29.794 32.083 L 29.799 25.394 C 29.778 25.14 29.343 19.112 33.667 14.419 C 36.882 10.934 41.747 9.167 48.127 9.167 L 50.419 9.167 L 50.419 15.627 L 48.574 15.996 C 45.435 16.624 43.251 17.859 42.082 19.672 C 41.472 20.648 41.126 21.766 41.078 22.917 L 48.125 22.917 C 49.391 22.917 50.417 23.943 50.417 25.208 L 50.417 41.25 C 50.417 43.778 48.361 45.833 45.833 45.833 Z\" fill=\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(191, 51, 19))\"></path></svg>',svgContentId:12230278329,withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12hr4t2\",layoutDependency:layoutDependency,layoutId:\"GsNV2TX0Y\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0c7fi\",layoutDependency:layoutDependency,layoutId:\"GSQ9HLCZD\",style:{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xtlg1s\",layoutDependency:layoutDependency,layoutId:\"Bx5ptt9jJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvwogf\",layoutDependency:layoutDependency,layoutId:\"cs50DmjCG\",style:{backgroundColor:\"var(--token-122cea26-357d-4aa9-9285-cd7ff9c161b1, rgba(33, 80, 82, 0.06))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||521)-40-315.6)/2+165+10)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)},className:\"framer-10mh08a\",layoutDependency:layoutDependency,layoutId:\"IzUJjvooO\",style:{borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({t9NeFqH2E:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||528)-40-322.6)/2+165+17)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ymo015\",layoutDependency:layoutDependency,layoutId:\"vyfB7et4J\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"S. Thompson\"})}),className:\"framer-19i8956\",fonts:[\"GF;Unbounded-500\"],layoutDependency:layoutDependency,layoutId:\"NcHumZhoK\",style:{\"--extracted-1lwpl3i\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DiVXinioL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Company Name\"})}),className:\"framer-qxpdhg\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"hH8HkUsQI\",style:{\"--extracted-r6o4lv\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wnT5LM8TP,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qv305.framer-ip9u3b, .framer-Qv305 .framer-ip9u3b { display: block; }\",\".framer-Qv305.framer-fv4gv5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qv305 .framer-7rxc48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-Qv305 .framer-pel69m { 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: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qv305 .framer-1xpkxwk { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Qv305 .framer-16hkncp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -10px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: -1; }\",\".framer-Qv305 .framer-1lfgj0y { flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-Qv305 .framer-12hr4t2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qv305 .framer-1q0c7fi { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Qv305 .framer-xtlg1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Qv305 .framer-lvwogf { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qv305 .framer-10mh08a { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qv305 .framer-1ymo015 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Qv305 .framer-19i8956, .framer-Qv305 .framer-qxpdhg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qv305.framer-fv4gv5, .framer-Qv305 .framer-7rxc48, .framer-Qv305 .framer-pel69m, .framer-Qv305 .framer-16hkncp, .framer-Qv305 .framer-12hr4t2, .framer-Qv305 .framer-xtlg1s, .framer-Qv305 .framer-lvwogf, .framer-Qv305 .framer-1ymo015 { gap: 0px; } .framer-Qv305.framer-fv4gv5 > *, .framer-Qv305 .framer-7rxc48 > *, .framer-Qv305 .framer-12hr4t2 > *, .framer-Qv305 .framer-lvwogf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Qv305.framer-fv4gv5 > :first-child, .framer-Qv305 .framer-7rxc48 > :first-child, .framer-Qv305 .framer-12hr4t2 > :first-child, .framer-Qv305 .framer-lvwogf > :first-child, .framer-Qv305 .framer-1ymo015 > :first-child { margin-top: 0px; } .framer-Qv305.framer-fv4gv5 > :last-child, .framer-Qv305 .framer-7rxc48 > :last-child, .framer-Qv305 .framer-12hr4t2 > :last-child, .framer-Qv305 .framer-lvwogf > :last-child, .framer-Qv305 .framer-1ymo015 > :last-child { margin-bottom: 0px; } .framer-Qv305 .framer-pel69m > *, .framer-Qv305 .framer-16hkncp > *, .framer-Qv305 .framer-xtlg1s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Qv305 .framer-pel69m > :first-child, .framer-Qv305 .framer-16hkncp > :first-child, .framer-Qv305 .framer-xtlg1s > :first-child { margin-left: 0px; } .framer-Qv305 .framer-pel69m > :last-child, .framer-Qv305 .framer-16hkncp > :last-child, .framer-Qv305 .framer-xtlg1s > :last-child { margin-right: 0px; } .framer-Qv305 .framer-1ymo015 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-Qv305.framer-v-6fz32u.framer-fv4gv5 { gap: 17px; }\",\".framer-Qv305.framer-v-6fz32u .framer-7rxc48 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Qv305.framer-v-6fz32u.framer-fv4gv5 { gap: 0px; } .framer-Qv305.framer-v-6fz32u.framer-fv4gv5 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-Qv305.framer-v-6fz32u.framer-fv4gv5 > :first-child { margin-top: 0px; } .framer-Qv305.framer-v-6fz32u.framer-fv4gv5 > :last-child { margin-bottom: 0px; } }\",'.framer-Qv305[data-border=\"true\"]::after, .framer-Qv305 [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 521\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t9NeFqH2E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DiVXinioL\":\"clientName\",\"wnT5LM8TP\":\"designation\",\"ImE1bDbog\":\"testimonial\",\"vvvuv92PD\":\"avatar\",\"PNWVubnIT\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers0HwBJzsu=withCSS(Component,css,\"framer-Qv305\");export default Framers0HwBJzsu;Framers0HwBJzsu.displayName=\"Review 2\";Framers0HwBJzsu.defaultProps={height:521,width:350};addPropertyControls(Framers0HwBJzsu,{variant:{options:[\"NUgujt6Gr\",\"t9NeFqH2E\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},DiVXinioL:{defaultValue:\"S. Thompson\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},wnT5LM8TP:{defaultValue:\"Company Name\",displayTextArea:false,title:\"Designation\",type:ControlType.String},ImE1bDbog:{defaultValue:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},vvvuv92PD:{__defaultAssetReference:\"data:framer/asset-reference,G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?originalFilename=photo-1527980965255-d3b416303d12%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0fHxhdmF0YXJ8ZW58MHx8fHwxNzA5MzI1NTM3fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},PNWVubnIT:{defaultValue:10,title:\"Background Blur\",type:ControlType.Number}});addFonts(Framers0HwBJzsu,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers0HwBJzsu\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"DiVXinioL\\\":\\\"clientName\\\",\\\"wnT5LM8TP\\\":\\\"designation\\\",\\\"ImE1bDbog\\\":\\\"testimonial\\\",\\\"vvvuv92PD\\\":\\\"avatar\\\",\\\"PNWVubnIT\\\":\\\"backgroundBlur\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t9NeFqH2E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"350\",\"framerIntrinsicHeight\":\"521\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s0HwBJzsu.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./TmKkx3AEs-0.js\";const cycleOrder=[\"lKw1muE8q\",\"oQ1dhHXw2\"];const serializationHash=\"framer-5hubJ\";const variantClassNames={lKw1muE8q:\"framer-v-j72o44\",oQ1dhHXw2:\"framer-v-tpcy8n\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"lKw1muE8q\",\"Variant 2\":\"oQ1dhHXw2\"};const getProps=({avatar,backgroundBlur,clientName,designation,height,id,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,DiVXinioL:(_ref=clientName!==null&&clientName!==void 0?clientName:props.DiVXinioL)!==null&&_ref!==void 0?_ref:\"S. Thompson\",ImE1bDbog:(_ref1=testimonial!==null&&testimonial!==void 0?testimonial:props.ImE1bDbog)!==null&&_ref1!==void 0?_ref1:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",PNWVubnIT:(_ref2=backgroundBlur!==null&&backgroundBlur!==void 0?backgroundBlur:props.PNWVubnIT)!==null&&_ref2!==void 0?_ref2:10,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"lKw1muE8q\",vvvuv92PD:(_ref4=avatar!==null&&avatar!==void 0?avatar:props.vvvuv92PD)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"},wnT5LM8TP:(_ref5=designation!==null&&designation!==void 0?designation:props.wnT5LM8TP)!==null&&_ref5!==void 0?_ref5:\"Company Name\"};};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,DiVXinioL,wnT5LM8TP,ImE1bDbog,vvvuv92PD,PNWVubnIT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lKw1muE8q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j72o44\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lKw1muE8q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${PNWVubnIT}px)`,backgroundColor:\"var(--token-175a2ee3-e73a-4465-a45f-78833a0f6493, rgba(13, 13, 13, 0.1))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"none\",...style},variants:{oQ1dhHXw2:{backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({oQ1dhHXw2:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-w19gzb\",layoutDependency:layoutDependency,layoutId:\"qk71z5d3f\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1duzz1n\",layoutDependency:layoutDependency,layoutId:\"gWXTK2uwm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"They transformed my backyard into a tranquil retreat! Their attention to detail and professionalism were outstanding. I couldn't be happier with the results!\"})}),className:\"framer-116ej7j\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"fs3wsSrsd\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:ImE1bDbog,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v0l3av\",layoutDependency:layoutDependency,layoutId:\"RZjuYLIUi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o1wza7\",\"data-framer-name\":\"bxs_quote_left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ZzSQcZ2Ie\",opacity:.3,style:{opacity:.3},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 55\"><path d=\"M 8.459 14.419 C 11.674 10.934 16.539 9.167 22.919 9.167 L 25.211 9.167 L 25.211 15.627 L 23.366 15.996 C 20.226 16.624 18.042 17.859 16.874 19.672 C 16.264 20.648 15.918 21.766 15.87 22.917 L 22.917 22.917 C 24.182 22.917 25.208 23.943 25.208 25.208 L 25.208 41.25 C 25.208 43.778 23.153 45.833 20.625 45.833 L 6.875 45.833 C 5.609 45.833 4.583 44.807 4.583 43.542 L 4.583 32.083 L 4.59 25.394 C 4.57 25.14 4.134 19.112 8.459 14.419 Z M 45.836 45.833 L 32.086 45.833 C 30.82 45.833 29.794 44.807 29.794 43.542 L 29.794 32.083 L 29.799 25.394 C 29.778 25.14 29.343 19.112 33.667 14.419 C 36.882 10.934 41.747 9.167 48.127 9.167 L 50.419 9.167 L 50.419 15.627 L 48.574 15.996 C 45.435 16.624 43.251 17.859 42.082 19.672 C 41.472 20.648 41.126 21.766 41.078 22.917 L 48.125 22.917 C 49.391 22.917 50.417 23.943 50.417 25.208 L 50.417 41.25 C 50.417 43.778 48.361 45.833 45.833 45.833 Z\" fill=\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(191, 51, 19))\"></path></svg>',svgContentId:12230278329,withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hipd78\",layoutDependency:layoutDependency,layoutId:\"QQK5bYGz5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-156rc3n\",layoutDependency:layoutDependency,layoutId:\"GRRYVGvCV\",style:{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8dbks4\",layoutDependency:layoutDependency,layoutId:\"LbkgSWSaM\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c9x6oz\",layoutDependency:layoutDependency,layoutId:\"z6nzG9TLh\",style:{backgroundColor:\"var(--token-122cea26-357d-4aa9-9285-cd7ff9c161b1, rgba(33, 80, 82, 0.06))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||521)-40-315.6)/2+165+10)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)},className:\"framer-1492aks\",layoutDependency:layoutDependency,layoutId:\"S52FkSdTO\",style:{borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({oQ1dhHXw2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||528)-40-322.6)/2+165+17)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tdfkf4\",layoutDependency:layoutDependency,layoutId:\"iZgxKjvle\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"S. Thompson\"})}),className:\"framer-835h75\",fonts:[\"GF;Unbounded-500\"],layoutDependency:layoutDependency,layoutId:\"PF4O_9b2h\",style:{\"--extracted-1lwpl3i\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DiVXinioL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Company Name\"})}),className:\"framer-1tjaton\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"RnuPXMibz\",style:{\"--extracted-r6o4lv\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wnT5LM8TP,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5hubJ.framer-10vlnpz, .framer-5hubJ .framer-10vlnpz { display: block; }\",\".framer-5hubJ.framer-j72o44 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5hubJ .framer-w19gzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-5hubJ .framer-1duzz1n { 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: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-5hubJ .framer-116ej7j { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5hubJ .framer-v0l3av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -10px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: -1; }\",\".framer-5hubJ .framer-o1wza7 { flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-5hubJ .framer-hipd78 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5hubJ .framer-156rc3n { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-5hubJ .framer-8dbks4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5hubJ .framer-1c9x6oz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5hubJ .framer-1492aks { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5hubJ .framer-tdfkf4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5hubJ .framer-835h75, .framer-5hubJ .framer-1tjaton { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5hubJ.framer-j72o44, .framer-5hubJ .framer-w19gzb, .framer-5hubJ .framer-1duzz1n, .framer-5hubJ .framer-v0l3av, .framer-5hubJ .framer-hipd78, .framer-5hubJ .framer-8dbks4, .framer-5hubJ .framer-1c9x6oz, .framer-5hubJ .framer-tdfkf4 { gap: 0px; } .framer-5hubJ.framer-j72o44 > *, .framer-5hubJ .framer-w19gzb > *, .framer-5hubJ .framer-hipd78 > *, .framer-5hubJ .framer-1c9x6oz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5hubJ.framer-j72o44 > :first-child, .framer-5hubJ .framer-w19gzb > :first-child, .framer-5hubJ .framer-hipd78 > :first-child, .framer-5hubJ .framer-1c9x6oz > :first-child, .framer-5hubJ .framer-tdfkf4 > :first-child { margin-top: 0px; } .framer-5hubJ.framer-j72o44 > :last-child, .framer-5hubJ .framer-w19gzb > :last-child, .framer-5hubJ .framer-hipd78 > :last-child, .framer-5hubJ .framer-1c9x6oz > :last-child, .framer-5hubJ .framer-tdfkf4 > :last-child { margin-bottom: 0px; } .framer-5hubJ .framer-1duzz1n > *, .framer-5hubJ .framer-v0l3av > *, .framer-5hubJ .framer-8dbks4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5hubJ .framer-1duzz1n > :first-child, .framer-5hubJ .framer-v0l3av > :first-child, .framer-5hubJ .framer-8dbks4 > :first-child { margin-left: 0px; } .framer-5hubJ .framer-1duzz1n > :last-child, .framer-5hubJ .framer-v0l3av > :last-child, .framer-5hubJ .framer-8dbks4 > :last-child { margin-right: 0px; } .framer-5hubJ .framer-tdfkf4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-5hubJ.framer-v-tpcy8n.framer-j72o44 { gap: 17px; }\",\".framer-5hubJ.framer-v-tpcy8n .framer-w19gzb { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5hubJ.framer-v-tpcy8n.framer-j72o44 { gap: 0px; } .framer-5hubJ.framer-v-tpcy8n.framer-j72o44 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-5hubJ.framer-v-tpcy8n.framer-j72o44 > :first-child { margin-top: 0px; } .framer-5hubJ.framer-v-tpcy8n.framer-j72o44 > :last-child { margin-bottom: 0px; } }\",'.framer-5hubJ[data-border=\"true\"]::after, .framer-5hubJ [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 521\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oQ1dhHXw2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DiVXinioL\":\"clientName\",\"wnT5LM8TP\":\"designation\",\"ImE1bDbog\":\"testimonial\",\"vvvuv92PD\":\"avatar\",\"PNWVubnIT\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTmKkx3AEs=withCSS(Component,css,\"framer-5hubJ\");export default FramerTmKkx3AEs;FramerTmKkx3AEs.displayName=\"Review 4\";FramerTmKkx3AEs.defaultProps={height:521,width:350};addPropertyControls(FramerTmKkx3AEs,{variant:{options:[\"lKw1muE8q\",\"oQ1dhHXw2\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},DiVXinioL:{defaultValue:\"S. Thompson\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},wnT5LM8TP:{defaultValue:\"Company Name\",displayTextArea:false,title:\"Designation\",type:ControlType.String},ImE1bDbog:{defaultValue:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},vvvuv92PD:{__defaultAssetReference:\"data:framer/asset-reference,G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?originalFilename=photo-1527980965255-d3b416303d12%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0fHxhdmF0YXJ8ZW58MHx8fHwxNzA5MzI1NTM3fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},PNWVubnIT:{defaultValue:10,title:\"Background Blur\",type:ControlType.Number}});addFonts(FramerTmKkx3AEs,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTmKkx3AEs\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oQ1dhHXw2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"521\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"DiVXinioL\\\":\\\"clientName\\\",\\\"wnT5LM8TP\\\":\\\"designation\\\",\\\"ImE1bDbog\\\":\\\"testimonial\\\",\\\"vvvuv92PD\\\":\\\"avatar\\\",\\\"PNWVubnIT\\\":\\\"backgroundBlur\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"350\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TmKkx3AEs.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./wydDLfhpQ-0.js\";const cycleOrder=[\"Wg3Rh48az\",\"LPnm9RdKq\"];const serializationHash=\"framer-GrHTx\";const variantClassNames={LPnm9RdKq:\"framer-v-k3304a\",Wg3Rh48az:\"framer-v-oekqev\"};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 valuesByLocaleId={TxaXbYUBH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Wg3Rh48az\",\"Variant 2\":\"LPnm9RdKq\"};const getProps=({avatar,backgroundBlur,clientName,designation,height,id,testimonial,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,DiVXinioL:(_ref=clientName!==null&&clientName!==void 0?clientName:props.DiVXinioL)!==null&&_ref!==void 0?_ref:\"S. Thompson\",ImE1bDbog:(_ref1=testimonial!==null&&testimonial!==void 0?testimonial:props.ImE1bDbog)!==null&&_ref1!==void 0?_ref1:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",PNWVubnIT:(_ref2=backgroundBlur!==null&&backgroundBlur!==void 0?backgroundBlur:props.PNWVubnIT)!==null&&_ref2!==void 0?_ref2:10,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"Wg3Rh48az\",vvvuv92PD:(_ref4=avatar!==null&&avatar!==void 0?avatar:props.vvvuv92PD)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg 3023w\"},wnT5LM8TP:(_ref5=designation!==null&&designation!==void 0?designation:props.wnT5LM8TP)!==null&&_ref5!==void 0?_ref5:\"Company Name\"};};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,DiVXinioL,wnT5LM8TP,ImE1bDbog,vvvuv92PD,PNWVubnIT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Wg3Rh48az\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-oekqev\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Wg3Rh48az\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgba(255, 255, 255, 0.3))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${PNWVubnIT}px)`,backgroundColor:\"var(--token-175a2ee3-e73a-4465-a45f-78833a0f6493, rgba(13, 13, 13, 0.1))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"none\",...style},variants:{LPnm9RdKq:{backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({LPnm9RdKq:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as72p4\",layoutDependency:layoutDependency,layoutId:\"tLsjaT1ne\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ovqpho\",layoutDependency:layoutDependency,layoutId:\"x6JEqKDJc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"They transformed my backyard into a tranquil retreat! Their attention to detail and professionalism were outstanding. I couldn't be happier with the results!\"})}),className:\"framer-fo14bw\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"IaYaPKMCl\",style:{\"--extracted-r6o4lv\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:ImE1bDbog,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvtjo6\",layoutDependency:layoutDependency,layoutId:\"Wb51Ix0Ud\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pnpw8g\",\"data-framer-name\":\"bxs_quote_left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QpweYFa4W\",opacity:.3,style:{opacity:.3},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 55\"><path d=\"M 8.459 14.419 C 11.674 10.934 16.539 9.167 22.919 9.167 L 25.211 9.167 L 25.211 15.627 L 23.366 15.996 C 20.226 16.624 18.042 17.859 16.874 19.672 C 16.264 20.648 15.918 21.766 15.87 22.917 L 22.917 22.917 C 24.182 22.917 25.208 23.943 25.208 25.208 L 25.208 41.25 C 25.208 43.778 23.153 45.833 20.625 45.833 L 6.875 45.833 C 5.609 45.833 4.583 44.807 4.583 43.542 L 4.583 32.083 L 4.59 25.394 C 4.57 25.14 4.134 19.112 8.459 14.419 Z M 45.836 45.833 L 32.086 45.833 C 30.82 45.833 29.794 44.807 29.794 43.542 L 29.794 32.083 L 29.799 25.394 C 29.778 25.14 29.343 19.112 33.667 14.419 C 36.882 10.934 41.747 9.167 48.127 9.167 L 50.419 9.167 L 50.419 15.627 L 48.574 15.996 C 45.435 16.624 43.251 17.859 42.082 19.672 C 41.472 20.648 41.126 21.766 41.078 22.917 L 48.125 22.917 C 49.391 22.917 50.417 23.943 50.417 25.208 L 50.417 41.25 C 50.417 43.778 48.361 45.833 45.833 45.833 Z\" fill=\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(191, 51, 19))\"></path></svg>',svgContentId:12230278329,withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jrotfj\",layoutDependency:layoutDependency,layoutId:\"VtXTnbTjz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a2bwc8\",layoutDependency:layoutDependency,layoutId:\"ejO48dZMm\",style:{backgroundColor:\"var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fpipnm\",layoutDependency:layoutDependency,layoutId:\"t0H6nQYZi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wtx1tu\",layoutDependency:layoutDependency,layoutId:\"QAO2S3gFQ\",style:{backgroundColor:\"var(--token-122cea26-357d-4aa9-9285-cd7ff9c161b1, rgba(33, 80, 82, 0.06))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||521)-40-315.6)/2+165+10)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)},className:\"framer-1qexry8\",layoutDependency:layoutDependency,layoutId:\"WO_eYfdrp\",style:{borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({LPnm9RdKq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||528)-40-322.6)/2+165+17)+0+11+38.8+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(vvvuv92PD)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19t7vlu\",layoutDependency:layoutDependency,layoutId:\"v0dJN7Fpb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255)))\"},children:\"S. Thompson\"})}),className:\"framer-1tznzp6\",fonts:[\"GF;Unbounded-500\"],layoutDependency:layoutDependency,layoutId:\"U5IZv08M6\",style:{\"--extracted-1lwpl3i\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DiVXinioL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Company Name\"})}),className:\"framer-yrosp4\",fonts:[\"FS;Satoshi-black\"],layoutDependency:layoutDependency,layoutId:\"FRMnfJJAj\",style:{\"--extracted-r6o4lv\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wnT5LM8TP,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GrHTx.framer-1uyhi7o, .framer-GrHTx .framer-1uyhi7o { display: block; }\",\".framer-GrHTx.framer-oekqev { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GrHTx .framer-1as72p4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-GrHTx .framer-1ovqpho { 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: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GrHTx .framer-fo14bw { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GrHTx .framer-1gvtjo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -10px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: -1; }\",\".framer-GrHTx .framer-1pnpw8g { flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-GrHTx .framer-jrotfj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GrHTx .framer-a2bwc8 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-GrHTx .framer-fpipnm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GrHTx .framer-wtx1tu { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GrHTx .framer-1qexry8 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GrHTx .framer-19t7vlu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GrHTx .framer-1tznzp6, .framer-GrHTx .framer-yrosp4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GrHTx.framer-oekqev, .framer-GrHTx .framer-1as72p4, .framer-GrHTx .framer-1ovqpho, .framer-GrHTx .framer-1gvtjo6, .framer-GrHTx .framer-jrotfj, .framer-GrHTx .framer-fpipnm, .framer-GrHTx .framer-wtx1tu, .framer-GrHTx .framer-19t7vlu { gap: 0px; } .framer-GrHTx.framer-oekqev > *, .framer-GrHTx .framer-1as72p4 > *, .framer-GrHTx .framer-jrotfj > *, .framer-GrHTx .framer-wtx1tu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GrHTx.framer-oekqev > :first-child, .framer-GrHTx .framer-1as72p4 > :first-child, .framer-GrHTx .framer-jrotfj > :first-child, .framer-GrHTx .framer-wtx1tu > :first-child, .framer-GrHTx .framer-19t7vlu > :first-child { margin-top: 0px; } .framer-GrHTx.framer-oekqev > :last-child, .framer-GrHTx .framer-1as72p4 > :last-child, .framer-GrHTx .framer-jrotfj > :last-child, .framer-GrHTx .framer-wtx1tu > :last-child, .framer-GrHTx .framer-19t7vlu > :last-child { margin-bottom: 0px; } .framer-GrHTx .framer-1ovqpho > *, .framer-GrHTx .framer-1gvtjo6 > *, .framer-GrHTx .framer-fpipnm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GrHTx .framer-1ovqpho > :first-child, .framer-GrHTx .framer-1gvtjo6 > :first-child, .framer-GrHTx .framer-fpipnm > :first-child { margin-left: 0px; } .framer-GrHTx .framer-1ovqpho > :last-child, .framer-GrHTx .framer-1gvtjo6 > :last-child, .framer-GrHTx .framer-fpipnm > :last-child { margin-right: 0px; } .framer-GrHTx .framer-19t7vlu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-GrHTx.framer-v-k3304a.framer-oekqev { gap: 17px; }\",\".framer-GrHTx.framer-v-k3304a .framer-1as72p4 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GrHTx.framer-v-k3304a.framer-oekqev { gap: 0px; } .framer-GrHTx.framer-v-k3304a.framer-oekqev > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-GrHTx.framer-v-k3304a.framer-oekqev > :first-child { margin-top: 0px; } .framer-GrHTx.framer-v-k3304a.framer-oekqev > :last-child { margin-bottom: 0px; } }\",'.framer-GrHTx[data-border=\"true\"]::after, .framer-GrHTx [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 521\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LPnm9RdKq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"DiVXinioL\":\"clientName\",\"wnT5LM8TP\":\"designation\",\"ImE1bDbog\":\"testimonial\",\"vvvuv92PD\":\"avatar\",\"PNWVubnIT\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwydDLfhpQ=withCSS(Component,css,\"framer-GrHTx\");export default FramerwydDLfhpQ;FramerwydDLfhpQ.displayName=\"Review 3\";FramerwydDLfhpQ.defaultProps={height:521,width:350};addPropertyControls(FramerwydDLfhpQ,{variant:{options:[\"Wg3Rh48az\",\"LPnm9RdKq\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},DiVXinioL:{defaultValue:\"S. Thompson\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},wnT5LM8TP:{defaultValue:\"Company Name\",displayTextArea:false,title:\"Designation\",type:ControlType.String},ImE1bDbog:{defaultValue:\"Bright Horizon Marketing has been an invaluable partner for our bakery. Their team's expertise in SEO and online marketing has helped us stand out in a competitive market. From optimizing our website to managing our social media presence, their strategic approach has delivered impressive results. Thanks to their efforts, we've seen a significant increase in online orders and customer engagement. I couldn't be happier with the results, and I highly recommend Bright Horizon Marketing to anyone looking to grow their business online.\",displayTextArea:true,title:\"Testimonial\",type:ControlType.String},vvvuv92PD:{__defaultAssetReference:\"data:framer/asset-reference,G1bC6MQnKLl8c7ZyjwpJlVGuw.jpg?originalFilename=photo-1527980965255-d3b416303d12%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw0fHxhdmF0YXJ8ZW58MHx8fHwxNzA5MzI1NTM3fDA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Avatar\",type:ControlType.ResponsiveImage},PNWVubnIT:{defaultValue:10,title:\"Background Blur\",type:ControlType.Number}});addFonts(FramerwydDLfhpQ,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v7/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwydDLfhpQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"350\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LPnm9RdKq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"521\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"DiVXinioL\\\":\\\"clientName\\\",\\\"wnT5LM8TP\\\":\\\"designation\\\",\\\"ImE1bDbog\\\":\\\"testimonial\\\",\\\"vvvuv92PD\\\":\\\"avatar\\\",\\\"PNWVubnIT\\\":\\\"backgroundBlur\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wydDLfhpQ.map", "// Generated by Framer (b742ddc)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Clash Display-medium\",\"FS;Clash Display-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"}]}];export const css=['.framer-RQCGW .framer-styles-preset-up4qkr:not(.rich-text-wrapper), .framer-RQCGW .framer-styles-preset-up4qkr.rich-text-wrapper h1 { --framer-font-family: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-family-bold: \"Clash Display\", \"Clash Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 73px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -3px; --framer-line-height: 0.9em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-RQCGW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Stats from\"https://framerusercontent.com/modules/2iiTOMbIAAsV87ScXyWM/283rpQ0PdxRUZWUxM1Z6/UeNFeauCj.js\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Cursor from\"#framer/local/canvasComponent/Heo55BgD4/Heo55BgD4.js\";import FAQListCommon from\"#framer/local/canvasComponent/iV8GXG0Ck/iV8GXG0Ck.js\";import NavigationBar from\"#framer/local/canvasComponent/Kg3jp8xZU/Kg3jp8xZU.js\";import Heading from\"#framer/local/canvasComponent/QJ12gIOBS/QJ12gIOBS.js\";import Review2 from\"#framer/local/canvasComponent/s0HwBJzsu/s0HwBJzsu.js\";import Review4 from\"#framer/local/canvasComponent/TmKkx3AEs/TmKkx3AEs.js\";import FooterCopy from\"#framer/local/canvasComponent/vpOVb6GEm/vpOVb6GEm.js\";import Review3 from\"#framer/local/canvasComponent/wydDLfhpQ/wydDLfhpQ.js\";import*as sharedStyle2 from\"#framer/local/css/DuMLJ2VUN/DuMLJ2VUN.js\";import*as sharedStyle from\"#framer/local/css/qND2LHqb8/qND2LHqb8.js\";import*as sharedStyle1 from\"#framer/local/css/rZemCCbaP/rZemCCbaP.js\";import*as sharedStyle3 from\"#framer/local/css/XiF1LAa3c/XiF1LAa3c.js\";import metadataProvider from\"#framer/local/webPageMetadata/yd7nMFDHh/yd7nMFDHh.js\";const NavigationBarFonts=getFonts(NavigationBar);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const YouTubeFonts=getFonts(YouTube);const PhosphorFonts=getFonts(Phosphor);const ArcFonts=getFonts(Arc);const ImageWithFX=withFX(Image);const HeadingFonts=getFonts(Heading);const StatsFonts=getFonts(Stats);const MotionSectionWithFX=withFX(motion.section);const Review3Fonts=getFonts(Review3);const Review2Fonts=getFonts(Review2);const Review4Fonts=getFonts(Review4);const EmbedFonts=getFonts(Embed);const FAQListCommonFonts=getFonts(FAQListCommon);const FooterCopyFonts=getFonts(FooterCopy);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const breakpoints={OwNhynIYY:\"(min-width: 1200px)\",P7j2A2OCI:\"(max-width: 809px)\",WgNeKo_y1:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PE6cc\";const variantClassNames={OwNhynIYY:\"framer-v-hvzz3m\",P7j2A2OCI:\"framer-v-1zvqox\",WgNeKo_y1:\"framer-v-1b4lfhe\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-100};const transition1={damping:85,delay:.4,mass:1,stiffness:212,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:-100};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1215,x:0,y:170};const transition2={damping:85,delay:.2,mass:1,stiffness:212,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1215,transition:transition2,x:0,y:170};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:170};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:170};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-Wide\":\"OwNhynIYY\",Phone:\"P7j2A2OCI\",Tablet:\"WgNeKo_y1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OwNhynIYY\"};};const cursor={component:Cursor,variant:\"Rmwr2RAOf\"};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,qGMvZtB2D,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"jGFDk87Dh\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"QeagwX1Rm\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"ffQKfJ0Kx\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"Usy9pnRtq\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"WgNeKo_y1\",\"P7j2A2OCI\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"P7j2A2OCI\")return false;return true;};const elementId4=useRouteElementId(\"vTTUKTKEu\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"ohtDp3gGl\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"om1250aoL\");const ref7=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"P7j2A2OCI\")return true;return false;};const elementId7=useRouteElementId(\"JLmVjj91x\");const ref8=React.useRef(null);useCustomCursors({t370is:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"OwNhynIYY\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(40, 50, 111); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-hvzz3m\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{height:91},WgNeKo_y1:{height:93}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-icz1s2-container\",layoutScroll:true,nodeId:\"qucQ2rL9C\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"qckzdw_18\"},WgNeKo_y1:{variant:\"qckzdw_18\"}},children:/*#__PURE__*/_jsx(NavigationBar,{gGSU0bs4G:\"jcV_yFltq\",height:\"100%\",id:\"qucQ2rL9C\",layoutId:\"qucQ2rL9C\",style:{height:\"100%\",width:\"100%\"},variant:\"lzTpoNZtf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ma85oo\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-j1yqbq\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-j4z2v\",\"data-framer-name\":\"Hero Heading Content\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4w8l5h\",\"data-framer-name\":\"Heading & Subheading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fo77gx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Peter Martinez\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-up4qkr\",\"data-styles-preset\":\"qND2LHqb8\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Peter Martinez\"})}),className:\"framer-jbkn8z\",fonts:[\"Inter\"],id:elementId,ref:ref1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\" Dedicated to\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-up4qkr\",\"data-styles-preset\":\"qND2LHqb8\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Dedicated to\"})}),className:\"framer-1nh8e5s\",fonts:[\"Inter\"],id:elementId1,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Community \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-up4qkr\",\"data-styles-preset\":\"qND2LHqb8\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Community\"})}),className:\"framer-1ty6ljs\",fonts:[\"Inter\"],id:elementId2,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:462,pixelWidth:493,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0W4fGvwn0X9GLGeuSWtAmrino.png\"},className:\"framer-1h8vqsn\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4znnbj\",\"data-styles-preset\":\"rZemCCbaP\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Advancement\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-up4qkr\",\"data-styles-preset\":\"qND2LHqb8\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Advancement\"})}),className:\"framer-harf3f\",fonts:[\"Inter\"],id:elementId3,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d9d01f21-7a47-443c-a8bc-56cdb453de6f, rgba(255, 255, 255, 0.8))\"},children:\"Peter Martinez, a dedicated Imperial Valley educator, joined the Imperial Community College District Board of Trustees (Area 3) on December 13, 2024, committed to empowering future generations through education and community collaboration.\"})}),className:\"framer-1c0jjav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urq87d\",\"data-framer-name\":\"Background Gradient\"}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WgNeKo_y1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:931,intrinsicWidth:1500,pixelHeight:1263,pixelWidth:1267,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png\",srcSet:\"https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png 1267w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:931,intrinsicWidth:1500,pixelHeight:1263,pixelWidth:1267,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png\",srcSet:\"https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9Fnqifgu1cLfsvTwuWxi2lS7dI.png 1267w\"},className:\"framer-1sk6zfr\",\"data-framer-cursor\":\"t370is\",\"data-framer-name\":\"Image\",id:\"1sk6zfr\",onTap:onTap3bnx0g({overlay}),style:{transformPerspective:1215},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m94qqz\",\"data-framer-name\":\"Gradient Overlay\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d4gaqj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EzdrIZE62\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"EzdrIZE62\",layoutId:\"EzdrIZE62\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gfdqz2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uey7d7\",\"data-styles-preset\":\"XiF1LAa3c\",style:{\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Peter Martinez for Area 3 \"})}),className:\"framer-1jdzw5z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{damping:60,delay:0,mass:1,stiffness:310,type:\"spring\"}},className:cx(scopingClassNames,\"framer-1gkfft0\"),\"data-framer-portal-id\":\"1sk6zfr\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"URLXt3h0H\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1xll0r8-container\"),\"data-framer-portal-id\":\"1sk6zfr\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"g9UGWWIhj\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"g9UGWWIhj\",isMixedBorderRadius:false,isRed:true,layoutId:\"g9UGWWIhj\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/3NyySXLPPNc\",width:\"100%\"})})})]}),getContainer())})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13d90j0 hidden-hvzz3m\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yfckd4\",\"data-framer-name\":\"Play Icon Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h255qi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mH7O1E2rfc3kWHksXj\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{color:\"var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, rgb(245, 131, 39))\"}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, rgb(10, 10, 10))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Play\",id:\"mH7O1E2rfc3kWHksXj\",layoutId:\"mH7O1E2rfc3kWHksXj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ql1gnv-container hidden-1zvqox\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mH7O1E2rfs2xcmZeZp\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:5,animateEnd:150,animateStart:-50,color:\"var(--token-620fac81-7c2e-4342-b93a-72603d1fc89e, rgb(13, 13, 13))\",cylinderHeight:0,flip:false,font:{},height:\"100%\",id:\"mH7O1E2rfs2xcmZeZp\",layoutId:\"mH7O1E2rfs2xcmZeZp\",rotate:true,rotateSpeed:5,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"\u2726 PLAY VIDEO \u2726 KNOW ABOUT US \u2726 AGENCEE\",type:\"circle\",width:\"100%\",wordSpacing:4})})})]})]})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dk448w\",\"data-framer-name\":\"About Peter\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ey6vj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), (${componentViewport?.width||\"100vw\"} - 24px) * 0.95), 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), (${componentViewport?.width||\"100vw\"} - 80px) * 0.95), 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13oq5j7-container\",nodeId:\"GEUMd2m_R\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"KJ1G3Id0e\"},WgNeKo_y1:{variant:\"KJ1G3Id0e\"}},children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Professor Peter Martinez\",GqTmcaQLx:\"About\",height:\"100%\",id:\"GEUMd2m_R\",kAHPdHlCh:\"Introducing Rachel Andrews, the driving force behind Celestial Solutions. With over a decade of experience in digital marketing, Rachel's passion for innovation and dedication to client success have been the cornerstone of our agency's growth. Her strategic vision and hands-on approach have propelled us to the forefront of the industry, while her commitment to transparency and integrity sets the tone for our team. As a respected leader and mentor, Rachel inspires us to exceed expectations and deliver exceptional results for our clients every day.\",layoutId:\"GEUMd2m_R\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"u4P6wTRAk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-88qnvw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:\"As a proud native of the Imperial Valley, I\u2019m committed to making a positive impact on our community by strengthening our education system to prepare future leaders for success. After 28 years in higher education and a background in program development, business, accounting, financial literacy, academic advising, and entrepreneurship, I\u2019m dedicated to improving graduation rates and enhancing our communities\u2019 economic and social well-being through collaboration and partnerships.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Background is as follows:\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Education:\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Holtville High School Graduate, Holtville, CA\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Imperial Valley College Dual Enrollment\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"B.A. Political Science, Northern Arizona University\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"M.A. Education Counseling, University of Redlands\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"MBA Masters Business Administration Discipline Accounting, University of Phoenix\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Experience:\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"EOPS Director & Counseling\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Administration of Business/Accounting Professor\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Academic Senate President\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Region IX Coordinator Regional Area Consortium EOPS\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Adjunct Professor\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"TACTYC Teachers of Accounting\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strong Workforce Business & Entrepreneurship Region IX\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"28 years of experience in Higher Education/Community Colleges\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Community Engagement:\"})}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Financial Literacy Advocate Community Organizer\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Sun Community Federal Credit Union Supervisory Chair\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"City of El Center\\xa0Personnel Appeals Commission Board\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Goals:\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-smtg16\",\"data-styles-preset\":\"DuMLJ2VUN\",style:{\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\"},children:\"My goals include accommodating the addition of new Associate Degrees for Transfer rates and promoting Guided Pathways to ensure all students have clear enrollment opportunities. I aim to support the Associated Students Government in advocating for leadership and social contributions while enhancing a Comprehensive Educational Plan to strengthen the economic workforce. Additionally, I am committed to increasing the completion rates of degrees and certificates, boosting enrollment in Dual Enrollment programs, and expanding opportunities for veterans, working adults, and low-income students. I also seek to improve access, success, and support for higher-quality online programs of study while increasing system capacity in key sectors such as nursing, early childhood education, computer science, criminal justice, and business & entrepreneurship.\"})]}),className:\"framer-1pz72lw\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xv6dxv\",\"data-framer-name\":\"Stats\",id:elementId4,ref:ref5,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-9v3a0v\",\"data-framer-name\":\"Metrics section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xvdy3n\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzv19e\",\"data-framer-name\":\"About\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kljtx3\",\"data-border\":true,\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1utxd7r\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1680px) - 30px) * 0.6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-er9bag-container\",isModuleExternal:true,nodeId:\"Lr0nP3rLf\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{lfxR4tjrX:51,QZmyCi6ep:0,variant:\"htpOHhC0I\"},WgNeKo_y1:{lfxR4tjrX:38,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\" Years\",height:\"100%\",id:\"Lr0nP3rLf\",layoutId:\"Lr0nP3rLf\",lfxR4tjrX:75,QZmyCi6ep:28,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Experience in Community Workforce Development.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1680px) - 30px) / 2.5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iwezsd-container\",isModuleExternal:true,nodeId:\"smGy_UoER\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{lfxR4tjrX:52,variant:\"htpOHhC0I\"},WgNeKo_y1:{lfxR4tjrX:38,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\" Years\",height:\"100%\",id:\"smGy_UoER\",layoutId:\"smGy_UoER\",lfxR4tjrX:75,QZmyCi6ep:11,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"EOPS Director at Palo Verde College\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175an46\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1680px) - 30px) / 2.5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19soruj-container\",isModuleExternal:true,nodeId:\"aIYmOePf5\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{lfxR4tjrX:52,variant:\"htpOHhC0I\"},WgNeKo_y1:{lfxR4tjrX:38,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\" Terms\",height:\"100%\",id:\"aIYmOePf5\",layoutId:\"aIYmOePf5\",lfxR4tjrX:75,QZmyCi6ep:3,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"As academic Senate President at PVC Body for Academic Senate\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1680px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:238,width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1680px) - 30px) * 0.6, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bqre5-container\",isModuleExternal:true,nodeId:\"w66Y9gcuU\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{lfxR4tjrX:52,variant:\"htpOHhC0I\"},WgNeKo_y1:{lfxR4tjrX:38,variant:\"htpOHhC0I\"}},children:/*#__PURE__*/_jsx(Stats,{FCzUNk8zj:\" Years\",height:\"100%\",id:\"w66Y9gcuU\",layoutId:\"w66Y9gcuU\",lfxR4tjrX:75,QZmyCi6ep:5,style:{width:\"100%\"},variant:\"ZEl1lBlP5\",width:\"100%\",x9jw34lHv:\"Region IX Coordinator for California Community Colleges\u2019 Extended Opportunities Programs & Services\"})})})})})]})]})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1333,intrinsicWidth:2e3,pixelHeight:1096,pixelWidth:1700,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/KffMpHnd1WEYvmn02eUNHCtaQ.jpg\"},className:\"framer-b8yios\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-se0ayk\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckuq6i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ekjpl\"}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WgNeKo_y1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"96.41883608567102px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"TESTIMONIAL\"})}),viewBox:\"0 0 647 116\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"67.37414965986395px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"TESTIMONIAL\"})}),className:\"framer-1cdop8l hidden-1zvqox\",fonts:[\"FS;Clash Display-medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 452 81\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xrpcii\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2xzbt9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wkS2IcWnz\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"wkS2IcWnz\",layoutId:\"wkS2IcWnz\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltn5u5-container\",inComponentSlot:true,nodeId:\"m0L1C9xxJ\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Review3,{DiVXinioL:\"Angie Marie Pe\\xf1a \",height:\"100%\",id:\"m0L1C9xxJ\",ImE1bDbog:\"I'm supporting Peter Martinez for IVC Board Trustee Area 3 because he's a highly qualified candidate with valuable experience in education and a strong commitment to community service. His responsibility, integrity, and dedication make him an excellent choice.\",layoutId:\"m0L1C9xxJ\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"LPnm9RdKq\",vvvuv92PD:addImageAlt({src:\"https://framerusercontent.com/images/noRb9SKzBnEsfYjayzTgt8pkBrs.jpg\",srcSet:\"https://framerusercontent.com/images/noRb9SKzBnEsfYjayzTgt8pkBrs.jpg 959w\"},\"\"),width:\"100%\",wnT5LM8TP:\"El Centro Elementary School District Board of Trustees\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ay5cbm-container\",inComponentSlot:true,nodeId:\"MVDOqwe0x\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Review2,{DiVXinioL:\"Ryan Copple\",height:\"100%\",id:\"MVDOqwe0x\",ImE1bDbog:\"Peter Martinez's role as a family man highlights his responsibility, integrity, and dedication\u2014values crucial for upholding ethical standards and serving the community.\",layoutId:\"MVDOqwe0x\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"t9NeFqH2E\",vvvuv92PD:addImageAlt({src:\"https://framerusercontent.com/images/KrJGNtIoBVIEWigKzv4JkKN0.jpg\"},\"\"),width:\"100%\",wnT5LM8TP:\"Athletic Director at Palo Verde College\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:521,width:\"330px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15zuyfc-container\",inComponentSlot:true,nodeId:\"g5rlpXQGe\",rendersWithMotion:true,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Review4,{DiVXinioL:\"Lisa Johnson\",height:\"100%\",id:\"g5rlpXQGe\",ImE1bDbog:\"Peter Martinez's experience as a college professor provides valuable expertise and a deep understanding of education and student needs, which will help shape policies that promote academic excellence and student success at IVC.\",layoutId:\"g5rlpXQGe\",PNWVubnIT:10,style:{width:\"100%\"},variant:\"oQ1dhHXw2\",vvvuv92PD:addImageAlt({positionX:\"68.6%\",positionY:\"30.3%\",src:\"https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg\",srcSet:\"https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/N1KJuXGtzFFwmkOwcf38qJFsH4.jpg 6016w\"},\"\"),width:\"100%\",wnT5LM8TP:\"-\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ytbrlw\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obno2k\",\"data-framer-name\":\"Video Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ejfobb\",\"data-framer-name\":\"Video 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vsmcv8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"maBQ0GSxv\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"maBQ0GSxv\",isMixedBorderRadius:false,isRed:true,layoutId:\"maBQ0GSxv\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Off\",topLeftRadius:30,topRightRadius:30,url:\"https://youtu.be/3NyySXLPPNc\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qzr6z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Peter Martinez\"})}),className:\"framer-1xdclw5\",fonts:[\"GF;Unbounded-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:\"for IVC Board Trustee, Area 3 Seat- Imperial\"})}),className:\"framer-kcsdix\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1joyhab\",\"data-framer-name\":\"Video 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13twlny-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GGeDpzKjA\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,height:\"100%\",id:\"GGeDpzKjA\",isMixedBorderRadius:false,isRed:true,layoutId:\"GGeDpzKjA\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Off\",topLeftRadius:30,topRightRadius:30,url:\"https://youtu.be/FCcIQEG2LW4\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4sxkw8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7VW5ib3VuZGVkLTUwMA==\",\"--framer-font-family\":'\"Unbounded\", \"Unbounded Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a3567fc0-2c6f-4fa8-ac8f-89ddd158e98d, rgb(255, 255, 255))\"},children:\"Athelic Director Copple\"})}),className:\"framer-uyouhd\",fonts:[\"GF;Unbounded-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8296390c-3e4f-4c48-afd6-ee4e9808dfbe, rgba(255, 255, 255, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:\" college director at PVC\"})}),className:\"framer-1ypbxvw\",fonts:[\"FS;Satoshi-black\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zqyomq hidden-1zvqox\",\"data-framer-name\":\"PLEDGE\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mf6v7j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), (${componentViewport?.width||\"100vw\"} - 80px) * 0.95), 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-madigp-container\",nodeId:\"Duoq75DY0\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Current Term Expires: November 2028\",GqTmcaQLx:\"Area 3\",height:\"100%\",id:\"Duoq75DY0\",kAHPdHlCh:\"\",layoutId:\"Duoq75DY0\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10wq7os-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ljGh_kObI\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://www.google.com/maps/d/embed?mid=1Z_yUd8v0E0UhOIhX3TVNe7UxC9wlbLM&ehbc=2E312F\" width=\"640\" height=\"480\"></iframe>',id:\"ljGh_kObI\",layoutId:\"ljGh_kObI\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://www.google.com/maps/d/u/0/viewer?mid=1Z_yUd8v0E0UhOIhX3TVNe7UxC9wlbLM&ll=32.751397857663335%2C-115.82161915&z=11\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o6dgbz\",\"data-framer-name\":\"FAQ\",id:elementId6,ref:ref7,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j62tj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px)`},WgNeKo_y1:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px), 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2u7rm-container\",nodeId:\"WoYkGo2hS\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"Got Questions?\\nWe've Got Answers!\",GqTmcaQLx:\"Frequently Asked Questions\",height:\"100%\",id:\"WoYkGo2hS\",kAHPdHlCh:\"\",layoutId:\"WoYkGo2hS\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:`min(min(max(${componentViewport?.width||\"100vw\"} - 24px, 1px), 1440px), 1000px)`},WgNeKo_y1:{width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:732,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px), 1000px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dv02ol-container\",nodeId:\"Vf0IQ65Mm\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(FAQListCommon,{height:\"100%\",id:\"Vf0IQ65Mm\",layoutId:\"Vf0IQ65Mm\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11hbuo3 hidden-hvzz3m hidden-1b4lfhe\",\"data-framer-name\":\"PLEDGE\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tgrppf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{width:\"347.7px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rxiqdi-container\",nodeId:\"LLg1GS6T0\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(Heading,{ExBt4bIY2:\"My promise to our community!\",GqTmcaQLx:\"PLEDGE\",height:\"100%\",id:\"LLg1GS6T0\",kAHPdHlCh:\"\",layoutId:\"LLg1GS6T0\",NlGfzfEF2:true,p1KubWiKz:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KJ1G3Id0e\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bwrk9o\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1325,pixelWidth:1004,sizes:\"317px\",src:\"https://framerusercontent.com/images/J8YNp33QT6QVcykbx19aDnSKs.jpg\",srcSet:\"https://framerusercontent.com/images/J8YNp33QT6QVcykbx19aDnSKs.jpg?scale-down-to=1024 775w,https://framerusercontent.com/images/J8YNp33QT6QVcykbx19aDnSKs.jpg 1004w\"},className:\"framer-1fmcmgw\"})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{y:(componentViewport?.y||0)+168+7088}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:660,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mqdvul-container\",id:elementId7,nodeId:\"JLmVjj91x\",ref:ref8,scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P7j2A2OCI:{variant:\"fRFaNm2I0\"},WgNeKo_y1:{variant:\"jKdkWxOdG\"}},children:/*#__PURE__*/_jsx(FooterCopy,{height:\"100%\",id:\"JLmVjj91x\",layoutId:\"JLmVjj91x\",style:{width:\"100%\"},variant:\"pwW5gwcZE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bn53kh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"ZCezUq2zT\",scopeId:\"yd7nMFDHh\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZCezUq2zT\",intensity:12,layoutId:\"ZCezUq2zT\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PE6cc.framer-k7qaoj, .framer-PE6cc .framer-k7qaoj { display: block; }\",\".framer-PE6cc.framer-hvzz3m { align-content: center; align-items: center; background-color: #28326f; 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-PE6cc .framer-icz1s2-container { flex: none; height: 107px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-PE6cc .framer-1ma85oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-j1yqbq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: visible; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-j4z2v { align-content: center; align-items: center; background-color: #28326f; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-4w8l5h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-fo77gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 850px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-jbkn8z, .framer-PE6cc .framer-1nh8e5s, .framer-PE6cc .framer-1ty6ljs, .framer-PE6cc .framer-harf3f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-PE6cc .framer-1h8vqsn { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); overflow: hidden; position: relative; width: 73px; }\",\".framer-PE6cc .framer-1c0jjav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PE6cc .framer-1urq87d { background: linear-gradient(180deg, rgba(191, 51, 19, 0) 16.353996101364523%, rgb(234, 64, 65) 77.35485380116958%); bottom: 0px; flex: none; height: 855px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: -1; }\",\".framer-PE6cc .framer-1sk6zfr { -webkit-filter: contrast(1.23) grayscale(0.14); cursor: pointer; filter: contrast(1.23) grayscale(0.14); flex: none; height: 675px; overflow: visible; position: relative; width: 100%; }\",\".framer-PE6cc .framer-m94qqz { background: linear-gradient(180deg, rgba(235, 68, 68, 0) 0%, rgba(55, 64, 125, 0.99) 70%); bottom: -32px; flex: none; height: 278px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; }\",\".framer-PE6cc .framer-1d4gaqj-container { flex: none; height: 320px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 196px; width: 100%; z-index: -1; }\",\".framer-PE6cc .framer-1gfdqz2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 127px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PE6cc .framer-1jdzw5z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PE6cc.framer-1gkfft0 { background-color: rgba(40, 50, 111, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-PE6cc.framer-1xll0r8-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 70%; z-index: 9; }\",\".framer-PE6cc .framer-13d90j0 { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-affa1b72-7c43-4531-b217-6ad9a97be289, rgba(255, 255, 255, 0.05)); border-bottom-left-radius: 123px; border-bottom-right-radius: 123px; border-top-left-radius: 123px; border-top-right-radius: 123px; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 79px; justify-content: center; overflow: hidden; padding: 1px; pointer-events: none; position: absolute; right: 365px; width: 79px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PE6cc .framer-yfckd4 { aspect-ratio: 1 / 1; background-color: rgba(242, 236, 230, 0.43); border-bottom-left-radius: 170px; border-bottom-right-radius: 170px; border-top-left-radius: 170px; border-top-right-radius: 170px; flex: none; height: var(--framer-aspect-ratio-supported, 66px); left: 51%; overflow: hidden; position: absolute; top: 51%; transform: translate(-50%, -50%); width: 66px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-PE6cc .framer-h255qi-container { flex: none; height: 38px; left: calc(48.80952380952383% - 38px / 2); position: absolute; top: calc(48.80952380952383% - 38px / 2); width: 38px; }\",\".framer-PE6cc .framer-1ql1gnv-container { flex: none; height: 60px; left: calc(50.63291139240509% - 60px / 2); position: absolute; top: calc(50.63291139240509% - 60px / 2); width: 60px; z-index: 1; }\",\".framer-PE6cc .framer-1dk448w, .framer-PE6cc .framer-zqyomq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 40px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-19ey6vj, .framer-PE6cc .framer-mf6v7j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; max-width: 95%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PE6cc .framer-13oq5j7-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-88qnvw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-1pz72lw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: sticky; top: 100px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-PE6cc .framer-xv6dxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; height: 109.00000000000001vh; justify-content: space-between; overflow: visible; padding: 40px 20px 50px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-9v3a0v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-xvdy3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-mzv19e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; transform-style: preserve-3d; width: 100%; z-index: 2; }\",\".framer-PE6cc .framer-1kljtx3 { --border-bottom-width: 1px; --border-color: var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-1utxd7r, .framer-PE6cc .framer-175an46 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-er9bag-container, .framer-PE6cc .framer-15bqre5-container { flex: 1.5 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-PE6cc .framer-iwezsd-container, .framer-PE6cc .framer-19soruj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-PE6cc .framer-b8yios { -webkit-filter: contrast(1.19) grayscale(0.48); filter: contrast(1.19) grayscale(0.48); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.25; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-se0ayk { background: radial-gradient(42.375838926174495% 42% at 52.6% 42.8%, rgba(110, 129, 255, 0) 0%, rgb(32, 41, 102) 100%); bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); mix-blend-mode: multiply; opacity: 0.88; overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-ckuq6i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-3ekjpl { -webkit-filter: blur(67px); background-color: var(--token-4fdd7769-e1d0-45b2-8e3d-fe484baba321, #bf3313); border-bottom-left-radius: 210px; border-bottom-right-radius: 210px; border-top-left-radius: 210px; border-top-right-radius: 210px; filter: blur(67px); flex: none; height: 148px; left: calc(46.66666666666669% - 589px / 2); overflow: hidden; position: absolute; top: -107px; width: 589px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-PE6cc .framer-1cdop8l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; opacity: 0.23; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: 100%; z-index: 0; }\",\".framer-PE6cc .framer-1xrpcii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PE6cc .framer-2xzbt9-container { flex: none; height: 844px; position: relative; width: 400px; z-index: 1; }\",\".framer-PE6cc .framer-ltn5u5-container, .framer-PE6cc .framer-1ay5cbm-container, .framer-PE6cc .framer-15zuyfc-container { height: auto; position: relative; width: 330px; }\",'.framer-PE6cc .framer-ytbrlw { background: linear-gradient(0deg, var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #0a0a0a) /* {\"name\":\"Dark Tone\"} */ 0%, rgba(0, 0, 0, 0) 100%); bottom: 0px; flex: none; height: 90px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }',\".framer-PE6cc .framer-obno2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-ejfobb, .framer-PE6cc .framer-1joyhab { align-content: center; align-items: center; background-color: var(--token-16cecdcd-c5a5-4884-abaa-e0abd93e3514, rgba(255, 255, 255, 0.1)); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 10px 20px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PE6cc .framer-1vsmcv8-container, .framer-PE6cc .framer-13twlny-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 301px); position: relative; width: 100%; }\",\".framer-PE6cc .framer-16qzr6z, .framer-PE6cc .framer-4sxkw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-1xdclw5, .framer-PE6cc .framer-kcsdix, .framer-PE6cc .framer-uyouhd, .framer-PE6cc .framer-1ypbxvw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PE6cc .framer-madigp-container, .framer-PE6cc .framer-1f2u7rm-container, .framer-PE6cc .framer-rxiqdi-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-PE6cc .framer-10wq7os-container { flex: none; height: 400px; position: relative; width: 600px; }\",\".framer-PE6cc .framer-o6dgbz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-19j62tj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-PE6cc .framer-dv02ol-container { flex: none; height: auto; max-width: 1000px; position: relative; width: 100%; }\",\".framer-PE6cc .framer-11hbuo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 36px 12px 36px 12px; position: relative; width: 390px; z-index: 1; }\",\".framer-PE6cc .framer-tgrppf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; max-width: 95%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PE6cc .framer-bwrk9o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-PE6cc .framer-1fmcmgw { flex: none; height: 410px; position: relative; width: 317px; }\",\".framer-PE6cc .framer-1mqdvul-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PE6cc .framer-1bn53kh-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PE6cc.framer-hvzz3m, .framer-PE6cc .framer-1ma85oo, .framer-PE6cc .framer-j1yqbq, .framer-PE6cc .framer-j4z2v, .framer-PE6cc .framer-4w8l5h, .framer-PE6cc .framer-fo77gx, .framer-PE6cc .framer-1gfdqz2, .framer-PE6cc .framer-13d90j0, .framer-PE6cc .framer-1dk448w, .framer-PE6cc .framer-19ey6vj, .framer-PE6cc .framer-88qnvw, .framer-PE6cc .framer-9v3a0v, .framer-PE6cc .framer-xvdy3n, .framer-PE6cc .framer-mzv19e, .framer-PE6cc .framer-1kljtx3, .framer-PE6cc .framer-1utxd7r, .framer-PE6cc .framer-175an46, .framer-PE6cc .framer-ckuq6i, .framer-PE6cc .framer-1xrpcii, .framer-PE6cc .framer-obno2k, .framer-PE6cc .framer-ejfobb, .framer-PE6cc .framer-16qzr6z, .framer-PE6cc .framer-1joyhab, .framer-PE6cc .framer-4sxkw8, .framer-PE6cc .framer-zqyomq, .framer-PE6cc .framer-mf6v7j, .framer-PE6cc .framer-o6dgbz, .framer-PE6cc .framer-19j62tj, .framer-PE6cc .framer-11hbuo3, .framer-PE6cc .framer-tgrppf, .framer-PE6cc .framer-bwrk9o { gap: 0px; } .framer-PE6cc.framer-hvzz3m > *, .framer-PE6cc .framer-1ma85oo > *, .framer-PE6cc .framer-ckuq6i > *, .framer-PE6cc .framer-16qzr6z > *, .framer-PE6cc .framer-4sxkw8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PE6cc.framer-hvzz3m > :first-child, .framer-PE6cc .framer-1ma85oo > :first-child, .framer-PE6cc .framer-j1yqbq > :first-child, .framer-PE6cc .framer-j4z2v > :first-child, .framer-PE6cc .framer-4w8l5h > :first-child, .framer-PE6cc .framer-19ey6vj > :first-child, .framer-PE6cc .framer-9v3a0v > :first-child, .framer-PE6cc .framer-xvdy3n > :first-child, .framer-PE6cc .framer-mzv19e > :first-child, .framer-PE6cc .framer-1kljtx3 > :first-child, .framer-PE6cc .framer-ckuq6i > :first-child, .framer-PE6cc .framer-ejfobb > :first-child, .framer-PE6cc .framer-16qzr6z > :first-child, .framer-PE6cc .framer-1joyhab > :first-child, .framer-PE6cc .framer-4sxkw8 > :first-child, .framer-PE6cc .framer-mf6v7j > :first-child, .framer-PE6cc .framer-19j62tj > :first-child, .framer-PE6cc .framer-tgrppf > :first-child, .framer-PE6cc .framer-bwrk9o > :first-child { margin-top: 0px; } .framer-PE6cc.framer-hvzz3m > :last-child, .framer-PE6cc .framer-1ma85oo > :last-child, .framer-PE6cc .framer-j1yqbq > :last-child, .framer-PE6cc .framer-j4z2v > :last-child, .framer-PE6cc .framer-4w8l5h > :last-child, .framer-PE6cc .framer-19ey6vj > :last-child, .framer-PE6cc .framer-9v3a0v > :last-child, .framer-PE6cc .framer-xvdy3n > :last-child, .framer-PE6cc .framer-mzv19e > :last-child, .framer-PE6cc .framer-1kljtx3 > :last-child, .framer-PE6cc .framer-ckuq6i > :last-child, .framer-PE6cc .framer-ejfobb > :last-child, .framer-PE6cc .framer-16qzr6z > :last-child, .framer-PE6cc .framer-1joyhab > :last-child, .framer-PE6cc .framer-4sxkw8 > :last-child, .framer-PE6cc .framer-mf6v7j > :last-child, .framer-PE6cc .framer-19j62tj > :last-child, .framer-PE6cc .framer-tgrppf > :last-child, .framer-PE6cc .framer-bwrk9o > :last-child { margin-bottom: 0px; } .framer-PE6cc .framer-j1yqbq > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-PE6cc .framer-j4z2v > *, .framer-PE6cc .framer-xvdy3n > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PE6cc .framer-4w8l5h > *, .framer-PE6cc .framer-ejfobb > *, .framer-PE6cc .framer-1joyhab > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PE6cc .framer-fo77gx > *, .framer-PE6cc .framer-1gfdqz2 > *, .framer-PE6cc .framer-13d90j0 > *, .framer-PE6cc .framer-1utxd7r > *, .framer-PE6cc .framer-175an46 > *, .framer-PE6cc .framer-1xrpcii > *, .framer-PE6cc .framer-obno2k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PE6cc .framer-fo77gx > :first-child, .framer-PE6cc .framer-1gfdqz2 > :first-child, .framer-PE6cc .framer-13d90j0 > :first-child, .framer-PE6cc .framer-1dk448w > :first-child, .framer-PE6cc .framer-88qnvw > :first-child, .framer-PE6cc .framer-1utxd7r > :first-child, .framer-PE6cc .framer-175an46 > :first-child, .framer-PE6cc .framer-1xrpcii > :first-child, .framer-PE6cc .framer-obno2k > :first-child, .framer-PE6cc .framer-zqyomq > :first-child, .framer-PE6cc .framer-o6dgbz > :first-child, .framer-PE6cc .framer-11hbuo3 > :first-child { margin-left: 0px; } .framer-PE6cc .framer-fo77gx > :last-child, .framer-PE6cc .framer-1gfdqz2 > :last-child, .framer-PE6cc .framer-13d90j0 > :last-child, .framer-PE6cc .framer-1dk448w > :last-child, .framer-PE6cc .framer-88qnvw > :last-child, .framer-PE6cc .framer-1utxd7r > :last-child, .framer-PE6cc .framer-175an46 > :last-child, .framer-PE6cc .framer-1xrpcii > :last-child, .framer-PE6cc .framer-obno2k > :last-child, .framer-PE6cc .framer-zqyomq > :last-child, .framer-PE6cc .framer-o6dgbz > :last-child, .framer-PE6cc .framer-11hbuo3 > :last-child { margin-right: 0px; } .framer-PE6cc .framer-1dk448w > *, .framer-PE6cc .framer-88qnvw > *, .framer-PE6cc .framer-zqyomq > *, .framer-PE6cc .framer-o6dgbz > *, .framer-PE6cc .framer-11hbuo3 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-PE6cc .framer-19ey6vj > *, .framer-PE6cc .framer-mf6v7j > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-PE6cc .framer-9v3a0v > *, .framer-PE6cc .framer-1kljtx3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PE6cc .framer-mzv19e > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PE6cc .framer-19j62tj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PE6cc .framer-tgrppf > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-PE6cc .framer-bwrk9o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-PE6cc[data-border=\"true\"]::after, .framer-PE6cc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PE6cc.framer-hvzz3m { width: 810px; } .framer-PE6cc .framer-icz1s2-container { height: 93px; } .framer-PE6cc .framer-fo77gx { max-width: 600px; } .framer-PE6cc .framer-jbkn8z, .framer-PE6cc .framer-1nh8e5s, .framer-PE6cc .framer-1ty6ljs, .framer-PE6cc .framer-harf3f { max-width: 490px; } .framer-PE6cc .framer-1c0jjav { max-width: 500px; } .framer-PE6cc .framer-1urq87d { background: linear-gradient(180deg, rgba(191, 51, 19, 0) 37%, rgb(234, 64, 65) 80%); height: 671px; } .framer-PE6cc .framer-1sk6zfr { height: 400px; } .framer-PE6cc .framer-m94qqz { background: linear-gradient(180deg, rgba(235, 68, 68, 0) 0%, rgb(55, 64, 125) 70%); bottom: -85px; height: 281px; } .framer-PE6cc .framer-1d4gaqj-container { top: 46px; } .framer-PE6cc.framer-1xll0r8-container { width: 90%; } .framer-PE6cc .framer-13d90j0 { left: calc(50.00000000000002% - 79px / 2); right: unset; } .framer-PE6cc .framer-1dk448w, .framer-PE6cc .framer-zqyomq { padding: 40px; } .framer-PE6cc .framer-19ey6vj, .framer-PE6cc .framer-mf6v7j { gap: 21px; } .framer-PE6cc .framer-88qnvw { flex-direction: column; } .framer-PE6cc .framer-1pz72lw { flex: none; position: relative; top: unset; width: 100%; } .framer-PE6cc .framer-xv6dxv { height: 120vh; padding: 80px 20px 80px 20px; } .framer-PE6cc .framer-mzv19e { padding: 0px 40px 100px 40px; } .framer-PE6cc .framer-1vsmcv8-container, .framer-PE6cc .framer-13twlny-container { height: var(--framer-aspect-ratio-supported, 191px); } .framer-PE6cc .framer-19j62tj { justify-content: flex-start; max-width: 1000px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PE6cc .framer-19ey6vj, .framer-PE6cc .framer-88qnvw, .framer-PE6cc .framer-mf6v7j { gap: 0px; } .framer-PE6cc .framer-19ey6vj > *, .framer-PE6cc .framer-mf6v7j > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-PE6cc .framer-19ey6vj > :first-child, .framer-PE6cc .framer-88qnvw > :first-child, .framer-PE6cc .framer-mf6v7j > :first-child { margin-top: 0px; } .framer-PE6cc .framer-19ey6vj > :last-child, .framer-PE6cc .framer-88qnvw > :last-child, .framer-PE6cc .framer-mf6v7j > :last-child { margin-bottom: 0px; } .framer-PE6cc .framer-88qnvw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 809px) { .framer-PE6cc.framer-hvzz3m { gap: 50px; overflow: hidden; padding: 168px 0px 0px 0px; width: 390px; } .framer-PE6cc .framer-icz1s2-container { height: 91px; order: 1; } .framer-PE6cc .framer-1ma85oo { height: 7038px; order: 2; } .framer-PE6cc .framer-j1yqbq { gap: 60px; order: 0; padding: 0px; } .framer-PE6cc .framer-j4z2v { order: 2; padding: 0px 20px 0px 20px; } .framer-PE6cc .framer-fo77gx { gap: 2px; max-width: 900px; } .framer-PE6cc .framer-jbkn8z, .framer-PE6cc .framer-1nh8e5s, .framer-PE6cc .framer-1ty6ljs, .framer-PE6cc .framer-harf3f { max-width: 400px; } .framer-PE6cc .framer-1h8vqsn { height: var(--framer-aspect-ratio-supported, 38px); width: 38px; } .framer-PE6cc .framer-1c0jjav { max-width: 300px; } .framer-PE6cc .framer-1urq87d { height: 331px; order: 1; } .framer-PE6cc .framer-1sk6zfr { height: 241px; order: 3; } .framer-PE6cc .framer-m94qqz { height: 114px; } .framer-PE6cc .framer-1d4gaqj-container { top: -69px; } .framer-PE6cc.framer-1xll0r8-container { width: 90%; } .framer-PE6cc .framer-13d90j0 { bottom: -8px; height: 75px; left: calc(50.00000000000002% - 75px / 2); right: unset; width: 75px; } .framer-PE6cc .framer-yfckd4 { background-color: var(--token-2f560859-5998-4075-847c-9f666c5cfc0b, #0a0a0a); height: var(--framer-aspect-ratio-supported, 54px); left: 51%; top: 51%; width: 54px; } .framer-PE6cc .framer-h255qi-container { height: 26px; left: calc(48.484848484848506% - 26px / 2); top: calc(48.484848484848506% - 26px / 2); width: 26px; } .framer-PE6cc .framer-1dk448w { order: 1; padding: 74px 12px 74px 12px; } .framer-PE6cc .framer-19ey6vj { gap: 21px; } .framer-PE6cc .framer-88qnvw { flex-direction: column; gap: 40px; width: 90%; } .framer-PE6cc .framer-1pz72lw { flex: none; position: relative; top: unset; width: 100%; } .framer-PE6cc .framer-xv6dxv { gap: 100px; height: 20%; justify-content: center; order: 2; padding: 50px 12px 50px 12px; } .framer-PE6cc .framer-mzv19e { padding: 0px 12px 30px 12px; } .framer-PE6cc .framer-1kljtx3 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 0px; } .framer-PE6cc .framer-1utxd7r, .framer-PE6cc .framer-175an46 { flex-direction: column; } .framer-PE6cc .framer-er9bag-container, .framer-PE6cc .framer-iwezsd-container, .framer-PE6cc .framer-19soruj-container, .framer-PE6cc .framer-15bqre5-container, .framer-PE6cc .framer-ejfobb, .framer-PE6cc .framer-1joyhab { flex: none; width: 100%; } .framer-PE6cc .framer-se0ayk { bottom: unset; height: 100%; top: calc(49.964763918252316% - 99.92952783650459% / 2); } .framer-PE6cc .framer-ckuq6i { gap: 30px; height: 1540px; order: 8; padding: 0px 0px 50px 0px; } .framer-PE6cc .framer-1xrpcii { width: 100%; } .framer-PE6cc .framer-2xzbt9-container { height: 877px; width: 100%; } .framer-PE6cc .framer-obno2k { flex-direction: column; padding: 0px 12px 0px 12px; } .framer-PE6cc .framer-1vsmcv8-container, .framer-PE6cc .framer-13twlny-container { height: var(--framer-aspect-ratio-supported, 195px); } .framer-PE6cc .framer-o6dgbz { order: 10; padding: 52px 12px 52px 12px; } .framer-PE6cc .framer-19j62tj { gap: 40px; } .framer-PE6cc .framer-11hbuo3 { order: 9; } .framer-PE6cc .framer-1mqdvul-container { order: 3; } .framer-PE6cc .framer-1bn53kh-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PE6cc.framer-hvzz3m, .framer-PE6cc .framer-j1yqbq, .framer-PE6cc .framer-fo77gx, .framer-PE6cc .framer-19ey6vj, .framer-PE6cc .framer-88qnvw, .framer-PE6cc .framer-xv6dxv, .framer-PE6cc .framer-1utxd7r, .framer-PE6cc .framer-175an46, .framer-PE6cc .framer-ckuq6i, .framer-PE6cc .framer-obno2k, .framer-PE6cc .framer-19j62tj { gap: 0px; } .framer-PE6cc.framer-hvzz3m > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-PE6cc.framer-hvzz3m > :first-child, .framer-PE6cc .framer-j1yqbq > :first-child, .framer-PE6cc .framer-19ey6vj > :first-child, .framer-PE6cc .framer-88qnvw > :first-child, .framer-PE6cc .framer-xv6dxv > :first-child, .framer-PE6cc .framer-1utxd7r > :first-child, .framer-PE6cc .framer-175an46 > :first-child, .framer-PE6cc .framer-ckuq6i > :first-child, .framer-PE6cc .framer-obno2k > :first-child, .framer-PE6cc .framer-19j62tj > :first-child { margin-top: 0px; } .framer-PE6cc.framer-hvzz3m > :last-child, .framer-PE6cc .framer-j1yqbq > :last-child, .framer-PE6cc .framer-19ey6vj > :last-child, .framer-PE6cc .framer-88qnvw > :last-child, .framer-PE6cc .framer-xv6dxv > :last-child, .framer-PE6cc .framer-1utxd7r > :last-child, .framer-PE6cc .framer-175an46 > :last-child, .framer-PE6cc .framer-ckuq6i > :last-child, .framer-PE6cc .framer-obno2k > :last-child, .framer-PE6cc .framer-19j62tj > :last-child { margin-bottom: 0px; } .framer-PE6cc .framer-j1yqbq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PE6cc .framer-fo77gx > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-PE6cc .framer-fo77gx > :first-child { margin-left: 0px; } .framer-PE6cc .framer-fo77gx > :last-child { margin-right: 0px; } .framer-PE6cc .framer-19ey6vj > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-PE6cc .framer-88qnvw > *, .framer-PE6cc .framer-19j62tj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PE6cc .framer-xv6dxv > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-PE6cc .framer-1utxd7r > *, .framer-PE6cc .framer-175an46 > *, .framer-PE6cc .framer-obno2k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PE6cc .framer-ckuq6i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6835.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WgNeKo_y1\":{\"layout\":[\"fixed\",\"auto\"]},\"P7j2A2OCI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"jGFDk87Dh\":{\"pattern\":\":jGFDk87Dh\",\"name\":\"hero-heading\"},\"QeagwX1Rm\":{\"pattern\":\":QeagwX1Rm\",\"name\":\"hero-heading\"},\"ffQKfJ0Kx\":{\"pattern\":\":ffQKfJ0Kx\",\"name\":\"hero-heading\"},\"Usy9pnRtq\":{\"pattern\":\":Usy9pnRtq\",\"name\":\"hero-heading\"},\"vTTUKTKEu\":{\"pattern\":\":vTTUKTKEu\",\"name\":\"why-us\"},\"ohtDp3gGl\":{\"pattern\":\":ohtDp3gGl\",\"name\":\"about\"},\"om1250aoL\":{\"pattern\":\":om1250aoL\",\"name\":\"about\"},\"JLmVjj91x\":{\"pattern\":\":JLmVjj91x\",\"name\":\"contsct\"}}\n * @framerResponsiveScreen\n */const Frameryd7nMFDHh=withCSS(Component,css,\"framer-PE6cc\");export default Frameryd7nMFDHh;Frameryd7nMFDHh.displayName=\"Home\";Frameryd7nMFDHh.defaultProps={height:6835.5,width:1200};addFonts(Frameryd7nMFDHh,[{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\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Unbounded\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/unbounded/v8/Yq6F-LOTXCb04q32xlpat-6uR42XTqtG6yrx04jHgP6LR0Y.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"}]},...NavigationBarFonts,...TickerFonts,...YouTubeFonts,...PhosphorFonts,...ArcFonts,...HeadingFonts,...StatsFonts,...Review3Fonts,...Review2Fonts,...Review4Fonts,...EmbedFonts,...FAQListCommonFonts,...FooterCopyFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameryd7nMFDHh\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6835.5\",\"framerScrollSections\":\"{\\\"jGFDk87Dh\\\":{\\\"pattern\\\":\\\":jGFDk87Dh\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"QeagwX1Rm\\\":{\\\"pattern\\\":\\\":QeagwX1Rm\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"ffQKfJ0Kx\\\":{\\\"pattern\\\":\\\":ffQKfJ0Kx\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"Usy9pnRtq\\\":{\\\"pattern\\\":\\\":Usy9pnRtq\\\",\\\"name\\\":\\\"hero-heading\\\"},\\\"vTTUKTKEu\\\":{\\\"pattern\\\":\\\":vTTUKTKEu\\\",\\\"name\\\":\\\"why-us\\\"},\\\"ohtDp3gGl\\\":{\\\"pattern\\\":\\\":ohtDp3gGl\\\",\\\"name\\\":\\\"about\\\"},\\\"om1250aoL\\\":{\\\"pattern\\\":\\\":om1250aoL\\\",\\\"name\\\":\\\"about\\\"},\\\"JLmVjj91x\\\":{\\\"pattern\\\":\\\":JLmVjj91x\\\",\\\"name\\\":\\\"contsct\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WgNeKo_y1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P7j2A2OCI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Counter", "decimal", "value", "decimalValue", "direction", "stiffness", "damping", "prefix", "prefixText", "suffix", "suffixText", "color", "fontStyle", "ref", "pe", "updatedDecimalValue", "motionValue", "useMotionValue", "springValue", "useSpring", "isInView", "useInView", "latest", "u", "l", "p", "addPropertyControls", "ControlType", "props", "fontStore", "fonts", "css", "className", "CounterFonts", "getFonts", "Counter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fontSize", "height", "id", "suffix", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x9jw34lHv", "FCzUNk8zj", "QZmyCi6ep", "lfxR4tjrX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerUeNFeauCj", "withCSS", "UeNFeauCj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "murmur2", "a", "e", "c", "d", "withCSS", "n", "a", "r", "x", "j", "b", "RenderTarget", "$", "w", "S", "v", "V", "f", "i", "m", "l", "o", "u", "p", "h", "g", "y", "e", "Gn", "t", "c", "C", "murmur2", "motion", "Arc_default", "addPropertyControls", "ControlType", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "createGeneratorEasing", "e", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "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", "dispatchViewEvent", "se", "o", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "PhosphorFonts", "getFonts", "Icon", "ArcFonts", "Arc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qGMvZtB2D", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2n98x0", "args", "onAppear18vjv42", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "Icon", "Arc_default", "css", "FramerHeo55BgD4", "withCSS", "Heo55BgD4_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "ArcFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zNMII1rLe", "UkcAZJv33", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1mlpz6w", "args", "onTap11urxvn", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "addPropertyOverrides", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerqfmAoIwxN", "withCSS", "qfmAoIwxN_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "FAQSingleFonts", "getFonts", "qfmAoIwxN_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "qfmAoIwxN_default", "css", "FrameriV8GXG0Ck", "withCSS", "iV8GXG0Ck_default", "addFonts", "FAQSingleFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NNWJ0Hne9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "css", "FramerVLQCZcVpG", "withCSS", "VLQCZcVpG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TagFonts", "getFonts", "VLQCZcVpG_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", "heading", "height", "id", "labelVisibility", "subheading", "subheadingVisibility", "tag", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "GqTmcaQLx", "ExBt4bIY2", "kAHPdHlCh", "p1KubWiKz", "NlGfzfEF2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "ComponentViewportProvider", "VLQCZcVpG_default", "RichText2", "css", "FramerQJ12gIOBS", "withCSS", "QJ12gIOBS_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "avatar", "backgroundBlur", "clientName", "designation", "height", "id", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DiVXinioL", "wnT5LM8TP", "ImE1bDbog", "vvvuv92PD", "PNWVubnIT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "Framers0HwBJzsu", "withCSS", "s0HwBJzsu_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "avatar", "backgroundBlur", "clientName", "designation", "height", "id", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DiVXinioL", "wnT5LM8TP", "ImE1bDbog", "vvvuv92PD", "PNWVubnIT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerTmKkx3AEs", "withCSS", "TmKkx3AEs_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "avatar", "backgroundBlur", "clientName", "designation", "height", "id", "testimonial", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "DiVXinioL", "wnT5LM8TP", "ImE1bDbog", "vvvuv92PD", "PNWVubnIT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerwydDLfhpQ", "withCSS", "wydDLfhpQ_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationBarFonts", "getFonts", "Kg3jp8xZU_default", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "YouTubeFonts", "Youtube", "PhosphorFonts", "Icon", "ArcFonts", "Arc_default", "ImageWithFX", "Image2", "HeadingFonts", "QJ12gIOBS_default", "StatsFonts", "UeNFeauCj_default", "MotionSectionWithFX", "Review3Fonts", "wydDLfhpQ_default", "Review2Fonts", "s0HwBJzsu_default", "Review4Fonts", "TmKkx3AEs_default", "EmbedFonts", "Embed", "FAQListCommonFonts", "iV8GXG0Ck_default", "FooterCopyFonts", "vpOVb6GEm_default", "SmoothScrollFonts", "SmoothScroll", "CursorFonts", "Heo55BgD4_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation4", "animation5", "transformTemplate1", "_", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "qGMvZtB2D", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed", "isDisplayed1", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed2", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "l", "AnimatePresence", "Ga", "css", "Frameryd7nMFDHh", "withCSS", "yd7nMFDHh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
