{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js", "ssg:https://framerusercontent.com/modules/dP0DZLdJX4gpibzHOtjl/auXPrEUvjUEy1JF3iLPY/yutt4dshd.js", "ssg:https://framerusercontent.com/modules/lTvxRpKJhlAA7m9yvdaE/CON6XvM67wsWkRibsJMc/cwsX4aGnF.js", "ssg:https://framerusercontent.com/modules/5jpeXiNjakJxV7ZC1u4i/msu2qIBHPclY6Tdg9lSv/g3JGHtIF3.js", "ssg:https://framerusercontent.com/modules/qgUC7uc712zpFvIo2BfE/96A5BSvWfBcud5wUoYJO/IOfhW0saf.js", "ssg:https://framerusercontent.com/modules/udMIsZjdA7GQagWoC7lC/L21bDrfYKHwRg23129cE/rjZOSSdf9.js", "ssg:https://framerusercontent.com/modules/rOKmptUPHmH9ngHATfgE/Kp6t14aiNBCDRZRR3gL8/lodZQGngA.js", "ssg:https://framerusercontent.com/modules/7IbC17fLMc37Ajzyps1u/OSRc9xOniaRypiL64cRu/dZlqeRGqy.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/6fweBtxO5tSuYwBUj0B7/ptU1vRbIblcKJ44rIGdU/aCoFbuR1C.js", "ssg:https://framerusercontent.com/modules/FxM2VqicuedqgCfcJ9HU/vlrN7R0tSnx2zP6EhAw9/glLQdp29n.js", "ssg:https://framerusercontent.com/modules/9vrGdYbS32nNxrBRX2Dl/jJOpDAI4MCEOgYiktmPo/LylmglZgI.js", "ssg:https://framerusercontent.com/modules/hRzEUb5vBHntAdrPjhOI/VnQun8PxV5jK0uCzNRwB/aCoFbuR1C.js", "ssg:https://framerusercontent.com/modules/dk3jnktjsQ5P1uG3Zi5p/lz9E2IPubSIQsLO0dTgL/STS5lldtz.js", "ssg:https://framerusercontent.com/modules/9U1yeBQj0GhASjt7IEuz/mnsqHwAgklHfh2x8mdhC/mjHEViGve.js", "ssg:https://framerusercontent.com/modules/iCp3x1XyFznnh6Fr7saU/iHNGXDwgk20H9ZWd4gjd/mXBcYP47a.js", "ssg:https://framerusercontent.com/modules/gO4cxOt8nGh8ce29NEk0/rRTtEAhJOtzbLFWUL3zS/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/yN2ssMI5hpGvRd6aEfzj/HpIUw0q2flKtbUzn3efP/HLqrOFDg4.js", "ssg:https://framerusercontent.com/modules/bc30309etae2fIbWeu0Q/Djlyy8VAOMwMkBGNdTHb/onnBJGXm9.js", "ssg:https://framerusercontent.com/modules/6pOA5wkJYB07CemljXO1/wWsyX7DhgqMokEwyEtHP/WhmYVSlc4.js", "ssg:https://framerusercontent.com/modules/sKUuWT7ppmDm6yVXtuuk/jCJhxugh4cyMtAMWl4mk/nADpfWhzA.js", "ssg:https://ga.jspm.io/npm:matter-js@0.20.0/build/matter.js", "ssg:https://framerusercontent.com/modules/rBHReI0HHk3yLYdlh0AX/xzyeyK9hQqvMiMerinY7/Physics.js", "ssg:https://framerusercontent.com/modules/a2pw9M8X2LJwhPo81YXP/dK41EWk64AVFthjWzf2D/N1aXaVD8A.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{ControlType,addPropertyControls}from\"framer\";/**\n * @framerDisableUnlink\n * @framerIntrinsicWidth 24\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight 100%\n */export default function SVGIcon({svgCode,strokeColor,strokeWidth,fillColor,padding}){const[svgContent,setSvgContent]=useState(null);useEffect(()=>{setSvgContent(svgCode||null);},[svgCode]);const updateSvgContent=svg=>{const parser=new DOMParser;const doc=parser.parseFromString(svg,\"image/svg+xml\");const svgElement=doc.querySelector(\"svg\");if(svgElement){svgElement.setAttribute(\"width\",\"100%\");svgElement.setAttribute(\"height\",\"100%\");}const paths=doc.querySelectorAll(\"path\");paths.forEach((path,index)=>{path.setAttribute(\"stroke\",strokeColor);path.setAttribute(\"stroke-width\",strokeWidth.toString());path.setAttribute(\"fill\",fillColor);path.setAttribute(\"fill-opacity\",fillColor===\"none\"?\"0\":\"1\");path.setAttribute(\"key\",`path-${index}`)// Add a unique key attribute\n;});const serializer=new XMLSerializer;return serializer.serializeToString(doc);};const updatedSvgContent=svgContent?updateSvgContent(svgContent):null;return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",padding,boxSizing:\"border-box\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"},dangerouslySetInnerHTML:{__html:updatedSvgContent||\"\"}});}SVGIcon.defaultProps={svgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 3H18V9H12L6 3Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n                <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 9H12L18 15H6V9Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n                <path d=\"M12 15V21L6 15\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n              </svg>`,strokeColor:\"#000000\",strokeWidth:1.5,fillColor:\"#FFFFFF\",padding:0};addPropertyControls(SVGIcon,{svgCode:{type:ControlType.String,title:\"SVG Code\",defaultValue:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n                        <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 3H18V9H12L6 3Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n                        <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 9H12L18 15H6V9Z\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n                        <path d=\"M12 15V21L6 15\" stroke=\"#323232\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n                      </svg>`},strokeColor:{type:ControlType.Color,title:\"Stroke Color\",defaultValue:\"#000000\"},fillColor:{type:ControlType.Color,title:\"Fill Color\",defaultValue:\"rgba(0, 0, 0, 0)\"},strokeWidth:{type:ControlType.Number,title:\"Stroke Width\",defaultValue:1.5,min:0,max:10},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,max:100,description:\"Created by [Tolv](https://x.com/tolvstudio)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVGIcon\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"* @framerIntrinsicWidth 24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"100%\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Icon.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Cabinet Grotesk-bold\",\"FS;Cabinet Grotesk-black\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/54BYDK52GK4J6SPDN2E656FIZHUETKL3/ACYE4XDNEUAHIOQEOGPYPDVAVDI5P67Q/TZVUWRP4UW5PEJWBLXHG5VVGPODI2WLC.woff2\",weight:\"900\"}]}];export const css=['.framer-AXiZu .framer-styles-preset-y4vfpc:not(.rich-text-wrapper), .framer-AXiZu .framer-styles-preset-y4vfpc.rich-text-wrapper p { --framer-font-family: \"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Cabinet Grotesk\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 130%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-AXiZu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dP0DZLdJX4gpibzHOtjl/auXPrEUvjUEy1JF3iLPY/yutt4dshd.js\";const SVGIconFonts=getFonts(SVGIcon);const enabledGestures={uGkFrAZ8S:{hover:true,pressed:true},XfeNojiOp:{hover:true,pressed:true}};const cycleOrder=[\"XfeNojiOp\",\"uGkFrAZ8S\"];const serializationHash=\"framer-Er9Ly\";const variantClassNames={uGkFrAZ8S:\"framer-v-qi3cbf\",XfeNojiOp:\"framer-v-1k2vqrr\"};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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Default \":\"XfeNojiOp\",\"Mobile Nav\":\"uGkFrAZ8S\"};const getProps=({background,distribute,height,icon,iconBG,iconColor,id,lable,lableColor,link,newTab,padding,smoothScroll,width,...props})=>{var _ref,_humanReadableEnumMap_distribute,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9;return{...props,BUUqoZYUq:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.BUUqoZYUq)!==null&&_ref!==void 0?_ref:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",CVstdoAbH:(_ref2=(_ref1=(_humanReadableEnumMap_distribute=humanReadableEnumMap[distribute])!==null&&_humanReadableEnumMap_distribute!==void 0?_humanReadableEnumMap_distribute:distribute)!==null&&_ref1!==void 0?_ref1:props.CVstdoAbH)!==null&&_ref2!==void 0?_ref2:\"space-between\",FRvGe31Ve:(_ref3=lableColor!==null&&lableColor!==void 0?lableColor:props.FRvGe31Ve)!==null&&_ref3!==void 0?_ref3:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",lImERsIuD:newTab!==null&&newTab!==void 0?newTab:props.lImERsIuD,R3SMkngjt:(_ref4=background!==null&&background!==void 0?background:props.R3SMkngjt)!==null&&_ref4!==void 0?_ref4:\"var(--token-35280766-ac8a-4eb8-8979-cd6f80a389fa, rgb(39, 52, 0))\",tYKasPPnV:(_ref5=lable!==null&&lable!==void 0?lable:props.tYKasPPnV)!==null&&_ref5!==void 0?_ref5:\"Book a call\",u4fVrIoY5:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.u4fVrIoY5,uXB6K1yqQ:(_ref6=padding!==null&&padding!==void 0?padding:props.uXB6K1yqQ)!==null&&_ref6!==void 0?_ref6:\"4px 4px 4px 16px\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"XfeNojiOp\",vSngY_KQO:link!==null&&link!==void 0?link:props.vSngY_KQO,wkZe7h5FU:(_ref8=iconBG!==null&&iconBG!==void 0?iconBG:props.wkZe7h5FU)!==null&&_ref8!==void 0?_ref8:\"rgb(255, 255, 228)\",ysD4u_Zs4:(_ref9=icon!==null&&icon!==void 0?icon:props.ysD4u_Zs4)!==null&&_ref9!==void 0?_ref9:true};};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,tYKasPPnV,FRvGe31Ve,BUUqoZYUq,wkZe7h5FU,R3SMkngjt,vSngY_KQO,lImERsIuD,u4fVrIoY5,CVstdoAbH,ysD4u_Zs4,uXB6K1yqQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XfeNojiOp\",enabledGestures,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(Link,{href:vSngY_KQO,openInNewTab:lImERsIuD,smoothScroll:u4fVrIoY5,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1k2vqrr\",className,classNames)} framer-1bc86hz`,\"data-framer-name\":\"Default \",layoutDependency:layoutDependency,layoutId:\"XfeNojiOp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--33yh37\":numberToPixelString(uXB6K1yqQ),\"--8hsl14\":CVstdoAbH,backgroundColor:R3SMkngjt,borderBottomLeftRadius:1198.8,borderBottomRightRadius:1198.8,borderTopLeftRadius:1198.8,borderTopRightRadius:1198.8,...style},...addPropertyOverrides({\"uGkFrAZ8S-hover\":{\"data-framer-name\":undefined},\"uGkFrAZ8S-pressed\":{\"data-framer-name\":undefined},\"XfeNojiOp-hover\":{\"data-framer-name\":undefined},\"XfeNojiOp-pressed\":{\"data-framer-name\":undefined},uGkFrAZ8S:{\"data-framer-name\":\"Mobile Nav\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-y4vfpc\",\"data-styles-preset\":\"yutt4dshd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-FRvGe31Ve-cwsX4aGnF))\"},children:\"Book a call\"})}),className:\"framer-38f24g\",\"data-framer-name\":\"CTA Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aWocL_ELi\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-FRvGe31Ve-cwsX4aGnF)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-FRvGe31Ve-cwsX4aGnF\":FRvGe31Ve,opacity:1},text:tYKasPPnV,variants:{\"uGkFrAZ8S-pressed\":{opacity:.7},\"XfeNojiOp-hover\":{opacity:.7},\"XfeNojiOp-pressed\":{opacity:.7}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uGkFrAZ8S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-y4vfpc\",\"data-styles-preset\":\"yutt4dshd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-FRvGe31Ve-cwsX4aGnF))\"},children:\"Book a call\"})})}},baseVariant,gestureVariant)}),ysD4u_Zs4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohov62\",\"data-framer-name\":\"CTA Button\",layoutDependency:layoutDependency,layoutId:\"LuBHKjR5D\",style:{backgroundColor:wkZe7h5FU,borderBottomLeftRadius:1198.8,borderBottomRightRadius:1198.8,borderTopLeftRadius:1198.8,borderTopRightRadius:1198.8,opacity:1,rotate:0},variants:{\"uGkFrAZ8S-hover\":{rotate:360},\"uGkFrAZ8S-pressed\":{opacity:.7,rotate:360},\"XfeNojiOp-hover\":{rotate:360},\"XfeNojiOp-pressed\":{opacity:.7,rotate:360}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mxcfqw-container\",\"data-framer-name\":\"SVG\",layoutDependency:layoutDependency,layoutId:\"eWAGa7y7g-container\",name:\"SVG\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:BUUqoZYUq,height:\"100%\",id:\"eWAGa7y7g\",layoutId:\"eWAGa7y7g\",name:\"SVG\",padding:0,strokeColor:\"rgba(0, 0, 0, 0)\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M10.0691 3.33337L8.89413 4.50837L13.5441 9.16671H3.40247V10.8334H13.5441L8.89413 15.4917L10.0691 16.6667L16.7358 10L10.0691 3.33337Z\" fill=\"#273400\"/> </svg>',width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Er9Ly.framer-1bc86hz, .framer-Er9Ly .framer-1bc86hz { display: block; }\",\".framer-Er9Ly.framer-1k2vqrr { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: var(--8hsl14); overflow: visible; padding: var(--33yh37); position: relative; text-decoration: none; width: min-content; }\",\".framer-Er9Ly .framer-38f24g { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Er9Ly .framer-1ohov62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: 40px; }\",\".framer-Er9Ly .framer-1mxcfqw-container { flex: none; height: auto; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Er9Ly.framer-1k2vqrr, .framer-Er9Ly .framer-1ohov62 { gap: 0px; } .framer-Er9Ly.framer-1k2vqrr > *, .framer-Er9Ly .framer-1ohov62 > * { margin: 0px; margin-left: calc(9.600000381469727px / 2); margin-right: calc(9.600000381469727px / 2); } .framer-Er9Ly.framer-1k2vqrr > :first-child, .framer-Er9Ly .framer-1ohov62 > :first-child { margin-left: 0px; } .framer-Er9Ly.framer-1k2vqrr > :last-child, .framer-Er9Ly .framer-1ohov62 > :last-child { margin-right: 0px; } }\",\".framer-Er9Ly.framer-v-qi3cbf.framer-1k2vqrr { width: 234px; }\",\".framer-Er9Ly.framer-v-qi3cbf .framer-38f24g { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 154\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"uGkFrAZ8S\":{\"layout\":[\"fixed\",\"auto\"]},\"EpYEzDPGP\":{\"layout\":[\"auto\",\"auto\"]},\"D0imlWNVn\":{\"layout\":[\"auto\",\"auto\"]},\"KP_IpnXaL\":{\"layout\":[\"fixed\",\"auto\"]},\"L53cFz8VW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"tYKasPPnV\":\"lable\",\"FRvGe31Ve\":\"lableColor\",\"BUUqoZYUq\":\"iconColor\",\"wkZe7h5FU\":\"iconBG\",\"R3SMkngjt\":\"background\",\"vSngY_KQO\":\"link\",\"lImERsIuD\":\"newTab\",\"u4fVrIoY5\":\"smoothScroll\",\"CVstdoAbH\":\"distribute\",\"ysD4u_Zs4\":\"icon\",\"uXB6K1yqQ\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercwsX4aGnF=withCSS(Component,css,\"framer-Er9Ly\");export default FramercwsX4aGnF;FramercwsX4aGnF.displayName=\"Button\";FramercwsX4aGnF.defaultProps={height:47,width:154};addPropertyControls(FramercwsX4aGnF,{variant:{options:[\"XfeNojiOp\",\"uGkFrAZ8S\"],optionTitles:[\"Default \",\"Mobile Nav\"],title:\"Variant\",type:ControlType.Enum},tYKasPPnV:{defaultValue:\"Book a call\",displayTextArea:false,title:\"Lable\",type:ControlType.String},FRvGe31Ve:{defaultValue:'var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)) /* {\"name\":\"Chartreuse 50\"} */',title:\"Lable Color\",type:ControlType.Color},BUUqoZYUq:{defaultValue:'var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)) /* {\"name\":\"Eerie Black\"} */',title:\"Icon Color\",type:ControlType.Color},wkZe7h5FU:{defaultValue:\"rgb(255, 255, 228)\",title:\"Icon BG\",type:ControlType.Color},R3SMkngjt:{defaultValue:'var(--token-35280766-ac8a-4eb8-8979-cd6f80a389fa, rgb(39, 52, 0)) /* {\"name\":\"Chartreuse 950\"} */',title:\"Background\",type:ControlType.Color},vSngY_KQO:{title:\"Link\",type:ControlType.Link},lImERsIuD:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},u4fVrIoY5:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean},CVstdoAbH:{defaultValue:\"space-between\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},ysD4u_Zs4:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},uXB6K1yqQ:{defaultValue:\"4px 4px 4px 16px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramercwsX4aGnF,[{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\"}]},...SVGIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercwsX4aGnF\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uGkFrAZ8S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EpYEzDPGP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"D0imlWNVn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KP_IpnXaL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L53cFz8VW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"47\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"154\",\"framerVariables\":\"{\\\"tYKasPPnV\\\":\\\"lable\\\",\\\"FRvGe31Ve\\\":\\\"lableColor\\\",\\\"BUUqoZYUq\\\":\\\"iconColor\\\",\\\"wkZe7h5FU\\\":\\\"iconBG\\\",\\\"R3SMkngjt\\\":\\\"background\\\",\\\"vSngY_KQO\\\":\\\"link\\\",\\\"lImERsIuD\\\":\\\"newTab\\\",\\\"u4fVrIoY5\\\":\\\"smoothScroll\\\",\\\"CVstdoAbH\\\":\\\"distribute\\\",\\\"ysD4u_Zs4\\\":\\\"icon\\\",\\\"uXB6K1yqQ\\\":\\\"padding\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cwsX4aGnF.map", "// Generated by Framer (20caf11)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Impact Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}];export const css=['.framer-hspNM .framer-styles-preset-114hb8y:not(.rich-text-wrapper), .framer-hspNM .framer-styles-preset-114hb8y.rich-text-wrapper h3 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-hspNM\";\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\"}}}", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";const SVGIconFonts=getFonts(SVGIcon);const enabledGestures={\"I891:4246;890:9816\":{hover:true,pressed:true},h0x4rWPuu:{hover:true,pressed:true}};const cycleOrder=[\"I891:4246;890:9816\",\"h0x4rWPuu\"];const serializationHash=\"framer-DezMz\";const variantClassNames={\"I891:4246;890:9816\":\"framer-v-94if4d\",h0x4rWPuu:\"framer-v-1ywao5y\"};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={bounce:.2,delay:0,duration:.4,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 humanReadableEnumMap={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={Default:\"I891:4246;890:9816\",Large:\"h0x4rWPuu\"};const getProps=({align,height,iconColor,id,link,newTab,smoothScroll,sublinkName,textColor,width,...props})=>{var _ref,_humanReadableEnumMap_align,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,AE2W6GB84:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.AE2W6GB84,AhZQEMh6Z:(_ref=sublinkName!==null&&sublinkName!==void 0?sublinkName:props.AhZQEMh6Z)!==null&&_ref!==void 0?_ref:\"Performance Marketing\",b_etgrb1q:link!==null&&link!==void 0?link:props.b_etgrb1q,hBbXx24ar:(_ref2=(_ref1=(_humanReadableEnumMap_align=humanReadableEnumMap[align])!==null&&_humanReadableEnumMap_align!==void 0?_humanReadableEnumMap_align:align)!==null&&_ref1!==void 0?_ref1:props.hBbXx24ar)!==null&&_ref2!==void 0?_ref2:\"center\",LD4WS2EkB:(_ref3=textColor!==null&&textColor!==void 0?textColor:props.LD4WS2EkB)!==null&&_ref3!==void 0?_ref3:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:(_ref4=iconColor!==null&&iconColor!==void 0?iconColor:props.LLYu3G6d7)!==null&&_ref4!==void 0?_ref4:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"I891:4246;890:9816\",zkmrymntr:newTab!==null&&newTab!==void 0?newTab:props.zkmrymntr};};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,AhZQEMh6Z,b_etgrb1q,zkmrymntr,AE2W6GB84,hBbXx24ar,LD4WS2EkB,LLYu3G6d7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I891:4246;890:9816\",enabledGestures,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__*/_jsx(Link,{href:b_etgrb1q,openInNewTab:zkmrymntr,smoothScroll:AE2W6GB84,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-94if4d\",className,classNames)} framer-1dprc2c`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9816\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--1og3kg\":hBbXx24ar,...style},...addPropertyOverrides({\"h0x4rWPuu-hover\":{\"data-framer-name\":undefined},\"h0x4rWPuu-pressed\":{\"data-framer-name\":undefined},\"I891:4246;890:9816-hover\":{\"data-framer-name\":undefined},\"I891:4246;890:9816-pressed\":{\"data-framer-name\":undefined},h0x4rWPuu:{\"data-framer-name\":\"Large\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LD4WS2EkB-IOfhW0saf))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})}),className:\"framer-wdo1b2\",\"data-framer-name\":\"Performance Marketing\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9817\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-LD4WS2EkB-IOfhW0saf)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-LD4WS2EkB-IOfhW0saf\":LD4WS2EkB},text:AhZQEMh6Z,variants:{\"h0x4rWPuu-hover\":{\"--extracted-r6o4lv\":\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"h0x4rWPuu-pressed\":{\"--extracted-r6o4lv\":\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"I891:4246;890:9816-hover\":{\"--extracted-r6o4lv\":\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"I891:4246;890:9816-pressed\":{\"--extracted-r6o4lv\":\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"h0x4rWPuu-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})})},\"h0x4rWPuu-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})})},\"I891:4246;890:9816-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})})},\"I891:4246;890:9816-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})})},h0x4rWPuu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-LD4WS2EkB-IOfhW0saf))\",\"--framer-text-transform\":\"uppercase\"},children:\"Performance Marketing\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2swaku-container\",\"data-framer-name\":\"Arrow Icon\",layoutDependency:layoutDependency,layoutId:\"jOoTNvyyk-container\",name:\"Arrow Icon\",style:{rotate:-45},variants:{\"h0x4rWPuu-hover\":{rotate:0},\"h0x4rWPuu-pressed\":{rotate:0},\"I891:4246;890:9816-hover\":{rotate:0},\"I891:4246;890:9816-pressed\":{rotate:0}},children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:LLYu3G6d7,height:\"100%\",id:\"jOoTNvyyk\",layoutId:\"jOoTNvyyk\",name:\"Arrow Icon\",padding:0,strokeColor:\"rgba(0, 0, 0, 0)\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M10.0691 3.33337L8.89413 4.50837L13.5441 9.16671H3.40247V10.8334H13.5441L8.89413 15.4917L10.0691 16.6667L16.7358 10L10.0691 3.33337Z\" fill=\"#273400\"/> </svg>',width:\"100%\",...addPropertyOverrides({\"h0x4rWPuu-hover\":{fillColor:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"h0x4rWPuu-pressed\":{fillColor:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"I891:4246;890:9816-hover\":{fillColor:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},\"I891:4246;890:9816-pressed\":{fillColor:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DezMz.framer-1dprc2c, .framer-DezMz .framer-1dprc2c { display: block; }\",\".framer-DezMz.framer-94if4d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DezMz .framer-wdo1b2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DezMz .framer-2swaku-container { flex: none; height: auto; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DezMz.framer-94if4d { gap: 0px; } .framer-DezMz.framer-94if4d > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DezMz.framer-94if4d > :first-child { margin-left: 0px; } .framer-DezMz.framer-94if4d > :last-child { margin-right: 0px; } }\",\".framer-DezMz.framer-v-1ywao5y.framer-94if4d { align-content: var(--1og3kg); align-items: var(--1og3kg); width: 278px; }\",\".framer-DezMz.framer-v-1ywao5y .framer-wdo1b2 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 236\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"h0x4rWPuu\":{\"layout\":[\"fixed\",\"auto\"]},\"vvfVN6bTU\":{\"layout\":[\"auto\",\"auto\"]},\"GvQKgPsMy\":{\"layout\":[\"auto\",\"auto\"]},\"awT1asbwO\":{\"layout\":[\"fixed\",\"auto\"]},\"o7pXFgfhe\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"AhZQEMh6Z\":\"sublinkName\",\"b_etgrb1q\":\"link\",\"zkmrymntr\":\"newTab\",\"AE2W6GB84\":\"smoothScroll\",\"hBbXx24ar\":\"align\",\"LD4WS2EkB\":\"textColor\",\"LLYu3G6d7\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIOfhW0saf=withCSS(Component,css,\"framer-DezMz\");export default FramerIOfhW0saf;FramerIOfhW0saf.displayName=\"Sublink\";FramerIOfhW0saf.defaultProps={height:24,width:236};addPropertyControls(FramerIOfhW0saf,{variant:{options:[\"I891:4246;890:9816\",\"h0x4rWPuu\"],optionTitles:[\"Default\",\"Large\"],title:\"Variant\",type:ControlType.Enum},AhZQEMh6Z:{defaultValue:\"Performance Marketing\",displayTextArea:false,title:\"sublink name\",type:ControlType.String},b_etgrb1q:{title:\"Link\",type:ControlType.Link},zkmrymntr:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},AE2W6GB84:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean},hBbXx24ar:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum},LD4WS2EkB:{defaultValue:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",title:\"Text Color\",type:ControlType.Color},LLYu3G6d7:{defaultValue:'var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)) /* {\"name\":\"Eerie Black\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramerIOfhW0saf,[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]},...SVGIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIOfhW0saf\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h0x4rWPuu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vvfVN6bTU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GvQKgPsMy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"awT1asbwO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o7pXFgfhe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"AhZQEMh6Z\\\":\\\"sublinkName\\\",\\\"b_etgrb1q\\\":\\\"link\\\",\\\"zkmrymntr\\\":\\\"newTab\\\",\\\"AE2W6GB84\\\":\\\"smoothScroll\\\",\\\"hBbXx24ar\\\":\\\"align\\\",\\\"LD4WS2EkB\\\":\\\"textColor\\\",\\\"LLYu3G6d7\\\":\\\"iconColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"236\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IOfhW0saf.map", "// Generated by Framer (20caf11)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-E9Xfa .framer-styles-preset-109lz52:not(.rich-text-wrapper), .framer-E9Xfa .framer-styles-preset-109lz52.rich-text-wrapper a { --framer-link-current-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416) /* {\"name\":\"Eerie Black\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, #ff5400) /* {\"name\":\"Mystic Red\"} */; --framer-link-text-decoration: none; }'];export const className=\"framer-E9Xfa\";\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\"}}}", "// Generated by Framer (20caf11)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={\"I891:4246;890:9804\":{hover:true}};const cycleOrder=[\"I891:4246;890:9804\",\"tYMxe7w0R\"];const serializationHash=\"framer-mb89a\";const variantClassNames={\"I891:4246;890:9804\":\"framer-v-1638rks\",tYMxe7w0R:\"framer-v-1nvnjeo\"};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={bounce:.2,delay:0,duration:.4,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={Default:\"I891:4246;890:9804\",selected:\"tYMxe7w0R\"};const getProps=({click,height,id,linkName,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,leoR9pRVZ:(_ref=linkName!==null&&linkName!==void 0?linkName:props.leoR9pRVZ)!==null&&_ref!==void 0?_ref:\"Business Growth\",R_GRs2aTO:click!==null&&click!==void 0?click:props.R_GRs2aTO,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"I891:4246;890:9804\"};};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,leoR9pRVZ,R_GRs2aTO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I891:4246;890:9804\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap19gp46j=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(R_GRs2aTO){const res=await R_GRs2aTO(...args);if(res===false)return false;}setVariant(\"tYMxe7w0R\");});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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1638rks\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9804\",onTap:onTap19gp46j,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{tYMxe7w0R:{backgroundColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"}},...addPropertyOverrides({\"I891:4246;890:9804-hover\":{\"data-framer-name\":undefined},tYMxe7w0R:{\"data-framer-name\":\"selected\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Business Growth\"})}),className:\"framer-1arj76a\",\"data-framer-name\":\"Business Growth\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9805\",style:{\"--extracted-r6o4lv\":\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",\"--framer-paragraph-spacing\":\"0px\"},text:leoR9pRVZ,variants:{\"I891:4246;890:9804-hover\":{\"--extracted-r6o4lv\":\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\"},tYMxe7w0R:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"I891:4246;890:9804-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Business Growth\"})})},tYMxe7w0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Business Growth\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mb89a.framer-1w9zxni, .framer-mb89a .framer-1w9zxni { display: block; }\",\".framer-mb89a.framer-1638rks { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 200px; }\",\".framer-mb89a .framer-1arj76a { flex: 1 0 0px; height: auto; 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-mb89a.framer-1638rks { gap: 0px; } .framer-mb89a.framer-1638rks > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-mb89a.framer-1638rks > :first-child { margin-left: 0px; } .framer-mb89a.framer-1638rks > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tYMxe7w0R\":{\"layout\":[\"fixed\",\"auto\"]},\"nXdYJRMIc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"leoR9pRVZ\":\"linkName\",\"R_GRs2aTO\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlodZQGngA=withCSS(Component,css,\"framer-mb89a\");export default FramerlodZQGngA;FramerlodZQGngA.displayName=\"Service link\";FramerlodZQGngA.defaultProps={height:48,width:200};addPropertyControls(FramerlodZQGngA,{variant:{options:[\"I891:4246;890:9804\",\"tYMxe7w0R\"],optionTitles:[\"Default\",\"selected\"],title:\"Variant\",type:ControlType.Enum},leoR9pRVZ:{defaultValue:\"Business Growth\",displayTextArea:false,title:\"Link Name\",type:ControlType.String},R_GRs2aTO:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerlodZQGngA,[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlodZQGngA\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerVariables\":\"{\\\"leoR9pRVZ\\\":\\\"linkName\\\",\\\"R_GRs2aTO\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tYMxe7w0R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nXdYJRMIc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lodZQGngA.map", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Sublink from\"https://framerusercontent.com/modules/qgUC7uc712zpFvIo2BfE/96A5BSvWfBcud5wUoYJO/IOfhW0saf.js\";import ServiceLink from\"https://framerusercontent.com/modules/rOKmptUPHmH9ngHATfgE/Kp6t14aiNBCDRZRR3gL8/lodZQGngA.js\";const ServiceLinkFonts=getFonts(ServiceLink);const SublinkFonts=getFonts(Sublink);const cycleOrder=[\"UhVs4T0lU\",\"LAK4Yt1d8\",\"iWJR6MjAp\",\"CeUn4MD5v\"];const serializationHash=\"framer-iki18\";const variantClassNames={CeUn4MD5v:\"framer-v-qdyl8s\",iWJR6MjAp:\"framer-v-6yzh12\",LAK4Yt1d8:\"framer-v-bgfpim\",UhVs4T0lU:\"framer-v-1hpyjqb\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Business Growth\":\"UhVs4T0lU\",\"Engage Customers\":\"iWJR6MjAp\",\"Enhance Online Presence\":\"CeUn4MD5v\",\"Scale Operations\":\"LAK4Yt1d8\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UhVs4T0lU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UhVs4T0lU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const R_GRs2aTOi7keg9=activeVariantCallback(async(...args)=>{setVariant(\"UhVs4T0lU\");});const R_GRs2aTO1c2no4z=activeVariantCallback(async(...args)=>{setVariant(\"LAK4Yt1d8\");});const R_GRs2aTO6245u8=activeVariantCallback(async(...args)=>{setVariant(\"iWJR6MjAp\");});const R_GRs2aTO137eo7s=activeVariantCallback(async(...args)=>{setVariant(\"CeUn4MD5v\");});const ref1=React.useRef(null);const router=useRouter();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-1hpyjqb\",className,classNames),\"data-framer-name\":\"Business Growth\",layoutDependency:layoutDependency,layoutId:\"UhVs4T0lU\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-f44b5ad9-8e7d-4743-b825-15b98f5f156b, rgb(253, 255, 196))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({CeUn4MD5v:{\"data-framer-name\":\"Enhance Online Presence\"},iWJR6MjAp:{\"data-framer-name\":\"Engage Customers\"},LAK4Yt1d8:{\"data-framer-name\":\"Scale Operations\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ineqqx\",\"data-framer-name\":\"Left container\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9802\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jdapul\",\"data-framer-name\":\"Service links\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9803\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"257.3333px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+16+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i7sns3-container\",\"data-framer-name\":\"Business Growth\",layoutDependency:layoutDependency,layoutId:\"T3L2erQP0-container\",name:\"Business Growth\",children:/*#__PURE__*/_jsx(ServiceLink,{height:\"100%\",id:\"T3L2erQP0\",layoutId:\"T3L2erQP0\",leoR9pRVZ:\"Business Growth\",name:\"Business Growth\",R_GRs2aTO:R_GRs2aTOi7keg9,style:{width:\"100%\"},variant:\"tYMxe7w0R\",width:\"100%\",...addPropertyOverrides({CeUn4MD5v:{variant:\"I891:4246;890:9804\"},iWJR6MjAp:{variant:\"I891:4246;890:9804\"},LAK4Yt1d8:{variant:\"I891:4246;890:9804\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"257.3333px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+16+0+48,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1seyk55-container\",\"data-framer-name\":\"Scale Operations\",layoutDependency:layoutDependency,layoutId:\"BF6npuXUQ-container\",name:\"Scale Operations\",children:/*#__PURE__*/_jsx(ServiceLink,{height:\"100%\",id:\"BF6npuXUQ\",layoutId:\"BF6npuXUQ\",leoR9pRVZ:\"Scale Operations\",name:\"Scale Operations\",R_GRs2aTO:R_GRs2aTO1c2no4z,style:{width:\"100%\"},variant:\"I891:4246;890:9804\",width:\"100%\",...addPropertyOverrides({LAK4Yt1d8:{variant:\"tYMxe7w0R\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"257.3333px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+16+0+96,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-behqh9-container\",\"data-framer-name\":\"Engage Customers\",layoutDependency:layoutDependency,layoutId:\"AEYiw89re-container\",name:\"Engage Customers\",children:/*#__PURE__*/_jsx(ServiceLink,{height:\"100%\",id:\"AEYiw89re\",layoutId:\"AEYiw89re\",leoR9pRVZ:\"Engage Customers\",name:\"Engage Customers\",R_GRs2aTO:R_GRs2aTO6245u8,style:{width:\"100%\"},variant:\"I891:4246;890:9804\",width:\"100%\",...addPropertyOverrides({iWJR6MjAp:{variant:\"tYMxe7w0R\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"257.3333px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+16+0+144,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1on1sog-container\",\"data-framer-name\":\"Enhance Online Presence\",layoutDependency:layoutDependency,layoutId:\"Ng4nPl5Zl-container\",name:\"Enhance Online Presence\",children:/*#__PURE__*/_jsx(ServiceLink,{height:\"100%\",id:\"Ng4nPl5Zl\",layoutId:\"Ng4nPl5Zl\",leoR9pRVZ:\"Enhance Online Presence\",name:\"Enhance Online Presence\",R_GRs2aTO:R_GRs2aTO137eo7s,style:{width:\"100%\"},variant:\"I891:4246;890:9804\",width:\"100%\",...addPropertyOverrides({CeUn4MD5v:{variant:\"tYMxe7w0R\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-160gxmd\",\"data-framer-name\":\"Right container\",layoutDependency:layoutDependency,layoutId:\"U3uMBCa5m\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10pce48\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"DmxGwJrC3\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3t8nea\",\"data-framer-name\":\"Business Growth\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9812\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:1},variants:{CeUn4MD5v:{opacity:0},iWJR6MjAp:{opacity:0},LAK4Yt1d8:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gw7a8c\",\"data-framer-name\":\"Sublinks\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9813\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"performance-marketing\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Eev5Jtaud\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"performance-marketing\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Eev5Jtaud\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"performance-marketing\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Eev5Jtaud\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"performance-marketing\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Eev5Jtaud\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16+0+0,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16+0+0},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16+0+0},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ty8l2-container\",\"data-framer-name\":\"Performance Marketing\",layoutDependency:layoutDependency,layoutId:\"unrm9Pb5Q-container\",name:\"Performance Marketing\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Performance Marketing\",b_etgrb1q:resolvedLinks[0],hBbXx24ar:\"center\",height:\"100%\",id:\"unrm9Pb5Q\",layoutId:\"unrm9Pb5Q\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Performance Marketing\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"lead-generation\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"IxvVK4DSq\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"lead-generation\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"IxvVK4DSq\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"lead-generation\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"IxvVK4DSq\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"lead-generation\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"IxvVK4DSq\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16+0+40,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16+0+40},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16+0+40},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cjndtf-container\",\"data-framer-name\":\"lead Generation\",layoutDependency:layoutDependency,layoutId:\"gkoCDZSs3-container\",name:\"lead Generation\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"lead Generation\",b_etgrb1q:resolvedLinks1[0],hBbXx24ar:\"center\",height:\"100%\",id:\"gkoCDZSs3\",layoutId:\"gkoCDZSs3\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"lead Generation\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks1[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks1[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"search-social-advertising\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"PbBw1EYsJ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"search-social-advertising\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"PbBw1EYsJ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"search-social-advertising\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"PbBw1EYsJ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"search-social-advertising\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"PbBw1EYsJ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16+0+80,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16+0+80},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16+0+80},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t70jxc-container\",\"data-framer-name\":\"Search & Social Advertising\",layoutDependency:layoutDependency,layoutId:\"qjF7Pi46V-container\",name:\"Search & Social Advertising\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Search & Social Advertising\",b_etgrb1q:resolvedLinks2[0],hBbXx24ar:\"center\",height:\"100%\",id:\"qjF7Pi46V\",layoutId:\"qjF7Pi46V\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Search & Social Advertising\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks2[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks2[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"staff-training-coaching\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"hqN9v4IxQ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"staff-training-coaching\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"hqN9v4IxQ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"staff-training-coaching\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"hqN9v4IxQ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"staff-training-coaching\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"hqN9v4IxQ\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16+0+120,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16+0+120},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16+0+120},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8i0ci6-container\",\"data-framer-name\":\"Staff Training & Coaching\",layoutDependency:layoutDependency,layoutId:\"Q3gchuzck-container\",name:\"Staff Training & Coaching\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Staff Training & Coaching\",b_etgrb1q:resolvedLinks3[0],hBbXx24ar:\"center\",height:\"100%\",id:\"Q3gchuzck\",layoutId:\"Q3gchuzck\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Staff Training & Coaching\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks3[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks3[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"sales-pipeline-building-and-training\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"qViBzvEF3\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"sales-pipeline-building-and-training\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"qViBzvEF3\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"sales-pipeline-building-and-training\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"qViBzvEF3\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"sales-pipeline-building-and-training\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"qViBzvEF3\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"334.5px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16+0+160,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16+0+160},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16+0+160},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1akk6v8-container\",\"data-framer-name\":\"Sales Pipeline Building & Training\",layoutDependency:layoutDependency,layoutId:\"hyeCljP8o-container\",name:\"Sales Pipeline Building & Training\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Sales Pipeline Building & Training\",b_etgrb1q:resolvedLinks4[0],hBbXx24ar:\"center\",height:\"100%\",id:\"hyeCljP8o\",layoutId:\"hyeCljP8o\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Sales Pipeline Building & Training\",style:{width:\"100%\"},variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks4[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks4[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0+16),sizes:\"180px\",src:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png\",srcSet:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png 4096w\"},className:\"framer-jnya9y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"I891:4246;890:9839\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({CeUn4MD5v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+0+16),sizes:\"180px\",src:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png\",srcSet:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png 4096w\"}},iWJR6MjAp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+0+16),sizes:\"180px\",src:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png\",srcSet:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png 4096w\"}},LAK4Yt1d8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+0+16),sizes:\"180px\",src:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png\",srcSet:\"https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1rgt32B9T0G9ifSEFEjfyvIoTk.png 4096w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hdw176\",\"data-framer-name\":\"Scale Operations\",layoutDependency:layoutDependency,layoutId:\"n4um1fXk2\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:0},variants:{LAK4Yt1d8:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-frinf0\",\"data-framer-name\":\"Sublinks\",layoutDependency:layoutDependency,layoutId:\"OPWPWp87w\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"crm-setup\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"xAd7bpeX2\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"crm-setup\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"xAd7bpeX2\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"crm-setup\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"xAd7bpeX2\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"crm-setup\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"xAd7bpeX2\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+228+16+0+0,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+228+16+0+0},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+228+16+0+0},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+228+16+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1idnrc9-container\",\"data-framer-name\":\"CRM Setup\",layoutDependency:layoutDependency,layoutId:\"G5v69vepJ-container\",name:\"CRM Setup\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"CRM Setup\",b_etgrb1q:resolvedLinks5[0],hBbXx24ar:\"center\",height:\"100%\",id:\"G5v69vepJ\",layoutId:\"G5v69vepJ\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"CRM Setup\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks5[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks5[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"automation-tech-solutions\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"CpmDi8G57\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"automation-tech-solutions\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"CpmDi8G57\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"automation-tech-solutions\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"CpmDi8G57\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"automation-tech-solutions\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"CpmDi8G57\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+228+16+0+40,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+228+16+0+40},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+228+16+0+40},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+228+16+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-91gyo0-container\",\"data-framer-name\":\"Automation & Tech Solutions\",layoutDependency:layoutDependency,layoutId:\"JMvOX9joF-container\",name:\"Automation & Tech Solutions\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Automation & Tech Solutions\",b_etgrb1q:resolvedLinks6[0],hBbXx24ar:\"center\",height:\"100%\",id:\"JMvOX9joF\",layoutId:\"JMvOX9joF\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Automation & Tech Solutions\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks6[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks6[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"ai-integration\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Z82_Agw0D\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"ai-integration\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Z82_Agw0D\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"ai-integration\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Z82_Agw0D\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"ai-integration\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Z82_Agw0D\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+228+16+0+80,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+228+16+0+80},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+228+16+0+80},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+228+16+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p8tdy3-container\",\"data-framer-name\":\"AI Integration\",layoutDependency:layoutDependency,layoutId:\"QVCKK40q4-container\",name:\"AI Integration\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"AI Integration\",b_etgrb1q:resolvedLinks7[0],hBbXx24ar:\"center\",height:\"100%\",id:\"QVCKK40q4\",layoutId:\"QVCKK40q4\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"AI Integration\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks7[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks7[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"dashboards\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"R1qTeK6Tp\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"dashboards\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"R1qTeK6Tp\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"dashboards\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"R1qTeK6Tp\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"dashboards\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"R1qTeK6Tp\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+228+16+0+120,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+228+16+0+120},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+228+16+0+120},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+228+16+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pvc54c-container\",\"data-framer-name\":\"Dashboards\",layoutDependency:layoutDependency,layoutId:\"vbw34DIOV-container\",name:\"Dashboards\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Dashboards\",b_etgrb1q:resolvedLinks8[0],hBbXx24ar:\"center\",height:\"100%\",id:\"vbw34DIOV\",layoutId:\"vbw34DIOV\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Dashboards\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks8[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks8[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+228+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/O614xnvy3zgwVJGA4fMutDOMos.png\"},className:\"framer-m7gxlp\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"SdVoiUjFE\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({CeUn4MD5v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+228+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/O614xnvy3zgwVJGA4fMutDOMos.png\"}},iWJR6MjAp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+228+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/O614xnvy3zgwVJGA4fMutDOMos.png\"}},LAK4Yt1d8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+228+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/O614xnvy3zgwVJGA4fMutDOMos.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j185ue\",\"data-framer-name\":\"Engage Customers\",layoutDependency:layoutDependency,layoutId:\"zzFvOjNSq\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:0},variants:{iWJR6MjAp:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbqpkh\",\"data-framer-name\":\"Sublinks\",layoutDependency:layoutDependency,layoutId:\"SxwRPWrxn\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"tactical-social-media-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"vJiI60Wb9\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"tactical-social-media-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"vJiI60Wb9\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"tactical-social-media-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"vJiI60Wb9\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"tactical-social-media-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"vJiI60Wb9\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+456+16+0+0,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+456+16+0+0},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+456+16+0+0},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+456+16+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2k6u00-container\",\"data-framer-name\":\"Tactical Social Media Campaigns\",layoutDependency:layoutDependency,layoutId:\"Ow1vtrhe4-container\",name:\"Tactical Social Media Campaigns\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Tactical Social Media Campaigns\",b_etgrb1q:resolvedLinks9[0],hBbXx24ar:\"center\",height:\"100%\",id:\"Ow1vtrhe4\",layoutId:\"Ow1vtrhe4\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Tactical Social Media Campaigns\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks9[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks9[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"email-whatsapp-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kFrJMjzxe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"email-whatsapp-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kFrJMjzxe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"email-whatsapp-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kFrJMjzxe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"email-whatsapp-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kFrJMjzxe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+456+16+0+40,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+456+16+0+40},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+456+16+0+40},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+456+16+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2jkc23-container\",\"data-framer-name\":\"Email & WhatsApp Campaigns\",layoutDependency:layoutDependency,layoutId:\"DaLlCP0lW-container\",name:\"Email & WhatsApp Campaigns\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Email & WhatsApp Campaigns\",b_etgrb1q:resolvedLinks10[0],hBbXx24ar:\"center\",height:\"100%\",id:\"DaLlCP0lW\",layoutId:\"DaLlCP0lW\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Email & WhatsApp Campaigns\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks10[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks10[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reactivation-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"zRrec1JIi\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reactivation-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"zRrec1JIi\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reactivation-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"zRrec1JIi\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reactivation-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"zRrec1JIi\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+456+16+0+80,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+456+16+0+80},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+456+16+0+80},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+456+16+0+80}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4in2m-container\",\"data-framer-name\":\"Reactivation Campaigns\",layoutDependency:layoutDependency,layoutId:\"MlUNR5v9H-container\",name:\"Reactivation Campaigns\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Reactivation Campaigns\",b_etgrb1q:resolvedLinks11[0],hBbXx24ar:\"center\",height:\"100%\",id:\"MlUNR5v9H\",layoutId:\"MlUNR5v9H\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Reactivation Campaigns\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks11[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks11[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks11[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+456+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/QkCsuTEJx2UNcjk6k8FObYsfnqw.png\"},className:\"framer-1r2qa32\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"P9wWSXYsA\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({CeUn4MD5v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+456+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/QkCsuTEJx2UNcjk6k8FObYsfnqw.png\"}},iWJR6MjAp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+456+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/QkCsuTEJx2UNcjk6k8FObYsfnqw.png\"}},LAK4Yt1d8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+456+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/QkCsuTEJx2UNcjk6k8FObYsfnqw.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lmodc8\",\"data-framer-name\":\"Enhance Online Presence\",layoutDependency:layoutDependency,layoutId:\"X0j3QQRhj\",style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,opacity:0},variants:{CeUn4MD5v:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xtb37\",\"data-framer-name\":\"Sublinks\",layoutDependency:layoutDependency,layoutId:\"K4eJ4Bumg\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"website-landing-page-design\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kZ_B2edZe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"website-landing-page-design\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kZ_B2edZe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"website-landing-page-design\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kZ_B2edZe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"website-landing-page-design\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kZ_B2edZe\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+684+16+0+0,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+684+16+0+0},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+684+16+0+0},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+684+16+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4e4wjl-container\",\"data-framer-name\":\"Website & Landing Pages Design\",layoutDependency:layoutDependency,layoutId:\"ZyJkslIOY-container\",name:\"Website & Landing Pages Design\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Website & Landing Pages Design\",b_etgrb1q:resolvedLinks12[0],hBbXx24ar:\"center\",height:\"100%\",id:\"ZyJkslIOY\",layoutId:\"ZyJkslIOY\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Website & Landing Pages Design\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{AhZQEMh6Z:\"Website & Landing Page Design\",b_etgrb1q:resolvedLinks12[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks12[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reputation-management\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"laDbcBWzF\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reputation-management\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"laDbcBWzF\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reputation-management\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"laDbcBWzF\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined},{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reputation-management\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"laDbcBWzF\"}},webPageId:\"oqsDM2eBX\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+684+16+0+40,...addPropertyOverrides({CeUn4MD5v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+684+16+0+40},iWJR6MjAp:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+684+16+0+40},LAK4Yt1d8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+684+16+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14tjlgt-container\",\"data-framer-name\":\"Reputation Management\",layoutDependency:layoutDependency,layoutId:\"pAwrbt2IN-container\",name:\"Reputation Management\",children:/*#__PURE__*/_jsx(Sublink,{AE2W6GB84:true,AhZQEMh6Z:\"Reputation Management\",b_etgrb1q:resolvedLinks13[0],hBbXx24ar:\"center\",height:\"100%\",id:\"pAwrbt2IN\",layoutId:\"pAwrbt2IN\",LD4WS2EkB:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",LLYu3G6d7:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",name:\"Reputation Management\",variant:\"I891:4246;890:9816\",width:\"100%\",zkmrymntr:false,...addPropertyOverrides({CeUn4MD5v:{b_etgrb1q:resolvedLinks13[3]},iWJR6MjAp:{b_etgrb1q:resolvedLinks13[2]},LAK4Yt1d8:{b_etgrb1q:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+684+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/OOIVyS0KyrrIcXfbYNg58oOGRjk.png\"},className:\"framer-2x8kx5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eo27uFvJl\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({CeUn4MD5v:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-684+0+684+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/OOIVyS0KyrrIcXfbYNg58oOGRjk.png\"}},iWJR6MjAp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-456+0+684+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/OOIVyS0KyrrIcXfbYNg58oOGRjk.png\"}},LAK4Yt1d8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+-228+0+684+16),pixelHeight:384,pixelWidth:360,src:\"https://framerusercontent.com/images/OOIVyS0KyrrIcXfbYNg58oOGRjk.png\"}}},baseVariant,gestureVariant)})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iki18.framer-1dd26il, .framer-iki18 .framer-1dd26il { display: block; }\",\".framer-iki18.framer-1hpyjqb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 228px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 884px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iki18 .framer-ineqqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 289px; }\",\".framer-iki18 .framer-1jdapul { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iki18 .framer-1i7sns3-container, .framer-iki18 .framer-1seyk55-container, .framer-iki18 .framer-behqh9-container, .framer-iki18 .framer-1on1sog-container, .framer-iki18 .framer-1akk6v8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-iki18 .framer-160gxmd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 228px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iki18 .framer-10pce48 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-iki18 .framer-3t8nea, .framer-iki18 .framer-hdw176, .framer-iki18 .framer-1j185ue, .framer-iki18 .framer-1lmodc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 228px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 587px; }\",\".framer-iki18 .framer-gw7a8c, .framer-iki18 .framer-frinf0, .framer-iki18 .framer-nbqpkh, .framer-iki18 .framer-1xtb37 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iki18 .framer-15ty8l2-container, .framer-iki18 .framer-cjndtf-container, .framer-iki18 .framer-1t70jxc-container, .framer-iki18 .framer-8i0ci6-container, .framer-iki18 .framer-1idnrc9-container, .framer-iki18 .framer-91gyo0-container, .framer-iki18 .framer-1p8tdy3-container, .framer-iki18 .framer-1pvc54c-container, .framer-iki18 .framer-2k6u00-container, .framer-iki18 .framer-2jkc23-container, .framer-iki18 .framer-f4in2m-container, .framer-iki18 .framer-4e4wjl-container, .framer-iki18 .framer-14tjlgt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-iki18 .framer-jnya9y, .framer-iki18 .framer-m7gxlp, .framer-iki18 .framer-1r2qa32, .framer-iki18 .framer-2x8kx5 { flex: none; height: 100%; position: relative; width: 180px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iki18.framer-1hpyjqb, .framer-iki18 .framer-ineqqx, .framer-iki18 .framer-1jdapul, .framer-iki18 .framer-160gxmd, .framer-iki18 .framer-10pce48, .framer-iki18 .framer-3t8nea, .framer-iki18 .framer-gw7a8c, .framer-iki18 .framer-hdw176, .framer-iki18 .framer-frinf0, .framer-iki18 .framer-1j185ue, .framer-iki18 .framer-nbqpkh, .framer-iki18 .framer-1lmodc8, .framer-iki18 .framer-1xtb37 { gap: 0px; } .framer-iki18.framer-1hpyjqb > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iki18.framer-1hpyjqb > :first-child, .framer-iki18 .framer-ineqqx > :first-child, .framer-iki18 .framer-3t8nea > :first-child, .framer-iki18 .framer-hdw176 > :first-child, .framer-iki18 .framer-1j185ue > :first-child, .framer-iki18 .framer-1lmodc8 > :first-child { margin-left: 0px; } .framer-iki18.framer-1hpyjqb > :last-child, .framer-iki18 .framer-ineqqx > :last-child, .framer-iki18 .framer-3t8nea > :last-child, .framer-iki18 .framer-hdw176 > :last-child, .framer-iki18 .framer-1j185ue > :last-child, .framer-iki18 .framer-1lmodc8 > :last-child { margin-right: 0px; } .framer-iki18 .framer-ineqqx > *, .framer-iki18 .framer-3t8nea > *, .framer-iki18 .framer-hdw176 > *, .framer-iki18 .framer-1j185ue > *, .framer-iki18 .framer-1lmodc8 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-iki18 .framer-1jdapul > *, .framer-iki18 .framer-160gxmd > *, .framer-iki18 .framer-10pce48 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iki18 .framer-1jdapul > :first-child, .framer-iki18 .framer-160gxmd > :first-child, .framer-iki18 .framer-10pce48 > :first-child, .framer-iki18 .framer-gw7a8c > :first-child, .framer-iki18 .framer-frinf0 > :first-child, .framer-iki18 .framer-nbqpkh > :first-child, .framer-iki18 .framer-1xtb37 > :first-child { margin-top: 0px; } .framer-iki18 .framer-1jdapul > :last-child, .framer-iki18 .framer-160gxmd > :last-child, .framer-iki18 .framer-10pce48 > :last-child, .framer-iki18 .framer-gw7a8c > :last-child, .framer-iki18 .framer-frinf0 > :last-child, .framer-iki18 .framer-nbqpkh > :last-child, .framer-iki18 .framer-1xtb37 > :last-child { margin-bottom: 0px; } .framer-iki18 .framer-gw7a8c > *, .framer-iki18 .framer-frinf0 > *, .framer-iki18 .framer-nbqpkh > *, .framer-iki18 .framer-1xtb37 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-iki18.framer-v-bgfpim .framer-10pce48 { top: -228px; }\",\".framer-iki18.framer-v-6yzh12 .framer-10pce48 { top: -456px; }\",\".framer-iki18.framer-v-qdyl8s .framer-10pce48 { top: -684px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 884\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LAK4Yt1d8\":{\"layout\":[\"fixed\",\"fixed\"]},\"iWJR6MjAp\":{\"layout\":[\"fixed\",\"fixed\"]},\"CeUn4MD5v\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdZlqeRGqy=withCSS(Component,css,\"framer-iki18\");export default FramerdZlqeRGqy;FramerdZlqeRGqy.displayName=\"Services Dropdown\";FramerdZlqeRGqy.defaultProps={height:228,width:884};addPropertyControls(FramerdZlqeRGqy,{variant:{options:[\"UhVs4T0lU\",\"LAK4Yt1d8\",\"iWJR6MjAp\",\"CeUn4MD5v\"],optionTitles:[\"Business Growth\",\"Scale Operations\",\"Engage Customers\",\"Enhance Online Presence\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdZlqeRGqy,[{explicitInter:true,fonts:[]},...ServiceLinkFonts,...SublinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdZlqeRGqy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"228\",\"framerIntrinsicWidth\":\"884\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LAK4Yt1d8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iWJR6MjAp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CeUn4MD5v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dZlqeRGqy.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Cabinet Grotesk-medium\",\"FS;Cabinet Grotesk-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CKQBK2QBTCDREE7L3MXZ3PPW7LDNJCWU/OTOY7FQFSFOJVZKJWKO2EHUJLOGBDN4Q/4CO2ETY7NITKLUDKMYJ75RHJSPHOJ7XT.woff2\",weight:\"500\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"}]}];export const css=['.framer-5zaGs .framer-styles-preset-1syuzqh:not(.rich-text-wrapper), .framer-5zaGs .framer-styles-preset-1syuzqh.rich-text-wrapper p { --framer-font-family: \"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #2e2e2e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5zaGs\";\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 (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6fweBtxO5tSuYwBUj0B7/ptU1vRbIblcKJ44rIGdU/aCoFbuR1C.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5jpeXiNjakJxV7ZC1u4i/msu2qIBHPclY6Tdg9lSv/g3JGHtIF3.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/udMIsZjdA7GQagWoC7lC/L21bDrfYKHwRg23129cE/rjZOSSdf9.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"ksbq6DQSK\",\"jB5JSVhqJ\"];const serializationHash=\"framer-gs90K\";const variantClassNames={jB5JSVhqJ:\"framer-v-1xdmzp4\",ksbq6DQSK:\"framer-v-1rb1ncg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.8,ease:[.2,.8,.2,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={closed:\"jB5JSVhqJ\",opened:\"ksbq6DQSK\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ksbq6DQSK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ksbq6DQSK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapxelj2o=activeVariantCallback(async(...args)=>{setVariant(\"jB5JSVhqJ\");});const onTapzbzc4d=activeVariantCallback(async(...args)=>{setVariant(\"ksbq6DQSK\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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-1rb1ncg\",className,classNames),\"data-framer-name\":\"opened\",layoutDependency:layoutDependency,layoutId:\"ksbq6DQSK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-f44b5ad9-8e7d-4743-b825-15b98f5f156b, rgb(253, 255, 196))\",...style},...addPropertyOverrides({jB5JSVhqJ:{\"data-framer-name\":\"closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v9kjgi\",\"data-framer-name\":\"Header\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NuSw7Nx9Q\",onTap:onTapxelj2o,...addPropertyOverrides({jB5JSVhqJ:{onTap:onTapzbzc4d}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:\"Services\"})}),className:\"framer-2hzwql\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47809\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-g4bxpr-container\",layoutDependency:layoutDependency,layoutId:\"axSvBKq0b-container\",style:{rotate:45},variants:{jB5JSVhqJ:{rotate:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"axSvBKq0b\",layoutId:\"axSvBKq0b\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16qxfis\",\"data-framer-name\":\"Categories\",layoutDependency:layoutDependency,layoutId:\"kkh5QSOaF\",children:[/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1l72jjb\",\"data-border\":true,\"data-framer-appear-id\":\"1l72jjb\",\"data-framer-name\":\"Business growth\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"YoRMh_0Ey\",optimized:true,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(28, 36, 22, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Business Growth\"})}),className:\"framer-1v735rl\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"AHxGpFueg\",style:{\"--extracted-a0htzi\":\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17hqnuh\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Qk2a0DQ17\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"performance-marketing\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Eev5Jtaud\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Performance Marketing\"})})})}),className:\"framer-9hk4a6\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jyoSkYG8s\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"lead-generation\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"IxvVK4DSq\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"lead Generation\"})})})}),className:\"framer-1shuktz\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tdl6in8Ls\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"search-social-advertising\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"PbBw1EYsJ\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Search & Social Advertising\"})})})}),className:\"framer-1bs8ag6\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oYdJeXGPr\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"sales-pipeline-building-and-training\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"qViBzvEF3\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Sales Pipeline Building & Training\"})})})}),className:\"framer-19oosf1\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Hym_pURV6\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"staff-training-coaching\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"hqN9v4IxQ\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Staff Training & Coaching\"})})})}),className:\"framer-1uwt892\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QCtr7WtvF\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1atto4u\",\"data-border\":true,\"data-framer-appear-id\":\"1atto4u\",\"data-framer-name\":\"Scale Operations\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"zFZjxZBGW\",optimized:true,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(28, 36, 22, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Scale Operations\"})}),className:\"framer-yfbq5p\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"h3QMDVMgf\",style:{\"--extracted-a0htzi\":\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nim55m\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"jy2pR8Wwm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"crm-setup\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"xAd7bpeX2\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"CRM Setup\"})})})}),className:\"framer-1dcamij\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hbUKxKDcY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"automation-tech-solutions\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"CpmDi8G57\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Automation & Tech Solutions\"})})})}),className:\"framer-1exq2co\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"inFhaJb0y\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"ai-integration\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"Z82_Agw0D\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"AI Integration\"})})})}),className:\"framer-1xqmmt\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UIATvhWiy\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"dashboards\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"R1qTeK6Tp\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Dashboards\"})})})}),className:\"framer-1gxuen0\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mTaXkTU0U\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-xt08eo\",\"data-border\":true,\"data-framer-appear-id\":\"xt08eo\",\"data-framer-name\":\"Engage Customers\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"DFqLzj_Vu\",optimized:true,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(28, 36, 22, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Engage Customers\"})}),className:\"framer-1r19zux\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"oEMzHv2Lb\",style:{\"--extracted-a0htzi\":\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bxvte\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"v7LjoXAHR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"tactical-social-media-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"vJiI60Wb9\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Tactical Social Media Campaigns\"})})})}),className:\"framer-jwuhln\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kjQyxWKCq\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"email-whatsapp-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kFrJMjzxe\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Email & WhatsApp Campaigns\"})})})}),className:\"framer-1y30uh7\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sTHKBCFDg\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reactivation-campaigns\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"zRrec1JIi\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Reactivation Campaigns\"})})})}),className:\"framer-qjmi7f\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tFofq1Qs5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-w7q9xr\",\"data-border\":true,\"data-framer-appear-id\":\"w7q9xr\",\"data-framer-name\":\"Enhance Online Presence\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"zxRJVbqPh\",optimized:true,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(28, 36, 22, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0ltcGFjdCBSZWd1bGFy\",\"--framer-font-family\":'\"Impact Regular\", \"Impact Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Enhance Online Presence\"})}),className:\"framer-q23lun\",fonts:[\"CUSTOM;Impact Regular\"],layoutDependency:layoutDependency,layoutId:\"NbH8WwzXb\",style:{\"--extracted-a0htzi\":\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpzuk4\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Kl9Po0zzj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"website-landing-page-design\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"kZ_B2edZe\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Website & Landing Page Design\"})})})}),className:\"framer-1gur85c\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JWU5u0JLl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CLRpcJ9o1\",pathVariables:{tobHJtF3K:\"reputation-management\"},unresolvedPathSlugs:{tobHJtF3K:{collectionId:\"mRqCXI7sX\",collectionItemId:\"laDbcBWzF\"}},webPageId:\"oqsDM2eBX\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Reputation Management\"})})})}),className:\"framer-1lqukch\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b7YrzlmHn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gs90K.framer-xrkkrd, .framer-gs90K .framer-xrkkrd { display: block; }\",\".framer-gs90K.framer-1rb1ncg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 546px; }\",\".framer-gs90K .framer-v9kjgi { align-content: center; align-items: center; cursor: pointer; 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-gs90K .framer-2hzwql { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gs90K .framer-g4bxpr-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-gs90K .framer-16qxfis { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 240px; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-gs90K .framer-1l72jjb, .framer-gs90K .framer-1atto4u, .framer-gs90K .framer-xt08eo, .framer-gs90K .framer-w7q9xr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-gs90K .framer-1v735rl, .framer-gs90K .framer-yfbq5p, .framer-gs90K .framer-1r19zux, .framer-gs90K .framer-q23lun { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gs90K .framer-17hqnuh, .framer-gs90K .framer-1nim55m, .framer-gs90K .framer-bxvte, .framer-gs90K .framer-1qpzuk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gs90K .framer-9hk4a6, .framer-gs90K .framer-1shuktz, .framer-gs90K .framer-1bs8ag6, .framer-gs90K .framer-19oosf1, .framer-gs90K .framer-1uwt892, .framer-gs90K .framer-1dcamij, .framer-gs90K .framer-1exq2co, .framer-gs90K .framer-1xqmmt, .framer-gs90K .framer-1gxuen0, .framer-gs90K .framer-jwuhln, .framer-gs90K .framer-1y30uh7, .framer-gs90K .framer-qjmi7f, .framer-gs90K .framer-1gur85c, .framer-gs90K .framer-1lqukch { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-gs90K.framer-1rb1ncg, .framer-gs90K .framer-v9kjgi, .framer-gs90K .framer-16qxfis, .framer-gs90K .framer-1l72jjb, .framer-gs90K .framer-17hqnuh, .framer-gs90K .framer-1atto4u, .framer-gs90K .framer-1nim55m, .framer-gs90K .framer-xt08eo, .framer-gs90K .framer-bxvte, .framer-gs90K .framer-w7q9xr, .framer-gs90K .framer-1qpzuk4 { gap: 0px; } .framer-gs90K.framer-1rb1ncg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-gs90K.framer-1rb1ncg > :first-child, .framer-gs90K .framer-16qxfis > :first-child, .framer-gs90K .framer-1l72jjb > :first-child, .framer-gs90K .framer-17hqnuh > :first-child, .framer-gs90K .framer-1atto4u > :first-child, .framer-gs90K .framer-1nim55m > :first-child, .framer-gs90K .framer-xt08eo > :first-child, .framer-gs90K .framer-bxvte > :first-child, .framer-gs90K .framer-w7q9xr > :first-child, .framer-gs90K .framer-1qpzuk4 > :first-child { margin-top: 0px; } .framer-gs90K.framer-1rb1ncg > :last-child, .framer-gs90K .framer-16qxfis > :last-child, .framer-gs90K .framer-1l72jjb > :last-child, .framer-gs90K .framer-17hqnuh > :last-child, .framer-gs90K .framer-1atto4u > :last-child, .framer-gs90K .framer-1nim55m > :last-child, .framer-gs90K .framer-xt08eo > :last-child, .framer-gs90K .framer-bxvte > :last-child, .framer-gs90K .framer-w7q9xr > :last-child, .framer-gs90K .framer-1qpzuk4 > :last-child { margin-bottom: 0px; } .framer-gs90K .framer-v9kjgi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gs90K .framer-v9kjgi > :first-child { margin-left: 0px; } .framer-gs90K .framer-v9kjgi > :last-child { margin-right: 0px; } .framer-gs90K .framer-16qxfis > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gs90K .framer-1l72jjb > *, .framer-gs90K .framer-17hqnuh > *, .framer-gs90K .framer-1atto4u > *, .framer-gs90K .framer-1nim55m > *, .framer-gs90K .framer-xt08eo > *, .framer-gs90K .framer-bxvte > *, .framer-gs90K .framer-w7q9xr > *, .framer-gs90K .framer-1qpzuk4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-gs90K.framer-v-1xdmzp4.framer-1rb1ncg { height: 29px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-gs90K[data-border=\"true\"]::after, .framer-gs90K [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 285\n * @framerIntrinsicWidth 546\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jB5JSVhqJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerglLQdp29n=withCSS(Component,css,\"framer-gs90K\");export default FramerglLQdp29n;FramerglLQdp29n.displayName=\"services dropdown mobile\";FramerglLQdp29n.defaultProps={height:285,width:546};addPropertyControls(FramerglLQdp29n,{variant:{options:[\"ksbq6DQSK\",\"jB5JSVhqJ\"],optionTitles:[\"opened\",\"closed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerglLQdp29n,[{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:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerglLQdp29n\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"546\",\"framerIntrinsicHeight\":\"285\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jB5JSVhqJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./glLQdp29n.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";const SVGIconFonts=getFonts(SVGIcon);const serializationHash=\"framer-wRMk9\";const variantClassNames={OD8Y17_a6:\"framer-v-15qwm0m\"};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={bounce:.2,delay:0,duration:.4,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=({fillColor,height,id,width,...props})=>{var _ref;return{...props,b31J3dGNS:(_ref=fillColor!==null&&fillColor!==void 0?fillColor:props.b31J3dGNS)!==null&&_ref!==void 0?_ref:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"};};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,b31J3dGNS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"OD8Y17_a6\",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__*/_jsx(Link,{href:{hash:\":sG95OxpYb\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-15qwm0m\",className,classNames)} framer-bl2hn2`,\"data-framer-name\":\"Main\",layoutDependency:layoutDependency,layoutId:\"OD8Y17_a6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p01p4e-container\",\"data-framer-name\":\"skull\",layoutDependency:layoutDependency,layoutId:\"NUjyLIXpE-container\",name:\"skull\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:b31J3dGNS,height:\"100%\",id:\"NUjyLIXpE\",layoutId:\"NUjyLIXpE\",name:\"skull\",padding:0,strokeColor:\"rgba(0, 0, 0, 0)\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"120\" height=\"36\" viewBox=\"0 0 120 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_2008_106)\"> <path d=\"M93.8787 18.9199V8.08484H80.7756V28H80.7978H93.8787H103.47V18.9199H93.8787Z\" fill=\"#1C2416\"/> <path d=\"M72.055 8.12927H63.1021L60.0061 12.6027L56.6395 8.12927H47.9552H41.5228V14.3314L47.2241 18.0636L41.5228 21.7958V28H47.9552H56.6395L59.887 23.775L63.1021 28H72.055H78.2531H78.4874V21.7958L72.7861 18.0636L78.4874 14.3314V8.12927H78.2531H72.055Z\" fill=\"#1C2416\"/> <path d=\"M16.9303 28H39.2326V21.9352H31.9661V19.5723H39.2326V16.4257H31.9661V14.0689H39.2326V8H16.9303V28Z\" fill=\"#1C2416\"/> </g> <defs> <clipPath id=\"clip0_2008_106\"> <rect width=\"86.5394\" height=\"20\" fill=\"white\" transform=\"translate(16.9303 8)\"/> </clipPath> </defs> </svg>',width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wRMk9.framer-bl2hn2, .framer-wRMk9 .framer-bl2hn2 { display: block; }\",\".framer-wRMk9.framer-15qwm0m { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-wRMk9 .framer-p01p4e-container { flex: none; height: auto; position: relative; width: 136px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wRMk9.framer-15qwm0m { gap: 0px; } .framer-wRMk9.framer-15qwm0m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wRMk9.framer-15qwm0m > :first-child { margin-left: 0px; } .framer-wRMk9.framer-15qwm0m > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41\n * @framerIntrinsicWidth 136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"b31J3dGNS\":\"fillColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLylmglZgI=withCSS(Component,css,\"framer-wRMk9\");export default FramerLylmglZgI;FramerLylmglZgI.displayName=\"Logo\";FramerLylmglZgI.defaultProps={height:41,width:136};addPropertyControls(FramerLylmglZgI,{b31J3dGNS:{defaultValue:'var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22)) /* {\"name\":\"Eerie Black\"} */',title:\"Fill Color\",type:ControlType.Color}});addFonts(FramerLylmglZgI,[{explicitInter:true,fonts:[]},...SVGIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLylmglZgI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"41\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"136\",\"framerVariables\":\"{\\\"b31J3dGNS\\\":\\\"fillColor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LylmglZgI.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Cabinet Grotesk-medium\",\"FS;Cabinet Grotesk-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CKQBK2QBTCDREE7L3MXZ3PPW7LDNJCWU/OTOY7FQFSFOJVZKJWKO2EHUJLOGBDN4Q/4CO2ETY7NITKLUDKMYJ75RHJSPHOJ7XT.woff2\",weight:\"500\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"}]}];export const css=['.framer-5zaGs .framer-styles-preset-1syuzqh:not(.rich-text-wrapper), .framer-5zaGs .framer-styles-preset-1syuzqh.rich-text-wrapper p { --framer-font-family: \"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif; --framer-font-family-bold: \"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #2e2e2e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5zaGs\";\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 (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/hRzEUb5vBHntAdrPjhOI/VnQun8PxV5jK0uCzNRwB/aCoFbuR1C.js\";const SVGIconFonts=getFonts(SVGIcon);const enabledGestures={Bp0aW9Vco:{hover:true,pressed:true},Ha6vzSEmu:{hover:true},jwlSSyf28:{hover:true}};const cycleOrder=[\"jwlSSyf28\",\"Bp0aW9Vco\",\"Ha6vzSEmu\"];const serializationHash=\"framer-u25Rv\";const variantClassNames={Bp0aW9Vco:\"framer-v-19dtgto\",Ha6vzSEmu:\"framer-v-19wb36u\",jwlSSyf28:\"framer-v-1ayzxh7\"};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={bounce:.2,delay:0,duration:.4,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={\"Menu Opened\":\"Ha6vzSEmu\",Default:\"jwlSSyf28\",Menu:\"Bp0aW9Vco\"};const getProps=({click2,height,icon,id,link,newTab,smoothScroll,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,I5c2HwcVR:newTab!==null&&newTab!==void 0?newTab:props.I5c2HwcVR,nXrYh_R1G:(_ref=icon!==null&&icon!==void 0?icon:props.nXrYh_R1G)!==null&&_ref!==void 0?_ref:true,pOZyLZCzL:smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.pOZyLZCzL,uHQPyl2ly:click2!==null&&click2!==void 0?click2:props.uHQPyl2ly,ukNwTHIbU:(_ref1=title!==null&&title!==void 0?title:props.ukNwTHIbU)!==null&&_ref1!==void 0?_ref1:\"Services\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"jwlSSyf28\",Z6Dx8a9T7:link!==null&&link!==void 0?link:props.Z6Dx8a9T7};};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,ukNwTHIbU,nXrYh_R1G,Z6Dx8a9T7,I5c2HwcVR,pOZyLZCzL,uHQPyl2ly,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jwlSSyf28\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1lj7q2s=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uHQPyl2ly){const res=await uHQPyl2ly(...args);if(res===false)return false;}});const onTapzref4g=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(uHQPyl2ly){const res=await uHQPyl2ly(...args);if(res===false)return false;}setVariant(\"jwlSSyf28\");});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(Link,{href:Z6Dx8a9T7,openInNewTab:I5c2HwcVR,smoothScroll:pOZyLZCzL,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ayzxh7\",className,classNames)} framer-316flm`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jwlSSyf28\",onTap:onTap1lj7q2s,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"Bp0aW9Vco-hover\":{backgroundColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"},\"Bp0aW9Vco-pressed\":{backgroundColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"},\"Ha6vzSEmu-hover\":{backgroundColor:\"var(--token-35280766-ac8a-4eb8-8979-cd6f80a389fa, rgb(39, 52, 0))\"},\"jwlSSyf28-hover\":{backgroundColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"},Ha6vzSEmu:{backgroundColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\"}},...addPropertyOverrides({\"Bp0aW9Vco-hover\":{\"data-framer-name\":undefined},\"Bp0aW9Vco-pressed\":{\"data-framer-name\":undefined},\"Ha6vzSEmu-hover\":{\"data-framer-name\":undefined},\"jwlSSyf28-hover\":{\"data-framer-name\":undefined},Bp0aW9Vco:{\"data-framer-name\":\"Menu\"},Ha6vzSEmu:{\"data-framer-name\":\"Menu Opened\",onTap:onTapzref4g}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",children:\"Services\"})}),className:\"framer-1hpipwz\",\"data-framer-name\":\"Services Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"khtzsKZuk\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ukNwTHIbU,variants:{\"Bp0aW9Vco-hover\":{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},\"Bp0aW9Vco-pressed\":{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},\"jwlSSyf28-hover\":{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},Ha6vzSEmu:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"Bp0aW9Vco-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"Services\"})})},\"Bp0aW9Vco-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"Services\"})})},\"jwlSSyf28-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"Services\"})})},Ha6vzSEmu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"Services\"})})}},baseVariant,gestureVariant)}),nXrYh_R1G&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18bm26x-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"G6sx98_Iy-container\",name:\"Icon\",style:{rotate:0},variants:{\"Bp0aW9Vco-pressed\":{rotate:-180},\"Ha6vzSEmu-hover\":{rotate:0},\"jwlSSyf28-hover\":{rotate:-180},Ha6vzSEmu:{rotate:-180}},children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",height:\"100%\",id:\"G6sx98_Iy\",layoutId:\"G6sx98_Iy\",name:\"Icon\",padding:0,strokeColor:\"rgba(0, 0, 0, 0)\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M7.14375 7.15845L10.9688 10.9751L14.7937 7.15845L15.9688 8.33345L10.9688 13.3334L5.96875 8.33345L7.14375 7.15845Z\" fill=\"#1C2416\"/> </svg>',width:\"100%\",...addPropertyOverrides({\"Bp0aW9Vco-hover\":{fillColor:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},\"Bp0aW9Vco-pressed\":{fillColor:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},\"jwlSSyf28-hover\":{fillColor:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"},Ha6vzSEmu:{fillColor:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u25Rv.framer-316flm, .framer-u25Rv .framer-316flm { display: block; }\",\".framer-u25Rv.framer-1ayzxh7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-u25Rv .framer-1hpipwz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-u25Rv .framer-18bm26x-container { flex: none; height: auto; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u25Rv.framer-1ayzxh7 { gap: 0px; } .framer-u25Rv.framer-1ayzxh7 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-u25Rv.framer-1ayzxh7 > :first-child { margin-left: 0px; } .framer-u25Rv.framer-1ayzxh7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30.5\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Bp0aW9Vco\":{\"layout\":[\"auto\",\"auto\"]},\"Ha6vzSEmu\":{\"layout\":[\"auto\",\"auto\"]},\"LSWytHRPv\":{\"layout\":[\"auto\",\"auto\"]},\"gRPssMpAs\":{\"layout\":[\"auto\",\"auto\"]},\"mK5z4lzK3\":{\"layout\":[\"auto\",\"auto\"]},\"SCRilikzZ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ukNwTHIbU\":\"title\",\"nXrYh_R1G\":\"icon\",\"Z6Dx8a9T7\":\"link\",\"I5c2HwcVR\":\"newTab\",\"pOZyLZCzL\":\"smoothScroll\",\"uHQPyl2ly\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSTS5lldtz=withCSS(Component,css,\"framer-u25Rv\");export default FramerSTS5lldtz;FramerSTS5lldtz.displayName=\"Nav Link\";FramerSTS5lldtz.defaultProps={height:30.5,width:100};addPropertyControls(FramerSTS5lldtz,{variant:{options:[\"jwlSSyf28\",\"Bp0aW9Vco\",\"Ha6vzSEmu\"],optionTitles:[\"Default\",\"Menu\",\"Menu Opened\"],title:\"Variant\",type:ControlType.Enum},ukNwTHIbU:{defaultValue:\"Services\",displayTextArea:false,title:\"Title\",type:ControlType.String},nXrYh_R1G:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},Z6Dx8a9T7:{title:\"Link\",type:ControlType.Link},I5c2HwcVR:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},pOZyLZCzL:{defaultValue:false,title:\"Smooth Scroll\",type:ControlType.Boolean},uHQPyl2ly:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerSTS5lldtz,[{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\"}]},...SVGIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSTS5lldtz\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30.5\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ukNwTHIbU\\\":\\\"title\\\",\\\"nXrYh_R1G\\\":\\\"icon\\\",\\\"Z6Dx8a9T7\\\":\\\"link\\\",\\\"I5c2HwcVR\\\":\\\"newTab\\\",\\\"pOZyLZCzL\\\":\\\"smoothScroll\\\",\\\"uHQPyl2ly\\\":\\\"click2\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bp0aW9Vco\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ha6vzSEmu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LSWytHRPv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gRPssMpAs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mK5z4lzK3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SCRilikzZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"100\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./STS5lldtz.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/5jpeXiNjakJxV7ZC1u4i/msu2qIBHPclY6Tdg9lSv/g3JGHtIF3.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/udMIsZjdA7GQagWoC7lC/L21bDrfYKHwRg23129cE/rjZOSSdf9.js\";import Button from\"https://framerusercontent.com/modules/lTvxRpKJhlAA7m9yvdaE/CON6XvM67wsWkRibsJMc/cwsX4aGnF.js\";import ServicesDropdown from\"https://framerusercontent.com/modules/7IbC17fLMc37Ajzyps1u/OSRc9xOniaRypiL64cRu/dZlqeRGqy.js\";import ServicesDropdownMobile from\"https://framerusercontent.com/modules/FxM2VqicuedqgCfcJ9HU/vlrN7R0tSnx2zP6EhAw9/glLQdp29n.js\";import Logo from\"https://framerusercontent.com/modules/9vrGdYbS32nNxrBRX2Dl/jJOpDAI4MCEOgYiktmPo/LylmglZgI.js\";import NavLink from\"https://framerusercontent.com/modules/dk3jnktjsQ5P1uG3Zi5p/lz9E2IPubSIQsLO0dTgL/STS5lldtz.js\";const LogoFonts=getFonts(Logo);const NavLinkFonts=getFonts(NavLink);const ButtonFonts=getFonts(Button);const ServicesDropdownMobileFonts=getFonts(ServicesDropdownMobile);const ServicesDropdownFonts=getFonts(ServicesDropdown);const cycleOrder=[\"N0JLOY7Ih\",\"ZFHvPRyr4\",\"NHPN4z1NX\",\"zJ7JAkD_K\",\"ojKTAMV0L\",\"TqMS8YY3w\",\"OF5aDLWUO\",\"RXlL5fWjv\",\"dD5l02Pv4\",\"tXjiFFZEv\",\"T4WRcU9dT\",\"yHEHq_sVo\"];const serializationHash=\"framer-FpjPC\";const variantClassNames={dD5l02Pv4:\"framer-v-1xvvt1t\",N0JLOY7Ih:\"framer-v-1k43ku4\",NHPN4z1NX:\"framer-v-plkh\",OF5aDLWUO:\"framer-v-jyzy05\",ojKTAMV0L:\"framer-v-1peoqr7\",RXlL5fWjv:\"framer-v-1i1q4ac\",T4WRcU9dT:\"framer-v-1v2cau0\",TqMS8YY3w:\"framer-v-nlgjyn\",tXjiFFZEv:\"framer-v-4xd806\",yHEHq_sVo:\"framer-v-1p7ygae\",ZFHvPRyr4:\"framer-v-k9uyf7\",zJ7JAkD_K:\"framer-v-1rcqb41\"};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:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={delay:0,duration:.8,ease:[.2,.8,.2,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop invisible\":\"ojKTAMV0L\",\"Desktop Services Opened\":\"dD5l02Pv4\",\"Laptop Invisible \":\"TqMS8YY3w\",\"Laptop Services Opened\":\"tXjiFFZEv\",\"Phone Invisible\":\"RXlL5fWjv\",\"Phone opened\":\"yHEHq_sVo\",\"Tablet Invisible\":\"OF5aDLWUO\",\"Tablet opened\":\"T4WRcU9dT\",Desktop:\"N0JLOY7Ih\",Laptop:\"ZFHvPRyr4\",Phone:\"zJ7JAkD_K\",Tablet:\"NHPN4z1NX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"N0JLOY7Ih\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"N0JLOY7Ih\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter99k2gu=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"N0JLOY7Ih\");});const onMouseEnter172so1v=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"ZFHvPRyr4\");});const onMouseEnter13fk0bx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"NHPN4z1NX\");});const onTapsp1hi5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"zJ7JAkD_K\");});const onMouseLeave1714qcd=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"N0JLOY7Ih\");});const onMouseLeave19tnzh4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ZFHvPRyr4\");});const onTapktgtql=activeVariantCallback(async(...args)=>{setVariant(\"T4WRcU9dT\");});const onTapohobf6=activeVariantCallback(async(...args)=>{setVariant(\"yHEHq_sVo\");});const uHQPyl2lygh5ukp=activeVariantCallback(async(...args)=>{setVariant(\"dD5l02Pv4\");});const uHQPyl2ly1wbn45u=activeVariantCallback(async(...args)=>{setVariant(\"tXjiFFZEv\");});const uHQPyl2lyvkxhth=activeVariantCallback(async(...args)=>{setVariant(\"N0JLOY7Ih\");});const uHQPyl2ly12a65xm=activeVariantCallback(async(...args)=>{setVariant(\"ZFHvPRyr4\");});const onTap1wc7e9h=activeVariantCallback(async(...args)=>{setVariant(\"NHPN4z1NX\");});const onTap18g3wbw=activeVariantCallback(async(...args)=>{setVariant(\"zJ7JAkD_K\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"NHPN4z1NX\",\"zJ7JAkD_K\",\"OF5aDLWUO\",\"RXlL5fWjv\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"NHPN4z1NX\",\"zJ7JAkD_K\",\"OF5aDLWUO\",\"RXlL5fWjv\",\"T4WRcU9dT\",\"yHEHq_sVo\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if([\"T4WRcU9dT\",\"yHEHq_sVo\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"NHPN4z1NX\",\"zJ7JAkD_K\",\"T4WRcU9dT\",\"yHEHq_sVo\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"NHPN4z1NX\",\"zJ7JAkD_K\",\"T4WRcU9dT\",\"yHEHq_sVo\"].includes(baseVariant))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({NHPN4z1NX:{value:transition2},T4WRcU9dT:{value:transition2},yHEHq_sVo:{value:transition2},zJ7JAkD_K:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1k43ku4\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"N0JLOY7Ih\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-940fbdde-1ec1-401a-8921-74ab1e3aba1a, rgb(75, 92, 11))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f44b5ad9-8e7d-4743-b825-15b98f5f156b, rgb(253, 255, 196))\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,opacity:1,...style},variants:{OF5aDLWUO:{opacity:0},ojKTAMV0L:{opacity:0},RXlL5fWjv:{opacity:0},TqMS8YY3w:{opacity:0}},...addPropertyOverrides({dD5l02Pv4:{\"data-framer-name\":\"Desktop Services Opened\",\"data-highlight\":true,onMouseLeave:onMouseLeave1714qcd},NHPN4z1NX:{\"data-framer-name\":\"Tablet\"},OF5aDLWUO:{\"data-framer-name\":\"Tablet Invisible\",\"data-highlight\":true,onMouseEnter:onMouseEnter13fk0bx},ojKTAMV0L:{\"data-framer-name\":\"Desktop invisible\",\"data-highlight\":true,onMouseEnter:onMouseEnter99k2gu},RXlL5fWjv:{\"data-framer-name\":\"Phone Invisible\",\"data-highlight\":true,onTap:onTapsp1hi5},T4WRcU9dT:{\"data-framer-name\":\"Tablet opened\"},TqMS8YY3w:{\"data-framer-name\":\"Laptop Invisible \",\"data-highlight\":true,onMouseEnter:onMouseEnter172so1v},tXjiFFZEv:{\"data-framer-name\":\"Laptop Services Opened\",\"data-highlight\":true,onMouseLeave:onMouseLeave19tnzh4},yHEHq_sVo:{\"data-framer-name\":\"Phone opened\"},ZFHvPRyr4:{\"data-framer-name\":\"Laptop\"},zJ7JAkD_K:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h0p77c\",\"data-framer-name\":\"Main Nav\",layoutDependency:layoutDependency,layoutId:\"PtAeiOvGl\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f08gr7\",\"data-framer-name\":\"CTA open\",layoutDependency:layoutDependency,layoutId:\"I837:36564;837:36595\",style:{backgroundColor:\"rgb(17, 24, 39)\",borderBottomLeftRadius:1198.8,borderBottomRightRadius:1198.8,borderTopLeftRadius:1198.8,borderTopRightRadius:1198.8},...addPropertyOverrides({NHPN4z1NX:{\"data-highlight\":true,onTap:onTapktgtql},zJ7JAkD_K:{\"data-highlight\":true,onTap:onTapohobf6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sj3mup\",\"data-framer-name\":\"CTA Icon\",layoutDependency:layoutDependency,layoutId:\"I837:36564;837:36598\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-829bqj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I837:36564;837:36598;14:9485\",svg:'<svg width=\"16\" height=\"10\" viewBox=\"0 0 16 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.50073 10H15.5007V8.33333H5.50073V10ZM0.500732 0V1.66667H15.5007V0H0.500732ZM5.50073 5.83333H15.5007V4.16667H5.50073V5.83333Z\" fill=\"#FFFFE4\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+3,...addPropertyOverrides({NHPN4z1NX:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0},OF5aDLWUO:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0},RXlL5fWjv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+(0+0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||63)-16-269)/1*0)+0},T4WRcU9dT:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0},yHEHq_sVo:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0},zJ7JAkD_K:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wp5ms5-container\",layoutDependency:layoutDependency,layoutId:\"zt0J9B32w-container\",children:/*#__PURE__*/_jsx(Logo,{b31J3dGNS:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",height:\"100%\",id:\"zt0J9B32w\",layoutId:\"zt0J9B32w\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kbeirf\",\"data-framer-name\":\"Navbar Links Container\",layoutDependency:layoutDependency,layoutId:\"yafgbAkiK\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined},{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined},{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined},{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined},{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined},{href:{webPageId:\"vF4L5j6Mo\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ur92a5-container\",\"data-framer-name\":\"About Us\",layoutDependency:layoutDependency,layoutId:\"DkbZI1xYQ-container\",name:\"About Us\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"DkbZI1xYQ\",layoutId:\"DkbZI1xYQ\",name:\"About Us\",nXrYh_R1G:false,pOZyLZCzL:false,ukNwTHIbU:\"About Us\",variant:\"jwlSSyf28\",width:\"100%\",Z6Dx8a9T7:resolvedLinks[0],...addPropertyOverrides({dD5l02Pv4:{Z6Dx8a9T7:resolvedLinks[4]},ojKTAMV0L:{Z6Dx8a9T7:resolvedLinks[2]},TqMS8YY3w:{Z6Dx8a9T7:resolvedLinks[3]},tXjiFFZEv:{Z6Dx8a9T7:resolvedLinks[5]},ZFHvPRyr4:{Z6Dx8a9T7:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined},{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined},{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined},{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined},{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined},{href:{webPageId:\"UMxPGWbOI\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12pr9fl-container\",\"data-framer-name\":\"Why EXL\",layoutDependency:layoutDependency,layoutId:\"mwNk3xffg-container\",name:\"Why EXL\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"mwNk3xffg\",layoutId:\"mwNk3xffg\",name:\"Why EXL\",nXrYh_R1G:false,pOZyLZCzL:false,ukNwTHIbU:\"Why EXL\",variant:\"jwlSSyf28\",width:\"100%\",Z6Dx8a9T7:resolvedLinks1[0],...addPropertyOverrides({dD5l02Pv4:{Z6Dx8a9T7:resolvedLinks1[4]},ojKTAMV0L:{Z6Dx8a9T7:resolvedLinks1[2]},TqMS8YY3w:{Z6Dx8a9T7:resolvedLinks1[3]},tXjiFFZEv:{Z6Dx8a9T7:resolvedLinks1[5]},ZFHvPRyr4:{Z6Dx8a9T7:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined},{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined},{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined},{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined},{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined},{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y87tl4-container\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"AAXJltibW-container\",name:\"Home\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"AAXJltibW\",layoutId:\"AAXJltibW\",name:\"Home\",nXrYh_R1G:false,pOZyLZCzL:true,ukNwTHIbU:\"Solutions\",variant:\"jwlSSyf28\",width:\"100%\",Z6Dx8a9T7:resolvedLinks2[0],...addPropertyOverrides({dD5l02Pv4:{Z6Dx8a9T7:resolvedLinks2[4]},ojKTAMV0L:{Z6Dx8a9T7:resolvedLinks2[2]},TqMS8YY3w:{Z6Dx8a9T7:resolvedLinks2[3]},tXjiFFZEv:{Z6Dx8a9T7:resolvedLinks2[5]},ZFHvPRyr4:{Z6Dx8a9T7:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jofcw-container\",\"data-framer-name\":\"Service\",layoutDependency:layoutDependency,layoutId:\"TggY3SGBG-container\",name:\"Service\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"TggY3SGBG\",layoutId:\"TggY3SGBG\",name:\"Service\",nXrYh_R1G:true,pOZyLZCzL:false,uHQPyl2ly:uHQPyl2lygh5ukp,ukNwTHIbU:\"Services\",variant:\"jwlSSyf28\",width:\"100%\",...addPropertyOverrides({dD5l02Pv4:{uHQPyl2ly:uHQPyl2lyvkxhth,variant:\"Ha6vzSEmu\"},tXjiFFZEv:{uHQPyl2ly:uHQPyl2ly12a65xm,variant:\"Ha6vzSEmu\"},ZFHvPRyr4:{uHQPyl2ly:uHQPyl2ly1wbn45u}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined},{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined},{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined},{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined},{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined},{href:{webPageId:\"I4IP1rpad\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5zxmdq-container\",\"data-framer-name\":\"Case Studies\",layoutDependency:layoutDependency,layoutId:\"WxIhfLBPL-container\",name:\"Case Studies\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"WxIhfLBPL\",layoutId:\"WxIhfLBPL\",name:\"Case Studies\",nXrYh_R1G:false,pOZyLZCzL:true,ukNwTHIbU:\"Case Studies\",variant:\"jwlSSyf28\",width:\"100%\",Z6Dx8a9T7:resolvedLinks3[0],...addPropertyOverrides({dD5l02Pv4:{Z6Dx8a9T7:resolvedLinks3[4]},ojKTAMV0L:{Z6Dx8a9T7:resolvedLinks3[2]},TqMS8YY3w:{Z6Dx8a9T7:resolvedLinks3[3]},tXjiFFZEv:{Z6Dx8a9T7:resolvedLinks3[5]},ZFHvPRyr4:{Z6Dx8a9T7:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+8.5+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qywcw-container\",\"data-framer-name\":\"Contact Us\",layoutDependency:layoutDependency,layoutId:\"FFFboYgQI-container\",name:\"Contact Us\",children:/*#__PURE__*/_jsx(NavLink,{height:\"100%\",I5c2HwcVR:false,id:\"FFFboYgQI\",layoutId:\"FFFboYgQI\",name:\"Contact Us\",nXrYh_R1G:false,pOZyLZCzL:true,ukNwTHIbU:\"Contact Us\",variant:\"jwlSSyf28\",width:\"100%\",Z6Dx8a9T7:resolvedLinks4[0],...addPropertyOverrides({dD5l02Pv4:{Z6Dx8a9T7:resolvedLinks4[4]},ojKTAMV0L:{Z6Dx8a9T7:resolvedLinks4[2]},TqMS8YY3w:{Z6Dx8a9T7:resolvedLinks4[3]},tXjiFFZEv:{Z6Dx8a9T7:resolvedLinks4[5]},ZFHvPRyr4:{Z6Dx8a9T7:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zeajhh-container\",layoutDependency:layoutDependency,layoutId:\"Z_RRTuHwG-container\",children:/*#__PURE__*/_jsx(Button,{BUUqoZYUq:\"var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, rgb(28, 36, 22))\",CVstdoAbH:\"space-between\",FRvGe31Ve:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",height:\"100%\",id:\"Z_RRTuHwG\",layoutId:\"Z_RRTuHwG\",lImERsIuD:false,R3SMkngjt:\"var(--token-35280766-ac8a-4eb8-8979-cd6f80a389fa, rgb(39, 52, 0))\",tYKasPPnV:\"Book a call\",u4fVrIoY5:true,uXB6K1yqQ:\"4px 4px 4px 16px\",variant:\"XfeNojiOp\",vSngY_KQO:resolvedLinks5[0],width:\"100%\",wkZe7h5FU:\"rgb(255, 255, 228)\",ysD4u_Zs4:true,...addPropertyOverrides({dD5l02Pv4:{vSngY_KQO:resolvedLinks5[4]},ojKTAMV0L:{vSngY_KQO:resolvedLinks5[2]},TqMS8YY3w:{vSngY_KQO:resolvedLinks5[3]},tXjiFFZEv:{vSngY_KQO:resolvedLinks5[5]},ZFHvPRyr4:{vSngY_KQO:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-knh3ee\",\"data-framer-name\":\"CTA close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47563\",onTap:onTap1wc7e9h,style:{backgroundColor:\"var(--token-35280766-ac8a-4eb8-8979-cd6f80a389fa, rgb(39, 52, 0))\",borderBottomLeftRadius:1198.8,borderBottomRightRadius:1198.8,borderTopLeftRadius:1198.8,borderTopRightRadius:1198.8},...addPropertyOverrides({yHEHq_sVo:{onTap:onTap18g3wbw}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ouo4cu\",\"data-framer-name\":\"CTA Icon\",layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47565\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-lbepxc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47565;14:11985\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.0013 0.666687C4.39297 0.666687 0.667969 4.39169 0.667969 9.00002C0.667969 13.6084 4.39297 17.3334 9.0013 17.3334C13.6096 17.3334 17.3346 13.6084 17.3346 9.00002C17.3346 4.39169 13.6096 0.666687 9.0013 0.666687ZM13.168 11.9917L11.993 13.1667L9.0013 10.175L6.00963 13.1667L4.83464 11.9917L7.8263 9.00002L4.83464 6.00835L6.00963 4.83335L9.0013 7.82502L11.993 4.83335L13.168 6.00835L10.1763 9.00002L13.168 11.9917Z\" fill=\"#FFFFE4\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kantk6\",\"data-framer-name\":\"Mobile Nav\",layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47805\",style:{backgroundColor:\"var(--token-f44b5ad9-8e7d-4743-b825-15b98f5f156b, rgb(253, 255, 196))\",opacity:1},variants:{NHPN4z1NX:{opacity:0},zJ7JAkD_K:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Solutions\"})})})}),className:\"framer-dorx67\",\"data-framer-name\":\"Home Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47806\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vF4L5j6Mo\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"About us\"})})})}),className:\"framer-rcjab9\",\"data-framer-name\":\"About Us Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47807\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UMxPGWbOI\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Why EXL\"})})})}),className:\"framer-cvrjdj\",\"data-framer-name\":\"Why EXL Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47808\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,...addPropertyOverrides({NHPN4z1NX:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+49+48+134.39999999999998},T4WRcU9dT:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+49+48+134.39999999999998},yHEHq_sVo:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+41+48+134.39999999999998},zJ7JAkD_K:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+41+48+134.39999999999998}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-to8t07-container\",layoutDependency:layoutDependency,layoutId:\"ILUH6YlFx-container\",children:/*#__PURE__*/_jsx(ServicesDropdownMobile,{height:\"100%\",id:\"ILUH6YlFx\",layoutId:\"ILUH6YlFx\",style:{width:\"100%\"},variant:\"jB5JSVhqJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":fMlfhz79p\",webPageId:\"RbpQJGSIY\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Case Studies\"})})})}),className:\"framer-1sbybxi\",\"data-framer-name\":\"Case Studies Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47810\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T4WRcU9dT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I4IP1rpad\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Case Studies\"})})})})},yHEHq_sVo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I4IP1rpad\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Case Studies\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-114hb8y\",\"data-styles-preset\":\"g3JGHtIF3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eOXcIB2K2\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-109lz52\",\"data-styles-preset\":\"rjZOSSdf9\",children:\"Contact Us\"})})})}),className:\"framer-vidl8t\",\"data-framer-name\":\"Contact Us Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I838:47845;838:47811\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x9ag3f\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"rYejOzHv1\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,...addPropertyOverrides({NHPN4z1NX:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+49+48+525+16},T4WRcU9dT:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+49+48+525+16},yHEHq_sVo:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+41+48+525+16},zJ7JAkD_K:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 54px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+41+48+525+16}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8kp0le-container\",layoutDependency:layoutDependency,layoutId:\"SGch3kdNl-container\",children:/*#__PURE__*/_jsx(Button,{BUUqoZYUq:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",CVstdoAbH:\"space-between\",FRvGe31Ve:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",height:\"100%\",id:\"SGch3kdNl\",layoutId:\"SGch3kdNl\",lImERsIuD:false,R3SMkngjt:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",style:{width:\"100%\"},tYKasPPnV:\"Book a call  \",u4fVrIoY5:true,uXB6K1yqQ:\"4px 4px 4px 16px\",variant:\"XfeNojiOp\",vSngY_KQO:resolvedLinks6[0],width:\"100%\",wkZe7h5FU:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",ysD4u_Zs4:true,...addPropertyOverrides({NHPN4z1NX:{vSngY_KQO:resolvedLinks6[1]},T4WRcU9dT:{tYKasPPnV:\"Book a call\",variant:\"uGkFrAZ8S\",vSngY_KQO:resolvedLinks6[3]},yHEHq_sVo:{tYKasPPnV:\"Book a call\",variant:\"uGkFrAZ8S\",vSngY_KQO:resolvedLinks6[4]},zJ7JAkD_K:{vSngY_KQO:resolvedLinks6[2]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-h59735\",\"data-framer-name\":\"Services container\",layoutDependency:layoutDependency,layoutId:\"Rsjz3efA3\",style:{opacity:0},variants:{dD5l02Pv4:{opacity:1},tXjiFFZEv:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 16px, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+55+0,...addPropertyOverrides({dD5l02Pv4:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+63+0},OF5aDLWUO:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+49+0},RXlL5fWjv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+(0+41+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||63)-16-269)/1*1)+0},tXjiFFZEv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+8+63+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yi18cr-container\",layoutDependency:layoutDependency,layoutId:\"prjJIV7qk-container\",children:/*#__PURE__*/_jsx(ServicesDropdown,{height:\"100%\",id:\"prjJIV7qk\",layoutId:\"prjJIV7qk\",style:{height:\"100%\",width:\"100%\"},variant:\"UhVs4T0lU\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FpjPC.framer-1cillmd, .framer-FpjPC .framer-1cillmd { display: block; }\",\".framer-FpjPC.framer-1k43ku4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 63px; justify-content: flex-start; overflow: hidden; padding: 8px; position: relative; width: 900px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FpjPC .framer-1h0p77c, .framer-FpjPC .framer-h59735 { 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%; }\",\".framer-FpjPC .framer-1f08gr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-FpjPC .framer-1sj3mup, .framer-FpjPC .framer-1ouo4cu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-FpjPC .framer-829bqj { bottom: 5px; flex: none; left: 2px; position: absolute; right: 3px; top: 5px; }\",\".framer-FpjPC .framer-1wp5ms5-container, .framer-FpjPC .framer-1ur92a5-container, .framer-FpjPC .framer-12pr9fl-container, .framer-FpjPC .framer-y87tl4-container, .framer-FpjPC .framer-13jofcw-container, .framer-FpjPC .framer-5zxmdq-container, .framer-FpjPC .framer-7qywcw-container, .framer-FpjPC .framer-zeajhh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FpjPC .framer-1kbeirf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FpjPC .framer-knh3ee { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-FpjPC .framer-lbepxc { flex: none; height: 17px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 17px; }\",\".framer-FpjPC .framer-kantk6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 48px 19px 24px 19px; position: relative; width: 100%; }\",\".framer-FpjPC .framer-dorx67, .framer-FpjPC .framer-rcjab9, .framer-FpjPC .framer-cvrjdj, .framer-FpjPC .framer-1sbybxi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FpjPC .framer-to8t07-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FpjPC .framer-vidl8t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FpjPC .framer-1x9ag3f { 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: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-FpjPC .framer-8kp0le-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-FpjPC .framer-1yi18cr-container { flex: 1 0 0px; height: 228px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-1k43ku4, .framer-FpjPC .framer-1f08gr7, .framer-FpjPC .framer-1kbeirf, .framer-FpjPC .framer-knh3ee, .framer-FpjPC .framer-kantk6, .framer-FpjPC .framer-1x9ag3f { gap: 0px; } .framer-FpjPC.framer-1k43ku4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-FpjPC.framer-1k43ku4 > :first-child, .framer-FpjPC .framer-kantk6 > :first-child { margin-top: 0px; } .framer-FpjPC.framer-1k43ku4 > :last-child, .framer-FpjPC .framer-kantk6 > :last-child { margin-bottom: 0px; } .framer-FpjPC .framer-1f08gr7 > *, .framer-FpjPC .framer-knh3ee > * { margin: 0px; margin-left: calc(9.600000381469727px / 2); margin-right: calc(9.600000381469727px / 2); } .framer-FpjPC .framer-1f08gr7 > :first-child, .framer-FpjPC .framer-1kbeirf > :first-child, .framer-FpjPC .framer-knh3ee > :first-child, .framer-FpjPC .framer-1x9ag3f > :first-child { margin-left: 0px; } .framer-FpjPC .framer-1f08gr7 > :last-child, .framer-FpjPC .framer-1kbeirf > :last-child, .framer-FpjPC .framer-knh3ee > :last-child, .framer-FpjPC .framer-1x9ag3f > :last-child { margin-right: 0px; } .framer-FpjPC .framer-1kbeirf > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-FpjPC .framer-kantk6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FpjPC .framer-1x9ag3f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-FpjPC.framer-v-plkh.framer-1k43ku4 { height: 56px; width: 600px; }\",\".framer-FpjPC.framer-v-plkh .framer-1f08gr7, .framer-FpjPC.framer-v-1rcqb41 .framer-1f08gr7 { cursor: pointer; order: 1; }\",\".framer-FpjPC.framer-v-plkh .framer-1wp5ms5-container, .framer-FpjPC.framer-v-plkh .framer-rcjab9, .framer-FpjPC.framer-v-1rcqb41 .framer-1wp5ms5-container, .framer-FpjPC.framer-v-1rcqb41 .framer-rcjab9, .framer-FpjPC.framer-v-jyzy05 .framer-1wp5ms5-container, .framer-FpjPC.framer-v-1i1q4ac .framer-1wp5ms5-container, .framer-FpjPC.framer-v-1xvvt1t .framer-1ur92a5-container, .framer-FpjPC.framer-v-4xd806 .framer-1ur92a5-container, .framer-FpjPC.framer-v-1v2cau0 .framer-1wp5ms5-container, .framer-FpjPC.framer-v-1v2cau0 .framer-rcjab9, .framer-FpjPC.framer-v-1p7ygae .framer-1wp5ms5-container, .framer-FpjPC.framer-v-1p7ygae .framer-rcjab9 { order: 0; }\",\".framer-FpjPC.framer-v-plkh .framer-dorx67, .framer-FpjPC.framer-v-1rcqb41 .framer-dorx67, .framer-FpjPC.framer-v-1xvvt1t .framer-y87tl4-container, .framer-FpjPC.framer-v-4xd806 .framer-y87tl4-container, .framer-FpjPC.framer-v-1v2cau0 .framer-dorx67, .framer-FpjPC.framer-v-1p7ygae .framer-dorx67 { order: 2; }\",\".framer-FpjPC.framer-v-plkh .framer-cvrjdj, .framer-FpjPC.framer-v-1rcqb41 .framer-cvrjdj, .framer-FpjPC.framer-v-jyzy05 .framer-1f08gr7, .framer-FpjPC.framer-v-1i1q4ac .framer-1f08gr7, .framer-FpjPC.framer-v-1xvvt1t .framer-12pr9fl-container, .framer-FpjPC.framer-v-4xd806 .framer-12pr9fl-container, .framer-FpjPC.framer-v-1v2cau0 .framer-cvrjdj, .framer-FpjPC.framer-v-1p7ygae .framer-cvrjdj { order: 1; }\",\".framer-FpjPC.framer-v-plkh .framer-to8t07-container, .framer-FpjPC.framer-v-1rcqb41 .framer-to8t07-container, .framer-FpjPC.framer-v-1xvvt1t .framer-13jofcw-container, .framer-FpjPC.framer-v-4xd806 .framer-13jofcw-container, .framer-FpjPC.framer-v-1v2cau0 .framer-to8t07-container, .framer-FpjPC.framer-v-1p7ygae .framer-to8t07-container { order: 3; }\",\".framer-FpjPC.framer-v-plkh .framer-1sbybxi, .framer-FpjPC.framer-v-1rcqb41 .framer-1sbybxi, .framer-FpjPC.framer-v-1xvvt1t .framer-5zxmdq-container, .framer-FpjPC.framer-v-4xd806 .framer-5zxmdq-container, .framer-FpjPC.framer-v-1v2cau0 .framer-knh3ee, .framer-FpjPC.framer-v-1v2cau0 .framer-1sbybxi, .framer-FpjPC.framer-v-1p7ygae .framer-knh3ee, .framer-FpjPC.framer-v-1p7ygae .framer-1sbybxi { order: 4; }\",\".framer-FpjPC.framer-v-plkh .framer-vidl8t, .framer-FpjPC.framer-v-1rcqb41 .framer-vidl8t, .framer-FpjPC.framer-v-1xvvt1t .framer-7qywcw-container, .framer-FpjPC.framer-v-4xd806 .framer-7qywcw-container, .framer-FpjPC.framer-v-1p7ygae .framer-vidl8t { order: 5; }\",\".framer-FpjPC.framer-v-plkh .framer-1x9ag3f, .framer-FpjPC.framer-v-1rcqb41 .framer-1x9ag3f, .framer-FpjPC.framer-v-1v2cau0 .framer-1x9ag3f, .framer-FpjPC.framer-v-1p7ygae .framer-1x9ag3f { order: 6; }\",\".framer-FpjPC.framer-v-1rcqb41.framer-1k43ku4 { gap: 0px; height: 56px; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-v-1rcqb41.framer-1k43ku4 { gap: 0px; } .framer-FpjPC.framer-v-1rcqb41.framer-1k43ku4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FpjPC.framer-v-1rcqb41.framer-1k43ku4 > :first-child { margin-top: 0px; } .framer-FpjPC.framer-v-1rcqb41.framer-1k43ku4 > :last-child { margin-bottom: 0px; } }\",\".framer-FpjPC.framer-v-jyzy05.framer-1k43ku4 { width: 600px; }\",\".framer-FpjPC.framer-v-1i1q4ac.framer-1k43ku4 { cursor: pointer; gap: unset; justify-content: space-between; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-v-1i1q4ac.framer-1k43ku4 { gap: 0px; } .framer-FpjPC.framer-v-1i1q4ac.framer-1k43ku4 > *, .framer-FpjPC.framer-v-1i1q4ac.framer-1k43ku4 > :first-child, .framer-FpjPC.framer-v-1i1q4ac.framer-1k43ku4 > :last-child { margin: 0px; } }\",\".framer-FpjPC.framer-v-1xvvt1t.framer-1k43ku4, .framer-FpjPC.framer-v-4xd806.framer-1k43ku4 { gap: 16px; height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-v-1xvvt1t.framer-1k43ku4 { gap: 0px; } .framer-FpjPC.framer-v-1xvvt1t.framer-1k43ku4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FpjPC.framer-v-1xvvt1t.framer-1k43ku4 > :first-child { margin-top: 0px; } .framer-FpjPC.framer-v-1xvvt1t.framer-1k43ku4 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-v-4xd806.framer-1k43ku4 { gap: 0px; } .framer-FpjPC.framer-v-4xd806.framer-1k43ku4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FpjPC.framer-v-4xd806.framer-1k43ku4 > :first-child { margin-top: 0px; } .framer-FpjPC.framer-v-4xd806.framer-1k43ku4 > :last-child { margin-bottom: 0px; } }\",\".framer-FpjPC.framer-v-1v2cau0.framer-1k43ku4 { height: min-content; width: 600px; }\",\".framer-FpjPC.framer-v-1v2cau0 .framer-vidl8t { order: 5; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FpjPC.framer-v-1p7ygae.framer-1k43ku4 { gap: 0px; height: min-content; width: 300px; }\",\".framer-FpjPC.framer-v-1p7ygae .framer-kantk6 { padding: 48px 19px 16px 19px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FpjPC.framer-v-1p7ygae.framer-1k43ku4 { gap: 0px; } .framer-FpjPC.framer-v-1p7ygae.framer-1k43ku4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FpjPC.framer-v-1p7ygae.framer-1k43ku4 > :first-child { margin-top: 0px; } .framer-FpjPC.framer-v-1p7ygae.framer-1k43ku4 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-FpjPC[data-border=\"true\"]::after, .framer-FpjPC [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 63\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZFHvPRyr4\":{\"layout\":[\"fixed\",\"fixed\"]},\"NHPN4z1NX\":{\"layout\":[\"fixed\",\"fixed\"]},\"zJ7JAkD_K\":{\"layout\":[\"fixed\",\"fixed\"]},\"ojKTAMV0L\":{\"layout\":[\"fixed\",\"fixed\"]},\"TqMS8YY3w\":{\"layout\":[\"fixed\",\"fixed\"]},\"OF5aDLWUO\":{\"layout\":[\"fixed\",\"fixed\"]},\"RXlL5fWjv\":{\"layout\":[\"fixed\",\"fixed\"]},\"dD5l02Pv4\":{\"layout\":[\"fixed\",\"auto\"]},\"tXjiFFZEv\":{\"layout\":[\"fixed\",\"auto\"]},\"T4WRcU9dT\":{\"layout\":[\"fixed\",\"auto\"]},\"yHEHq_sVo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermjHEViGve=withCSS(Component,css,\"framer-FpjPC\");export default FramermjHEViGve;FramermjHEViGve.displayName=\"Navbar\";FramermjHEViGve.defaultProps={height:63,width:900};addPropertyControls(FramermjHEViGve,{variant:{options:[\"N0JLOY7Ih\",\"ZFHvPRyr4\",\"NHPN4z1NX\",\"zJ7JAkD_K\",\"ojKTAMV0L\",\"TqMS8YY3w\",\"OF5aDLWUO\",\"RXlL5fWjv\",\"dD5l02Pv4\",\"tXjiFFZEv\",\"T4WRcU9dT\",\"yHEHq_sVo\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Phone\",\"Desktop invisible\",\"Laptop Invisible \",\"Tablet Invisible\",\"Phone Invisible\",\"Desktop Services Opened\",\"Laptop Services Opened\",\"Tablet opened\",\"Phone opened\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermjHEViGve,[{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\"}]},...LogoFonts,...NavLinkFonts,...ButtonFonts,...ServicesDropdownMobileFonts,...ServicesDropdownFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermjHEViGve\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZFHvPRyr4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NHPN4z1NX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zJ7JAkD_K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ojKTAMV0L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TqMS8YY3w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OF5aDLWUO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RXlL5fWjv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dD5l02Pv4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tXjiFFZEv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T4WRcU9dT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yHEHq_sVo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"900\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"63\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mjHEViGve.map", "// Generated by Framer (38f2e7f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Impact Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}];export const css=['.framer-Ykibu .framer-styles-preset-6sup80:not(.rich-text-wrapper), .framer-Ykibu .framer-styles-preset-6sup80.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffe4; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Ykibu .framer-styles-preset-6sup80:not(.rich-text-wrapper), .framer-Ykibu .framer-styles-preset-6sup80.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffe4; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-Ykibu .framer-styles-preset-6sup80:not(.rich-text-wrapper), .framer-Ykibu .framer-styles-preset-6sup80.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffe4; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Ykibu .framer-styles-preset-6sup80:not(.rich-text-wrapper), .framer-Ykibu .framer-styles-preset-6sup80.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffe4; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-Ykibu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20caf11)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-9280K .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-9280K .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4) /* {\"name\":\"Chartreuse 50\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-7b16cc46-243b-443a-af42-828d4a17b02b, #efff50) /* {\"name\":\"Chartreuse 300\"} */; --framer-link-text-decoration: none; }'];export const className=\"framer-9280K\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Impact Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}];export const css=['.framer-tzIgY .framer-styles-preset-1ixh254:not(.rich-text-wrapper), .framer-tzIgY .framer-styles-preset-1ixh254.rich-text-wrapper h2 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-tzIgY .framer-styles-preset-1ixh254:not(.rich-text-wrapper), .framer-tzIgY .framer-styles-preset-1ixh254.rich-text-wrapper h2 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-tzIgY .framer-styles-preset-1ixh254:not(.rich-text-wrapper), .framer-tzIgY .framer-styles-preset-1ixh254.rich-text-wrapper h2 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-tzIgY .framer-styles-preset-1ixh254:not(.rich-text-wrapper), .framer-tzIgY .framer-styles-preset-1ixh254.rich-text-wrapper h2 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, #ffffe4); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-tzIgY\";\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 (8335dd8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Impact Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}];export const css=['.framer-LWaFU .framer-styles-preset-5x6msa:not(.rich-text-wrapper), .framer-LWaFU .framer-styles-preset-5x6msa.rich-text-wrapper h4 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-LWaFU .framer-styles-preset-5x6msa:not(.rich-text-wrapper), .framer-LWaFU .framer-styles-preset-5x6msa.rich-text-wrapper h4 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-LWaFU .framer-styles-preset-5x6msa:not(.rich-text-wrapper), .framer-LWaFU .framer-styles-preset-5x6msa.rich-text-wrapper h4 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-LWaFU\";\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 (8335dd8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Impact Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Impact Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/VHtYG8k36jdNUQ18ulsNmBMrwrs.woff2\"}]}];export const css=['.framer-IYHSS .framer-styles-preset-ip3a8j:not(.rich-text-wrapper), .framer-IYHSS .framer-styles-preset-ip3a8j.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 96px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-IYHSS .framer-styles-preset-ip3a8j:not(.rich-text-wrapper), .framer-IYHSS .framer-styles-preset-ip3a8j.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 96px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-IYHSS .framer-styles-preset-ip3a8j:not(.rich-text-wrapper), .framer-IYHSS .framer-styles-preset-ip3a8j.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-IYHSS .framer-styles-preset-ip3a8j:not(.rich-text-wrapper), .framer-IYHSS .framer-styles-preset-ip3a8j.rich-text-wrapper h1 { --framer-font-family: \"Impact Regular\", \"Impact Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ac95c68f-50c0-4adf-8ab1-107275c00288, #1c2416); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; } }'];export const className=\"framer-IYHSS\";\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\"}}}", "// Generated by Framer (8335dd8)\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 sharedStyle2 from\"https://framerusercontent.com/modules/yN2ssMI5hpGvRd6aEfzj/HpIUw0q2flKtbUzn3efP/HLqrOFDg4.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bc30309etae2fIbWeu0Q/Djlyy8VAOMwMkBGNdTHb/onnBJGXm9.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6pOA5wkJYB07CemljXO1/wWsyX7DhgqMokEwyEtHP/WhmYVSlc4.js\";const cycleOrder=[\"ITXY5I24N\",\"gZAHmLdQU\",\"xtetFdr_Y\"];const serializationHash=\"framer-QeleF\";const variantClassNames={gZAHmLdQU:\"framer-v-s4263l\",ITXY5I24N:\"framer-v-14sl479\",xtetFdr_Y:\"framer-v-ktsv0t\"};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={bounce:.2,delay:0,duration:.4,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={Huge:\"ITXY5I24N\",Medium:\"xtetFdr_Y\",Small:\"gZAHmLdQU\"};const getProps=({background,height,id,text,textColor,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,dPZblZzGc:(_ref=background!==null&&background!==void 0?background:props.dPZblZzGc)!==null&&_ref!==void 0?_ref:\"var(--token-940fbdde-1ec1-401a-8921-74ab1e3aba1a, rgb(75, 92, 11))\",h7uCh8C_S:(_ref1=textColor!==null&&textColor!==void 0?textColor:props.h7uCh8C_S)!==null&&_ref1!==void 0?_ref1:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",tXKdnHwF3:(_ref2=text!==null&&text!==void 0?text:props.tXKdnHwF3)!==null&&_ref2!==void 0?_ref2:\"growth\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"ITXY5I24N\"};};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,tXKdnHwF3,h7uCh8C_S,dPZblZzGc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ITXY5I24N\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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-14sl479\",className,classNames),\"data-framer-name\":\"Huge\",layoutDependency:layoutDependency,layoutId:\"ITXY5I24N\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:dPZblZzGc,borderBottomLeftRadius:91.1,borderBottomRightRadius:91.1,borderTopLeftRadius:91.1,borderTopRightRadius:91.1,...style},...addPropertyOverrides({gZAHmLdQU:{\"data-framer-name\":\"Small\"},xtetFdr_Y:{\"data-framer-name\":\"Medium\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-ip3a8j\",\"data-styles-preset\":\"WhmYVSlc4\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-h7uCh8C_S-nADpfWhzA))\"},children:\"growth\"})}),className:\"framer-1cmi6dq\",\"data-framer-name\":\"growth\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q0A4XJcck\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-h7uCh8C_S-nADpfWhzA)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-h7uCh8C_S-nADpfWhzA\":h7uCh8C_S},text:tXKdnHwF3,variants:{gZAHmLdQU:{\"--extracted-1eung3n\":\"var(--variable-reference-h7uCh8C_S-nADpfWhzA)\"},xtetFdr_Y:{\"--extracted-1of0zx5\":\"var(--variable-reference-h7uCh8C_S-nADpfWhzA)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gZAHmLdQU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-5x6msa\",\"data-styles-preset\":\"onnBJGXm9\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-h7uCh8C_S-nADpfWhzA))\"},children:\"growth\"})})},xtetFdr_Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1ixh254\",\"data-styles-preset\":\"HLqrOFDg4\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-h7uCh8C_S-nADpfWhzA))\"},children:\"growth\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QeleF.framer-1knkka3, .framer-QeleF .framer-1knkka3 { display: block; }\",\".framer-QeleF.framer-14sl479 { align-content: center; align-items: center; cursor: grab; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 24px 48px 24px 48px; position: relative; width: min-content; }\",\".framer-QeleF .framer-1cmi6dq { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QeleF.framer-14sl479 { gap: 0px; } .framer-QeleF.framer-14sl479 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-QeleF.framer-14sl479 > :first-child { margin-left: 0px; } .framer-QeleF.framer-14sl479 > :last-child { margin-right: 0px; } }\",\".framer-QeleF.framer-v-s4263l.framer-14sl479, .framer-QeleF.framer-v-ktsv0t.framer-14sl479 { padding: 8px 16px 8px 16px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 163\n * @framerIntrinsicWidth 429\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gZAHmLdQU\":{\"layout\":[\"auto\",\"auto\"]},\"xtetFdr_Y\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tXKdnHwF3\":\"text\",\"h7uCh8C_S\":\"textColor\",\"dPZblZzGc\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernADpfWhzA=withCSS(Component,css,\"framer-QeleF\");export default FramernADpfWhzA;FramernADpfWhzA.displayName=\"Big Pill\";FramernADpfWhzA.defaultProps={height:163,width:429};addPropertyControls(FramernADpfWhzA,{variant:{options:[\"ITXY5I24N\",\"gZAHmLdQU\",\"xtetFdr_Y\"],optionTitles:[\"Huge\",\"Small\",\"Medium\"],title:\"Variant\",type:ControlType.Enum},tXKdnHwF3:{defaultValue:\"growth\",displayTextArea:false,title:\"text\",type:ControlType.String},h7uCh8C_S:{defaultValue:'var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0)) /* {\"name\":\"Main Chartreuse 400\"} */',title:\"text Color\",type:ControlType.Color},dPZblZzGc:{defaultValue:'var(--token-940fbdde-1ec1-401a-8921-74ab1e3aba1a, rgb(75, 92, 11)) /* {\"name\":\"Chartreuse 900\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramernADpfWhzA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernADpfWhzA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gZAHmLdQU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xtetFdr_Y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"429\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"163\",\"framerVariables\":\"{\\\"tXKdnHwF3\\\":\\\"text\\\",\\\"h7uCh8C_S\\\":\\\"textColor\\\",\\\"dPZblZzGc\\\":\\\"background\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "var e=typeof globalThis!==\"undefined\"?globalThis:typeof self!==\"undefined\"?self:global;var t={};(function webpackUniversalModuleDefinition(e,n){t=n()})(0,(function(){return function(e){var t={};function __webpack_require__(n){if(t[n])return t[n].exports;var i=t[n]={i:n,l:false,exports:{}};e[n].call(i.exports,i,i.exports,__webpack_require__);i.l=true;return i.exports}__webpack_require__.m=e;__webpack_require__.c=t;__webpack_require__.d=function(e,t,n){__webpack_require__.o(e,t)||Object.defineProperty(e,t,{enumerable:true,get:n})};__webpack_require__.r=function(e){typeof Symbol!==\"undefined\"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"});Object.defineProperty(e,\"__esModule\",{value:true})};__webpack_require__.t=function(e,t){t&1&&(e=__webpack_require__(e));if(t&8)return e;if(t&4&&typeof e===\"object\"&&e&&e.__esModule)return e;var n=Object.create(null);__webpack_require__.r(n);Object.defineProperty(n,\"default\",{enumerable:true,value:e});if(t&2&&typeof e!=\"string\")for(var i in e)__webpack_require__.d(n,i,function(t){return e[t]}.bind(null,i));return n};__webpack_require__.n=function(e){var t=e&&e.__esModule?function getDefault(){return e.default}:function getModuleExports(){return e};__webpack_require__.d(t,\"a\",t);return t};__webpack_require__.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)};__webpack_require__.p=\"\";return __webpack_require__(__webpack_require__.s=20)}([function(t,n){var i={};t.exports=i;(function(){i._baseDelta=1e3/60;i._nextId=0;i._seed=0;i._nowStartTime=+new Date;i._warnedOnce={};i._decomp=null;\n/**\n       * Extends the object in the first argument using the object in the second argument.\n       * @method extend\n       * @param {} obj\n       * @param {boolean} deep\n       * @return {} obj extended\n       */i.extend=function(e,t){var n,o;if(typeof t===\"boolean\"){n=2;o=t}else{n=1;o=true}for(var r=n;r<arguments.length;r++){var a=arguments[r];if(a)for(var s in a)if(o&&a[s]&&a[s].constructor===Object)if(e[s]&&e[s].constructor!==Object)e[s]=a[s];else{e[s]=e[s]||{};i.extend(e[s],o,a[s])}else e[s]=a[s]}return e};\n/**\n       * Creates a new clone of the object, if deep is true references will also be cloned.\n       * @method clone\n       * @param {} obj\n       * @param {bool} deep\n       * @return {} obj cloned\n       */i.clone=function(e,t){return i.extend({},t,e)};\n/**\n       * Returns the list of keys for the given object.\n       * @method keys\n       * @param {} obj\n       * @return {string[]} keys\n       */i.keys=function(e){if(Object.keys)return Object.keys(e);var t=[];for(var n in e)t.push(n);return t};\n/**\n       * Returns the list of values for the given object.\n       * @method values\n       * @param {} obj\n       * @return {array} Array of the objects property values\n       */i.values=function(e){var t=[];if(Object.keys){var n=Object.keys(e);for(var i=0;i<n.length;i++)t.push(e[n[i]]);return t}for(var o in e)t.push(e[o]);return t};\n/**\n       * Gets a value from `base` relative to the `path` string.\n       * @method get\n       * @param {} obj The base object\n       * @param {string} path The path relative to `base`, e.g. 'Foo.Bar.baz'\n       * @param {number} [begin] Path slice begin\n       * @param {number} [end] Path slice end\n       * @return {} The object at the given path\n       */i.get=function(e,t,n,i){t=t.split(\".\").slice(n,i);for(var o=0;o<t.length;o+=1)e=e[t[o]];return e};\n/**\n       * Sets a value on `base` relative to the given `path` string.\n       * @method set\n       * @param {} obj The base object\n       * @param {string} path The path relative to `base`, e.g. 'Foo.Bar.baz'\n       * @param {} val The value to set\n       * @param {number} [begin] Path slice begin\n       * @param {number} [end] Path slice end\n       * @return {} Pass through `val` for chaining\n       */i.set=function(e,t,n,o,r){var a=t.split(\".\").slice(o,r);i.get(e,t,0,-1)[a[a.length-1]]=n;return n};\n/**\n       * Shuffles the given array in-place.\n       * The function uses a seeded random generator.\n       * @method shuffle\n       * @param {array} array\n       * @return {array} array shuffled randomly\n       */i.shuffle=function(e){for(var t=e.length-1;t>0;t--){var n=Math.floor(i.random()*(t+1));var o=e[t];e[t]=e[n];e[n]=o}return e};\n/**\n       * Randomly chooses a value from a list with equal probability.\n       * The function uses a seeded random generator.\n       * @method choose\n       * @param {array} choices\n       * @return {object} A random choice object from the array\n       */i.choose=function(e){return e[Math.floor(i.random()*e.length)]};\n/**\n       * Returns true if the object is a HTMLElement, otherwise false.\n       * @method isElement\n       * @param {object} obj\n       * @return {boolean} True if the object is a HTMLElement, otherwise false\n       */i.isElement=function(e){return typeof HTMLElement!==\"undefined\"?e instanceof HTMLElement:!!(e&&e.nodeType&&e.nodeName)};\n/**\n       * Returns true if the object is an array.\n       * @method isArray\n       * @param {object} obj\n       * @return {boolean} True if the object is an array, otherwise false\n       */i.isArray=function(e){return Object.prototype.toString.call(e)===\"[object Array]\"};\n/**\n       * Returns true if the object is a function.\n       * @method isFunction\n       * @param {object} obj\n       * @return {boolean} True if the object is a function, otherwise false\n       */i.isFunction=function(e){return typeof e===\"function\"};\n/**\n       * Returns true if the object is a plain object.\n       * @method isPlainObject\n       * @param {object} obj\n       * @return {boolean} True if the object is a plain object, otherwise false\n       */i.isPlainObject=function(e){return typeof e===\"object\"&&e.constructor===Object};\n/**\n       * Returns true if the object is a string.\n       * @method isString\n       * @param {object} obj\n       * @return {boolean} True if the object is a string, otherwise false\n       */i.isString=function(e){return toString.call(e)===\"[object String]\"};\n/**\n       * Returns the given value clamped between a minimum and maximum value.\n       * @method clamp\n       * @param {number} value\n       * @param {number} min\n       * @param {number} max\n       * @return {number} The value clamped between min and max inclusive\n       */i.clamp=function(e,t,n){return e<t?t:e>n?n:e};\n/**\n       * Returns the sign of the given value.\n       * @method sign\n       * @param {number} value\n       * @return {number} -1 if negative, +1 if 0 or positive\n       */i.sign=function(e){return e<0?-1:1};i.now=function(){if(typeof window!==\"undefined\"&&window.performance){if(window.performance.now)return window.performance.now();if(window.performance.webkitNow)return window.performance.webkitNow()}return Date.now?Date.now():new Date-i._nowStartTime};\n/**\n       * Returns a random value between a minimum and a maximum value inclusive.\n       * The function uses a seeded random generator.\n       * @method random\n       * @param {number} min\n       * @param {number} max\n       * @return {number} A random number between min and max inclusive\n       */i.random=function(e,t){e=typeof e!==\"undefined\"?e:0;t=typeof t!==\"undefined\"?t:1;return e+_seededRandom()*(t-e)};var _seededRandom=function(){i._seed=(i._seed*9301+49297)%233280;return i._seed/233280};\n/**\n       * Converts a CSS hex colour string into an integer.\n       * @method colorToNumber\n       * @param {string} colorString\n       * @return {number} An integer representing the CSS hex string\n       */i.colorToNumber=function(e){e=e.replace(\"#\",\"\");e.length==3&&(e=e.charAt(0)+e.charAt(0)+e.charAt(1)+e.charAt(1)+e.charAt(2)+e.charAt(2));return parseInt(e,16)};\n/**\n       * The console logging level to use, where each level includes all levels above and excludes the levels below.\n       * The default level is 'debug' which shows all console messages.  \n       *\n       * Possible level values are:\n       * - 0 = None\n       * - 1 = Debug\n       * - 2 = Info\n       * - 3 = Warn\n       * - 4 = Error\n       * @static\n       * @property logLevel\n       * @type {Number}\n       * @default 1\n       */i.logLevel=1;\n/**\n       * Shows a `console.log` message only if the current `Common.logLevel` allows it.\n       * The message will be prefixed with 'matter-js' to make it easily identifiable.\n       * @method log\n       * @param ...objs {} The objects to log.\n       */i.log=function(){console&&i.logLevel>0&&i.logLevel<=3&&console.log.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n       * Shows a `console.info` message only if the current `Common.logLevel` allows it.\n       * The message will be prefixed with 'matter-js' to make it easily identifiable.\n       * @method info\n       * @param ...objs {} The objects to log.\n       */i.info=function(){console&&i.logLevel>0&&i.logLevel<=2&&console.info.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n       * Shows a `console.warn` message only if the current `Common.logLevel` allows it.\n       * The message will be prefixed with 'matter-js' to make it easily identifiable.\n       * @method warn\n       * @param ...objs {} The objects to log.\n       */i.warn=function(){console&&i.logLevel>0&&i.logLevel<=3&&console.warn.apply(console,[\"matter-js:\"].concat(Array.prototype.slice.call(arguments)))};\n/**\n       * Uses `Common.warn` to log the given message one time only.\n       * @method warnOnce\n       * @param ...objs {} The objects to log.\n       */i.warnOnce=function(){var e=Array.prototype.slice.call(arguments).join(\" \");if(!i._warnedOnce[e]){i.warn(e);i._warnedOnce[e]=true}};\n/**\n       * Shows a deprecated console warning when the function on the given object is called.\n       * The target function will be replaced with a new function that first shows the warning\n       * and then calls the original function.\n       * @method deprecated\n       * @param {object} obj The object or module\n       * @param {string} name The property name of the function on obj\n       * @param {string} warning The one-time message to show if the function is called\n       */i.deprecated=function(e,t,n){e[t]=i.chain((function(){i.warnOnce(\"\uD83D\uDD05 deprecated \uD83D\uDD05\",n)}),e[t])};i.nextId=function(){return i._nextId++};\n/**\n       * A cross browser compatible indexOf implementation.\n       * @method indexOf\n       * @param {array} haystack\n       * @param {object} needle\n       * @return {number} The position of needle in haystack, otherwise -1.\n       */i.indexOf=function(e,t){if(e.indexOf)return e.indexOf(t);for(var n=0;n<e.length;n++)if(e[n]===t)return n;return-1};\n/**\n       * A cross browser compatible array map implementation.\n       * @method map\n       * @param {array} list\n       * @param {function} func\n       * @return {array} Values from list transformed by func.\n       */i.map=function(e,t){if(e.map)return e.map(t);var n=[];for(var i=0;i<e.length;i+=1)n.push(t(e[i]));return n};\n/**\n       * Takes a directed graph and returns the partially ordered set of vertices in topological order.\n       * Circular dependencies are allowed.\n       * @method topologicalSort\n       * @param {object} graph\n       * @return {array} Partially ordered set of vertices in topological order.\n       */i.topologicalSort=function(e){var t=[],n=[],o=[];for(var r in e)n[r]||o[r]||i._topologicalSort(r,n,o,e,t);return t};i._topologicalSort=function(e,t,n,o,r){var a=o[e]||[];n[e]=true;for(var s=0;s<a.length;s+=1){var l=a[s];n[l]||(t[l]||i._topologicalSort(l,t,n,o,r))}n[e]=false;t[e]=true;r.push(e)};\n/**\n       * Takes _n_ functions as arguments and returns a new function that calls them in order.\n       * The arguments applied when calling the new function will also be applied to every function passed.\n       * The value of `this` refers to the last value returned in the chain that was not `undefined`.\n       * Therefore if a passed function does not return a value, the previously returned value is maintained.\n       * After all passed functions have been called the new function returns the last returned value (if any).\n       * If any of the passed functions are a chain, then the chain will be flattened.\n       * @method chain\n       * @param ...funcs {function} The functions to chain.\n       * @return {function} A new function that calls the passed functions in order.\n       */i.chain=function(){var e=[];for(var t=0;t<arguments.length;t+=1){var n=arguments[t];n._chained?e.push.apply(e,n._chained):e.push(n)}var chain=function(){var t,n=new Array(arguments.length);for(var i=0,o=arguments.length;i<o;i++)n[i]=arguments[i];for(i=0;i<e.length;i+=1){var r=e[i].apply(t,n);typeof r!==\"undefined\"&&(t=r)}return t};chain._chained=e;return chain};\n/**\n       * Chains a function to excute before the original function on the given `path` relative to `base`.\n       * See also docs for `Common.chain`.\n       * @method chainPathBefore\n       * @param {} base The base object\n       * @param {string} path The path relative to `base`\n       * @param {function} func The function to chain before the original\n       * @return {function} The chained function that replaced the original\n       */i.chainPathBefore=function(e,t,n){return i.set(e,t,i.chain(n,i.get(e,t)))};\n/**\n       * Chains a function to excute after the original function on the given `path` relative to `base`.\n       * See also docs for `Common.chain`.\n       * @method chainPathAfter\n       * @param {} base The base object\n       * @param {string} path The path relative to `base`\n       * @param {function} func The function to chain after the original\n       * @return {function} The chained function that replaced the original\n       */i.chainPathAfter=function(e,t,n){return i.set(e,t,i.chain(i.get(e,t),n))};\n/**\n       * Provide the [poly-decomp](https://github.com/schteppe/poly-decomp.js) library module to enable\n       * concave vertex decomposition support when using `Bodies.fromVertices` e.g. `Common.setDecomp(require('poly-decomp'))`.\n       * @method setDecomp\n       * @param {} decomp The [poly-decomp](https://github.com/schteppe/poly-decomp.js) library module.\n       */i.setDecomp=function(e){i._decomp=e};i.getDecomp=function(){var t=i._decomp;try{t||typeof window===\"undefined\"||(t=window.decomp);t||typeof e===\"undefined\"||(t=e.decomp)}catch(e){t=null}return t}})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n       * Creates a new axis-aligned bounding box (AABB) for the given vertices.\n       * @method create\n       * @param {vertices} vertices\n       * @return {bounds} A new bounds object\n       */\nn.create=function(e){var t={min:{x:0,y:0},max:{x:0,y:0}};e&&n.update(t,e);return t};\n/**\n       * Updates bounds using the given vertices and extends the bounds given a velocity.\n       * @method update\n       * @param {bounds} bounds\n       * @param {vertices} vertices\n       * @param {vector} velocity\n       */n.update=function(e,t,n){e.min.x=Infinity;e.max.x=-Infinity;e.min.y=Infinity;e.max.y=-Infinity;for(var i=0;i<t.length;i++){var o=t[i];o.x>e.max.x&&(e.max.x=o.x);o.x<e.min.x&&(e.min.x=o.x);o.y>e.max.y&&(e.max.y=o.y);o.y<e.min.y&&(e.min.y=o.y)}if(n){n.x>0?e.max.x+=n.x:e.min.x+=n.x;n.y>0?e.max.y+=n.y:e.min.y+=n.y}};\n/**\n       * Returns true if the bounds contains the given point.\n       * @method contains\n       * @param {bounds} bounds\n       * @param {vector} point\n       * @return {boolean} True if the bounds contain the point, otherwise false\n       */n.contains=function(e,t){return t.x>=e.min.x&&t.x<=e.max.x&&t.y>=e.min.y&&t.y<=e.max.y};\n/**\n       * Returns true if the two bounds intersect.\n       * @method overlaps\n       * @param {bounds} boundsA\n       * @param {bounds} boundsB\n       * @return {boolean} True if the bounds overlap, otherwise false\n       */n.overlaps=function(e,t){return e.min.x<=t.max.x&&e.max.x>=t.min.x&&e.max.y>=t.min.y&&e.min.y<=t.max.y};\n/**\n       * Translates the bounds by the given vector.\n       * @method translate\n       * @param {bounds} bounds\n       * @param {vector} vector\n       */n.translate=function(e,t){e.min.x+=t.x;e.max.x+=t.x;e.min.y+=t.y;e.max.y+=t.y};\n/**\n       * Shifts the bounds to the given position.\n       * @method shift\n       * @param {bounds} bounds\n       * @param {vector} position\n       */n.shift=function(e,t){var n=e.max.x-e.min.x,i=e.max.y-e.min.y;e.min.x=t.x;e.max.x=t.x+n;e.min.y=t.y;e.max.y=t.y+i}})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n       * Creates a new vector.\n       * @method create\n       * @param {number} x\n       * @param {number} y\n       * @return {vector} A new vector\n       */\nn.create=function(e,t){return{x:e||0,y:t||0}};\n/**\n       * Returns a new vector with `x` and `y` copied from the given `vector`.\n       * @method clone\n       * @param {vector} vector\n       * @return {vector} A new cloned vector\n       */n.clone=function(e){return{x:e.x,y:e.y}};\n/**\n       * Returns the magnitude (length) of a vector.\n       * @method magnitude\n       * @param {vector} vector\n       * @return {number} The magnitude of the vector\n       */n.magnitude=function(e){return Math.sqrt(e.x*e.x+e.y*e.y)};\n/**\n       * Returns the magnitude (length) of a vector (therefore saving a `sqrt` operation).\n       * @method magnitudeSquared\n       * @param {vector} vector\n       * @return {number} The squared magnitude of the vector\n       */n.magnitudeSquared=function(e){return e.x*e.x+e.y*e.y};\n/**\n       * Rotates the vector about (0, 0) by specified angle.\n       * @method rotate\n       * @param {vector} vector\n       * @param {number} angle\n       * @param {vector} [output]\n       * @return {vector} The vector rotated about (0, 0)\n       */n.rotate=function(e,t,n){var i=Math.cos(t),o=Math.sin(t);n||(n={});var r=e.x*i-e.y*o;n.y=e.x*o+e.y*i;n.x=r;return n};\n/**\n       * Rotates the vector about a specified point by specified angle.\n       * @method rotateAbout\n       * @param {vector} vector\n       * @param {number} angle\n       * @param {vector} point\n       * @param {vector} [output]\n       * @return {vector} A new vector rotated about the point\n       */n.rotateAbout=function(e,t,n,i){var o=Math.cos(t),r=Math.sin(t);i||(i={});var a=n.x+((e.x-n.x)*o-(e.y-n.y)*r);i.y=n.y+((e.x-n.x)*r+(e.y-n.y)*o);i.x=a;return i};\n/**\n       * Normalises a vector (such that its magnitude is `1`).\n       * @method normalise\n       * @param {vector} vector\n       * @return {vector} A new vector normalised\n       */n.normalise=function(e){var t=n.magnitude(e);return t===0?{x:0,y:0}:{x:e.x/t,y:e.y/t}};\n/**\n       * Returns the dot-product of two vectors.\n       * @method dot\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @return {number} The dot product of the two vectors\n       */n.dot=function(e,t){return e.x*t.x+e.y*t.y};\n/**\n       * Returns the cross-product of two vectors.\n       * @method cross\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @return {number} The cross product of the two vectors\n       */n.cross=function(e,t){return e.x*t.y-e.y*t.x};\n/**\n       * Returns the cross-product of three vectors.\n       * @method cross3\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @param {vector} vectorC\n       * @return {number} The cross product of the three vectors\n       */n.cross3=function(e,t,n){return(t.x-e.x)*(n.y-e.y)-(t.y-e.y)*(n.x-e.x)};\n/**\n       * Adds the two vectors.\n       * @method add\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @param {vector} [output]\n       * @return {vector} A new vector of vectorA and vectorB added\n       */n.add=function(e,t,n){n||(n={});n.x=e.x+t.x;n.y=e.y+t.y;return n};\n/**\n       * Subtracts the two vectors.\n       * @method sub\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @param {vector} [output]\n       * @return {vector} A new vector of vectorA and vectorB subtracted\n       */n.sub=function(e,t,n){n||(n={});n.x=e.x-t.x;n.y=e.y-t.y;return n};\n/**\n       * Multiplies a vector and a scalar.\n       * @method mult\n       * @param {vector} vector\n       * @param {number} scalar\n       * @return {vector} A new vector multiplied by scalar\n       */n.mult=function(e,t){return{x:e.x*t,y:e.y*t}};\n/**\n       * Divides a vector and a scalar.\n       * @method div\n       * @param {vector} vector\n       * @param {number} scalar\n       * @return {vector} A new vector divided by scalar\n       */n.div=function(e,t){return{x:e.x/t,y:e.y/t}};\n/**\n       * Returns the perpendicular vector. Set `negate` to true for the perpendicular in the opposite direction.\n       * @method perp\n       * @param {vector} vector\n       * @param {bool} [negate=false]\n       * @return {vector} The perpendicular vector\n       */n.perp=function(e,t){t=t===true?-1:1;return{x:t*-e.y,y:t*e.x}};\n/**\n       * Negates both components of a vector such that it points in the opposite direction.\n       * @method neg\n       * @param {vector} vector\n       * @return {vector} The negated vector\n       */n.neg=function(e){return{x:-e.x,y:-e.y}};\n/**\n       * Returns the angle between the vector `vectorB - vectorA` and the x-axis in radians.\n       * @method angle\n       * @param {vector} vectorA\n       * @param {vector} vectorB\n       * @return {number} The angle in radians\n       */n.angle=function(e,t){return Math.atan2(t.y-e.y,t.x-e.x)};\n/**\n       * Temporary vector pool (not thread-safe).\n       * @property _temp\n       * @type {vector[]}\n       * @private\n       */n._temp=[n.create(),n.create(),n.create(),n.create(),n.create(),n.create()]})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(0);(function(){\n/**\n       * Creates a new set of `Matter.Body` compatible vertices.\n       * The `points` argument accepts an array of `Matter.Vector` points orientated around the origin `(0, 0)`, for example:\n       *\n       *     [{ x: 0, y: 0 }, { x: 25, y: 50 }, { x: 50, y: 0 }]\n       *\n       * The `Vertices.create` method returns a new array of vertices, which are similar to Matter.Vector objects,\n       * but with some additional references required for efficient collision detection routines.\n       *\n       * Vertices must be specified in clockwise order.\n       *\n       * Note that the `body` argument is not optional, a `Matter.Body` reference must be provided.\n       *\n       * @method create\n       * @param {vector[]} points\n       * @param {body} body\n       */\ni.create=function(e,t){var n=[];for(var i=0;i<e.length;i++){var o=e[i],r={x:o.x,y:o.y,index:i,body:t,isInternal:false};n.push(r)}return n};\n/**\n       * Parses a string containing ordered x y pairs separated by spaces (and optionally commas), \n       * into a `Matter.Vertices` object for the given `Matter.Body`.\n       * For parsing SVG paths, see `Svg.pathToVertices`.\n       * @method fromPath\n       * @param {string} path\n       * @param {body} body\n       * @return {vertices} vertices\n       */i.fromPath=function(e,t){var n=/L?\\s*([-\\d.e]+)[\\s,]*([-\\d.e]+)*/gi,o=[];e.replace(n,(function(e,t,n){o.push({x:parseFloat(t),y:parseFloat(n)})}));return i.create(o,t)};\n/**\n       * Returns the centre (centroid) of the set of vertices.\n       * @method centre\n       * @param {vertices} vertices\n       * @return {vector} The centre point\n       */i.centre=function(e){var t,n,r,a=i.area(e,true),s={x:0,y:0};for(var l=0;l<e.length;l++){r=(l+1)%e.length;t=o.cross(e[l],e[r]);n=o.mult(o.add(e[l],e[r]),t);s=o.add(s,n)}return o.div(s,6*a)};\n/**\n       * Returns the average (mean) of the set of vertices.\n       * @method mean\n       * @param {vertices} vertices\n       * @return {vector} The average point\n       */i.mean=function(e){var t={x:0,y:0};for(var n=0;n<e.length;n++){t.x+=e[n].x;t.y+=e[n].y}return o.div(t,e.length)};\n/**\n       * Returns the area of the set of vertices.\n       * @method area\n       * @param {vertices} vertices\n       * @param {bool} signed\n       * @return {number} The area\n       */i.area=function(e,t){var n=0,i=e.length-1;for(var o=0;o<e.length;o++){n+=(e[i].x-e[o].x)*(e[i].y+e[o].y);i=o}return t?n/2:Math.abs(n)/2};\n/**\n       * Returns the moment of inertia (second moment of area) of the set of vertices given the total mass.\n       * @method inertia\n       * @param {vertices} vertices\n       * @param {number} mass\n       * @return {number} The polygon's moment of inertia\n       */i.inertia=function(e,t){var n,i,r=0,a=0,s=e;for(var l=0;l<s.length;l++){i=(l+1)%s.length;n=Math.abs(o.cross(s[i],s[l]));r+=n*(o.dot(s[i],s[i])+o.dot(s[i],s[l])+o.dot(s[l],s[l]));a+=n}return t/6*(r/a)};\n/**\n       * Translates the set of vertices in-place.\n       * @method translate\n       * @param {vertices} vertices\n       * @param {vector} vector\n       * @param {number} scalar\n       */i.translate=function(e,t,n){n=typeof n!==\"undefined\"?n:1;var i,o=e.length,r=t.x*n,a=t.y*n;for(i=0;i<o;i++){e[i].x+=r;e[i].y+=a}return e};\n/**\n       * Rotates the set of vertices in-place.\n       * @method rotate\n       * @param {vertices} vertices\n       * @param {number} angle\n       * @param {vector} point\n       */i.rotate=function(e,t,n){if(t!==0){var i,o,r,a,s=Math.cos(t),l=Math.sin(t),c=n.x,u=n.y,f=e.length;for(a=0;a<f;a++){i=e[a];o=i.x-c;r=i.y-u;i.x=c+(o*s-r*l);i.y=u+(o*l+r*s)}return e}};\n/**\n       * Returns `true` if the `point` is inside the set of `vertices`.\n       * @method contains\n       * @param {vertices} vertices\n       * @param {vector} point\n       * @return {boolean} True if the vertices contains point, otherwise false\n       */i.contains=function(e,t){var n,i=t.x,o=t.y,r=e.length,a=e[r-1];for(var s=0;s<r;s++){n=e[s];if((i-a.x)*(n.y-a.y)+(o-a.y)*(a.x-n.x)>0)return false;a=n}return true};\n/**\n       * Scales the vertices from a point (default is centre) in-place.\n       * @method scale\n       * @param {vertices} vertices\n       * @param {number} scaleX\n       * @param {number} scaleY\n       * @param {vector} point\n       */i.scale=function(e,t,n,r){if(t===1&&n===1)return e;r=r||i.centre(e);var a,s;for(var l=0;l<e.length;l++){a=e[l];s=o.sub(a,r);e[l].x=r.x+s.x*t;e[l].y=r.y+s.y*n}return e};\n/**\n       * Chamfers a set of vertices by giving them rounded corners, returns a new set of vertices.\n       * The radius parameter is a single number or an array to specify the radius for each vertex.\n       * @method chamfer\n       * @param {vertices} vertices\n       * @param {number[]} radius\n       * @param {number} quality\n       * @param {number} qualityMin\n       * @param {number} qualityMax\n       */i.chamfer=function(e,t,n,i,a){t=typeof t===\"number\"?[t]:t||[8];n=typeof n!==\"undefined\"?n:-1;i=i||2;a=a||14;var s=[];for(var l=0;l<e.length;l++){var c=e[l-1>=0?l-1:e.length-1],u=e[l],f=e[(l+1)%e.length],p=t[l<t.length?l:t.length-1];if(p!==0){var d=o.normalise({x:u.y-c.y,y:c.x-u.x});var v=o.normalise({x:f.y-u.y,y:u.x-f.x});var y=Math.sqrt(2*Math.pow(p,2)),m=o.mult(r.clone(d),p),g=o.normalise(o.mult(o.add(d,v),.5)),x=o.sub(u,o.mult(g,y));var h=n;n===-1&&(h=Math.pow(p,.32)*1.75);h=r.clamp(h,i,a);h%2===1&&(h+=1);var b=Math.acos(o.dot(d,v)),S=b/h;for(var w=0;w<h;w++)s.push(o.add(o.rotate(m,S*w),x))}else s.push(u)}return s};\n/**\n       * Sorts the input vertices into clockwise order in place.\n       * @method clockwiseSort\n       * @param {vertices} vertices\n       * @return {vertices} vertices\n       */i.clockwiseSort=function(e){var t=i.mean(e);e.sort((function(e,n){return o.angle(t,e)-o.angle(t,n)}));return e};\n/**\n       * Returns true if the vertices form a convex shape (vertices must be in clockwise order).\n       * @method isConvex\n       * @param {vertices} vertices\n       * @return {bool} `true` if the `vertices` are convex, `false` if not (or `null` if not computable).\n       */i.isConvex=function(e){var t,n,i,o,r=0,a=e.length;if(a<3)return null;for(t=0;t<a;t++){n=(t+1)%a;i=(t+2)%a;o=(e[n].x-e[t].x)*(e[i].y-e[n].y);o-=(e[n].y-e[t].y)*(e[i].x-e[n].x);o<0?r|=1:o>0&&(r|=2);if(r===3)return false}return r!==0||null};\n/**\n       * Returns the convex hull of the input vertices as a new array of points.\n       * @method hull\n       * @param {vertices} vertices\n       * @return [vertex] vertices\n       */i.hull=function(e){var t,n,i=[],r=[];e=e.slice(0);e.sort((function(e,t){var n=e.x-t.x;return n!==0?n:e.y-t.y}));for(n=0;n<e.length;n+=1){t=e[n];while(r.length>=2&&o.cross3(r[r.length-2],r[r.length-1],t)<=0)r.pop();r.push(t)}for(n=e.length-1;n>=0;n-=1){t=e[n];while(i.length>=2&&o.cross3(i[i.length-2],i[i.length-1],t)<=0)i.pop();i.push(t)}i.pop();r.pop();return i.concat(r)}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(2);var a=n(7);var s=n(0);var l=n(1);var c=n(11);(function(){i._timeCorrection=true;i._inertiaScale=4;i._nextCollidingGroupId=1;i._nextNonCollidingGroupId=-1;i._nextCategory=1;i._baseDelta=1e3/60;\n/**\n       * Creates a new rigid body model. The options parameter is an object that specifies any properties you wish to override the defaults.\n       * All properties have default values, and many are pre-calculated automatically based on other properties.\n       * Vertices must be specified in clockwise order.\n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {} options\n       * @return {body} body\n       */i.create=function(e){var t={id:s.nextId(),type:\"body\",label:\"Body\",parts:[],plugin:{},angle:0,vertices:o.fromPath(\"L 0 0 L 40 0 L 40 40 L 0 40\"),position:{x:0,y:0},force:{x:0,y:0},torque:0,positionImpulse:{x:0,y:0},constraintImpulse:{x:0,y:0,angle:0},totalContacts:0,speed:0,angularSpeed:0,velocity:{x:0,y:0},angularVelocity:0,isSensor:false,isStatic:false,isSleeping:false,motion:0,sleepThreshold:60,density:.001,restitution:0,friction:.1,frictionStatic:.5,frictionAir:.01,collisionFilter:{category:1,mask:4294967295,group:0},slop:.05,timeScale:1,render:{visible:true,opacity:1,strokeStyle:null,fillStyle:null,lineWidth:null,sprite:{xScale:1,yScale:1,xOffset:0,yOffset:0}},events:null,bounds:null,chamfer:null,circleRadius:0,positionPrev:null,anglePrev:0,parent:null,axes:null,area:0,mass:0,inertia:0,deltaTime:1e3/60,_original:null};var n=s.extend(t,e);_initProperties(n,e);return n};\n/**\n       * Returns the next unique group index for which bodies will collide.\n       * If `isNonColliding` is `true`, returns the next unique group index for which bodies will _not_ collide.\n       * See `body.collisionFilter` for more information.\n       * @method nextGroup\n       * @param {bool} [isNonColliding=false]\n       * @return {Number} Unique group index\n       */i.nextGroup=function(e){return e?i._nextNonCollidingGroupId--:i._nextCollidingGroupId++};i.nextCategory=function(){i._nextCategory=i._nextCategory<<1;return i._nextCategory};\n/**\n       * Initialises body properties.\n       * @method _initProperties\n       * @private\n       * @param {body} body\n       * @param {} [options]\n       */var _initProperties=function(e,t){t=t||{};i.set(e,{bounds:e.bounds||l.create(e.vertices),positionPrev:e.positionPrev||r.clone(e.position),anglePrev:e.anglePrev||e.angle,vertices:e.vertices,parts:e.parts||[e],isStatic:e.isStatic,isSleeping:e.isSleeping,parent:e.parent||e});o.rotate(e.vertices,e.angle,e.position);c.rotate(e.axes,e.angle);l.update(e.bounds,e.vertices,e.velocity);i.set(e,{axes:t.axes||e.axes,area:t.area||e.area,mass:t.mass||e.mass,inertia:t.inertia||e.inertia});var n=e.isStatic?\"#14151f\":s.choose([\"#f19648\",\"#f5d259\",\"#f55a3c\",\"#063e7b\",\"#ececd1\"]),a=e.isStatic?\"#555\":\"#ccc\",u=e.isStatic&&e.render.fillStyle===null?1:0;e.render.fillStyle=e.render.fillStyle||n;e.render.strokeStyle=e.render.strokeStyle||a;e.render.lineWidth=e.render.lineWidth||u;e.render.sprite.xOffset+=-(e.bounds.min.x-e.position.x)/(e.bounds.max.x-e.bounds.min.x);e.render.sprite.yOffset+=-(e.bounds.min.y-e.position.y)/(e.bounds.max.y-e.bounds.min.y)};\n/**\n       * Given a property and a value (or map of), sets the property(s) on the body, using the appropriate setter functions if they exist.\n       * Prefer to use the actual setter functions in performance critical situations.\n       * @method set\n       * @param {body} body\n       * @param {} settings A property name (or map of properties and values) to set on the body.\n       * @param {} value The value to set if `settings` is a single property name.\n       */i.set=function(e,t,n){var o;if(typeof t===\"string\"){o=t;t={};t[o]=n}for(o in t)if(Object.prototype.hasOwnProperty.call(t,o)){n=t[o];switch(o){case\"isStatic\":i.setStatic(e,n);break;case\"isSleeping\":a.set(e,n);break;case\"mass\":i.setMass(e,n);break;case\"density\":i.setDensity(e,n);break;case\"inertia\":i.setInertia(e,n);break;case\"vertices\":i.setVertices(e,n);break;case\"position\":i.setPosition(e,n);break;case\"angle\":i.setAngle(e,n);break;case\"velocity\":i.setVelocity(e,n);break;case\"angularVelocity\":i.setAngularVelocity(e,n);break;case\"speed\":i.setSpeed(e,n);break;case\"angularSpeed\":i.setAngularSpeed(e,n);break;case\"parts\":i.setParts(e,n);break;case\"centre\":i.setCentre(e,n);break;default:e[o]=n}}};\n/**\n       * Sets the body as static, including isStatic flag and setting mass and inertia to Infinity.\n       * @method setStatic\n       * @param {body} body\n       * @param {bool} isStatic\n       */i.setStatic=function(e,t){for(var n=0;n<e.parts.length;n++){var i=e.parts[n];if(t){i.isStatic||(i._original={restitution:i.restitution,friction:i.friction,mass:i.mass,inertia:i.inertia,density:i.density,inverseMass:i.inverseMass,inverseInertia:i.inverseInertia});i.restitution=0;i.friction=1;i.mass=i.inertia=i.density=Infinity;i.inverseMass=i.inverseInertia=0;i.positionPrev.x=i.position.x;i.positionPrev.y=i.position.y;i.anglePrev=i.angle;i.angularVelocity=0;i.speed=0;i.angularSpeed=0;i.motion=0}else if(i._original){i.restitution=i._original.restitution;i.friction=i._original.friction;i.mass=i._original.mass;i.inertia=i._original.inertia;i.density=i._original.density;i.inverseMass=i._original.inverseMass;i.inverseInertia=i._original.inverseInertia;i._original=null}i.isStatic=t}};\n/**\n       * Sets the mass of the body. Inverse mass, density and inertia are automatically updated to reflect the change.\n       * @method setMass\n       * @param {body} body\n       * @param {number} mass\n       */i.setMass=function(e,t){var n=e.inertia/(e.mass/6);e.inertia=n*(t/6);e.inverseInertia=1/e.inertia;e.mass=t;e.inverseMass=1/e.mass;e.density=e.mass/e.area};\n/**\n       * Sets the density of the body. Mass and inertia are automatically updated to reflect the change.\n       * @method setDensity\n       * @param {body} body\n       * @param {number} density\n       */i.setDensity=function(e,t){i.setMass(e,t*e.area);e.density=t};\n/**\n       * Sets the moment of inertia of the body. This is the second moment of area in two dimensions.\n       * Inverse inertia is automatically updated to reflect the change. Mass is not changed.\n       * @method setInertia\n       * @param {body} body\n       * @param {number} inertia\n       */i.setInertia=function(e,t){e.inertia=t;e.inverseInertia=1/e.inertia};\n/**\n       * Sets the body's vertices and updates body properties accordingly, including inertia, area and mass (with respect to `body.density`).\n       * Vertices will be automatically transformed to be orientated around their centre of mass as the origin.\n       * They are then automatically translated to world space based on `body.position`.\n       *\n       * The `vertices` argument should be passed as an array of `Matter.Vector` points (or a `Matter.Vertices` array).\n       * Vertices must form a convex hull. Concave vertices must be decomposed into convex parts.\n       * \n       * @method setVertices\n       * @param {body} body\n       * @param {vector[]} vertices\n       */i.setVertices=function(e,t){t[0].body===e?e.vertices=t:e.vertices=o.create(t,e);e.axes=c.fromVertices(e.vertices);e.area=o.area(e.vertices);i.setMass(e,e.density*e.area);var n=o.centre(e.vertices);o.translate(e.vertices,n,-1);i.setInertia(e,i._inertiaScale*o.inertia(e.vertices,e.mass));o.translate(e.vertices,e.position);l.update(e.bounds,e.vertices,e.velocity)};\n/**\n       * Sets the parts of the `body`. \n       * \n       * See `body.parts` for details and requirements on how parts are used.\n       * \n       * See Bodies.fromVertices for a related utility.\n       * \n       * This function updates `body` mass, inertia and centroid based on the parts geometry.  \n       * Sets each `part.parent` to be this `body`.  \n       * \n       * The convex hull is computed and set on this `body` (unless `autoHull` is `false`).  \n       * Automatically ensures that the first part in `body.parts` is the `body`.\n       * @method setParts\n       * @param {body} body\n       * @param {body[]} parts\n       * @param {bool} [autoHull=true]\n       */i.setParts=function(e,t,n){var r;t=t.slice(0);e.parts.length=0;e.parts.push(e);e.parent=e;for(r=0;r<t.length;r++){var a=t[r];if(a!==e){a.parent=e;e.parts.push(a)}}if(e.parts.length!==1){n=typeof n===\"undefined\"||n;if(n){var s=[];for(r=0;r<t.length;r++)s=s.concat(t[r].vertices);o.clockwiseSort(s);var l=o.hull(s),c=o.centre(l);i.setVertices(e,l);o.translate(e.vertices,c)}var u=i._totalProperties(e);e.area=u.area;e.parent=e;e.position.x=u.centre.x;e.position.y=u.centre.y;e.positionPrev.x=u.centre.x;e.positionPrev.y=u.centre.y;i.setMass(e,u.mass);i.setInertia(e,u.inertia);i.setPosition(e,u.centre)}};\n/**\n       * Set the centre of mass of the body. \n       * The `centre` is a vector in world-space unless `relative` is set, in which case it is a translation.\n       * The centre of mass is the point the body rotates about and can be used to simulate non-uniform density.\n       * This is equal to moving `body.position` but not the `body.vertices`.\n       * Invalid if the `centre` falls outside the body's convex hull.\n       * @method setCentre\n       * @param {body} body\n       * @param {vector} centre\n       * @param {bool} relative\n       */i.setCentre=function(e,t,n){if(n){e.positionPrev.x+=t.x;e.positionPrev.y+=t.y;e.position.x+=t.x;e.position.y+=t.y}else{e.positionPrev.x=t.x-(e.position.x-e.positionPrev.x);e.positionPrev.y=t.y-(e.position.y-e.positionPrev.y);e.position.x=t.x;e.position.y=t.y}};\n/**\n       * Sets the position of the body. By default velocity is unchanged.\n       * If `updateVelocity` is `true` then velocity is inferred from the change in position.\n       * @method setPosition\n       * @param {body} body\n       * @param {vector} position\n       * @param {boolean} [updateVelocity=false]\n       */i.setPosition=function(e,t,n){var i=r.sub(t,e.position);if(n){e.positionPrev.x=e.position.x;e.positionPrev.y=e.position.y;e.velocity.x=i.x;e.velocity.y=i.y;e.speed=r.magnitude(i)}else{e.positionPrev.x+=i.x;e.positionPrev.y+=i.y}for(var a=0;a<e.parts.length;a++){var s=e.parts[a];s.position.x+=i.x;s.position.y+=i.y;o.translate(s.vertices,i);l.update(s.bounds,s.vertices,e.velocity)}};\n/**\n       * Sets the angle of the body. By default angular velocity is unchanged.\n       * If `updateVelocity` is `true` then angular velocity is inferred from the change in angle.\n       * @method setAngle\n       * @param {body} body\n       * @param {number} angle\n       * @param {boolean} [updateVelocity=false]\n       */i.setAngle=function(e,t,n){var i=t-e.angle;if(n){e.anglePrev=e.angle;e.angularVelocity=i;e.angularSpeed=Math.abs(i)}else e.anglePrev+=i;for(var a=0;a<e.parts.length;a++){var s=e.parts[a];s.angle+=i;o.rotate(s.vertices,i,e.position);c.rotate(s.axes,i);l.update(s.bounds,s.vertices,e.velocity);a>0&&r.rotateAbout(s.position,i,e.position,s.position)}};\n/**\n       * Sets the current linear velocity of the body.  \n       * Affects body speed.\n       * @method setVelocity\n       * @param {body} body\n       * @param {vector} velocity\n       */i.setVelocity=function(e,t){var n=e.deltaTime/i._baseDelta;e.positionPrev.x=e.position.x-t.x*n;e.positionPrev.y=e.position.y-t.y*n;e.velocity.x=(e.position.x-e.positionPrev.x)/n;e.velocity.y=(e.position.y-e.positionPrev.y)/n;e.speed=r.magnitude(e.velocity)};\n/**\n       * Gets the current linear velocity of the body.\n       * @method getVelocity\n       * @param {body} body\n       * @return {vector} velocity\n       */i.getVelocity=function(e){var t=i._baseDelta/e.deltaTime;return{x:(e.position.x-e.positionPrev.x)*t,y:(e.position.y-e.positionPrev.y)*t}};\n/**\n       * Gets the current linear speed of the body.  \n       * Equivalent to the magnitude of its velocity.\n       * @method getSpeed\n       * @param {body} body\n       * @return {number} speed\n       */i.getSpeed=function(e){return r.magnitude(i.getVelocity(e))};\n/**\n       * Sets the current linear speed of the body.  \n       * Direction is maintained. Affects body velocity.\n       * @method setSpeed\n       * @param {body} body\n       * @param {number} speed\n       */i.setSpeed=function(e,t){i.setVelocity(e,r.mult(r.normalise(i.getVelocity(e)),t))};\n/**\n       * Sets the current rotational velocity of the body.  \n       * Affects body angular speed.\n       * @method setAngularVelocity\n       * @param {body} body\n       * @param {number} velocity\n       */i.setAngularVelocity=function(e,t){var n=e.deltaTime/i._baseDelta;e.anglePrev=e.angle-t*n;e.angularVelocity=(e.angle-e.anglePrev)/n;e.angularSpeed=Math.abs(e.angularVelocity)};\n/**\n       * Gets the current rotational velocity of the body.\n       * @method getAngularVelocity\n       * @param {body} body\n       * @return {number} angular velocity\n       */i.getAngularVelocity=function(e){return(e.angle-e.anglePrev)*i._baseDelta/e.deltaTime};\n/**\n       * Gets the current rotational speed of the body.  \n       * Equivalent to the magnitude of its angular velocity.\n       * @method getAngularSpeed\n       * @param {body} body\n       * @return {number} angular speed\n       */i.getAngularSpeed=function(e){return Math.abs(i.getAngularVelocity(e))};\n/**\n       * Sets the current rotational speed of the body.  \n       * Direction is maintained. Affects body angular velocity.\n       * @method setAngularSpeed\n       * @param {body} body\n       * @param {number} speed\n       */i.setAngularSpeed=function(e,t){i.setAngularVelocity(e,s.sign(i.getAngularVelocity(e))*t)};\n/**\n       * Moves a body by a given vector relative to its current position. By default velocity is unchanged.\n       * If `updateVelocity` is `true` then velocity is inferred from the change in position.\n       * @method translate\n       * @param {body} body\n       * @param {vector} translation\n       * @param {boolean} [updateVelocity=false]\n       */i.translate=function(e,t,n){i.setPosition(e,r.add(e.position,t),n)};\n/**\n       * Rotates a body by a given angle relative to its current angle. By default angular velocity is unchanged.\n       * If `updateVelocity` is `true` then angular velocity is inferred from the change in angle.\n       * @method rotate\n       * @param {body} body\n       * @param {number} rotation\n       * @param {vector} [point]\n       * @param {boolean} [updateVelocity=false]\n       */i.rotate=function(e,t,n,o){if(n){var r=Math.cos(t),a=Math.sin(t),s=e.position.x-n.x,l=e.position.y-n.y;i.setPosition(e,{x:n.x+(s*r-l*a),y:n.y+(s*a+l*r)},o);i.setAngle(e,e.angle+t,o)}else i.setAngle(e,e.angle+t,o)};\n/**\n       * Scales the body, including updating physical properties (mass, area, axes, inertia), from a world-space point (default is body centre).\n       * @method scale\n       * @param {body} body\n       * @param {number} scaleX\n       * @param {number} scaleY\n       * @param {vector} [point]\n       */i.scale=function(e,t,n,r){var a=0,s=0;r=r||e.position;for(var u=0;u<e.parts.length;u++){var f=e.parts[u];o.scale(f.vertices,t,n,r);f.axes=c.fromVertices(f.vertices);f.area=o.area(f.vertices);i.setMass(f,e.density*f.area);o.translate(f.vertices,{x:-f.position.x,y:-f.position.y});i.setInertia(f,i._inertiaScale*o.inertia(f.vertices,f.mass));o.translate(f.vertices,{x:f.position.x,y:f.position.y});if(u>0){a+=f.area;s+=f.inertia}f.position.x=r.x+(f.position.x-r.x)*t;f.position.y=r.y+(f.position.y-r.y)*n;l.update(f.bounds,f.vertices,e.velocity)}if(e.parts.length>1){e.area=a;if(!e.isStatic){i.setMass(e,e.density*a);i.setInertia(e,s)}}e.circleRadius&&(t===n?e.circleRadius*=t:e.circleRadius=null)};\n/**\n       * Performs an update by integrating the equations of motion on the `body`.\n       * This is applied every update by `Matter.Engine` automatically.\n       * @method update\n       * @param {body} body\n       * @param {number} [deltaTime=16.666]\n       */i.update=function(e,t){t=(typeof t!==\"undefined\"?t:1e3/60)*e.timeScale;var n=t*t,a=i._timeCorrection?t/(e.deltaTime||t):1;var u=1-e.frictionAir*(t/s._baseDelta),f=(e.position.x-e.positionPrev.x)*a,p=(e.position.y-e.positionPrev.y)*a;e.velocity.x=f*u+e.force.x/e.mass*n;e.velocity.y=p*u+e.force.y/e.mass*n;e.positionPrev.x=e.position.x;e.positionPrev.y=e.position.y;e.position.x+=e.velocity.x;e.position.y+=e.velocity.y;e.deltaTime=t;e.angularVelocity=(e.angle-e.anglePrev)*u*a+e.torque/e.inertia*n;e.anglePrev=e.angle;e.angle+=e.angularVelocity;for(var d=0;d<e.parts.length;d++){var v=e.parts[d];o.translate(v.vertices,e.velocity);if(d>0){v.position.x+=e.velocity.x;v.position.y+=e.velocity.y}if(e.angularVelocity!==0){o.rotate(v.vertices,e.angularVelocity,e.position);c.rotate(v.axes,e.angularVelocity);d>0&&r.rotateAbout(v.position,e.angularVelocity,e.position,v.position)}l.update(v.bounds,v.vertices,e.velocity)}};\n/**\n       * Updates properties `body.velocity`, `body.speed`, `body.angularVelocity` and `body.angularSpeed` which are normalised in relation to `Body._baseDelta`.\n       * @method updateVelocities\n       * @param {body} body\n       */i.updateVelocities=function(e){var t=i._baseDelta/e.deltaTime,n=e.velocity;n.x=(e.position.x-e.positionPrev.x)*t;n.y=(e.position.y-e.positionPrev.y)*t;e.speed=Math.sqrt(n.x*n.x+n.y*n.y);e.angularVelocity=(e.angle-e.anglePrev)*t;e.angularSpeed=Math.abs(e.angularVelocity)};\n/**\n       * Applies the `force` to the `body` from the force origin `position` in world-space, over a single timestep, including applying any resulting angular torque.\n       * \n       * Forces are useful for effects like gravity, wind or rocket thrust, but can be difficult in practice when precise control is needed. In these cases see `Body.setVelocity` and `Body.setPosition` as an alternative.\n       * \n       * The force from this function is only applied once for the duration of a single timestep, in other words the duration depends directly on the current engine update `delta` and the rate of calls to this function.\n       * \n       * Therefore to account for time, you should apply the force constantly over as many engine updates as equivalent to the intended duration.\n       * \n       * If all or part of the force duration is some fraction of a timestep, first multiply the force by `duration / timestep`.\n       * \n       * The force origin `position` in world-space must also be specified. Passing `body.position` will result in zero angular effect as the force origin would be at the centre of mass.\n       * \n       * The `body` will take time to accelerate under a force, the resulting effect depends on duration of the force, the body mass and other forces on the body including friction combined.\n       * @method applyForce\n       * @param {body} body\n       * @param {vector} position The force origin in world-space. Pass `body.position` to avoid angular torque.\n       * @param {vector} force\n       */i.applyForce=function(e,t,n){var i={x:t.x-e.position.x,y:t.y-e.position.y};e.force.x+=n.x;e.force.y+=n.y;e.torque+=i.x*n.y-i.y*n.x};\n/**\n       * Returns the sums of the properties of all compound parts of the parent body.\n       * @method _totalProperties\n       * @private\n       * @param {body} body\n       * @return {}\n       */i._totalProperties=function(e){var t={mass:0,area:0,inertia:0,centre:{x:0,y:0}};for(var n=e.parts.length===1?0:1;n<e.parts.length;n++){var i=e.parts[n],o=i.mass!==Infinity?i.mass:1;t.mass+=o;t.area+=i.area;t.inertia+=i.inertia;t.centre=r.add(t.centre,r.mult(i.position,o))}t.centre=r.div(t.centre,t.mass);return t};\n/**\n      * Fired when a body starts sleeping (where `this` is the body).\n      *\n      * @event sleepStart\n      * @this {body} The body that has started sleeping\n      * @param {} event An event object\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when a body ends sleeping (where `this` is the body).\n      *\n      * @event sleepEnd\n      * @this {body} The body that has ended sleeping\n      * @param {} event An event object\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n       * An integer `Number` uniquely identifying number generated in `Body.create` by `Common.nextId`.\n       *\n       * @property id\n       * @type number\n       */\n/**\n       * _Read only_. Set by `Body.create`.\n       * \n       * A `String` denoting the type of object.\n       *\n       * @readOnly\n       * @property type\n       * @type string\n       * @default \"body\"\n       */\n/**\n       * An arbitrary `String` name to help the user identify and manage bodies.\n       *\n       * @property label\n       * @type string\n       * @default \"Body\"\n       */\n/**\n       * _Read only_. Use `Body.setParts` to set. \n       * \n       * See `Bodies.fromVertices` for a related utility.\n       * \n       * An array of bodies (the 'parts') that make up this body (the 'parent'). The first body in this array must always be a self-reference to this `body`.  \n       * \n       * The parts are fixed together and therefore perform as a single unified rigid body.\n       * \n       * Parts in relation to each other are allowed to overlap, as well as form gaps or holes, so can be used to create complex concave bodies unlike when using a single part. \n       * \n       * Use properties and functions on the parent `body` rather than on parts.\n       *   \n       * Outside of their geometry, most properties on parts are not considered or updated.  \n       * As such 'per-part' material properties among others are not currently considered.\n       * \n       * Parts should be created specifically for their parent body.  \n       * Parts should not be shared or reused between bodies, only one parent is supported.  \n       * Parts should not have their own parts, they are not handled recursively.  \n       * Parts should not be added to the world directly or any other composite.  \n       * Parts own vertices must be convex and in clockwise order.   \n       * \n       * A body with more than one part is sometimes referred to as a 'compound' body. \n       * \n       * Use `Body.setParts` when setting parts to ensure correct updates of all properties.  \n       *\n       * @readOnly\n       * @property parts\n       * @type body[]\n       */\n/**\n       * An object reserved for storing plugin-specific properties.\n       *\n       * @property plugin\n       * @type {}\n       */\n/**\n       * _Read only_. Updated by `Body.setParts`.\n       * \n       * A reference to the body that this is a part of. See `body.parts`.\n       * This is a self reference if the body is not a part of another body.\n       *\n       * @readOnly\n       * @property parent\n       * @type body\n       */\n/**\n       * A `Number` specifying the angle of the body, in radians.\n       *\n       * @property angle\n       * @type number\n       * @default 0\n       */\n/**\n       * _Read only_. Use `Body.setVertices` or `Body.setParts` to set. See also `Bodies.fromVertices`.\n       * \n       * An array of `Vector` objects that specify the convex hull of the rigid body.\n       * These should be provided about the origin `(0, 0)`. E.g.\n       *\n       * `[{ x: 0, y: 0 }, { x: 25, y: 50 }, { x: 50, y: 0 }]`\n       * \n       * Vertices must always be convex, in clockwise order and must not contain any duplicate points.\n       * \n       * Concave vertices should be decomposed into convex `parts`, see `Bodies.fromVertices` and `Body.setParts`.\n       *\n       * When set the vertices are translated such that `body.position` is at the centre of mass.\n       * Many other body properties are automatically calculated from these vertices when set including `density`, `area` and `inertia`.\n       * \n       * The module `Matter.Vertices` contains useful methods for working with vertices.\n       *\n       * @readOnly\n       * @property vertices\n       * @type vector[]\n       */\n/**\n       * _Read only_. Use `Body.setPosition` to set. \n       * \n       * A `Vector` that specifies the current world-space position of the body.\n       * \n       * @readOnly\n       * @property position\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A `Vector` that accumulates the total force applied to the body for a single update.\n       * Force is zeroed after every `Engine.update`, so constant forces should be applied for every update they are needed. See also `Body.applyForce`.\n       * \n       * @property force\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A `Number` that accumulates the total torque (turning force) applied to the body for a single update. See also `Body.applyForce`.\n       * Torque is zeroed after every `Engine.update`, so constant torques should be applied for every update they are needed.\n       *\n       * Torques result in angular acceleration on every update, which depends on body inertia and the engine update delta.\n       * \n       * @property torque\n       * @type number\n       * @default 0\n       */\n/**\n       * _Read only_. Use `Body.setSpeed` to set. \n       * \n       * See `Body.getSpeed` for details.\n       * \n       * Equivalent to the magnitude of `body.velocity` (always positive).\n       * \n       * @readOnly\n       * @property speed\n       * @type number\n       * @default 0\n       */\n/**\n       * _Read only_. Use `Body.setVelocity` to set. \n       * \n       * See `Body.getVelocity` for details.\n       * \n       * Equivalent to the magnitude of `body.angularVelocity` (always positive).\n       * \n       * @readOnly\n       * @property velocity\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * _Read only_. Use `Body.setAngularSpeed` to set. \n       * \n       * See `Body.getAngularSpeed` for details.\n       * \n       * \n       * @readOnly\n       * @property angularSpeed\n       * @type number\n       * @default 0\n       */\n/**\n       * _Read only_. Use `Body.setAngularVelocity` to set. \n       * \n       * See `Body.getAngularVelocity` for details.\n       * \n       *\n       * @readOnly\n       * @property angularVelocity\n       * @type number\n       * @default 0\n       */\n/**\n       * _Read only_. Use `Body.setStatic` to set. \n       * \n       * A flag that indicates whether a body is considered static. A static body can never change position or angle and is completely fixed.\n       *\n       * @readOnly\n       * @property isStatic\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag that indicates whether a body is a sensor. Sensor triggers collision events, but doesn't react with colliding body physically.\n       *\n       * @property isSensor\n       * @type boolean\n       * @default false\n       */\n/**\n       * _Read only_. Use `Sleeping.set` to set. \n       * \n       * A flag that indicates whether the body is considered sleeping. A sleeping body acts similar to a static body, except it is only temporary and can be awoken.\n       *\n       * @readOnly\n       * @property isSleeping\n       * @type boolean\n       * @default false\n       */\n/**\n       * _Read only_. Calculated during engine update only when sleeping is enabled.\n       * \n       * A `Number` that loosely measures the amount of movement a body currently has.\n       *\n       * Derived from `body.speed^2 + body.angularSpeed^2`. See `Sleeping.update`.\n       * \n       * @readOnly\n       * @property motion\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Number` that defines the length of time during which this body must have near-zero velocity before it is set as sleeping by the `Matter.Sleeping` module (if sleeping is enabled by the engine).\n       * \n       * @property sleepThreshold\n       * @type number\n       * @default 60\n       */\n/**\n       * _Read only_. Use `Body.setDensity` to set. \n       * \n       * A `Number` that defines the density of the body (mass per unit area).\n       * \n       * Mass will also be updated when set.\n       *\n       * @readOnly\n       * @property density\n       * @type number\n       * @default 0.001\n       */\n/**\n       * _Read only_. Use `Body.setMass` to set. \n       * \n       * A `Number` that defines the mass of the body.\n       * \n       * Density will also be updated when set.\n       * \n       * @readOnly\n       * @property mass\n       * @type number\n       */\n/**\n       * _Read only_. Use `Body.setMass` to set. \n       * \n       * A `Number` that defines the inverse mass of the body (`1 / mass`).\n       *\n       * @readOnly\n       * @property inverseMass\n       * @type number\n       */\n/**\n       * _Read only_. Automatically calculated when vertices, mass or density are set or set through `Body.setInertia`.\n       * \n       * A `Number` that defines the moment of inertia of the body. This is the second moment of area in two dimensions.\n       * \n       * Can be manually set to `Infinity` to prevent rotation of the body. See `Body.setInertia`.\n       * \n       * @readOnly\n       * @property inertia\n       * @type number\n       */\n/**\n       * _Read only_. Automatically calculated when vertices, mass or density are set or calculated by `Body.setInertia`.\n       * \n       * A `Number` that defines the inverse moment of inertia of the body (`1 / inertia`).\n       * \n       * @readOnly\n       * @property inverseInertia\n       * @type number\n       */\n/**\n       * A `Number` that defines the restitution (elasticity) of the body. The value is always positive and is in the range `(0, 1)`.\n       * A value of `0` means collisions may be perfectly inelastic and no bouncing may occur. \n       * A value of `0.8` means the body may bounce back with approximately 80% of its kinetic energy.\n       * Note that collision response is based on _pairs_ of bodies, and that `restitution` values are _combined_ with the following formula:\n       *\n       * `Math.max(bodyA.restitution, bodyB.restitution)`\n       *\n       * @property restitution\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Number` that defines the friction of the body. The value is always positive and is in the range `(0, 1)`.\n       * A value of `0` means that the body may slide indefinitely.\n       * A value of `1` means the body may come to a stop almost instantly after a force is applied.\n       *\n       * The effects of the value may be non-linear. \n       * High values may be unstable depending on the body.\n       * The engine uses a Coulomb friction model including static and kinetic friction.\n       * Note that collision response is based on _pairs_ of bodies, and that `friction` values are _combined_ with the following formula:\n       *\n       * `Math.min(bodyA.friction, bodyB.friction)`\n       *\n       * @property friction\n       * @type number\n       * @default 0.1\n       */\n/**\n       * A `Number` that defines the static friction of the body (in the Coulomb friction model). \n       * A value of `0` means the body will never 'stick' when it is nearly stationary and only dynamic `friction` is used.\n       * The higher the value (e.g. `10`), the more force it will take to initially get the body moving when nearly stationary.\n       * This value is multiplied with the `friction` property to make it easier to change `friction` and maintain an appropriate amount of static friction.\n       *\n       * @property frictionStatic\n       * @type number\n       * @default 0.5\n       */\n/**\n       * A `Number` that defines the air friction of the body (air resistance). \n       * A value of `0` means the body will never slow as it moves through space.\n       * The higher the value, the faster a body slows when moving through space.\n       * The effects of the value are non-linear. \n       *\n       * @property frictionAir\n       * @type number\n       * @default 0.01\n       */\n/**\n       * An `Object` that specifies the collision filtering properties of this body.\n       *\n       * Collisions between two bodies will obey the following rules:\n       * - If the two bodies have the same non-zero value of `collisionFilter.group`,\n       *   they will always collide if the value is positive, and they will never collide\n       *   if the value is negative.\n       * - If the two bodies have different values of `collisionFilter.group` or if one\n       *   (or both) of the bodies has a value of 0, then the category/mask rules apply as follows:\n       *\n       * Each body belongs to a collision category, given by `collisionFilter.category`. This\n       * value is used as a bit field and the category should have only one bit set, meaning that\n       * the value of this property is a power of two in the range [1, 2^31]. Thus, there are 32\n       * different collision categories available.\n       *\n       * Each body also defines a collision bitmask, given by `collisionFilter.mask` which specifies\n       * the categories it collides with (the value is the bitwise AND value of all these categories).\n       *\n       * Using the category/mask rules, two bodies `A` and `B` collide if each includes the other's\n       * category in its mask, i.e. `(categoryA & maskB) !== 0` and `(categoryB & maskA) !== 0`\n       * are both true.\n       *\n       * @property collisionFilter\n       * @type object\n       */\n/**\n       * An Integer `Number`, that specifies the collision group this body belongs to.\n       * See `body.collisionFilter` for more information.\n       *\n       * @property collisionFilter.group\n       * @type object\n       * @default 0\n       */\n/**\n       * A bit field that specifies the collision category this body belongs to.\n       * The category value should have only one bit set, for example `0x0001`.\n       * This means there are up to 32 unique collision categories available.\n       * See `body.collisionFilter` for more information.\n       *\n       * @property collisionFilter.category\n       * @type object\n       * @default 1\n       */\n/**\n       * A bit mask that specifies the collision categories this body may collide with.\n       * See `body.collisionFilter` for more information.\n       *\n       * @property collisionFilter.mask\n       * @type object\n       * @default -1\n       */\n/**\n       * A `Number` that specifies a thin boundary around the body where it is allowed to slightly sink into other bodies.\n       * \n       * This is required for proper collision response, including friction and restitution effects.\n       * \n       * The default should generally suffice in most cases. You may need to decrease this value for very small bodies that are nearing the default value in scale.\n       *\n       * @property slop\n       * @type number\n       * @default 0.05\n       */\n/**\n       * A `Number` that specifies per-body time scaling.\n       *\n       * @property timeScale\n       * @type number\n       * @default 1\n       */\n/**\n       * _Read only_. Updated during engine update.\n       * \n       * A `Number` that records the last delta time value used to update this body.\n       * Used to calculate speed and velocity.\n       *\n       * @readOnly\n       * @property deltaTime\n       * @type number\n       * @default 1000 / 60\n       */\n/**\n       * An `Object` that defines the rendering properties to be consumed by the module `Matter.Render`.\n       *\n       * @property render\n       * @type object\n       */\n/**\n       * A flag that indicates if the body should be rendered.\n       *\n       * @property render.visible\n       * @type boolean\n       * @default true\n       */\n/**\n       * Sets the opacity to use when rendering.\n       *\n       * @property render.opacity\n       * @type number\n       * @default 1\n      */\n/**\n       * An `Object` that defines the sprite properties to use when rendering, if any.\n       *\n       * @property render.sprite\n       * @type object\n       */\n/**\n       * An `String` that defines the path to the image to use as the sprite texture, if any.\n       *\n       * @property render.sprite.texture\n       * @type string\n       */\n/**\n       * A `Number` that defines the scaling in the x-axis for the sprite, if any.\n       *\n       * @property render.sprite.xScale\n       * @type number\n       * @default 1\n       */\n/**\n       * A `Number` that defines the scaling in the y-axis for the sprite, if any.\n       *\n       * @property render.sprite.yScale\n       * @type number\n       * @default 1\n       */\n/**\n        * A `Number` that defines the offset in the x-axis for the sprite (normalised by texture width).\n        *\n        * @property render.sprite.xOffset\n        * @type number\n        * @default 0\n        */\n/**\n        * A `Number` that defines the offset in the y-axis for the sprite (normalised by texture height).\n        *\n        * @property render.sprite.yOffset\n        * @type number\n        * @default 0\n        */\n/**\n       * A `Number` that defines the line width to use when rendering the body outline (if a sprite is not defined).\n       * A value of `0` means no outline will be rendered.\n       *\n       * @property render.lineWidth\n       * @type number\n       * @default 0\n       */\n/**\n       * A `String` that defines the fill style to use when rendering the body (if a sprite is not defined).\n       * It is the same as when using a canvas, so it accepts CSS style property values.\n       *\n       * @property render.fillStyle\n       * @type string\n       * @default a random colour\n       */\n/**\n       * A `String` that defines the stroke style to use when rendering the body outline (if a sprite is not defined).\n       * It is the same as when using a canvas, so it accepts CSS style property values.\n       *\n       * @property render.strokeStyle\n       * @type string\n       * @default a random colour\n       */\n/**\n       * _Read only_. Calculated automatically when vertices are set.\n       * \n       * An array of unique axis vectors (edge normals) used for collision detection.\n       * These are automatically calculated when vertices are set.\n       * They are constantly updated by `Body.update` during the simulation.\n       *\n       * @readOnly\n       * @property axes\n       * @type vector[]\n       */\n/**\n       * _Read only_. Calculated automatically when vertices are set.\n       * \n       * A `Number` that measures the area of the body's convex hull.\n       * \n       * @readOnly\n       * @property area\n       * @type string\n       * @default \n       */\n/**\n       * A `Bounds` object that defines the AABB region for the body.\n       * It is automatically calculated when vertices are set and constantly updated by `Body.update` during simulation.\n       * \n       * @property bounds\n       * @type bounds\n       */\n/**\n       * Temporarily may hold parameters to be passed to `Vertices.chamfer` where supported by external functions.\n       * \n       * See `Vertices.chamfer` for possible parameters this object may hold.\n       * \n       * Currently only functions inside `Matter.Bodies` provide a utility using this property as a vertices pre-processing option.\n       * \n       * Alternatively consider using `Vertices.chamfer` directly on vertices before passing them to a body creation function.\n       * \n       * @property chamfer\n       * @type object|null|undefined\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){\n/**\n       * Subscribes a callback function to the given object's `eventName`.\n       * @method on\n       * @param {} object\n       * @param {string} eventNames\n       * @param {function} callback\n       */\ni.on=function(e,t,n){var i,o=t.split(\" \");for(var r=0;r<o.length;r++){i=o[r];e.events=e.events||{};e.events[i]=e.events[i]||[];e.events[i].push(n)}return n};\n/**\n       * Removes the given event callback. If no callback, clears all callbacks in `eventNames`. If no `eventNames`, clears all events.\n       * @method off\n       * @param {} object\n       * @param {string} eventNames\n       * @param {function} callback\n       */i.off=function(e,t,n){if(t){if(typeof t===\"function\"){n=t;t=o.keys(e.events).join(\" \")}var i=t.split(\" \");for(var r=0;r<i.length;r++){var a=e.events[i[r]],s=[];if(n&&a)for(var l=0;l<a.length;l++)a[l]!==n&&s.push(a[l]);e.events[i[r]]=s}}else e.events={}};\n/**\n       * Fires all the callbacks subscribed to the given object's `eventName`, in the order they subscribed, if any.\n       * @method trigger\n       * @param {} object\n       * @param {string} eventNames\n       * @param {} event\n       */i.trigger=function(e,t,n){var i,r,a,s;var l=e.events;if(l&&o.keys(l).length>0){n||(n={});i=t.split(\" \");for(var c=0;c<i.length;c++){r=i[c];a=l[r];if(a){s=o.clone(n,false);s.name=r;s.source=e;for(var u=0;u<a.length;u++)a[u].apply(e,[s])}}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(5);var r=n(0);var a=n(1);var s=n(4);(function(){\n/**\n       * Creates a new composite. The options parameter is an object that specifies any properties you wish to override the defaults.\n       * See the properites section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {} [options]\n       * @return {composite} A new composite\n       */\ni.create=function(e){return r.extend({id:r.nextId(),type:\"composite\",parent:null,isModified:false,bodies:[],constraints:[],composites:[],label:\"Composite\",plugin:{},cache:{allBodies:null,allConstraints:null,allComposites:null}},e)};\n/**\n       * Sets the composite's `isModified` flag. \n       * If `updateParents` is true, all parents will be set (default: false).\n       * If `updateChildren` is true, all children will be set (default: false).\n       * @private\n       * @method setModified\n       * @param {composite} composite\n       * @param {boolean} isModified\n       * @param {boolean} [updateParents=false]\n       * @param {boolean} [updateChildren=false]\n       */i.setModified=function(e,t,n,o){e.isModified=t;if(t&&e.cache){e.cache.allBodies=null;e.cache.allConstraints=null;e.cache.allComposites=null}n&&e.parent&&i.setModified(e.parent,t,n,o);if(o)for(var r=0;r<e.composites.length;r++){var a=e.composites[r];i.setModified(a,t,n,o)}};\n/**\n       * Generic single or multi-add function. Adds a single or an array of body(s), constraint(s) or composite(s) to the given composite.\n       * Triggers `beforeAdd` and `afterAdd` events on the `composite`.\n       * @method add\n       * @param {composite} composite\n       * @param {object|array} object A single or an array of body(s), constraint(s) or composite(s)\n       * @return {composite} The original composite with the objects added\n       */i.add=function(e,t){var n=[].concat(t);o.trigger(e,\"beforeAdd\",{object:t});for(var a=0;a<n.length;a++){var s=n[a];switch(s.type){case\"body\":if(s.parent!==s){r.warn(\"Composite.add: skipped adding a compound body part (you must add its parent instead)\");break}i.addBody(e,s);break;case\"constraint\":i.addConstraint(e,s);break;case\"composite\":i.addComposite(e,s);break;case\"mouseConstraint\":i.addConstraint(e,s.constraint);break}}o.trigger(e,\"afterAdd\",{object:t});return e};\n/**\n       * Generic remove function. Removes one or many body(s), constraint(s) or a composite(s) to the given composite.\n       * Optionally searching its children recursively.\n       * Triggers `beforeRemove` and `afterRemove` events on the `composite`.\n       * @method remove\n       * @param {composite} composite\n       * @param {object|array} object\n       * @param {boolean} [deep=false]\n       * @return {composite} The original composite with the objects removed\n       */i.remove=function(e,t,n){var r=[].concat(t);o.trigger(e,\"beforeRemove\",{object:t});for(var a=0;a<r.length;a++){var s=r[a];switch(s.type){case\"body\":i.removeBody(e,s,n);break;case\"constraint\":i.removeConstraint(e,s,n);break;case\"composite\":i.removeComposite(e,s,n);break;case\"mouseConstraint\":i.removeConstraint(e,s.constraint);break}}o.trigger(e,\"afterRemove\",{object:t});return e};\n/**\n       * Adds a composite to the given composite.\n       * @private\n       * @method addComposite\n       * @param {composite} compositeA\n       * @param {composite} compositeB\n       * @return {composite} The original compositeA with the objects from compositeB added\n       */i.addComposite=function(e,t){e.composites.push(t);t.parent=e;i.setModified(e,true,true,false);return e};\n/**\n       * Removes a composite from the given composite, and optionally searching its children recursively.\n       * @private\n       * @method removeComposite\n       * @param {composite} compositeA\n       * @param {composite} compositeB\n       * @param {boolean} [deep=false]\n       * @return {composite} The original compositeA with the composite removed\n       */i.removeComposite=function(e,t,n){var o=r.indexOf(e.composites,t);if(o!==-1){var a=i.allBodies(t);i.removeCompositeAt(e,o);for(var s=0;s<a.length;s++)a[s].sleepCounter=0}if(n)for(s=0;s<e.composites.length;s++)i.removeComposite(e.composites[s],t,true);return e};\n/**\n       * Removes a composite from the given composite.\n       * @private\n       * @method removeCompositeAt\n       * @param {composite} composite\n       * @param {number} position\n       * @return {composite} The original composite with the composite removed\n       */i.removeCompositeAt=function(e,t){e.composites.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n       * Adds a body to the given composite.\n       * @private\n       * @method addBody\n       * @param {composite} composite\n       * @param {body} body\n       * @return {composite} The original composite with the body added\n       */i.addBody=function(e,t){e.bodies.push(t);i.setModified(e,true,true,false);return e};\n/**\n       * Removes a body from the given composite, and optionally searching its children recursively.\n       * @private\n       * @method removeBody\n       * @param {composite} composite\n       * @param {body} body\n       * @param {boolean} [deep=false]\n       * @return {composite} The original composite with the body removed\n       */i.removeBody=function(e,t,n){var o=r.indexOf(e.bodies,t);if(o!==-1){i.removeBodyAt(e,o);t.sleepCounter=0}if(n)for(var a=0;a<e.composites.length;a++)i.removeBody(e.composites[a],t,true);return e};\n/**\n       * Removes a body from the given composite.\n       * @private\n       * @method removeBodyAt\n       * @param {composite} composite\n       * @param {number} position\n       * @return {composite} The original composite with the body removed\n       */i.removeBodyAt=function(e,t){e.bodies.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n       * Adds a constraint to the given composite.\n       * @private\n       * @method addConstraint\n       * @param {composite} composite\n       * @param {constraint} constraint\n       * @return {composite} The original composite with the constraint added\n       */i.addConstraint=function(e,t){e.constraints.push(t);i.setModified(e,true,true,false);return e};\n/**\n       * Removes a constraint from the given composite, and optionally searching its children recursively.\n       * @private\n       * @method removeConstraint\n       * @param {composite} composite\n       * @param {constraint} constraint\n       * @param {boolean} [deep=false]\n       * @return {composite} The original composite with the constraint removed\n       */i.removeConstraint=function(e,t,n){var o=r.indexOf(e.constraints,t);o!==-1&&i.removeConstraintAt(e,o);if(n)for(var a=0;a<e.composites.length;a++)i.removeConstraint(e.composites[a],t,true);return e};\n/**\n       * Removes a body from the given composite.\n       * @private\n       * @method removeConstraintAt\n       * @param {composite} composite\n       * @param {number} position\n       * @return {composite} The original composite with the constraint removed\n       */i.removeConstraintAt=function(e,t){e.constraints.splice(t,1);i.setModified(e,true,true,false);return e};\n/**\n       * Removes all bodies, constraints and composites from the given composite.\n       * Optionally clearing its children recursively.\n       * @method clear\n       * @param {composite} composite\n       * @param {boolean} keepStatic\n       * @param {boolean} [deep=false]\n       */i.clear=function(e,t,n){if(n)for(var o=0;o<e.composites.length;o++)i.clear(e.composites[o],t,true);t?e.bodies=e.bodies.filter((function(e){return e.isStatic})):e.bodies.length=0;e.constraints.length=0;e.composites.length=0;i.setModified(e,true,true,false);return e};\n/**\n       * Returns all bodies in the given composite, including all bodies in its children, recursively.\n       * @method allBodies\n       * @param {composite} composite\n       * @return {body[]} All the bodies\n       */i.allBodies=function(e){if(e.cache&&e.cache.allBodies)return e.cache.allBodies;var t=[].concat(e.bodies);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allBodies(e.composites[n]));e.cache&&(e.cache.allBodies=t);return t};\n/**\n       * Returns all constraints in the given composite, including all constraints in its children, recursively.\n       * @method allConstraints\n       * @param {composite} composite\n       * @return {constraint[]} All the constraints\n       */i.allConstraints=function(e){if(e.cache&&e.cache.allConstraints)return e.cache.allConstraints;var t=[].concat(e.constraints);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allConstraints(e.composites[n]));e.cache&&(e.cache.allConstraints=t);return t};\n/**\n       * Returns all composites in the given composite, including all composites in its children, recursively.\n       * @method allComposites\n       * @param {composite} composite\n       * @return {composite[]} All the composites\n       */i.allComposites=function(e){if(e.cache&&e.cache.allComposites)return e.cache.allComposites;var t=[].concat(e.composites);for(var n=0;n<e.composites.length;n++)t=t.concat(i.allComposites(e.composites[n]));e.cache&&(e.cache.allComposites=t);return t};\n/**\n       * Searches the composite recursively for an object matching the type and id supplied, null if not found.\n       * @method get\n       * @param {composite} composite\n       * @param {number} id\n       * @param {string} type\n       * @return {object} The requested object, if found\n       */i.get=function(e,t,n){var o,r;switch(n){case\"body\":o=i.allBodies(e);break;case\"constraint\":o=i.allConstraints(e);break;case\"composite\":o=i.allComposites(e).concat(e);break}if(!o)return null;r=o.filter((function(e){return e.id.toString()===t.toString()}));return r.length===0?null:r[0]};\n/**\n       * Moves the given object(s) from compositeA to compositeB (equal to a remove followed by an add).\n       * @method move\n       * @param {compositeA} compositeA\n       * @param {object[]} objects\n       * @param {compositeB} compositeB\n       * @return {composite} Returns compositeA\n       */i.move=function(e,t,n){i.remove(e,t);i.add(n,t);return e};\n/**\n       * Assigns new ids for all objects in the composite, recursively.\n       * @method rebase\n       * @param {composite} composite\n       * @return {composite} Returns composite\n       */i.rebase=function(e){var t=i.allBodies(e).concat(i.allConstraints(e)).concat(i.allComposites(e));for(var n=0;n<t.length;n++)t[n].id=r.nextId();return e};\n/**\n       * Translates all children in the composite by a given vector relative to their current positions, \n       * without imparting any velocity.\n       * @method translate\n       * @param {composite} composite\n       * @param {vector} translation\n       * @param {bool} [recursive=true]\n       */i.translate=function(e,t,n){var o=n?i.allBodies(e):e.bodies;for(var r=0;r<o.length;r++)s.translate(o[r],t);return e};\n/**\n       * Rotates all children in the composite by a given angle about the given point, without imparting any angular velocity.\n       * @method rotate\n       * @param {composite} composite\n       * @param {number} rotation\n       * @param {vector} point\n       * @param {bool} [recursive=true]\n       */i.rotate=function(e,t,n,o){var r=Math.cos(t),a=Math.sin(t),l=o?i.allBodies(e):e.bodies;for(var c=0;c<l.length;c++){var u=l[c],f=u.position.x-n.x,p=u.position.y-n.y;s.setPosition(u,{x:n.x+(f*r-p*a),y:n.y+(f*a+p*r)});s.rotate(u,t)}return e};\n/**\n       * Scales all children in the composite, including updating physical properties (mass, area, axes, inertia), from a world-space point.\n       * @method scale\n       * @param {composite} composite\n       * @param {number} scaleX\n       * @param {number} scaleY\n       * @param {vector} point\n       * @param {bool} [recursive=true]\n       */i.scale=function(e,t,n,o,r){var a=r?i.allBodies(e):e.bodies;for(var l=0;l<a.length;l++){var c=a[l],u=c.position.x-o.x,f=c.position.y-o.y;s.setPosition(c,{x:o.x+u*t,y:o.y+f*n});s.scale(c,t,n)}return e};\n/**\n       * Returns the union of the bounds of all of the composite's bodies.\n       * @method bounds\n       * @param {composite} composite The composite.\n       * @returns {bounds} The composite bounds.\n       */i.bounds=function(e){var t=i.allBodies(e),n=[];for(var o=0;o<t.length;o+=1){var r=t[o];n.push(r.bounds.min,r.bounds.max)}return a.create(n)};\n/**\n      * Fired when a call to `Composite.add` is made, before objects have been added.\n      *\n      * @event beforeAdd\n      * @param {} event An event object\n      * @param {} event.object The object(s) to be added (may be a single body, constraint, composite or a mixed array of these)\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when a call to `Composite.add` is made, after objects have been added.\n      *\n      * @event afterAdd\n      * @param {} event An event object\n      * @param {} event.object The object(s) that have been added (may be a single body, constraint, composite or a mixed array of these)\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when a call to `Composite.remove` is made, before objects have been removed.\n      *\n      * @event beforeRemove\n      * @param {} event An event object\n      * @param {} event.object The object(s) to be removed (may be a single body, constraint, composite or a mixed array of these)\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when a call to `Composite.remove` is made, after objects have been removed.\n      *\n      * @event afterRemove\n      * @param {} event An event object\n      * @param {} event.object The object(s) that have been removed (may be a single body, constraint, composite or a mixed array of these)\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n       * An integer `Number` uniquely identifying number generated in `Composite.create` by `Common.nextId`.\n       *\n       * @property id\n       * @type number\n       */\n/**\n       * A `String` denoting the type of object.\n       *\n       * @property type\n       * @type string\n       * @default \"composite\"\n       * @readOnly\n       */\n/**\n       * An arbitrary `String` name to help the user identify and manage composites.\n       *\n       * @property label\n       * @type string\n       * @default \"Composite\"\n       */\n/**\n       * A flag that specifies whether the composite has been modified during the current step.\n       * This is automatically managed when bodies, constraints or composites are added or removed.\n       *\n       * @property isModified\n       * @type boolean\n       * @default false\n       */\n/**\n       * The `Composite` that is the parent of this composite. It is automatically managed by the `Matter.Composite` methods.\n       *\n       * @property parent\n       * @type composite\n       * @default null\n       */\n/**\n       * An array of `Body` that are _direct_ children of this composite.\n       * To add or remove bodies you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n       * If you wish to recursively find all descendants, you should use the `Composite.allBodies` method.\n       *\n       * @property bodies\n       * @type body[]\n       * @default []\n       */\n/**\n       * An array of `Constraint` that are _direct_ children of this composite.\n       * To add or remove constraints you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n       * If you wish to recursively find all descendants, you should use the `Composite.allConstraints` method.\n       *\n       * @property constraints\n       * @type constraint[]\n       * @default []\n       */\n/**\n       * An array of `Composite` that are _direct_ children of this composite.\n       * To add or remove composites you should use `Composite.add` and `Composite.remove` methods rather than directly modifying this property.\n       * If you wish to recursively find all descendants, you should use the `Composite.allComposites` method.\n       *\n       * @property composites\n       * @type composite[]\n       * @default []\n       */\n/**\n       * An object reserved for storing plugin-specific properties.\n       *\n       * @property plugin\n       * @type {}\n       */\n/**\n       * An object used for storing cached results for performance reasons.\n       * This is used internally only and is automatically managed.\n       *\n       * @private\n       * @property cache\n       * @type {}\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(4);var r=n(5);var a=n(0);(function(){i._motionWakeThreshold=.18;i._motionSleepThreshold=.08;i._minBias=.9;\n/**\n       * Puts bodies to sleep or wakes them up depending on their motion.\n       * @method update\n       * @param {body[]} bodies\n       * @param {number} delta\n       */i.update=function(e,t){var n=t/a._baseDelta,r=i._motionSleepThreshold;for(var s=0;s<e.length;s++){var l=e[s],c=o.getSpeed(l),u=o.getAngularSpeed(l),f=c*c+u*u;if(l.force.x===0&&l.force.y===0){var p=Math.min(l.motion,f),d=Math.max(l.motion,f);l.motion=i._minBias*p+(1-i._minBias)*d;if(l.sleepThreshold>0&&l.motion<r){l.sleepCounter+=1;l.sleepCounter>=l.sleepThreshold/n&&i.set(l,true)}else l.sleepCounter>0&&(l.sleepCounter-=1)}else i.set(l,false)}};\n/**\n       * Given a set of colliding pairs, wakes the sleeping bodies involved.\n       * @method afterCollisions\n       * @param {pair[]} pairs\n       */i.afterCollisions=function(e){var t=i._motionSleepThreshold;for(var n=0;n<e.length;n++){var o=e[n];if(o.isActive){var r=o.collision,a=r.bodyA.parent,s=r.bodyB.parent;if(!(a.isSleeping&&s.isSleeping||a.isStatic||s.isStatic)&&(a.isSleeping||s.isSleeping)){var l=a.isSleeping&&!a.isStatic?a:s,c=l===a?s:a;!l.isStatic&&c.motion>t&&i.set(l,false)}}}};\n/**\n       * Set a body as sleeping or awake.\n       * @method set\n       * @param {body} body\n       * @param {boolean} isSleeping\n       */i.set=function(e,t){var n=e.isSleeping;if(t){e.isSleeping=true;e.sleepCounter=e.sleepThreshold;e.positionImpulse.x=0;e.positionImpulse.y=0;e.positionPrev.x=e.position.x;e.positionPrev.y=e.position.y;e.anglePrev=e.angle;e.speed=0;e.angularSpeed=0;e.motion=0;n||r.trigger(e,\"sleepStart\")}else{e.isSleeping=false;e.sleepCounter=0;n&&r.trigger(e,\"sleepEnd\")}}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(9);(function(){var e=[];var t={overlap:0,axis:null};var n={overlap:0,axis:null};\n/**\n       * Creates a new collision record.\n       * @method create\n       * @param {body} bodyA The first body part represented by the collision record\n       * @param {body} bodyB The second body part represented by the collision record\n       * @return {collision} A new collision record\n       */i.create=function(e,t){return{pair:null,collided:false,bodyA:e,bodyB:t,parentA:e.parent,parentB:t.parent,depth:0,normal:{x:0,y:0},tangent:{x:0,y:0},penetration:{x:0,y:0},supports:[null,null],supportCount:0}};\n/**\n       * Detect collision between two bodies.\n       * @method collides\n       * @param {body} bodyA\n       * @param {body} bodyB\n       * @param {pairs} [pairs] Optionally reuse collision records from existing pairs.\n       * @return {collision|null} A collision record if detected, otherwise null\n       */i.collides=function(e,a,s){i._overlapAxes(t,e.vertices,a.vertices,e.axes);if(t.overlap<=0)return null;i._overlapAxes(n,a.vertices,e.vertices,a.axes);if(n.overlap<=0)return null;var l,c=s&&s.table[r.id(e,a)];if(c)l=c.collision;else{l=i.create(e,a);l.collided=true;l.bodyA=e.id<a.id?e:a;l.bodyB=e.id<a.id?a:e;l.parentA=l.bodyA.parent;l.parentB=l.bodyB.parent}e=l.bodyA;a=l.bodyB;var u;u=t.overlap<n.overlap?t:n;var f=l.normal,p=l.tangent,d=l.penetration,v=l.supports,y=u.overlap,m=u.axis,g=m.x,x=m.y,h=a.position.x-e.position.x,b=a.position.y-e.position.y;if(g*h+x*b>=0){g=-g;x=-x}f.x=g;f.y=x;p.x=-x;p.y=g;d.x=g*y;d.y=x*y;l.depth=y;var S=i._findSupports(e,a,f,1),w=0;o.contains(e.vertices,S[0])&&(v[w++]=S[0]);o.contains(e.vertices,S[1])&&(v[w++]=S[1]);if(w<2){var _=i._findSupports(a,e,f,-1);o.contains(a.vertices,_[0])&&(v[w++]=_[0]);w<2&&o.contains(a.vertices,_[1])&&(v[w++]=_[1])}w===0&&(v[w++]=S[0]);l.supportCount=w;return l};\n/**\n       * Find the overlap between two sets of vertices.\n       * @method _overlapAxes\n       * @private\n       * @param {object} result\n       * @param {vertices} verticesA\n       * @param {vertices} verticesB\n       * @param {axes} axes\n       */i._overlapAxes=function(e,t,n,i){var o,r,a,s,l,c,u=t.length,f=n.length,p=t[0].x,d=t[0].y,v=n[0].x,y=n[0].y,m=i.length,g=Number.MAX_VALUE,x=0;for(l=0;l<m;l++){var h=i[l],b=h.x,S=h.y,w=p*b+d*S,_=v*b+y*S,A=w,P=_;for(c=1;c<u;c+=1){s=t[c].x*b+t[c].y*S;s>A?A=s:s<w&&(w=s)}for(c=1;c<f;c+=1){s=n[c].x*b+n[c].y*S;s>P?P=s:s<_&&(_=s)}r=A-_;a=P-w;o=r<a?r:a;if(o<g){g=o;x=l;if(o<=0)break}}e.axis=i[x];e.overlap=g};\n/**\n       * Finds supporting vertices given two bodies along a given direction using hill-climbing.\n       * @method _findSupports\n       * @private\n       * @param {body} bodyA\n       * @param {body} bodyB\n       * @param {vector} normal\n       * @param {number} direction\n       * @return [vector]\n       */i._findSupports=function(t,n,i,o){var r,a,s,l=n.vertices,c=l.length,u=t.position.x,f=t.position.y,p=i.x*o,d=i.y*o,v=l[0],y=v,m=p*(u-y.x)+d*(f-y.y);for(s=1;s<c;s+=1){y=l[s];a=p*(u-y.x)+d*(f-y.y);if(a<m){m=a;v=y}}r=l[(c+v.index-1)%c];m=p*(u-r.x)+d*(f-r.y);y=l[(v.index+1)%c];if(p*(u-y.x)+d*(f-y.y)<m){e[0]=v;e[1]=y;return e}e[0]=v;e[1]=r;return e};\n/**\n       * A reference to the pair using this collision record, if there is one.\n       *\n       * @property pair\n       * @type {pair|null}\n       * @default null\n       */\n/**\n       * A flag that indicates if the bodies were colliding when the collision was last updated.\n       * \n       * @property collided\n       * @type boolean\n       * @default false\n       */\n/**\n       * The first body part represented by the collision (see also `collision.parentA`).\n       * \n       * @property bodyA\n       * @type body\n       */\n/**\n       * The second body part represented by the collision (see also `collision.parentB`).\n       * \n       * @property bodyB\n       * @type body\n       */\n/**\n       * The first body represented by the collision (i.e. `collision.bodyA.parent`).\n       * \n       * @property parentA\n       * @type body\n       */\n/**\n       * The second body represented by the collision (i.e. `collision.bodyB.parent`).\n       * \n       * @property parentB\n       * @type body\n       */\n/**\n       * A `Number` that represents the minimum separating distance between the bodies along the collision normal.\n       *\n       * @readOnly\n       * @property depth\n       * @type number\n       * @default 0\n       */\n/**\n       * A normalised `Vector` that represents the direction between the bodies that provides the minimum separating distance.\n       *\n       * @property normal\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A normalised `Vector` that is the tangent direction to the collision normal.\n       *\n       * @property tangent\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A `Vector` that represents the direction and depth of the collision.\n       *\n       * @property penetration\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * An array of body vertices that represent the support points in the collision.\n       * \n       * _Note:_ Only the first `collision.supportCount` items of `collision.supports` are active.\n       * Therefore use `collision.supportCount` instead of `collision.supports.length` when iterating the active supports.\n       * \n       * These are the deepest vertices (along the collision normal) of each body that are contained by the other body's vertices.\n       *\n       * @property supports\n       * @type vector[]\n       * @default []\n       */\n/**\n       * The number of active supports for this collision found in `collision.supports`.\n       * \n       * _Note:_ Only the first `collision.supportCount` items of `collision.supports` are active.\n       * Therefore use `collision.supportCount` instead of `collision.supports.length` when iterating the active supports.\n       *\n       * @property supportCount\n       * @type number\n       * @default 0\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(16);(function(){\n/**\n       * Creates a pair.\n       * @method create\n       * @param {collision} collision\n       * @param {number} timestamp\n       * @return {pair} A new pair\n       */\ni.create=function(e,t){var n=e.bodyA,r=e.bodyB;var a={id:i.id(n,r),bodyA:n,bodyB:r,collision:e,contacts:[o.create(),o.create()],contactCount:0,separation:0,isActive:true,isSensor:n.isSensor||r.isSensor,timeCreated:t,timeUpdated:t,inverseMass:0,friction:0,frictionStatic:0,restitution:0,slop:0};i.update(a,e,t);return a};\n/**\n       * Updates a pair given a collision.\n       * @method update\n       * @param {pair} pair\n       * @param {collision} collision\n       * @param {number} timestamp\n       */i.update=function(e,t,n){var i=t.supports,o=t.supportCount,r=e.contacts,a=t.parentA,s=t.parentB;e.isActive=true;e.timeUpdated=n;e.collision=t;e.separation=t.depth;e.inverseMass=a.inverseMass+s.inverseMass;e.friction=a.friction<s.friction?a.friction:s.friction;e.frictionStatic=a.frictionStatic>s.frictionStatic?a.frictionStatic:s.frictionStatic;e.restitution=a.restitution>s.restitution?a.restitution:s.restitution;e.slop=a.slop>s.slop?a.slop:s.slop;e.contactCount=o;t.pair=e;var l=i[0],c=r[0],u=i[1],f=r[1];if(f.vertex===l||c.vertex===u){r[1]=c;r[0]=c=f;f=r[1]}c.vertex=l;f.vertex=u};\n/**\n       * Set a pair as active or inactive.\n       * @method setActive\n       * @param {pair} pair\n       * @param {bool} isActive\n       * @param {number} timestamp\n       */i.setActive=function(e,t,n){if(t){e.isActive=true;e.timeUpdated=n}else{e.isActive=false;e.contactCount=0}};\n/**\n       * Get the id for the given pair.\n       * @method id\n       * @param {body} bodyA\n       * @param {body} bodyB\n       * @return {string} Unique pairId\n       */i.id=function(e,t){return e.id<t.id?e.id.toString(36)+\":\"+t.id.toString(36):t.id.toString(36)+\":\"+e.id.toString(36)}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(2);var a=n(7);var s=n(1);var l=n(11);var c=n(0);(function(){i._warming=.4;i._torqueDampen=1;i._minLength=1e-6;\n/**\n       * Creates a new constraint.\n       * All properties have default values, and many are pre-calculated automatically based on other properties.\n       * To simulate a revolute constraint (or pin joint) set `length: 0` and a high `stiffness` value (e.g. `0.7` or above).\n       * If the constraint is unstable, try lowering the `stiffness` value and / or increasing `engine.constraintIterations`.\n       * For compound bodies, constraints must be applied to the parent body (not one of its parts).\n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {} options\n       * @return {constraint} constraint\n       */i.create=function(e){var t=e;t.bodyA&&!t.pointA&&(t.pointA={x:0,y:0});t.bodyB&&!t.pointB&&(t.pointB={x:0,y:0});var n=t.bodyA?r.add(t.bodyA.position,t.pointA):t.pointA,i=t.bodyB?r.add(t.bodyB.position,t.pointB):t.pointB,o=r.magnitude(r.sub(n,i));t.length=typeof t.length!==\"undefined\"?t.length:o;t.id=t.id||c.nextId();t.label=t.label||\"Constraint\";t.type=\"constraint\";t.stiffness=t.stiffness||(t.length>0?1:.7);t.damping=t.damping||0;t.angularStiffness=t.angularStiffness||0;t.angleA=t.bodyA?t.bodyA.angle:t.angleA;t.angleB=t.bodyB?t.bodyB.angle:t.angleB;t.plugin={};var a={visible:true,lineWidth:2,strokeStyle:\"#ffffff\",type:\"line\",anchors:true};if(t.length===0&&t.stiffness>.1){a.type=\"pin\";a.anchors=false}else t.stiffness<.9&&(a.type=\"spring\");t.render=c.extend(a,t.render);return t};\n/**\n       * Prepares for solving by constraint warming.\n       * @private\n       * @method preSolveAll\n       * @param {body[]} bodies\n       */i.preSolveAll=function(e){for(var t=0;t<e.length;t+=1){var n=e[t],i=n.constraintImpulse;if(!(n.isStatic||i.x===0&&i.y===0&&i.angle===0)){n.position.x+=i.x;n.position.y+=i.y;n.angle+=i.angle}}};\n/**\n       * Solves all constraints in a list of collisions.\n       * @private\n       * @method solveAll\n       * @param {constraint[]} constraints\n       * @param {number} delta\n       */i.solveAll=function(e,t){var n=c.clamp(t/c._baseDelta,0,1);for(var o=0;o<e.length;o+=1){var r=e[o],a=!r.bodyA||r.bodyA&&r.bodyA.isStatic,s=!r.bodyB||r.bodyB&&r.bodyB.isStatic;(a||s)&&i.solve(e[o],n)}for(o=0;o<e.length;o+=1){r=e[o];a=!r.bodyA||r.bodyA&&r.bodyA.isStatic;s=!r.bodyB||r.bodyB&&r.bodyB.isStatic;a||s||i.solve(e[o],n)}};\n/**\n       * Solves a distance constraint with Gauss-Siedel method.\n       * @private\n       * @method solve\n       * @param {constraint} constraint\n       * @param {number} timeScale\n       */i.solve=function(e,t){var n=e.bodyA,o=e.bodyB,a=e.pointA,s=e.pointB;if(n||o){if(n&&!n.isStatic){r.rotate(a,n.angle-e.angleA,a);e.angleA=n.angle}if(o&&!o.isStatic){r.rotate(s,o.angle-e.angleB,s);e.angleB=o.angle}var l=a,c=s;n&&(l=r.add(n.position,a));o&&(c=r.add(o.position,s));if(l&&c){var u=r.sub(l,c),f=r.magnitude(u);f<i._minLength&&(f=i._minLength);var p,d,v,y,m,g=(f-e.length)/f,x=e.stiffness>=1||e.length===0,h=x?e.stiffness*t:e.stiffness*t*t,b=e.damping*t,S=r.mult(u,g*h),w=(n?n.inverseMass:0)+(o?o.inverseMass:0),_=(n?n.inverseInertia:0)+(o?o.inverseInertia:0),A=w+_;if(b>0){var P=r.create();v=r.div(u,f);m=r.sub(o&&r.sub(o.position,o.positionPrev)||P,n&&r.sub(n.position,n.positionPrev)||P);y=r.dot(v,m)}if(n&&!n.isStatic){d=n.inverseMass/w;n.constraintImpulse.x-=S.x*d;n.constraintImpulse.y-=S.y*d;n.position.x-=S.x*d;n.position.y-=S.y*d;if(b>0){n.positionPrev.x-=b*v.x*y*d;n.positionPrev.y-=b*v.y*y*d}p=r.cross(a,S)/A*i._torqueDampen*n.inverseInertia*(1-e.angularStiffness);n.constraintImpulse.angle-=p;n.angle-=p}if(o&&!o.isStatic){d=o.inverseMass/w;o.constraintImpulse.x+=S.x*d;o.constraintImpulse.y+=S.y*d;o.position.x+=S.x*d;o.position.y+=S.y*d;if(b>0){o.positionPrev.x+=b*v.x*y*d;o.positionPrev.y+=b*v.y*y*d}p=r.cross(s,S)/A*i._torqueDampen*o.inverseInertia*(1-e.angularStiffness);o.constraintImpulse.angle+=p;o.angle+=p}}}};\n/**\n       * Performs body updates required after solving constraints.\n       * @private\n       * @method postSolveAll\n       * @param {body[]} bodies\n       */i.postSolveAll=function(e){for(var t=0;t<e.length;t++){var n=e[t],c=n.constraintImpulse;if(!(n.isStatic||c.x===0&&c.y===0&&c.angle===0)){a.set(n,false);for(var u=0;u<n.parts.length;u++){var f=n.parts[u];o.translate(f.vertices,c);if(u>0){f.position.x+=c.x;f.position.y+=c.y}if(c.angle!==0){o.rotate(f.vertices,c.angle,n.position);l.rotate(f.axes,c.angle);u>0&&r.rotateAbout(f.position,c.angle,n.position,f.position)}s.update(f.bounds,f.vertices,n.velocity)}c.angle*=i._warming;c.x*=i._warming;c.y*=i._warming}}};\n/**\n       * Returns the world-space position of `constraint.pointA`, accounting for `constraint.bodyA`.\n       * @method pointAWorld\n       * @param {constraint} constraint\n       * @returns {vector} the world-space position\n       */i.pointAWorld=function(e){return{x:(e.bodyA?e.bodyA.position.x:0)+(e.pointA?e.pointA.x:0),y:(e.bodyA?e.bodyA.position.y:0)+(e.pointA?e.pointA.y:0)}};\n/**\n       * Returns the world-space position of `constraint.pointB`, accounting for `constraint.bodyB`.\n       * @method pointBWorld\n       * @param {constraint} constraint\n       * @returns {vector} the world-space position\n       */i.pointBWorld=function(e){return{x:(e.bodyB?e.bodyB.position.x:0)+(e.pointB?e.pointB.x:0),y:(e.bodyB?e.bodyB.position.y:0)+(e.pointB?e.pointB.y:0)}};\n/**\n       * Returns the current length of the constraint. \n       * This is the distance between both of the constraint's end points.\n       * See `constraint.length` for the target rest length.\n       * @method currentLength\n       * @param {constraint} constraint\n       * @returns {number} the current length\n       */i.currentLength=function(e){var t=(e.bodyA?e.bodyA.position.x:0)+(e.pointA?e.pointA.x:0);var n=(e.bodyA?e.bodyA.position.y:0)+(e.pointA?e.pointA.y:0);var i=(e.bodyB?e.bodyB.position.x:0)+(e.pointB?e.pointB.x:0);var o=(e.bodyB?e.bodyB.position.y:0)+(e.pointB?e.pointB.y:0);var r=t-i;var a=n-o;return Math.sqrt(r*r+a*a)};\n/**\n       * An integer `Number` uniquely identifying number generated in `Composite.create` by `Common.nextId`.\n       *\n       * @property id\n       * @type number\n       */\n/**\n       * A `String` denoting the type of object.\n       *\n       * @property type\n       * @type string\n       * @default \"constraint\"\n       * @readOnly\n       */\n/**\n       * An arbitrary `String` name to help the user identify and manage bodies.\n       *\n       * @property label\n       * @type string\n       * @default \"Constraint\"\n       */\n/**\n       * An `Object` that defines the rendering properties to be consumed by the module `Matter.Render`.\n       *\n       * @property render\n       * @type object\n       */\n/**\n       * A flag that indicates if the constraint should be rendered.\n       *\n       * @property render.visible\n       * @type boolean\n       * @default true\n       */\n/**\n       * A `Number` that defines the line width to use when rendering the constraint outline.\n       * A value of `0` means no outline will be rendered.\n       *\n       * @property render.lineWidth\n       * @type number\n       * @default 2\n       */\n/**\n       * A `String` that defines the stroke style to use when rendering the constraint outline.\n       * It is the same as when using a canvas, so it accepts CSS style property values.\n       *\n       * @property render.strokeStyle\n       * @type string\n       * @default a random colour\n       */\n/**\n       * A `String` that defines the constraint rendering type. \n       * The possible values are 'line', 'pin', 'spring'.\n       * An appropriate render type will be automatically chosen unless one is given in options.\n       *\n       * @property render.type\n       * @type string\n       * @default 'line'\n       */\n/**\n       * A `Boolean` that defines if the constraint's anchor points should be rendered.\n       *\n       * @property render.anchors\n       * @type boolean\n       * @default true\n       */\n/**\n       * The first possible `Body` that this constraint is attached to.\n       *\n       * @property bodyA\n       * @type body\n       * @default null\n       */\n/**\n       * The second possible `Body` that this constraint is attached to.\n       *\n       * @property bodyB\n       * @type body\n       * @default null\n       */\n/**\n       * A `Vector` that specifies the offset of the constraint from center of the `constraint.bodyA` if defined, otherwise a world-space position.\n       *\n       * @property pointA\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A `Vector` that specifies the offset of the constraint from center of the `constraint.bodyB` if defined, otherwise a world-space position.\n       *\n       * @property pointB\n       * @type vector\n       * @default { x: 0, y: 0 }\n       */\n/**\n       * A `Number` that specifies the stiffness of the constraint, i.e. the rate at which it returns to its resting `constraint.length`.\n       * A value of `1` means the constraint should be very stiff.\n       * A value of `0.2` means the constraint acts like a soft spring.\n       *\n       * @property stiffness\n       * @type number\n       * @default 1\n       */\n/**\n       * A `Number` that specifies the damping of the constraint, \n       * i.e. the amount of resistance applied to each body based on their velocities to limit the amount of oscillation.\n       * Damping will only be apparent when the constraint also has a very low `stiffness`.\n       * A value of `0.1` means the constraint will apply heavy damping, resulting in little to no oscillation.\n       * A value of `0` means the constraint will apply no damping.\n       *\n       * @property damping\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Number` that specifies the target resting length of the constraint. \n       * It is calculated automatically in `Constraint.create` from initial positions of the `constraint.bodyA` and `constraint.bodyB`.\n       *\n       * @property length\n       * @type number\n       */\n/**\n       * An object reserved for storing plugin-specific properties.\n       *\n       * @property plugin\n       * @type {}\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(0);(function(){\n/**\n       * Creates a new set of axes from the given vertices.\n       * @method fromVertices\n       * @param {vertices} vertices\n       * @return {axes} A new axes from the given vertices\n       */\ni.fromVertices=function(e){var t={};for(var n=0;n<e.length;n++){var i=(n+1)%e.length,a=o.normalise({x:e[i].y-e[n].y,y:e[n].x-e[i].x}),s=a.y===0?Infinity:a.x/a.y;s=s.toFixed(3).toString();t[s]=a}return r.values(t)};\n/**\n       * Rotates a set of axes by the given angle.\n       * @method rotate\n       * @param {axes} axes\n       * @param {number} angle\n       */i.rotate=function(e,t){if(t!==0){var n=Math.cos(t),i=Math.sin(t);for(var o=0;o<e.length;o++){var r,a=e[o];r=a.x*n-a.y*i;a.y=a.x*i+a.y*n;a.x=r}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(0);var a=n(4);var s=n(1);var l=n(2);(function(){\n/**\n       * Creates a new rigid body model with a rectangle hull. \n       * The options parameter is an object that specifies any properties you wish to override the defaults.\n       * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n       * @method rectangle\n       * @param {number} x\n       * @param {number} y\n       * @param {number} width\n       * @param {number} height\n       * @param {object} [options]\n       * @return {body} A new rectangle body\n       */\ni.rectangle=function(e,t,n,i,s){s=s||{};var l={label:\"Rectangle Body\",position:{x:e,y:t},vertices:o.fromPath(\"L 0 0 L \"+n+\" 0 L \"+n+\" \"+i+\" L 0 \"+i)};if(s.chamfer){var c=s.chamfer;l.vertices=o.chamfer(l.vertices,c.radius,c.quality,c.qualityMin,c.qualityMax);delete s.chamfer}return a.create(r.extend({},l,s))};\n/**\n       * Creates a new rigid body model with a trapezoid hull. \n       * The `slope` is parameterised as a fraction of `width` and must be < 1 to form a valid trapezoid. \n       * The options parameter is an object that specifies any properties you wish to override the defaults.\n       * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n       * @method trapezoid\n       * @param {number} x\n       * @param {number} y\n       * @param {number} width\n       * @param {number} height\n       * @param {number} slope Must be a number < 1.\n       * @param {object} [options]\n       * @return {body} A new trapezoid body\n       */i.trapezoid=function(e,t,n,i,s,l){l=l||{};s>=1&&r.warn(\"Bodies.trapezoid: slope parameter must be < 1.\");s*=.5;var c=(1-s*2)*n;var u,f=n*s,p=f+c,d=p+f;u=s<.5?\"L 0 0 L \"+f+\" \"+-i+\" L \"+p+\" \"+-i+\" L \"+d+\" 0\":\"L 0 0 L \"+p+\" \"+-i+\" L \"+d+\" 0\";var v={label:\"Trapezoid Body\",position:{x:e,y:t},vertices:o.fromPath(u)};if(l.chamfer){var y=l.chamfer;v.vertices=o.chamfer(v.vertices,y.radius,y.quality,y.qualityMin,y.qualityMax);delete l.chamfer}return a.create(r.extend({},v,l))};\n/**\n       * Creates a new rigid body model with a circle hull. \n       * The options parameter is an object that specifies any properties you wish to override the defaults.\n       * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n       * @method circle\n       * @param {number} x\n       * @param {number} y\n       * @param {number} radius\n       * @param {object} [options]\n       * @param {number} [maxSides]\n       * @return {body} A new circle body\n       */i.circle=function(e,t,n,o,a){o=o||{};var s={label:\"Circle Body\",circleRadius:n};a=a||25;var l=Math.ceil(Math.max(10,Math.min(a,n)));l%2===1&&(l+=1);return i.polygon(e,t,l,n,r.extend({},s,o))};\n/**\n       * Creates a new rigid body model with a regular polygon hull with the given number of sides. \n       * The options parameter is an object that specifies any properties you wish to override the defaults.\n       * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n       * @method polygon\n       * @param {number} x\n       * @param {number} y\n       * @param {number} sides\n       * @param {number} radius\n       * @param {object} [options]\n       * @return {body} A new regular polygon body\n       */i.polygon=function(e,t,n,s,l){l=l||{};if(n<3)return i.circle(e,t,s,l);var c=2*Math.PI/n,u=\"\",f=c*.5;for(var p=0;p<n;p+=1){var d=f+p*c,v=Math.cos(d)*s,y=Math.sin(d)*s;u+=\"L \"+v.toFixed(3)+\" \"+y.toFixed(3)+\" \"}var m={label:\"Polygon Body\",position:{x:e,y:t},vertices:o.fromPath(u)};if(l.chamfer){var g=l.chamfer;m.vertices=o.chamfer(m.vertices,g.radius,g.quality,g.qualityMin,g.qualityMax);delete l.chamfer}return a.create(r.extend({},m,l))};\n/**\n       * Utility to create a compound body based on set(s) of vertices.\n       * \n       * _Note:_ To optionally enable automatic concave vertices decomposition the [poly-decomp](https://github.com/schteppe/poly-decomp.js) \n       * package must be first installed and provided see `Common.setDecomp`, otherwise the convex hull of each vertex set will be used.\n       * \n       * The resulting vertices are reorientated about their centre of mass,\n       * and offset such that `body.position` corresponds to this point.\n       * \n       * The resulting offset may be found if needed by subtracting `body.bounds` from the original input bounds.\n       * To later move the centre of mass see `Body.setCentre`.\n       * \n       * Note that automatic conconcave decomposition results are not always optimal. \n       * For best results, simplify the input vertices as much as possible first.\n       * By default this function applies some addtional simplification to help.\n       * \n       * Some outputs may also require further manual processing afterwards to be robust.\n       * In particular some parts may need to be overlapped to avoid collision gaps.\n       * Thin parts and sharp points should be avoided or removed where possible.\n       *\n       * The options parameter object specifies any `Matter.Body` properties you wish to override the defaults.\n       * \n       * See the properties section of the `Matter.Body` module for detailed information on what you can pass via the `options` object.\n       * @method fromVertices\n       * @param {number} x\n       * @param {number} y\n       * @param {array} vertexSets One or more arrays of vertex points e.g. `[[{ x: 0, y: 0 }...], ...]`.\n       * @param {object} [options] The body options.\n       * @param {bool} [flagInternal=false] Optionally marks internal edges with `isInternal`.\n       * @param {number} [removeCollinear=0.01] Threshold when simplifying vertices along the same edge.\n       * @param {number} [minimumArea=10] Threshold when removing small parts.\n       * @param {number} [removeDuplicatePoints=0.01] Threshold when simplifying nearby vertices.\n       * @return {body}\n       */i.fromVertices=function(e,t,n,i,c,u,f,p){var d,v,y,m,g,x,h,b,S,w,_,A=r.getDecomp();d=Boolean(A&&A.quickDecomp);i=i||{};y=[];c=typeof c!==\"undefined\"&&c;u=typeof u!==\"undefined\"?u:.01;f=typeof f!==\"undefined\"?f:10;p=typeof p!==\"undefined\"?p:.01;r.isArray(n[0])||(n=[n]);for(w=0;w<n.length;w+=1){x=n[w];m=o.isConvex(x);g=!m;g&&!d&&r.warnOnce(\"Bodies.fromVertices: Install the 'poly-decomp' library and use Common.setDecomp or provide 'decomp' as a global to decompose concave vertices.\");if(m||!d){x=m?o.clockwiseSort(x):o.hull(x);y.push({position:{x:e,y:t},vertices:x})}else{var P=x.map((function(e){return[e.x,e.y]}));A.makeCCW(P);u!==false&&A.removeCollinearPoints(P,u);p!==false&&A.removeDuplicatePoints&&A.removeDuplicatePoints(P,p);var B=A.quickDecomp(P);for(h=0;h<B.length;h++){var M=B[h];var k=M.map((function(e){return{x:e[0],y:e[1]}}));f>0&&o.area(k)<f||y.push({position:o.centre(k),vertices:k})}}}for(h=0;h<y.length;h++)y[h]=a.create(r.extend(y[h],i));if(c){var C=5;for(h=0;h<y.length;h++){var I=y[h];for(b=h+1;b<y.length;b++){var T=y[b];if(s.overlaps(I.bounds,T.bounds)){var R=I.vertices,D=T.vertices;for(S=0;S<I.vertices.length;S++)for(_=0;_<T.vertices.length;_++){var E=l.magnitudeSquared(l.sub(R[(S+1)%R.length],D[_])),V=l.magnitudeSquared(l.sub(R[S],D[(_+1)%D.length]));if(E<C&&V<C){R[S].isInternal=true;D[_].isInternal=true}}}}}}if(y.length>1){v=a.create(r.extend({parts:y.slice(0)},i));a.setPosition(v,{x:e,y:t});return v}return y[0]}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);var r=n(8);(function(){\n/**\n       * Creates a new collision detector.\n       * @method create\n       * @param {} options\n       * @return {detector} A new collision detector\n       */\ni.create=function(e){var t={bodies:[],collisions:[],pairs:null};return o.extend(t,e)};\n/**\n       * Sets the list of bodies in the detector.\n       * @method setBodies\n       * @param {detector} detector\n       * @param {body[]} bodies\n       */i.setBodies=function(e,t){e.bodies=t.slice(0)};\n/**\n       * Clears the detector including its list of bodies.\n       * @method clear\n       * @param {detector} detector\n       */i.clear=function(e){e.bodies=[];e.collisions=[]};\n/**\n       * Efficiently finds all collisions among all the bodies in `detector.bodies` using a broadphase algorithm.\n       * \n       * _Note:_ The specific ordering of collisions returned is not guaranteed between releases and may change for performance reasons.\n       * If a specific ordering is required then apply a sort to the resulting array.\n       * @method collisions\n       * @param {detector} detector\n       * @return {collision[]} collisions\n       */i.collisions=function(e){var t,n,o=e.pairs,a=e.bodies,s=a.length,l=i.canCollide,c=r.collides,u=e.collisions,f=0;a.sort(i._compareBoundsX);for(t=0;t<s;t++){var p=a[t],d=p.bounds,v=p.bounds.max.x,y=p.bounds.max.y,m=p.bounds.min.y,g=p.isStatic||p.isSleeping,x=p.parts.length,h=x===1;for(n=t+1;n<s;n++){var b=a[n],S=b.bounds;if(S.min.x>v)break;if(!(y<S.min.y||m>S.max.y)&&((!g||!b.isStatic&&!b.isSleeping)&&l(p.collisionFilter,b.collisionFilter))){var w=b.parts.length;if(h&&w===1){var _=c(p,b,o);_&&(u[f++]=_)}else{var A=x>1?1:0,P=w>1?1:0;for(var B=A;B<x;B++){var M=p.parts[B];d=M.bounds;for(var k=P;k<w;k++){var C=b.parts[k];S=C.bounds;if(!(d.min.x>S.max.x||d.max.x<S.min.x||d.max.y<S.min.y||d.min.y>S.max.y)){_=c(M,C,o);_&&(u[f++]=_)}}}}}}}u.length!==f&&(u.length=f);return u};\n/**\n       * Returns `true` if both supplied collision filters will allow a collision to occur.\n       * See `body.collisionFilter` for more information.\n       * @method canCollide\n       * @param {} filterA\n       * @param {} filterB\n       * @return {bool} `true` if collision can occur\n       */i.canCollide=function(e,t){return e.group===t.group&&e.group!==0?e.group>0:(e.mask&t.category)!==0&&(t.mask&e.category)!==0};\n/**\n       * The comparison function used in the broadphase algorithm.\n       * Returns the signed delta of the bodies bounds on the x-axis.\n       * @private\n       * @method _sortCompare\n       * @param {body} bodyA\n       * @param {body} bodyB\n       * @return {number} The signed delta used for sorting\n       */i._compareBoundsX=function(e,t){return e.bounds.min.x-t.bounds.min.x};\n/**\n       * The array of `Matter.Body` between which the detector finds collisions.\n       * \n       * _Note:_ The order of bodies in this array _is not fixed_ and will be continually managed by the detector.\n       * @property bodies\n       * @type body[]\n       * @default []\n       */\n/**\n       * The array of `Matter.Collision` found in the last call to `Detector.collisions` on this detector.\n       * @property collisions\n       * @type collision[]\n       * @default []\n       */\n/**\n       * Optional. A `Matter.Pairs` object from which previous collision objects may be reused. Intended for internal `Matter.Engine` usage.\n       * @property pairs\n       * @type {pairs|null}\n       * @default null\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){\n/**\n       * Creates a mouse input.\n       * @method create\n       * @param {HTMLElement} element\n       * @return {mouse} A new mouse\n       */\ni.create=function(e){var t={};e||o.log(\"Mouse.create: element was undefined, defaulting to document.body\",\"warn\");t.element=e||document.body;t.absolute={x:0,y:0};t.position={x:0,y:0};t.mousedownPosition={x:0,y:0};t.mouseupPosition={x:0,y:0};t.offset={x:0,y:0};t.scale={x:1,y:1};t.wheelDelta=0;t.button=-1;t.pixelRatio=parseInt(t.element.getAttribute(\"data-pixel-ratio\"),10)||1;t.sourceEvents={mousemove:null,mousedown:null,mouseup:null,mousewheel:null};t.mousemove=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;if(o){t.button=0;e.preventDefault()}t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.sourceEvents.mousemove=e};t.mousedown=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;if(o){t.button=0;e.preventDefault()}else t.button=e.button;t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.mousedownPosition.x=t.position.x;t.mousedownPosition.y=t.position.y;t.sourceEvents.mousedown=e};t.mouseup=function(e){var n=i._getRelativeMousePosition(e,t.element,t.pixelRatio),o=e.changedTouches;o&&e.preventDefault();t.button=-1;t.absolute.x=n.x;t.absolute.y=n.y;t.position.x=t.absolute.x*t.scale.x+t.offset.x;t.position.y=t.absolute.y*t.scale.y+t.offset.y;t.mouseupPosition.x=t.position.x;t.mouseupPosition.y=t.position.y;t.sourceEvents.mouseup=e};t.mousewheel=function(e){t.wheelDelta=Math.max(-1,Math.min(1,e.wheelDelta||-e.detail));e.preventDefault();t.sourceEvents.mousewheel=e};i.setElement(t,t.element);return t};\n/**\n       * Sets the element the mouse is bound to (and relative to).\n       * @method setElement\n       * @param {mouse} mouse\n       * @param {HTMLElement} element\n       */i.setElement=function(e,t){e.element=t;t.addEventListener(\"mousemove\",e.mousemove,{passive:true});t.addEventListener(\"mousedown\",e.mousedown,{passive:true});t.addEventListener(\"mouseup\",e.mouseup,{passive:true});t.addEventListener(\"wheel\",e.mousewheel,{passive:false});t.addEventListener(\"touchmove\",e.mousemove,{passive:false});t.addEventListener(\"touchstart\",e.mousedown,{passive:false});t.addEventListener(\"touchend\",e.mouseup,{passive:false})};\n/**\n       * Clears all captured source events.\n       * @method clearSourceEvents\n       * @param {mouse} mouse\n       */i.clearSourceEvents=function(e){e.sourceEvents.mousemove=null;e.sourceEvents.mousedown=null;e.sourceEvents.mouseup=null;e.sourceEvents.mousewheel=null;e.wheelDelta=0};\n/**\n       * Sets the mouse position offset.\n       * @method setOffset\n       * @param {mouse} mouse\n       * @param {vector} offset\n       */i.setOffset=function(e,t){e.offset.x=t.x;e.offset.y=t.y;e.position.x=e.absolute.x*e.scale.x+e.offset.x;e.position.y=e.absolute.y*e.scale.y+e.offset.y};\n/**\n       * Sets the mouse position scale.\n       * @method setScale\n       * @param {mouse} mouse\n       * @param {vector} scale\n       */i.setScale=function(e,t){e.scale.x=t.x;e.scale.y=t.y;e.position.x=e.absolute.x*e.scale.x+e.offset.x;e.position.y=e.absolute.y*e.scale.y+e.offset.y};\n/**\n       * Gets the mouse position relative to an element given a screen pixel ratio.\n       * @method _getRelativeMousePosition\n       * @private\n       * @param {} event\n       * @param {} element\n       * @param {number} pixelRatio\n       * @return {}\n       */i._getRelativeMousePosition=function(e,t,n){var i,o,r=t.getBoundingClientRect(),a=document.documentElement||document.body.parentNode||document.body,s=window.pageXOffset!==void 0?window.pageXOffset:a.scrollLeft,l=window.pageYOffset!==void 0?window.pageYOffset:a.scrollTop,c=e.changedTouches;if(c){i=c[0].pageX-r.left-s;o=c[0].pageY-r.top-l}else{i=e.pageX-r.left-s;o=e.pageY-r.top-l}return{x:i/(t.clientWidth/(t.width||t.clientWidth)*n),y:o/(t.clientHeight/(t.height||t.clientHeight)*n)}}})()},function(e,t,n){var i={};e.exports=i;var o=n(0);(function(){i._registry={};\n/**\n       * Registers a plugin object so it can be resolved later by name.\n       * @method register\n       * @param plugin {} The plugin to register.\n       * @return {object} The plugin.\n       */i.register=function(e){i.isPlugin(e)||o.warn(\"Plugin.register:\",i.toString(e),\"does not implement all required fields.\");if(e.name in i._registry){var t=i._registry[e.name],n=i.versionParse(e.version).number,r=i.versionParse(t.version).number;if(n>r){o.warn(\"Plugin.register:\",i.toString(t),\"was upgraded to\",i.toString(e));i._registry[e.name]=e}else n<r?o.warn(\"Plugin.register:\",i.toString(t),\"can not be downgraded to\",i.toString(e)):e!==t&&o.warn(\"Plugin.register:\",i.toString(e),\"is already registered to different plugin object\")}else i._registry[e.name]=e;return e};\n/**\n       * Resolves a dependency to a plugin object from the registry if it exists. \n       * The `dependency` may contain a version, but only the name matters when resolving.\n       * @method resolve\n       * @param dependency {string} The dependency.\n       * @return {object} The plugin if resolved, otherwise `undefined`.\n       */i.resolve=function(e){return i._registry[i.dependencyParse(e).name]};\n/**\n       * Returns a pretty printed plugin name and version.\n       * @method toString\n       * @param plugin {} The plugin.\n       * @return {string} Pretty printed plugin name and version.\n       */i.toString=function(e){return typeof e===\"string\"?e:(e.name||\"anonymous\")+\"@\"+(e.version||e.range||\"0.0.0\")};\n/**\n       * Returns `true` if the object meets the minimum standard to be considered a plugin.\n       * This means it must define the following properties:\n       * - `name`\n       * - `version`\n       * - `install`\n       * @method isPlugin\n       * @param obj {} The obj to test.\n       * @return {boolean} `true` if the object can be considered a plugin otherwise `false`.\n       */i.isPlugin=function(e){return e&&e.name&&e.version&&e.install};\n/**\n       * Returns `true` if a plugin with the given `name` been installed on `module`.\n       * @method isUsed\n       * @param module {} The module.\n       * @param name {string} The plugin name.\n       * @return {boolean} `true` if a plugin with the given `name` been installed on `module`, otherwise `false`.\n       */i.isUsed=function(e,t){return e.used.indexOf(t)>-1};\n/**\n       * Returns `true` if `plugin.for` is applicable to `module` by comparing against `module.name` and `module.version`.\n       * If `plugin.for` is not specified then it is assumed to be applicable.\n       * The value of `plugin.for` is a string of the format `'module-name'` or `'module-name@version'`.\n       * @method isFor\n       * @param plugin {} The plugin.\n       * @param module {} The module.\n       * @return {boolean} `true` if `plugin.for` is applicable to `module`, otherwise `false`.\n       */i.isFor=function(e,t){var n=e.for&&i.dependencyParse(e.for);return!e.for||t.name===n.name&&i.versionSatisfies(t.version,n.range)};\n/**\n       * Installs the plugins by calling `plugin.install` on each plugin specified in `plugins` if passed, otherwise `module.uses`.\n       * For installing plugins on `Matter` see the convenience function `Matter.use`.\n       * Plugins may be specified either by their name or a reference to the plugin object.\n       * Plugins themselves may specify further dependencies, but each plugin is installed only once.\n       * Order is important, a topological sort is performed to find the best resulting order of installation.\n       * This sorting attempts to satisfy every dependency's requested ordering, but may not be exact in all cases.\n       * This function logs the resulting status of each dependency in the console, along with any warnings.\n       * - A green tick \u2705 indicates a dependency was resolved and installed.\n       * - An orange diamond \uD83D\uDD36 indicates a dependency was resolved but a warning was thrown for it or one if its dependencies.\n       * - A red cross \u274C indicates a dependency could not be resolved.\n       * Avoid calling this function multiple times on the same module unless you intend to manually control installation order.\n       * @method use\n       * @param module {} The module install plugins on.\n       * @param [plugins=module.uses] {} The plugins to install on module (optional, defaults to `module.uses`).\n       */i.use=function(e,t){e.uses=(e.uses||[]).concat(t||[]);if(e.uses.length!==0){var n=i.dependencies(e),r=o.topologicalSort(n),a=[];for(var s=0;s<r.length;s+=1)if(r[s]!==e.name){var l=i.resolve(r[s]);if(l){if(!i.isUsed(e,l.name)){if(!i.isFor(l,e)){o.warn(\"Plugin.use:\",i.toString(l),\"is for\",l.for,\"but installed on\",i.toString(e)+\".\");l._warned=true}if(l.install)l.install(e);else{o.warn(\"Plugin.use:\",i.toString(l),\"does not specify an install function.\");l._warned=true}if(l._warned){a.push(\"\uD83D\uDD36 \"+i.toString(l));delete l._warned}else a.push(\"\u2705 \"+i.toString(l));e.used.push(l.name)}}else a.push(\"\u274C \"+r[s])}a.length>0&&o.info(a.join(\"  \"))}else o.warn(\"Plugin.use:\",i.toString(e),\"does not specify any dependencies to install.\")};\n/**\n       * Recursively finds all of a module's dependencies and returns a flat dependency graph.\n       * @method dependencies\n       * @param module {} The module.\n       * @return {object} A dependency graph.\n       */i.dependencies=function(e,t){var n=i.dependencyParse(e),r=n.name;t=t||{};if(!(r in t)){e=i.resolve(e)||e;t[r]=o.map(e.uses||[],(function(t){i.isPlugin(t)&&i.register(t);var r=i.dependencyParse(t),a=i.resolve(t);if(a&&!i.versionSatisfies(a.version,r.range)){o.warn(\"Plugin.dependencies:\",i.toString(a),\"does not satisfy\",i.toString(r),\"used by\",i.toString(n)+\".\");a._warned=true;e._warned=true}else if(!a){o.warn(\"Plugin.dependencies:\",i.toString(t),\"used by\",i.toString(n),\"could not be resolved.\");e._warned=true}return r.name}));for(var a=0;a<t[r].length;a+=1)i.dependencies(t[r][a],t);return t}};\n/**\n       * Parses a dependency string into its components.\n       * The `dependency` is a string of the format `'module-name'` or `'module-name@version'`.\n       * See documentation for `Plugin.versionParse` for a description of the format.\n       * This function can also handle dependencies that are already resolved (e.g. a module object).\n       * @method dependencyParse\n       * @param dependency {string} The dependency of the format `'module-name'` or `'module-name@version'`.\n       * @return {object} The dependency parsed into its components.\n       */i.dependencyParse=function(e){if(o.isString(e)){var t=/^[\\w-]+(@(\\*|[\\^~]?\\d+\\.\\d+\\.\\d+(-[0-9A-Za-z-+]+)?))?$/;t.test(e)||o.warn(\"Plugin.dependencyParse:\",e,\"is not a valid dependency string.\");return{name:e.split(\"@\")[0],range:e.split(\"@\")[1]||\"*\"}}return{name:e.name,range:e.range||e.version}};\n/**\n       * Parses a version string into its components.  \n       * Versions are strictly of the format `x.y.z` (as in [semver](http://semver.org/)).\n       * Versions may optionally have a prerelease tag in the format `x.y.z-alpha`.\n       * Ranges are a strict subset of [npm ranges](https://docs.npmjs.com/misc/semver#advanced-range-syntax).\n       * Only the following range types are supported:\n       * - Tilde ranges e.g. `~1.2.3`\n       * - Caret ranges e.g. `^1.2.3`\n       * - Greater than ranges e.g. `>1.2.3`\n       * - Greater than or equal ranges e.g. `>=1.2.3`\n       * - Exact version e.g. `1.2.3`\n       * - Any version `*`\n       * @method versionParse\n       * @param range {string} The version string.\n       * @return {object} The version range parsed into its components.\n       */i.versionParse=function(e){var t=/^(\\*)|(\\^|~|>=|>)?\\s*((\\d+)\\.(\\d+)\\.(\\d+))(-[0-9A-Za-z-+]+)?$/;t.test(e)||o.warn(\"Plugin.versionParse:\",e,\"is not a valid version or range.\");var n=t.exec(e);var i=Number(n[4]);var r=Number(n[5]);var a=Number(n[6]);return{isRange:Boolean(n[1]||n[2]),version:n[3],range:e,operator:n[1]||n[2]||\"\",major:i,minor:r,patch:a,parts:[i,r,a],prerelease:n[7],number:i*1e8+r*1e4+a}};\n/**\n       * Returns `true` if `version` satisfies the given `range`.\n       * See documentation for `Plugin.versionParse` for a description of the format.\n       * If a version or range is not specified, then any version (`*`) is assumed to satisfy.\n       * @method versionSatisfies\n       * @param version {string} The version string.\n       * @param range {string} The range string.\n       * @return {boolean} `true` if `version` satisfies `range`, otherwise `false`.\n       */i.versionSatisfies=function(e,t){t=t||\"*\";var n=i.versionParse(t),o=i.versionParse(e);if(n.isRange){if(n.operator===\"*\"||e===\"*\")return true;if(n.operator===\">\")return o.number>n.number;if(n.operator===\">=\")return o.number>=n.number;if(n.operator===\"~\")return o.major===n.major&&o.minor===n.minor&&o.patch>=n.patch;if(n.operator===\"^\")return n.major>0?o.major===n.major&&o.number>=n.number:n.minor>0?o.minor===n.minor&&o.patch>=n.patch:o.patch===n.patch}return e===t||e===\"*\"}})()},function(e,t){var n={};e.exports=n;(function(){\n/**\n       * Creates a new contact.\n       * @method create\n       * @param {vertex} [vertex]\n       * @return {contact} A new contact\n       */\nn.create=function(e){return{vertex:e,normalImpulse:0,tangentImpulse:0}}})()},function(e,t,n){var i={};e.exports=i;var o=n(7);var r=n(18);var a=n(13);var s=n(19);var l=n(5);var c=n(6);var u=n(10);var f=n(0);var p=n(4);(function(){i._deltaMax=1e3/60;\n/**\n       * Creates a new engine. The options parameter is an object that specifies any properties you wish to override the defaults.\n       * All properties have default values, and many are pre-calculated automatically based on other properties.\n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {object} [options]\n       * @return {engine} engine\n       */i.create=function(e){e=e||{};var t={positionIterations:6,velocityIterations:4,constraintIterations:2,enableSleeping:false,events:[],plugin:{},gravity:{x:0,y:1,scale:.001},timing:{timestamp:0,timeScale:1,lastDelta:0,lastElapsed:0,lastUpdatesPerFrame:0}};var n=f.extend(t,e);n.world=e.world||c.create({label:\"World\"});n.pairs=e.pairs||s.create();n.detector=e.detector||a.create();n.detector.pairs=n.pairs;n.grid={buckets:[]};n.world.gravity=n.gravity;n.broadphase=n.grid;n.metrics={};return n};\n/**\n       * Moves the simulation forward in time by `delta` milliseconds.\n       * Triggers `beforeUpdate`, `beforeSolve` and `afterUpdate` events.\n       * Triggers `collisionStart`, `collisionActive` and `collisionEnd` events.\n       * @method update\n       * @param {engine} engine\n       * @param {number} [delta=16.666]\n       */i.update=function(e,t){var n=f.now();var p,d=e.world,v=e.detector,y=e.pairs,m=e.timing,g=m.timestamp;t>i._deltaMax&&f.warnOnce(\"Matter.Engine.update: delta argument is recommended to be less than or equal to\",i._deltaMax.toFixed(3),\"ms.\");t=typeof t!==\"undefined\"?t:f._baseDelta;t*=m.timeScale;m.timestamp+=t;m.lastDelta=t;var x={timestamp:m.timestamp,delta:t};l.trigger(e,\"beforeUpdate\",x);var h=c.allBodies(d),b=c.allConstraints(d);if(d.isModified){a.setBodies(v,h);c.setModified(d,false,false,true)}e.enableSleeping&&o.update(h,t);i._bodiesApplyGravity(h,e.gravity);t>0&&i._bodiesUpdate(h,t);l.trigger(e,\"beforeSolve\",x);u.preSolveAll(h);for(p=0;p<e.constraintIterations;p++)u.solveAll(b,t);u.postSolveAll(h);var S=a.collisions(v);s.update(y,S,g);e.enableSleeping&&o.afterCollisions(y.list);y.collisionStart.length>0&&l.trigger(e,\"collisionStart\",{pairs:y.collisionStart,timestamp:m.timestamp,delta:t});var w=f.clamp(20/e.positionIterations,0,1);r.preSolvePosition(y.list);for(p=0;p<e.positionIterations;p++)r.solvePosition(y.list,t,w);r.postSolvePosition(h);u.preSolveAll(h);for(p=0;p<e.constraintIterations;p++)u.solveAll(b,t);u.postSolveAll(h);r.preSolveVelocity(y.list);for(p=0;p<e.velocityIterations;p++)r.solveVelocity(y.list,t);i._bodiesUpdateVelocities(h);y.collisionActive.length>0&&l.trigger(e,\"collisionActive\",{pairs:y.collisionActive,timestamp:m.timestamp,delta:t});y.collisionEnd.length>0&&l.trigger(e,\"collisionEnd\",{pairs:y.collisionEnd,timestamp:m.timestamp,delta:t});i._bodiesClearForces(h);l.trigger(e,\"afterUpdate\",x);e.timing.lastElapsed=f.now()-n;return e};\n/**\n       * Merges two engines by keeping the configuration of `engineA` but replacing the world with the one from `engineB`.\n       * @method merge\n       * @param {engine} engineA\n       * @param {engine} engineB\n       */i.merge=function(e,t){f.extend(e,t);if(t.world){e.world=t.world;i.clear(e);var n=c.allBodies(e.world);for(var r=0;r<n.length;r++){var a=n[r];o.set(a,false);a.id=f.nextId()}}};\n/**\n       * Clears the engine pairs and detector.\n       * @method clear\n       * @param {engine} engine\n       */i.clear=function(e){s.clear(e.pairs);a.clear(e.detector)};\n/**\n       * Zeroes the `body.force` and `body.torque` force buffers.\n       * @method _bodiesClearForces\n       * @private\n       * @param {body[]} bodies\n       */i._bodiesClearForces=function(e){var t=e.length;for(var n=0;n<t;n++){var i=e[n];i.force.x=0;i.force.y=0;i.torque=0}};\n/**\n       * Applies gravitational acceleration to all `bodies`.\n       * This models a [uniform gravitational field](https://en.wikipedia.org/wiki/Gravity_of_Earth), similar to near the surface of a planet.\n       * \n       * @method _bodiesApplyGravity\n       * @private\n       * @param {body[]} bodies\n       * @param {vector} gravity\n       */i._bodiesApplyGravity=function(e,t){var n=typeof t.scale!==\"undefined\"?t.scale:.001,i=e.length;if((t.x!==0||t.y!==0)&&n!==0)for(var o=0;o<i;o++){var r=e[o];if(!r.isStatic&&!r.isSleeping){r.force.y+=r.mass*t.y*n;r.force.x+=r.mass*t.x*n}}};\n/**\n       * Applies `Body.update` to all given `bodies`.\n       * @method _bodiesUpdate\n       * @private\n       * @param {body[]} bodies\n       * @param {number} delta The amount of time elapsed between updates\n       */i._bodiesUpdate=function(e,t){var n=e.length;for(var i=0;i<n;i++){var o=e[i];o.isStatic||o.isSleeping||p.update(o,t)}};\n/**\n       * Applies `Body.updateVelocities` to all given `bodies`.\n       * @method _bodiesUpdateVelocities\n       * @private\n       * @param {body[]} bodies\n       */i._bodiesUpdateVelocities=function(e){var t=e.length;for(var n=0;n<t;n++)p.updateVelocities(e[n])};\n/**\n       * A deprecated alias for `Runner.run`, use `Matter.Runner.run(engine)` instead and see `Matter.Runner` for more information.\n       * @deprecated use Matter.Runner.run(engine) instead\n       * @method run\n       * @param {engine} engine\n       */\n/**\n      * Fired just before an update\n      *\n      * @event beforeUpdate\n      * @param {object} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n      * Fired after bodies updated based on their velocity and forces, but before any collision detection, constraints and resolving etc.\n      *\n      * @event beforeSolve\n      * @param {object} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n      * Fired after engine update and all collision events\n      *\n      * @event afterUpdate\n      * @param {object} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n      * Fired after engine update, provides a list of all pairs that have started to collide in the current tick (if any)\n      *\n      * @event collisionStart\n      * @param {object} event An event object\n      * @param {pair[]} event.pairs List of affected pairs\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n      * Fired after engine update, provides a list of all pairs that are colliding in the current tick (if any)\n      *\n      * @event collisionActive\n      * @param {object} event An event object\n      * @param {pair[]} event.pairs List of affected pairs\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n      * Fired after engine update, provides a list of all pairs that have ended collision in the current tick (if any)\n      *\n      * @event collisionEnd\n      * @param {object} event An event object\n      * @param {pair[]} event.pairs List of affected pairs\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {number} event.delta The delta time in milliseconds value used in the update\n      * @param {engine} event.source The source object of the event\n      * @param {string} event.name The name of the event\n      */\n/**\n       * An integer `Number` that specifies the number of position iterations to perform each update.\n       * The higher the value, the higher quality the simulation will be at the expense of performance.\n       *\n       * @property positionIterations\n       * @type number\n       * @default 6\n       */\n/**\n       * An integer `Number` that specifies the number of velocity iterations to perform each update.\n       * The higher the value, the higher quality the simulation will be at the expense of performance.\n       *\n       * @property velocityIterations\n       * @type number\n       * @default 4\n       */\n/**\n       * An integer `Number` that specifies the number of constraint iterations to perform each update.\n       * The higher the value, the higher quality the simulation will be at the expense of performance.\n       * The default value of `2` is usually very adequate.\n       *\n       * @property constraintIterations\n       * @type number\n       * @default 2\n       */\n/**\n       * A flag that specifies whether the engine should allow sleeping via the `Matter.Sleeping` module.\n       * Sleeping can improve stability and performance, but often at the expense of accuracy.\n       *\n       * @property enableSleeping\n       * @type boolean\n       * @default false\n       */\n/**\n       * An `Object` containing properties regarding the timing systems of the engine. \n       *\n       * @property timing\n       * @type object\n       */\n/**\n       * A `Number` that specifies the global scaling factor of time for all bodies.\n       * A value of `0` freezes the simulation.\n       * A value of `0.1` gives a slow-motion effect.\n       * A value of `1.2` gives a speed-up effect.\n       *\n       * @property timing.timeScale\n       * @type number\n       * @default 1\n       */\n/**\n       * A `Number` that specifies the current simulation-time in milliseconds starting from `0`. \n       * It is incremented on every `Engine.update` by the given `delta` argument. \n       * \n       * @property timing.timestamp\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Number` that represents the total execution time elapsed during the last `Engine.update` in milliseconds.\n       * It is updated by timing from the start of the last `Engine.update` call until it ends.\n       *\n       * This value will also include the total execution time of all event handlers directly or indirectly triggered by the engine update.\n       * \n       * @property timing.lastElapsed\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Number` that represents the `delta` value used in the last engine update.\n       * \n       * @property timing.lastDelta\n       * @type number\n       * @default 0\n       */\n/**\n       * A `Matter.Detector` instance.\n       *\n       * @property detector\n       * @type detector\n       * @default a Matter.Detector instance\n       */\n/**\n       * A `Matter.Grid` instance.\n       *\n       * @deprecated replaced by `engine.detector`\n       * @property grid\n       * @type grid\n       * @default a Matter.Grid instance\n       */\n/**\n       * Replaced by and now alias for `engine.grid`.\n       *\n       * @deprecated replaced by `engine.detector`\n       * @property broadphase\n       * @type grid\n       * @default a Matter.Grid instance\n       */\n/**\n       * The root `Matter.Composite` instance that will contain all bodies, constraints and other composites to be simulated by this engine.\n       *\n       * @property world\n       * @type composite\n       * @default a Matter.Composite instance\n       */\n/**\n       * An object reserved for storing plugin-specific properties.\n       *\n       * @property plugin\n       * @type {}\n       */\n/**\n       * An optional gravitational acceleration applied to all bodies in `engine.world` on every update.\n       * \n       * This models a [uniform gravitational field](https://en.wikipedia.org/wiki/Gravity_of_Earth), similar to near the surface of a planet. For gravity in other contexts, disable this and apply forces as needed.\n       * \n       * To disable set the `scale` component to `0`.\n       * \n       * This is split into three components for ease of use:  \n       * a normalised direction (`x` and `y`) and magnitude (`scale`).\n       *\n       * @property gravity\n       * @type object\n       */\n/**\n       * The gravitational direction normal `x` component, to be multiplied by `gravity.scale`.\n       * \n       * @property gravity.x\n       * @type object\n       * @default 0\n       */\n/**\n       * The gravitational direction normal `y` component, to be multiplied by `gravity.scale`.\n       *\n       * @property gravity.y\n       * @type object\n       * @default 1\n       */\n/**\n       * The magnitude of the gravitational acceleration.\n       * \n       * @property gravity.scale\n       * @type object\n       * @default 0.001\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(0);var a=n(1);(function(){i._restingThresh=2;i._restingThreshTangent=Math.sqrt(6);i._positionDampen=.9;i._positionWarming=.8;i._frictionNormalMultiplier=5;i._frictionMaxStatic=Number.MAX_VALUE;\n/**\n       * Prepare pairs for position solving.\n       * @method preSolvePosition\n       * @param {pair[]} pairs\n       */i.preSolvePosition=function(e){var t,n,i,o=e.length;for(t=0;t<o;t++){n=e[t];if(n.isActive){i=n.contactCount;n.collision.parentA.totalContacts+=i;n.collision.parentB.totalContacts+=i}}};\n/**\n       * Find a solution for pair positions.\n       * @method solvePosition\n       * @param {pair[]} pairs\n       * @param {number} delta\n       * @param {number} [damping=1]\n       */i.solvePosition=function(e,t,n){var o,a,s,l,c,u,f,p,d=i._positionDampen*(n||1),v=r.clamp(t/r._baseDelta,0,1),y=e.length;for(o=0;o<y;o++){a=e[o];if(a.isActive&&!a.isSensor){s=a.collision;l=s.parentA;c=s.parentB;u=s.normal;a.separation=s.depth+u.x*(c.positionImpulse.x-l.positionImpulse.x)+u.y*(c.positionImpulse.y-l.positionImpulse.y)}}for(o=0;o<y;o++){a=e[o];if(a.isActive&&!a.isSensor){s=a.collision;l=s.parentA;c=s.parentB;u=s.normal;p=a.separation-a.slop*v;(l.isStatic||c.isStatic)&&(p*=2);if(!(l.isStatic||l.isSleeping)){f=d/l.totalContacts;l.positionImpulse.x+=u.x*p*f;l.positionImpulse.y+=u.y*p*f}if(!(c.isStatic||c.isSleeping)){f=d/c.totalContacts;c.positionImpulse.x-=u.x*p*f;c.positionImpulse.y-=u.y*p*f}}}};\n/**\n       * Apply position resolution.\n       * @method postSolvePosition\n       * @param {body[]} bodies\n       */i.postSolvePosition=function(e){var t=i._positionWarming,n=e.length,r=o.translate,s=a.update;for(var l=0;l<n;l++){var c=e[l],u=c.positionImpulse,f=u.x,p=u.y,d=c.velocity;c.totalContacts=0;if(f!==0||p!==0){for(var v=0;v<c.parts.length;v++){var y=c.parts[v];r(y.vertices,u);s(y.bounds,y.vertices,d);y.position.x+=f;y.position.y+=p}c.positionPrev.x+=f;c.positionPrev.y+=p;if(f*d.x+p*d.y<0){u.x=0;u.y=0}else{u.x*=t;u.y*=t}}}};\n/**\n       * Prepare pairs for velocity solving.\n       * @method preSolveVelocity\n       * @param {pair[]} pairs\n       */i.preSolveVelocity=function(e){var t,n,i=e.length;for(t=0;t<i;t++){var o=e[t];if(o.isActive&&!o.isSensor){var r=o.contacts,a=o.contactCount,s=o.collision,l=s.parentA,c=s.parentB,u=s.normal,f=s.tangent;for(n=0;n<a;n++){var p=r[n],d=p.vertex,v=p.normalImpulse,y=p.tangentImpulse;if(v!==0||y!==0){var m=u.x*v+f.x*y,g=u.y*v+f.y*y;if(!(l.isStatic||l.isSleeping)){l.positionPrev.x+=m*l.inverseMass;l.positionPrev.y+=g*l.inverseMass;l.anglePrev+=l.inverseInertia*((d.x-l.position.x)*g-(d.y-l.position.y)*m)}if(!(c.isStatic||c.isSleeping)){c.positionPrev.x-=m*c.inverseMass;c.positionPrev.y-=g*c.inverseMass;c.anglePrev-=c.inverseInertia*((d.x-c.position.x)*g-(d.y-c.position.y)*m)}}}}}};\n/**\n       * Find a solution for pair velocities.\n       * @method solveVelocity\n       * @param {pair[]} pairs\n       * @param {number} delta\n       */i.solveVelocity=function(e,t){var n,o,a,s,l=t/r._baseDelta,c=l*l,u=c*l,f=-i._restingThresh*l,p=i._restingThreshTangent,d=i._frictionNormalMultiplier*l,v=i._frictionMaxStatic,y=e.length;for(a=0;a<y;a++){var m=e[a];if(m.isActive&&!m.isSensor){var g=m.collision,x=g.parentA,h=g.parentB,b=g.normal.x,S=g.normal.y,w=g.tangent.x,_=g.tangent.y,A=m.inverseMass,P=m.friction*m.frictionStatic*d,B=m.contacts,M=m.contactCount,k=1/M;var C=x.position.x-x.positionPrev.x,I=x.position.y-x.positionPrev.y,T=x.angle-x.anglePrev,R=h.position.x-h.positionPrev.x,D=h.position.y-h.positionPrev.y,E=h.angle-h.anglePrev;for(s=0;s<M;s++){var V=B[s],F=V.vertex;var L=F.x-x.position.x,q=F.y-x.position.y,O=F.x-h.position.x,H=F.y-h.position.y;var U=C-q*T,j=I+L*T,W=R-H*E,N=D+O*E;var G=U-W,z=j-N;var X=b*G+S*z,Q=w*G+_*z;var Y=m.separation+X;var Z=Math.min(Y,1);Z=Y<0?0:Z;var $=Z*P;if(Q<-$||Q>$){o=Q>0?Q:-Q;n=m.friction*(Q>0?1:-1)*u;n<-o?n=-o:n>o&&(n=o)}else{n=Q;o=v}var J=L*S-q*b,K=O*S-H*b,ee=k/(A+x.inverseInertia*J*J+h.inverseInertia*K*K);var te=(1+m.restitution)*X*ee;n*=ee;if(X<f)V.normalImpulse=0;else{var ne=V.normalImpulse;V.normalImpulse+=te;V.normalImpulse>0&&(V.normalImpulse=0);te=V.normalImpulse-ne}if(Q<-p||Q>p)V.tangentImpulse=0;else{var ie=V.tangentImpulse;V.tangentImpulse+=n;V.tangentImpulse<-o&&(V.tangentImpulse=-o);V.tangentImpulse>o&&(V.tangentImpulse=o);n=V.tangentImpulse-ie}var oe=b*te+w*n,re=S*te+_*n;if(!(x.isStatic||x.isSleeping)){x.positionPrev.x+=oe*x.inverseMass;x.positionPrev.y+=re*x.inverseMass;x.anglePrev+=(L*re-q*oe)*x.inverseInertia}if(!(h.isStatic||h.isSleeping)){h.positionPrev.x-=oe*h.inverseMass;h.positionPrev.y-=re*h.inverseMass;h.anglePrev-=(O*re-H*oe)*h.inverseInertia}}}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(9);var r=n(0);(function(){\n/**\n       * Creates a new pairs structure.\n       * @method create\n       * @param {object} options\n       * @return {pairs} A new pairs structure\n       */\ni.create=function(e){return r.extend({table:{},list:[],collisionStart:[],collisionActive:[],collisionEnd:[]},e)};\n/**\n       * Updates pairs given a list of collisions.\n       * @method update\n       * @param {object} pairs\n       * @param {collision[]} collisions\n       * @param {number} timestamp\n       */i.update=function(e,t,n){var i,r,a,s=o.update,l=o.create,c=o.setActive,u=e.table,f=e.list,p=f.length,d=p,v=e.collisionStart,y=e.collisionEnd,m=e.collisionActive,g=t.length,x=0,h=0,b=0;for(a=0;a<g;a++){i=t[a];r=i.pair;if(r){r.isActive&&(m[b++]=r);s(r,i,n)}else{r=l(i,n);u[r.id]=r;v[x++]=r;f[d++]=r}}d=0;p=f.length;for(a=0;a<p;a++){r=f[a];if(r.timeUpdated>=n)f[d++]=r;else{c(r,false,n);if(r.collision.bodyA.sleepCounter>0&&r.collision.bodyB.sleepCounter>0)f[d++]=r;else{y[h++]=r;delete u[r.id]}}}f.length!==d&&(f.length=d);v.length!==x&&(v.length=x);y.length!==h&&(y.length=h);m.length!==b&&(m.length=b)};\n/**\n       * Clears the given pairs structure.\n       * @method clear\n       * @param {pairs} pairs\n       * @return {pairs} pairs\n       */i.clear=function(e){e.table={};e.list.length=0;e.collisionStart.length=0;e.collisionActive.length=0;e.collisionEnd.length=0;return e}})()},function(e,t,n){var i=e.exports=n(21);i.Axes=n(11);i.Bodies=n(12);i.Body=n(4);i.Bounds=n(1);i.Collision=n(8);i.Common=n(0);i.Composite=n(6);i.Composites=n(22);i.Constraint=n(10);i.Contact=n(16);i.Detector=n(13);i.Engine=n(17);i.Events=n(5);i.Grid=n(23);i.Mouse=n(14);i.MouseConstraint=n(24);i.Pair=n(9);i.Pairs=n(19);i.Plugin=n(15);i.Query=n(25);i.Render=n(26);i.Resolver=n(18);i.Runner=n(27);i.SAT=n(28);i.Sleeping=n(7);i.Svg=n(29);i.Vector=n(2);i.Vertices=n(3);i.World=n(30);i.Engine.run=i.Runner.run;i.Common.deprecated(i.Engine,\"run\",\"Engine.run \u27A4 use Matter.Runner.run(engine) instead\")},function(e,t,n){var i={};e.exports=i;var o=n(15);var r=n(0);(function(){\n/**\n       * The library name.\n       * @property name\n       * @readOnly\n       * @type {String}\n       */\ni.name=\"matter-js\";\n/**\n       * The library version.\n       * @property version\n       * @readOnly\n       * @type {String}\n       */i.version=\"0.20.0\";\n/**\n       * A list of plugin dependencies to be installed. These are normally set and installed through `Matter.use`.\n       * Alternatively you may set `Matter.uses` manually and install them by calling `Plugin.use(Matter)`.\n       * @property uses\n       * @type {Array}\n       */i.uses=[];\n/**\n       * The plugins that have been installed through `Matter.Plugin.install`. Read only.\n       * @property used\n       * @readOnly\n       * @type {Array}\n       */i.used=[];\n/**\n       * Installs the given plugins on the `Matter` namespace.\n       * This is a short-hand for `Plugin.use`, see it for more information.\n       * Call this function once at the start of your code, with all of the plugins you wish to install as arguments.\n       * Avoid calling this function multiple times unless you intend to manually control installation order.\n       * @method use\n       * @param ...plugin {Function} The plugin(s) to install on `base` (multi-argument).\n       */i.use=function(){o.use(i,Array.prototype.slice.call(arguments))};\n/**\n       * Chains a function to excute before the original function on the given `path` relative to `Matter`.\n       * See also docs for `Common.chain`.\n       * @method before\n       * @param {string} path The path relative to `Matter`\n       * @param {function} func The function to chain before the original\n       * @return {function} The chained function that replaced the original\n       */i.before=function(e,t){e=e.replace(/^Matter./,\"\");return r.chainPathBefore(i,e,t)};\n/**\n       * Chains a function to excute after the original function on the given `path` relative to `Matter`.\n       * See also docs for `Common.chain`.\n       * @method after\n       * @param {string} path The path relative to `Matter`\n       * @param {function} func The function to chain after the original\n       * @return {function} The chained function that replaced the original\n       */i.after=function(e,t){e=e.replace(/^Matter./,\"\");return r.chainPathAfter(i,e,t)}})()},function(e,t,n){var i={};e.exports=i;var o=n(6);var r=n(10);var a=n(0);var s=n(4);var l=n(12);var c=a.deprecated;(function(){\n/**\n       * Create a new composite containing bodies created in the callback in a grid arrangement.\n       * This function uses the body's bounds to prevent overlaps.\n       * @method stack\n       * @param {number} x Starting position in X.\n       * @param {number} y Starting position in Y.\n       * @param {number} columns\n       * @param {number} rows\n       * @param {number} columnGap\n       * @param {number} rowGap\n       * @param {function} callback\n       * @return {composite} A new composite containing objects created in the callback\n       */\ni.stack=function(e,t,n,i,r,a,l){var c,u=o.create({label:\"Stack\"}),f=e,p=t,d=0;for(var v=0;v<i;v++){var y=0;for(var m=0;m<n;m++){var g=l(f,p,m,v,c,d);if(g){var x=g.bounds.max.y-g.bounds.min.y,h=g.bounds.max.x-g.bounds.min.x;x>y&&(y=x);s.translate(g,{x:h*.5,y:x*.5});f=g.bounds.max.x+r;o.addBody(u,g);c=g;d+=1}else f+=r}p+=y+a;f=e}return u};\n/**\n       * Chains all bodies in the given composite together using constraints.\n       * @method chain\n       * @param {composite} composite\n       * @param {number} xOffsetA\n       * @param {number} yOffsetA\n       * @param {number} xOffsetB\n       * @param {number} yOffsetB\n       * @param {object} options\n       * @return {composite} A new composite containing objects chained together with constraints\n       */i.chain=function(e,t,n,i,s,l){var c=e.bodies;for(var u=1;u<c.length;u++){var f=c[u-1],p=c[u],d=f.bounds.max.y-f.bounds.min.y,v=f.bounds.max.x-f.bounds.min.x,y=p.bounds.max.y-p.bounds.min.y,m=p.bounds.max.x-p.bounds.min.x;var g={bodyA:f,pointA:{x:v*t,y:d*n},bodyB:p,pointB:{x:m*i,y:y*s}};var x=a.extend(g,l);o.addConstraint(e,r.create(x))}e.label+=\" Chain\";return e};\n/**\n       * Connects bodies in the composite with constraints in a grid pattern, with optional cross braces.\n       * @method mesh\n       * @param {composite} composite\n       * @param {number} columns\n       * @param {number} rows\n       * @param {boolean} crossBrace\n       * @param {object} options\n       * @return {composite} The composite containing objects meshed together with constraints\n       */i.mesh=function(e,t,n,i,s){var l,c,u,f,p,d=e.bodies;for(l=0;l<n;l++){for(c=1;c<t;c++){u=d[c-1+l*t];f=d[c+l*t];o.addConstraint(e,r.create(a.extend({bodyA:u,bodyB:f},s)))}if(l>0)for(c=0;c<t;c++){u=d[c+(l-1)*t];f=d[c+l*t];o.addConstraint(e,r.create(a.extend({bodyA:u,bodyB:f},s)));if(i&&c>0){p=d[c-1+(l-1)*t];o.addConstraint(e,r.create(a.extend({bodyA:p,bodyB:f},s)))}if(i&&c<t-1){p=d[c+1+(l-1)*t];o.addConstraint(e,r.create(a.extend({bodyA:p,bodyB:f},s)))}}}e.label+=\" Mesh\";return e};\n/**\n       * Create a new composite containing bodies created in the callback in a pyramid arrangement.\n       * This function uses the body's bounds to prevent overlaps.\n       * @method pyramid\n       * @param {number} x Starting position in X.\n       * @param {number} y Starting position in Y.\n       * @param {number} columns\n       * @param {number} rows\n       * @param {number} columnGap\n       * @param {number} rowGap\n       * @param {function} callback\n       * @return {composite} A new composite containing objects created in the callback\n       */i.pyramid=function(e,t,n,o,r,a,l){return i.stack(e,t,n,o,r,a,(function(t,i,a,c,u,f){var p=Math.min(o,Math.ceil(n/2)),d=u?u.bounds.max.x-u.bounds.min.x:0;if(!(c>p)){c=p-c;var v=c,y=n-1-c;if(!(a<v||a>y)){f===1&&s.translate(u,{x:(a+(n%2===1?1:-1))*d,y:0});var m=u?a*d:0;return l(e+m+a*r,i,a,c,u,f)}}}))};\n/**\n       * This has now moved to the [newtonsCradle example](https://github.com/liabru/matter-js/blob/master/examples/newtonsCradle.js), follow that instead as this function is deprecated here.\n       * @deprecated moved to newtonsCradle example\n       * @method newtonsCradle\n       * @param {number} x Starting position in X.\n       * @param {number} y Starting position in Y.\n       * @param {number} number\n       * @param {number} size\n       * @param {number} length\n       * @return {composite} A new composite newtonsCradle body\n       */i.newtonsCradle=function(e,t,n,i,a){var s=o.create({label:\"Newtons Cradle\"});for(var c=0;c<n;c++){var u=1.9,f=l.circle(e+c*(i*u),t+a,i,{inertia:Infinity,restitution:1,friction:0,frictionAir:1e-4,slop:1}),p=r.create({pointA:{x:e+c*(i*u),y:t},bodyB:f});o.addBody(s,f);o.addConstraint(s,p)}return s};c(i,\"newtonsCradle\",\"Composites.newtonsCradle \u27A4 moved to newtonsCradle example\");\n/**\n       * This has now moved to the [car example](https://github.com/liabru/matter-js/blob/master/examples/car.js), follow that instead as this function is deprecated here.\n       * @deprecated moved to car example\n       * @method car\n       * @param {number} x Starting position in X.\n       * @param {number} y Starting position in Y.\n       * @param {number} width\n       * @param {number} height\n       * @param {number} wheelSize\n       * @return {composite} A new composite car body\n       */i.car=function(e,t,n,i,a){var c=s.nextGroup(true),u=20,f=.5*-n+u,p=n*.5-u,d=0;var v=o.create({label:\"Car\"}),y=l.rectangle(e,t,n,i,{collisionFilter:{group:c},chamfer:{radius:i*.5},density:2e-4});var m=l.circle(e+f,t+d,a,{collisionFilter:{group:c},friction:.8});var g=l.circle(e+p,t+d,a,{collisionFilter:{group:c},friction:.8});var x=r.create({bodyB:y,pointB:{x:f,y:d},bodyA:m,stiffness:1,length:0});var h=r.create({bodyB:y,pointB:{x:p,y:d},bodyA:g,stiffness:1,length:0});o.addBody(v,y);o.addBody(v,m);o.addBody(v,g);o.addConstraint(v,x);o.addConstraint(v,h);return v};c(i,\"car\",\"Composites.car \u27A4 moved to car example\");\n/**\n       * This has now moved to the [softBody example](https://github.com/liabru/matter-js/blob/master/examples/softBody.js)\n       * and the [cloth example](https://github.com/liabru/matter-js/blob/master/examples/cloth.js), follow those instead as this function is deprecated here.\n       * @deprecated moved to softBody and cloth examples\n       * @method softBody\n       * @param {number} x Starting position in X.\n       * @param {number} y Starting position in Y.\n       * @param {number} columns\n       * @param {number} rows\n       * @param {number} columnGap\n       * @param {number} rowGap\n       * @param {boolean} crossBrace\n       * @param {number} particleRadius\n       * @param {} particleOptions\n       * @param {} constraintOptions\n       * @return {composite} A new composite softBody\n       */i.softBody=function(e,t,n,o,r,s,c,u,f,p){f=a.extend({inertia:Infinity},f);p=a.extend({stiffness:.2,render:{type:\"line\",anchors:false}},p);var d=i.stack(e,t,n,o,r,s,(function(e,t){return l.circle(e,t,u,f)}));i.mesh(d,n,o,c,p);d.label=\"Soft Body\";return d};c(i,\"softBody\",\"Composites.softBody \u27A4 moved to softBody and cloth examples\")})()},function(e,t,n){\n/**\n    * This module has now been replaced by `Matter.Detector`.\n    *\n    * All usage should be migrated to `Matter.Detector` or another alternative.\n    * For back-compatibility purposes this module will remain for a short term and then later removed in a future release.\n    *\n    * The `Matter.Grid` module contains methods for creating and manipulating collision broadphase grid structures.\n    *\n    * @class Grid\n    * @deprecated\n    */\nvar i={};e.exports=i;var o=n(9);var r=n(0);var a=r.deprecated;(function(){\n/**\n       * Creates a new grid.\n       * @deprecated replaced by Matter.Detector\n       * @method create\n       * @param {} options\n       * @return {grid} A new grid\n       */\ni.create=function(e){var t={buckets:{},pairs:{},pairsList:[],bucketWidth:48,bucketHeight:48};return r.extend(t,e)};\n/**\n       * The width of a single grid bucket.\n       *\n       * @property bucketWidth\n       * @type number\n       * @default 48\n       */\n/**\n       * The height of a single grid bucket.\n       *\n       * @property bucketHeight\n       * @type number\n       * @default 48\n       */\n/**\n       * Updates the grid.\n       * @deprecated replaced by Matter.Detector\n       * @method update\n       * @param {grid} grid\n       * @param {body[]} bodies\n       * @param {engine} engine\n       * @param {boolean} forceUpdate\n       */i.update=function(e,t,n,o){var r,a,s,l,c,u=n.world,f=e.buckets,p=false;for(r=0;r<t.length;r++){var d=t[r];if((!d.isSleeping||o)&&(!u.bounds||!(d.bounds.max.x<u.bounds.min.x||d.bounds.min.x>u.bounds.max.x||d.bounds.max.y<u.bounds.min.y||d.bounds.min.y>u.bounds.max.y))){var v=i._getRegion(e,d);if(!d.region||v.id!==d.region.id||o){d.region&&!o||(d.region=v);var y=i._regionUnion(v,d.region);for(a=y.startCol;a<=y.endCol;a++)for(s=y.startRow;s<=y.endRow;s++){c=i._getBucketId(a,s);l=f[c];var m=a>=v.startCol&&a<=v.endCol&&s>=v.startRow&&s<=v.endRow;var g=a>=d.region.startCol&&a<=d.region.endCol&&s>=d.region.startRow&&s<=d.region.endRow;!m&&g&&g&&l&&i._bucketRemoveBody(e,l,d);if(d.region===v||m&&!g||o){l||(l=i._createBucket(f,c));i._bucketAddBody(e,l,d)}}d.region=v;p=true}}}p&&(e.pairsList=i._createActivePairsList(e))};a(i,\"update\",\"Grid.update \u27A4 replaced by Matter.Detector\");\n/**\n       * Clears the grid.\n       * @deprecated replaced by Matter.Detector\n       * @method clear\n       * @param {grid} grid\n       */i.clear=function(e){e.buckets={};e.pairs={};e.pairsList=[]};a(i,\"clear\",\"Grid.clear \u27A4 replaced by Matter.Detector\");\n/**\n       * Finds the union of two regions.\n       * @method _regionUnion\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} regionA\n       * @param {} regionB\n       * @return {} region\n       */i._regionUnion=function(e,t){var n=Math.min(e.startCol,t.startCol),o=Math.max(e.endCol,t.endCol),r=Math.min(e.startRow,t.startRow),a=Math.max(e.endRow,t.endRow);return i._createRegion(n,o,r,a)};\n/**\n       * Gets the region a given body falls in for a given grid.\n       * @method _getRegion\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} grid\n       * @param {} body\n       * @return {} region\n       */i._getRegion=function(e,t){var n=t.bounds,o=Math.floor(n.min.x/e.bucketWidth),r=Math.floor(n.max.x/e.bucketWidth),a=Math.floor(n.min.y/e.bucketHeight),s=Math.floor(n.max.y/e.bucketHeight);return i._createRegion(o,r,a,s)};\n/**\n       * Creates a region.\n       * @method _createRegion\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} startCol\n       * @param {} endCol\n       * @param {} startRow\n       * @param {} endRow\n       * @return {} region\n       */i._createRegion=function(e,t,n,i){return{id:e+\",\"+t+\",\"+n+\",\"+i,startCol:e,endCol:t,startRow:n,endRow:i}};\n/**\n       * Gets the bucket id at the given position.\n       * @method _getBucketId\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} column\n       * @param {} row\n       * @return {string} bucket id\n       */i._getBucketId=function(e,t){return\"C\"+e+\"R\"+t};\n/**\n       * Creates a bucket.\n       * @method _createBucket\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} buckets\n       * @param {} bucketId\n       * @return {} bucket\n       */i._createBucket=function(e,t){var n=e[t]=[];return n};\n/**\n       * Adds a body to a bucket.\n       * @method _bucketAddBody\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} grid\n       * @param {} bucket\n       * @param {} body\n       */i._bucketAddBody=function(e,t,n){var i,r=e.pairs,a=o.id,s=t.length;for(i=0;i<s;i++){var l=t[i];if(!(n.id===l.id||n.isStatic&&l.isStatic)){var c=a(n,l),u=r[c];u?u[2]+=1:r[c]=[n,l,1]}}t.push(n)};\n/**\n       * Removes a body from a bucket.\n       * @method _bucketRemoveBody\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} grid\n       * @param {} bucket\n       * @param {} body\n       */i._bucketRemoveBody=function(e,t,n){var i,a=e.pairs,s=o.id;t.splice(r.indexOf(t,n),1);var l=t.length;for(i=0;i<l;i++){var c=a[s(n,t[i])];c&&(c[2]-=1)}};\n/**\n       * Generates a list of the active pairs in the grid.\n       * @method _createActivePairsList\n       * @deprecated replaced by Matter.Detector\n       * @private\n       * @param {} grid\n       * @return [] pairs\n       */i._createActivePairsList=function(e){var t,n,i=e.pairs,o=r.keys(i),a=o.length,s=[];for(n=0;n<a;n++){t=i[o[n]];t[2]>0?s.push(t):delete i[o[n]]}return s}})()},function(e,t,n){var i={};e.exports=i;var o=n(3);var r=n(7);var a=n(14);var s=n(5);var l=n(13);var c=n(10);var u=n(6);var f=n(0);var p=n(1);(function(){\n/**\n       * Creates a new mouse constraint.\n       * All properties have default values, and many are pre-calculated automatically based on other properties.\n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {engine} engine\n       * @param {} options\n       * @return {MouseConstraint} A new MouseConstraint\n       */\ni.create=function(e,t){var n=(e?e.mouse:null)||(t?t.mouse:null);if(!n)if(e&&e.render&&e.render.canvas)n=a.create(e.render.canvas);else if(t&&t.element)n=a.create(t.element);else{n=a.create();f.warn(\"MouseConstraint.create: options.mouse was undefined, options.element was undefined, may not function as expected\")}var o=c.create({label:\"Mouse Constraint\",pointA:n.position,pointB:{x:0,y:0},length:.01,stiffness:.1,angularStiffness:1,render:{strokeStyle:\"#90EE90\",lineWidth:3}});var r={type:\"mouseConstraint\",mouse:n,element:null,body:null,constraint:o,collisionFilter:{category:1,mask:4294967295,group:0}};var l=f.extend(r,t);s.on(e,\"beforeUpdate\",(function(){var t=u.allBodies(e.world);i.update(l,t);i._triggerEvents(l)}));return l};\n/**\n       * Updates the given mouse constraint.\n       * @private\n       * @method update\n       * @param {MouseConstraint} mouseConstraint\n       * @param {body[]} bodies\n       */i.update=function(e,t){var n=e.mouse,i=e.constraint,a=e.body;if(n.button===0)if(i.bodyB){r.set(i.bodyB,false);i.pointA=n.position}else for(var c=0;c<t.length;c++){a=t[c];if(p.contains(a.bounds,n.position)&&l.canCollide(a.collisionFilter,e.collisionFilter))for(var u=a.parts.length>1?1:0;u<a.parts.length;u++){var f=a.parts[u];if(o.contains(f.vertices,n.position)){i.pointA=n.position;i.bodyB=e.body=a;i.pointB={x:n.position.x-a.position.x,y:n.position.y-a.position.y};i.angleB=a.angle;r.set(a,false);s.trigger(e,\"startdrag\",{mouse:n,body:a});break}}}else{i.bodyB=e.body=null;i.pointB=null;a&&s.trigger(e,\"enddrag\",{mouse:n,body:a})}};\n/**\n       * Triggers mouse constraint events.\n       * @method _triggerEvents\n       * @private\n       * @param {mouse} mouseConstraint\n       */i._triggerEvents=function(e){var t=e.mouse,n=t.sourceEvents;n.mousemove&&s.trigger(e,\"mousemove\",{mouse:t});n.mousedown&&s.trigger(e,\"mousedown\",{mouse:t});n.mouseup&&s.trigger(e,\"mouseup\",{mouse:t});a.clearSourceEvents(t)};\n/**\n      * Fired when the mouse has moved (or a touch moves) during the last step\n      *\n      * @event mousemove\n      * @param {} event An event object\n      * @param {mouse} event.mouse The engine's mouse instance\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when the mouse is down (or a touch has started) during the last step\n      *\n      * @event mousedown\n      * @param {} event An event object\n      * @param {mouse} event.mouse The engine's mouse instance\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when the mouse is up (or a touch has ended) during the last step\n      *\n      * @event mouseup\n      * @param {} event An event object\n      * @param {mouse} event.mouse The engine's mouse instance\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when the user starts dragging a body\n      *\n      * @event startdrag\n      * @param {} event An event object\n      * @param {mouse} event.mouse The engine's mouse instance\n      * @param {body} event.body The body being dragged\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired when the user ends dragging a body\n      *\n      * @event enddrag\n      * @param {} event An event object\n      * @param {mouse} event.mouse The engine's mouse instance\n      * @param {body} event.body The body that has stopped being dragged\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n       * A `String` denoting the type of object.\n       *\n       * @property type\n       * @type string\n       * @default \"constraint\"\n       * @readOnly\n       */\n/**\n       * The `Mouse` instance in use. If not supplied in `MouseConstraint.create`, one will be created.\n       *\n       * @property mouse\n       * @type mouse\n       * @default mouse\n       */\n/**\n       * The `Body` that is currently being moved by the user, or `null` if no body.\n       *\n       * @property body\n       * @type body\n       * @default null\n       */\n/**\n       * The `Constraint` object that is used to move the body during interaction.\n       *\n       * @property constraint\n       * @type constraint\n       */\n/**\n       * An `Object` that specifies the collision filter properties.\n       * The collision filter allows the user to define which types of body this mouse constraint can interact with.\n       * See `body.collisionFilter` for more information.\n       *\n       * @property collisionFilter\n       * @type object\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(2);var r=n(8);var a=n(1);var s=n(12);var l=n(3);(function(){\n/**\n       * Returns a list of collisions between `body` and `bodies`.\n       * @method collides\n       * @param {body} body\n       * @param {body[]} bodies\n       * @return {collision[]} Collisions\n       */\ni.collides=function(e,t){var n=[],i=t.length,o=e.bounds,s=r.collides,l=a.overlaps;for(var c=0;c<i;c++){var u=t[c],f=u.parts.length,p=f===1?0:1;if(l(u.bounds,o))for(var d=p;d<f;d++){var v=u.parts[d];if(l(v.bounds,o)){var y=s(v,e);if(y){n.push(y);break}}}}return n};\n/**\n       * Casts a ray segment against a set of bodies and returns all collisions, ray width is optional. Intersection points are not provided.\n       * @method ray\n       * @param {body[]} bodies\n       * @param {vector} startPoint\n       * @param {vector} endPoint\n       * @param {number} [rayWidth]\n       * @return {collision[]} Collisions\n       */i.ray=function(e,t,n,r){r=r||1e-100;var a=o.angle(t,n),l=o.magnitude(o.sub(t,n)),c=(n.x+t.x)*.5,u=(n.y+t.y)*.5,f=s.rectangle(c,u,l,r,{angle:a}),p=i.collides(f,e);for(var d=0;d<p.length;d+=1){var v=p[d];v.body=v.bodyB=v.bodyA}return p};\n/**\n       * Returns all bodies whose bounds are inside (or outside if set) the given set of bounds, from the given set of bodies.\n       * @method region\n       * @param {body[]} bodies\n       * @param {bounds} bounds\n       * @param {bool} [outside=false]\n       * @return {body[]} The bodies matching the query\n       */i.region=function(e,t,n){var i=[];for(var o=0;o<e.length;o++){var r=e[o],s=a.overlaps(r.bounds,t);(s&&!n||!s&&n)&&i.push(r)}return i};\n/**\n       * Returns all bodies whose vertices contain the given point, from the given set of bodies.\n       * @method point\n       * @param {body[]} bodies\n       * @param {vector} point\n       * @return {body[]} The bodies matching the query\n       */i.point=function(e,t){var n=[];for(var i=0;i<e.length;i++){var o=e[i];if(a.contains(o.bounds,t))for(var r=o.parts.length===1?0:1;r<o.parts.length;r++){var s=o.parts[r];if(a.contains(s.bounds,t)&&l.contains(s.vertices,t)){n.push(o);break}}}return n}})()},function(e,t,n){var i={};e.exports=i;var o=n(4);var r=n(0);var a=n(6);var s=n(1);var l=n(5);var c=n(2);var u=n(14);(function(){var e,t;if(typeof window!==\"undefined\"){e=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.msRequestAnimationFrame||function(e){window.setTimeout((function(){e(r.now())}),1e3/60)};t=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.msCancelAnimationFrame}i._goodFps=30;i._goodDelta=1e3/60;\n/**\n       * Creates a new renderer. The options parameter is an object that specifies any properties you wish to override the defaults.\n       * All properties have default values, and many are pre-calculated automatically based on other properties.\n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {object} [options]\n       * @return {render} A new renderer\n       */i.create=function(e){var t={engine:null,element:null,canvas:null,mouse:null,frameRequestId:null,timing:{historySize:60,delta:0,deltaHistory:[],lastTime:0,lastTimestamp:0,lastElapsed:0,timestampElapsed:0,timestampElapsedHistory:[],engineDeltaHistory:[],engineElapsedHistory:[],engineUpdatesHistory:[],elapsedHistory:[]},options:{width:800,height:600,pixelRatio:1,background:\"#14151f\",wireframeBackground:\"#14151f\",wireframeStrokeStyle:\"#bbb\",hasBounds:!!e.bounds,enabled:true,wireframes:true,showSleeping:true,showDebug:false,showStats:false,showPerformance:false,showBounds:false,showVelocity:false,showCollisions:false,showSeparations:false,showAxes:false,showPositions:false,showAngleIndicator:false,showIds:false,showVertexNumbers:false,showConvexHulls:false,showInternalEdges:false,showMousePosition:false}};var n=r.extend(t,e);if(n.canvas){n.canvas.width=n.options.width||n.canvas.width;n.canvas.height=n.options.height||n.canvas.height}n.mouse=e.mouse;n.engine=e.engine;n.canvas=n.canvas||_createCanvas(n.options.width,n.options.height);n.context=n.canvas.getContext(\"2d\");n.textures={};n.bounds=n.bounds||{min:{x:0,y:0},max:{x:n.canvas.width,y:n.canvas.height}};n.controller=i;n.options.showBroadphase=false;n.options.pixelRatio!==1&&i.setPixelRatio(n,n.options.pixelRatio);r.isElement(n.element)&&n.element.appendChild(n.canvas);return n};\n/**\n       * Continuously updates the render canvas on the `requestAnimationFrame` event.\n       * @method run\n       * @param {render} render\n       */i.run=function(t){(function loop(n){t.frameRequestId=e(loop);_updateTiming(t,n);i.world(t,n);t.context.setTransform(t.options.pixelRatio,0,0,t.options.pixelRatio,0,0);(t.options.showStats||t.options.showDebug)&&i.stats(t,t.context,n);(t.options.showPerformance||t.options.showDebug)&&i.performance(t,t.context,n);t.context.setTransform(1,0,0,1,0,0)})()};\n/**\n       * Ends execution of `Render.run` on the given `render`, by canceling the animation frame request event loop.\n       * @method stop\n       * @param {render} render\n       */i.stop=function(e){t(e.frameRequestId)};\n/**\n       * Sets the pixel ratio of the renderer and updates the canvas.\n       * To automatically detect the correct ratio, pass the string `'auto'` for `pixelRatio`.\n       * @method setPixelRatio\n       * @param {render} render\n       * @param {number} pixelRatio\n       */i.setPixelRatio=function(e,t){var n=e.options,i=e.canvas;t===\"auto\"&&(t=_getPixelRatio(i));n.pixelRatio=t;i.setAttribute(\"data-pixel-ratio\",t);i.width=n.width*t;i.height=n.height*t;i.style.width=n.width+\"px\";i.style.height=n.height+\"px\"};\n/**\n       * Sets the render `width` and `height`.\n       * \n       * Updates the canvas accounting for `render.options.pixelRatio`.  \n       * \n       * Updates the bottom right render bound `render.bounds.max` relative to the provided `width` and `height`.\n       * The top left render bound `render.bounds.min` isn't changed.\n       * \n       * Follow this call with `Render.lookAt` if you need to change the render bounds.\n       * \n       * See also `Render.setPixelRatio`.\n       * @method setSize\n       * @param {render} render\n       * @param {number} width The width (in CSS pixels)\n       * @param {number} height The height (in CSS pixels)\n       */i.setSize=function(e,t,n){e.options.width=t;e.options.height=n;e.bounds.max.x=e.bounds.min.x+t;e.bounds.max.y=e.bounds.min.y+n;if(e.options.pixelRatio!==1)i.setPixelRatio(e,e.options.pixelRatio);else{e.canvas.width=t;e.canvas.height=n}};\n/**\n       * Positions and sizes the viewport around the given object bounds.\n       * Objects must have at least one of the following properties:\n       * - `object.bounds`\n       * - `object.position`\n       * - `object.min` and `object.max`\n       * - `object.x` and `object.y`\n       * @method lookAt\n       * @param {render} render\n       * @param {object[]} objects\n       * @param {vector} [padding]\n       * @param {bool} [center=true]\n       */i.lookAt=function(e,t,n,i){i=typeof i===\"undefined\"||i;t=r.isArray(t)?t:[t];n=n||{x:0,y:0};var o={min:{x:Infinity,y:Infinity},max:{x:-Infinity,y:-Infinity}};for(var a=0;a<t.length;a+=1){var s=t[a],l=s.bounds?s.bounds.min:s.min||s.position||s,c=s.bounds?s.bounds.max:s.max||s.position||s;if(l&&c){l.x<o.min.x&&(o.min.x=l.x);c.x>o.max.x&&(o.max.x=c.x);l.y<o.min.y&&(o.min.y=l.y);c.y>o.max.y&&(o.max.y=c.y)}}var f=o.max.x-o.min.x+2*n.x,p=o.max.y-o.min.y+2*n.y,d=e.canvas.height,v=e.canvas.width,y=v/d,m=f/p,g=1,x=1;m>y?x=m/y:g=y/m;e.options.hasBounds=true;e.bounds.min.x=o.min.x;e.bounds.max.x=o.min.x+f*g;e.bounds.min.y=o.min.y;e.bounds.max.y=o.min.y+p*x;if(i){e.bounds.min.x+=f*.5-f*g*.5;e.bounds.max.x+=f*.5-f*g*.5;e.bounds.min.y+=p*.5-p*x*.5;e.bounds.max.y+=p*.5-p*x*.5}e.bounds.min.x-=n.x;e.bounds.max.x-=n.x;e.bounds.min.y-=n.y;e.bounds.max.y-=n.y;if(e.mouse){u.setScale(e.mouse,{x:(e.bounds.max.x-e.bounds.min.x)/e.canvas.width,y:(e.bounds.max.y-e.bounds.min.y)/e.canvas.height});u.setOffset(e.mouse,e.bounds.min)}};\n/**\n       * Applies viewport transforms based on `render.bounds` to a render context.\n       * @method startViewTransform\n       * @param {render} render\n       */i.startViewTransform=function(e){var t=e.bounds.max.x-e.bounds.min.x,n=e.bounds.max.y-e.bounds.min.y,i=t/e.options.width,o=n/e.options.height;e.context.setTransform(e.options.pixelRatio/i,0,0,e.options.pixelRatio/o,0,0);e.context.translate(-e.bounds.min.x,-e.bounds.min.y)};\n/**\n       * Resets all transforms on the render context.\n       * @method endViewTransform\n       * @param {render} render\n       */i.endViewTransform=function(e){e.context.setTransform(e.options.pixelRatio,0,0,e.options.pixelRatio,0,0)};\n/**\n       * Renders the given `engine`'s `Matter.World` object.\n       * This is the entry point for all rendering and should be called every time the scene changes.\n       * @method world\n       * @param {render} render\n       */i.world=function(e,t){var n=r.now(),o=e.engine,f=o.world,p=e.canvas,d=e.context,v=e.options,y=e.timing;var m,g=a.allBodies(f),x=a.allConstraints(f),h=v.wireframes?v.wireframeBackground:v.background,b=[],S=[];var w={timestamp:o.timing.timestamp};l.trigger(e,\"beforeRender\",w);e.currentBackground!==h&&_applyBackground(e,h);d.globalCompositeOperation=\"source-in\";d.fillStyle=\"transparent\";d.fillRect(0,0,p.width,p.height);d.globalCompositeOperation=\"source-over\";if(v.hasBounds){for(m=0;m<g.length;m++){var _=g[m];s.overlaps(_.bounds,e.bounds)&&b.push(_)}for(m=0;m<x.length;m++){var A=x[m],P=A.bodyA,B=A.bodyB,M=A.pointA,k=A.pointB;P&&(M=c.add(P.position,A.pointA));B&&(k=c.add(B.position,A.pointB));M&&k&&((s.contains(e.bounds,M)||s.contains(e.bounds,k))&&S.push(A))}i.startViewTransform(e);if(e.mouse){u.setScale(e.mouse,{x:(e.bounds.max.x-e.bounds.min.x)/e.options.width,y:(e.bounds.max.y-e.bounds.min.y)/e.options.height});u.setOffset(e.mouse,e.bounds.min)}}else{S=x;b=g;e.options.pixelRatio!==1&&e.context.setTransform(e.options.pixelRatio,0,0,e.options.pixelRatio,0,0)}if(!v.wireframes||o.enableSleeping&&v.showSleeping)i.bodies(e,b,d);else{v.showConvexHulls&&i.bodyConvexHulls(e,b,d);i.bodyWireframes(e,b,d)}v.showBounds&&i.bodyBounds(e,b,d);(v.showAxes||v.showAngleIndicator)&&i.bodyAxes(e,b,d);v.showPositions&&i.bodyPositions(e,b,d);v.showVelocity&&i.bodyVelocity(e,b,d);v.showIds&&i.bodyIds(e,b,d);v.showSeparations&&i.separations(e,o.pairs.list,d);v.showCollisions&&i.collisions(e,o.pairs.list,d);v.showVertexNumbers&&i.vertexNumbers(e,b,d);v.showMousePosition&&i.mousePosition(e,e.mouse,d);i.constraints(S,d);v.hasBounds&&i.endViewTransform(e);l.trigger(e,\"afterRender\",w);y.lastElapsed=r.now()-n};\n/**\n       * Renders statistics about the engine and world useful for debugging.\n       * @private\n       * @method stats\n       * @param {render} render\n       * @param {RenderingContext} context\n       * @param {Number} time\n       */i.stats=function(e,t,n){var i=e.engine,o=i.world,r=a.allBodies(o),s=0,l=55,c=44,u=0,f=0;for(var p=0;p<r.length;p+=1)s+=r[p].parts.length;var d={Part:s,Body:r.length,Cons:a.allConstraints(o).length,Comp:a.allComposites(o).length,Pair:i.pairs.list.length};t.fillStyle=\"#0e0f19\";t.fillRect(u,f,l*5.5,c);t.font=\"12px Arial\";t.textBaseline=\"top\";t.textAlign=\"right\";for(var v in d){var y=d[v];t.fillStyle=\"#aaa\";t.fillText(v,u+l,f+8);t.fillStyle=\"#eee\";t.fillText(y,u+l,f+26);u+=l}};\n/**\n       * Renders engine and render performance information.\n       * @private\n       * @method performance\n       * @param {render} render\n       * @param {RenderingContext} context\n       */i.performance=function(e,t){var n=e.engine,o=e.timing,a=o.deltaHistory,s=o.elapsedHistory,l=o.timestampElapsedHistory,c=o.engineDeltaHistory,u=o.engineUpdatesHistory,f=o.engineElapsedHistory,p=n.timing.lastUpdatesPerFrame,d=n.timing.lastDelta;var v=_mean(a),y=_mean(s),m=_mean(c),g=_mean(u),x=_mean(f),h=_mean(l),b=h/v||0,S=Math.round(v/d),w=1e3/v||0;var _=4,A=12,P=60,B=34,M=10,k=69;t.fillStyle=\"#0e0f19\";t.fillRect(0,50,A*5+P*6+22,B);i.status(t,M,k,P,_,a.length,Math.round(w)+\" fps\",w/i._goodFps,(function(e){return a[e]/v-1}));i.status(t,M+A+P,k,P,_,c.length,d.toFixed(2)+\" dt\",i._goodDelta/d,(function(e){return c[e]/m-1}));i.status(t,M+(A+P)*2,k,P,_,u.length,p+\" upf\",Math.pow(r.clamp(g/S||1,0,1),4),(function(e){return u[e]/g-1}));i.status(t,M+(A+P)*3,k,P,_,f.length,x.toFixed(2)+\" ut\",1-p*x/i._goodFps,(function(e){return f[e]/x-1}));i.status(t,M+(A+P)*4,k,P,_,s.length,y.toFixed(2)+\" rt\",1-y/i._goodFps,(function(e){return s[e]/y-1}));i.status(t,M+(A+P)*5,k,P,_,l.length,b.toFixed(2)+\" x\",b*b*b,(function(e){return(l[e]/a[e]/b||0)-1}))};\n/**\n       * Renders a label, indicator and a chart.\n       * @private\n       * @method status\n       * @param {RenderingContext} context\n       * @param {number} x\n       * @param {number} y\n       * @param {number} width\n       * @param {number} height\n       * @param {number} count\n       * @param {string} label\n       * @param {string} indicator\n       * @param {function} plotY\n       */i.status=function(e,t,n,i,o,a,s,l,c){e.strokeStyle=\"#888\";e.fillStyle=\"#444\";e.lineWidth=1;e.fillRect(t,n+7,i,1);e.beginPath();e.moveTo(t,n+7-o*r.clamp(.4*c(0),-2,2));for(var u=0;u<i;u+=1)e.lineTo(t+u,n+7-(u<a?o*r.clamp(.4*c(u),-2,2):0));e.stroke();e.fillStyle=\"hsl(\"+r.clamp(25+95*l,0,120)+\",100%,60%)\";e.fillRect(t,n-7,4,4);e.font=\"12px Arial\";e.textBaseline=\"middle\";e.textAlign=\"right\";e.fillStyle=\"#eee\";e.fillText(s,t+i,n-5)};\n/**\n       * Description\n       * @private\n       * @method constraints\n       * @param {constraint[]} constraints\n       * @param {RenderingContext} context\n       */i.constraints=function(e,t){var n=t;for(var i=0;i<e.length;i++){var o=e[i];if(o.render.visible&&o.pointA&&o.pointB){var a,s,l=o.bodyA,u=o.bodyB;a=l?c.add(l.position,o.pointA):o.pointA;if(o.render.type===\"pin\"){n.beginPath();n.arc(a.x,a.y,3,0,2*Math.PI);n.closePath()}else{s=u?c.add(u.position,o.pointB):o.pointB;n.beginPath();n.moveTo(a.x,a.y);if(o.render.type===\"spring\"){var f,p=c.sub(s,a),d=c.perp(c.normalise(p)),v=Math.ceil(r.clamp(o.length/5,12,20));for(var y=1;y<v;y+=1){f=y%2===0?1:-1;n.lineTo(a.x+p.x*(y/v)+d.x*f*4,a.y+p.y*(y/v)+d.y*f*4)}}n.lineTo(s.x,s.y)}if(o.render.lineWidth){n.lineWidth=o.render.lineWidth;n.strokeStyle=o.render.strokeStyle;n.stroke()}if(o.render.anchors){n.fillStyle=o.render.strokeStyle;n.beginPath();n.arc(a.x,a.y,3,0,2*Math.PI);n.arc(s.x,s.y,3,0,2*Math.PI);n.closePath();n.fill()}}}};\n/**\n       * Description\n       * @private\n       * @method bodies\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodies=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options),c=l.showInternalEdges||!l.wireframes;for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(a=i.parts.length>1?1:0;a<i.parts.length;a++){o=i.parts[a];if(o.render.visible){l.showSleeping&&i.isSleeping?s.globalAlpha=.5*o.render.opacity:o.render.opacity!==1&&(s.globalAlpha=o.render.opacity);if(o.render.sprite&&o.render.sprite.texture&&!l.wireframes){var u=o.render.sprite,f=_getTexture(e,u.texture);s.translate(o.position.x,o.position.y);s.rotate(o.angle);s.drawImage(f,f.width*-u.xOffset*u.xScale,f.height*-u.yOffset*u.yScale,f.width*u.xScale,f.height*u.yScale);s.rotate(-o.angle);s.translate(-o.position.x,-o.position.y)}else{if(o.circleRadius){s.beginPath();s.arc(o.position.x,o.position.y,o.circleRadius,0,2*Math.PI)}else{s.beginPath();s.moveTo(o.vertices[0].x,o.vertices[0].y);for(var p=1;p<o.vertices.length;p++){!o.vertices[p-1].isInternal||c?s.lineTo(o.vertices[p].x,o.vertices[p].y):s.moveTo(o.vertices[p].x,o.vertices[p].y);o.vertices[p].isInternal&&!c&&s.moveTo(o.vertices[(p+1)%o.vertices.length].x,o.vertices[(p+1)%o.vertices.length].y)}s.lineTo(o.vertices[0].x,o.vertices[0].y);s.closePath()}if(l.wireframes){s.lineWidth=1;s.strokeStyle=e.options.wireframeStrokeStyle;s.stroke()}else{s.fillStyle=o.render.fillStyle;if(o.render.lineWidth){s.lineWidth=o.render.lineWidth;s.strokeStyle=o.render.strokeStyle;s.stroke()}s.fill()}}s.globalAlpha=1}}}};\n/**\n       * Optimised method for drawing body wireframes in one pass\n       * @private\n       * @method bodyWireframes\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyWireframes=function(e,t,n){var i,o,r,a,s,l=n,c=e.options.showInternalEdges;l.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(s=i.parts.length>1?1:0;s<i.parts.length;s++){o=i.parts[s];l.moveTo(o.vertices[0].x,o.vertices[0].y);for(a=1;a<o.vertices.length;a++){!o.vertices[a-1].isInternal||c?l.lineTo(o.vertices[a].x,o.vertices[a].y):l.moveTo(o.vertices[a].x,o.vertices[a].y);o.vertices[a].isInternal&&!c&&l.moveTo(o.vertices[(a+1)%o.vertices.length].x,o.vertices[(a+1)%o.vertices.length].y)}l.lineTo(o.vertices[0].x,o.vertices[0].y)}}l.lineWidth=1;l.strokeStyle=e.options.wireframeStrokeStyle;l.stroke()};\n/**\n       * Optimised method for drawing body convex hull wireframes in one pass\n       * @private\n       * @method bodyConvexHulls\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyConvexHulls=function(e,t,n){var i,o,r,a=n;a.beginPath();for(o=0;o<t.length;o++){i=t[o];if(i.render.visible&&i.parts.length!==1){a.moveTo(i.vertices[0].x,i.vertices[0].y);for(r=1;r<i.vertices.length;r++)a.lineTo(i.vertices[r].x,i.vertices[r].y);a.lineTo(i.vertices[0].x,i.vertices[0].y)}}a.lineWidth=1;a.strokeStyle=\"rgba(255,255,255,0.2)\";a.stroke()};\n/**\n       * Renders body vertex numbers.\n       * @private\n       * @method vertexNumbers\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.vertexNumbers=function(e,t,n){var i,o,r,a=n;for(i=0;i<t.length;i++){var s=t[i].parts;for(r=s.length>1?1:0;r<s.length;r++){var l=s[r];for(o=0;o<l.vertices.length;o++){a.fillStyle=\"rgba(255,255,255,0.2)\";a.fillText(i+\"_\"+o,l.position.x+.8*(l.vertices[o].x-l.position.x),l.position.y+.8*(l.vertices[o].y-l.position.y))}}}};\n/**\n       * Renders mouse position.\n       * @private\n       * @method mousePosition\n       * @param {render} render\n       * @param {mouse} mouse\n       * @param {RenderingContext} context\n       */i.mousePosition=function(e,t,n){var i=n;i.fillStyle=\"rgba(255,255,255,0.8)\";i.fillText(t.position.x+\"  \"+t.position.y,t.position.x+5,t.position.y-5)};\n/**\n       * Draws body bounds\n       * @private\n       * @method bodyBounds\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyBounds=function(e,t,n){var i=n,o=(e.engine,e.options);i.beginPath();for(var r=0;r<t.length;r++){var a=t[r];if(a.render.visible){var s=t[r].parts;for(var l=s.length>1?1:0;l<s.length;l++){var c=s[l];i.rect(c.bounds.min.x,c.bounds.min.y,c.bounds.max.x-c.bounds.min.x,c.bounds.max.y-c.bounds.min.y)}}}o.wireframes?i.strokeStyle=\"rgba(255,255,255,0.08)\":i.strokeStyle=\"rgba(0,0,0,0.1)\";i.lineWidth=1;i.stroke()};\n/**\n       * Draws body angle indicators and axes\n       * @private\n       * @method bodyAxes\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyAxes=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options);s.beginPath();for(o=0;o<t.length;o++){var c=t[o],u=c.parts;if(c.render.visible)if(l.showAxes)for(r=u.length>1?1:0;r<u.length;r++){i=u[r];for(a=0;a<i.axes.length;a++){var f=i.axes[a];s.moveTo(i.position.x,i.position.y);s.lineTo(i.position.x+f.x*20,i.position.y+f.y*20)}}else for(r=u.length>1?1:0;r<u.length;r++){i=u[r];for(a=0;a<i.axes.length;a++){s.moveTo(i.position.x,i.position.y);s.lineTo((i.vertices[0].x+i.vertices[i.vertices.length-1].x)/2,(i.vertices[0].y+i.vertices[i.vertices.length-1].y)/2)}}}if(l.wireframes){s.strokeStyle=\"indianred\";s.lineWidth=1}else{s.strokeStyle=\"rgba(255, 255, 255, 0.4)\";s.globalCompositeOperation=\"overlay\";s.lineWidth=2}s.stroke();s.globalCompositeOperation=\"source-over\"};\n/**\n       * Draws body positions\n       * @private\n       * @method bodyPositions\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyPositions=function(e,t,n){var i,o,r,a,s=n,l=(e.engine,e.options);s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible)for(a=0;a<i.parts.length;a++){o=i.parts[a];s.arc(o.position.x,o.position.y,3,0,2*Math.PI,false);s.closePath()}}l.wireframes?s.fillStyle=\"indianred\":s.fillStyle=\"rgba(0,0,0,0.5)\";s.fill();s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.render.visible){s.arc(i.positionPrev.x,i.positionPrev.y,2,0,2*Math.PI,false);s.closePath()}}s.fillStyle=\"rgba(255,165,0,0.8)\";s.fill()};\n/**\n       * Draws body velocity\n       * @private\n       * @method bodyVelocity\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyVelocity=function(e,t,n){var i=n;i.beginPath();for(var r=0;r<t.length;r++){var a=t[r];if(a.render.visible){var s=o.getVelocity(a);i.moveTo(a.position.x,a.position.y);i.lineTo(a.position.x+s.x,a.position.y+s.y)}}i.lineWidth=3;i.strokeStyle=\"cornflowerblue\";i.stroke()};\n/**\n       * Draws body ids\n       * @private\n       * @method bodyIds\n       * @param {render} render\n       * @param {body[]} bodies\n       * @param {RenderingContext} context\n       */i.bodyIds=function(e,t,n){var i,o,r=n;for(i=0;i<t.length;i++)if(t[i].render.visible){var a=t[i].parts;for(o=a.length>1?1:0;o<a.length;o++){var s=a[o];r.font=\"12px Arial\";r.fillStyle=\"rgba(255,255,255,0.5)\";r.fillText(s.id,s.position.x+10,s.position.y-10)}}};\n/**\n       * Description\n       * @private\n       * @method collisions\n       * @param {render} render\n       * @param {pair[]} pairs\n       * @param {RenderingContext} context\n       */i.collisions=function(e,t,n){var i,o,r,a,s=n,l=e.options;s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.isActive){o=i.collision;for(a=0;a<i.contactCount;a++){var c=i.contacts[a],u=c.vertex;s.rect(u.x-1.5,u.y-1.5,3.5,3.5)}}}l.wireframes?s.fillStyle=\"rgba(255,255,255,0.7)\":s.fillStyle=\"orange\";s.fill();s.beginPath();for(r=0;r<t.length;r++){i=t[r];if(i.isActive){o=i.collision;if(i.contactCount>0){var f=i.contacts[0].vertex.x,p=i.contacts[0].vertex.y;if(i.contactCount===2){f=(i.contacts[0].vertex.x+i.contacts[1].vertex.x)/2;p=(i.contacts[0].vertex.y+i.contacts[1].vertex.y)/2}o.bodyB===o.supports[0].body||o.bodyA.isStatic===true?s.moveTo(f-o.normal.x*8,p-o.normal.y*8):s.moveTo(f+o.normal.x*8,p+o.normal.y*8);s.lineTo(f,p)}}}l.wireframes?s.strokeStyle=\"rgba(255,165,0,0.7)\":s.strokeStyle=\"orange\";s.lineWidth=1;s.stroke()};\n/**\n       * Description\n       * @private\n       * @method separations\n       * @param {render} render\n       * @param {pair[]} pairs\n       * @param {RenderingContext} context\n       */i.separations=function(e,t,n){var i,o,r,a,s,l=n,c=e.options;l.beginPath();for(s=0;s<t.length;s++){i=t[s];if(i.isActive){o=i.collision;r=o.bodyA;a=o.bodyB;var u=1;a.isStatic||r.isStatic||(u=.5);a.isStatic&&(u=0);l.moveTo(a.position.x,a.position.y);l.lineTo(a.position.x-o.penetration.x*u,a.position.y-o.penetration.y*u);u=1;a.isStatic||r.isStatic||(u=.5);r.isStatic&&(u=0);l.moveTo(r.position.x,r.position.y);l.lineTo(r.position.x+o.penetration.x*u,r.position.y+o.penetration.y*u)}}c.wireframes?l.strokeStyle=\"rgba(255,165,0,0.5)\":l.strokeStyle=\"orange\";l.stroke()};\n/**\n       * Description\n       * @private\n       * @method inspector\n       * @param {inspector} inspector\n       * @param {RenderingContext} context\n       */i.inspector=function(e,t){e.engine;var n,i=e.selected,o=e.render,r=o.options;if(r.hasBounds){var a=o.bounds.max.x-o.bounds.min.x,s=o.bounds.max.y-o.bounds.min.y,l=a/o.options.width,c=s/o.options.height;t.scale(1/l,1/c);t.translate(-o.bounds.min.x,-o.bounds.min.y)}for(var u=0;u<i.length;u++){var f=i[u].data;t.translate(.5,.5);t.lineWidth=1;t.strokeStyle=\"rgba(255,165,0,0.9)\";t.setLineDash([1,2]);switch(f.type){case\"body\":n=f.bounds;t.beginPath();t.rect(Math.floor(n.min.x-3),Math.floor(n.min.y-3),Math.floor(n.max.x-n.min.x+6),Math.floor(n.max.y-n.min.y+6));t.closePath();t.stroke();break;case\"constraint\":var p=f.pointA;f.bodyA&&(p=f.pointB);t.beginPath();t.arc(p.x,p.y,10,0,2*Math.PI);t.closePath();t.stroke();break}t.setLineDash([]);t.translate(-.5,-.5)}if(e.selectStart!==null){t.translate(.5,.5);t.lineWidth=1;t.strokeStyle=\"rgba(255,165,0,0.6)\";t.fillStyle=\"rgba(255,165,0,0.1)\";n=e.selectBounds;t.beginPath();t.rect(Math.floor(n.min.x),Math.floor(n.min.y),Math.floor(n.max.x-n.min.x),Math.floor(n.max.y-n.min.y));t.closePath();t.stroke();t.fill();t.translate(-.5,-.5)}r.hasBounds&&t.setTransform(1,0,0,1,0,0)};\n/**\n       * Updates render timing.\n       * @method _updateTiming\n       * @private\n       * @param {render} render\n       * @param {number} time\n       */var _updateTiming=function(e,t){var n=e.engine,o=e.timing,r=o.historySize,a=n.timing.timestamp;o.delta=t-o.lastTime||i._goodDelta;o.lastTime=t;o.timestampElapsed=a-o.lastTimestamp||0;o.lastTimestamp=a;o.deltaHistory.unshift(o.delta);o.deltaHistory.length=Math.min(o.deltaHistory.length,r);o.engineDeltaHistory.unshift(n.timing.lastDelta);o.engineDeltaHistory.length=Math.min(o.engineDeltaHistory.length,r);o.timestampElapsedHistory.unshift(o.timestampElapsed);o.timestampElapsedHistory.length=Math.min(o.timestampElapsedHistory.length,r);o.engineUpdatesHistory.unshift(n.timing.lastUpdatesPerFrame);o.engineUpdatesHistory.length=Math.min(o.engineUpdatesHistory.length,r);o.engineElapsedHistory.unshift(n.timing.lastElapsed);o.engineElapsedHistory.length=Math.min(o.engineElapsedHistory.length,r);o.elapsedHistory.unshift(o.lastElapsed);o.elapsedHistory.length=Math.min(o.elapsedHistory.length,r)};\n/**\n       * Returns the mean value of the given numbers.\n       * @method _mean\n       * @private\n       * @param {Number[]} values\n       * @return {Number} the mean of given values\n       */var _mean=function(e){var t=0;for(var n=0;n<e.length;n+=1)t+=e[n];return t/e.length||0};\n/**\n       * @method _createCanvas\n       * @private\n       * @param {} width\n       * @param {} height\n       * @return canvas\n       */var _createCanvas=function(e,t){var n=document.createElement(\"canvas\");n.width=e;n.height=t;n.oncontextmenu=function(){return false};n.onselectstart=function(){return false};return n};\n/**\n       * Gets the pixel ratio of the canvas.\n       * @method _getPixelRatio\n       * @private\n       * @param {HTMLElement} canvas\n       * @return {Number} pixel ratio\n       */var _getPixelRatio=function(e){var t=e.getContext(\"2d\"),n=window.devicePixelRatio||1,i=t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1;return n/i};\n/**\n       * Gets the requested texture (an Image) via its path\n       * @method _getTexture\n       * @private\n       * @param {render} render\n       * @param {string} imagePath\n       * @return {Image} texture\n       */var _getTexture=function(e,t){var n=e.textures[t];if(n)return n;n=e.textures[t]=new Image;n.src=t;return n};\n/**\n       * Applies the background to the canvas using CSS.\n       * @method applyBackground\n       * @private\n       * @param {render} render\n       * @param {string} background\n       */var _applyBackground=function(e,t){var n=t;/(jpg|gif|png)$/.test(t)&&(n=\"url(\"+t+\")\");e.canvas.style.background=n;e.canvas.style.backgroundSize=\"contain\";e.currentBackground=t};\n/**\n      * Fired before rendering\n      *\n      * @event beforeRender\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired after rendering\n      *\n      * @event afterRender\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n       * A back-reference to the `Matter.Render` module.\n       *\n       * @deprecated\n       * @property controller\n       * @type render\n       */\n/**\n       * A reference to the `Matter.Engine` instance to be used.\n       *\n       * @property engine\n       * @type engine\n       */\n/**\n       * A reference to the element where the canvas is to be inserted (if `render.canvas` has not been specified)\n       *\n       * @property element\n       * @type HTMLElement\n       * @default null\n       */\n/**\n       * The canvas element to render to. If not specified, one will be created if `render.element` has been specified.\n       *\n       * @property canvas\n       * @type HTMLCanvasElement\n       * @default null\n       */\n/**\n       * A `Bounds` object that specifies the drawing view region.\n       * Rendering will be automatically transformed and scaled to fit within the canvas size (`render.options.width` and `render.options.height`).\n       * This allows for creating views that can pan or zoom around the scene.\n       * You must also set `render.options.hasBounds` to `true` to enable bounded rendering.\n       *\n       * @property bounds\n       * @type bounds\n       */\n/**\n       * The 2d rendering context from the `render.canvas` element.\n       *\n       * @property context\n       * @type CanvasRenderingContext2D\n       */\n/**\n       * The sprite texture cache.\n       *\n       * @property textures\n       * @type {}\n       */\n/**\n       * The mouse to render if `render.options.showMousePosition` is enabled.\n       *\n       * @property mouse\n       * @type mouse\n       * @default null\n       */\n/**\n       * The configuration options of the renderer.\n       *\n       * @property options\n       * @type {}\n       */\n/**\n       * The target width in pixels of the `render.canvas` to be created.\n       * See also the `options.pixelRatio` property to change render quality.\n       *\n       * @property options.width\n       * @type number\n       * @default 800\n       */\n/**\n       * The target height in pixels of the `render.canvas` to be created.\n       * See also the `options.pixelRatio` property to change render quality.\n       *\n       * @property options.height\n       * @type number\n       * @default 600\n       */\n/**\n       * The [pixel ratio](https://developer.mozilla.org/en-US/docs/Web/API/Window/devicePixelRatio) to use when rendering.\n       *\n       * @property options.pixelRatio\n       * @type number\n       * @default 1\n       */\n/**\n       * A CSS background color string to use when `render.options.wireframes` is disabled.\n       * This may be also set to `'transparent'` or equivalent.\n       *\n       * @property options.background\n       * @type string\n       * @default '#14151f'\n       */\n/**\n       * A CSS color string to use for background when `render.options.wireframes` is enabled.\n       * This may be also set to `'transparent'` or equivalent.\n       *\n       * @property options.wireframeBackground\n       * @type string\n       * @default '#14151f'\n       */\n/**\n       * A CSS color string to use for stroke when `render.options.wireframes` is enabled.\n       * This may be also set to `'transparent'` or equivalent.\n       *\n       * @property options.wireframeStrokeStyle\n       * @type string\n       * @default '#bbb'\n       */\n/**\n       * A flag that specifies if `render.bounds` should be used when rendering.\n       *\n       * @property options.hasBounds\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable all debug information overlays together.  \n       * This includes and has priority over the values of:\n       *\n       * - `render.options.showStats`\n       * - `render.options.showPerformance`\n       *\n       * @property options.showDebug\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the engine stats info overlay.  \n       * From left to right, the values shown are:\n       *\n       * - body parts total\n       * - body total\n       * - constraints total\n       * - composites total\n       * - collision pairs total\n       *\n       * @property options.showStats\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable performance charts.  \n       * From left to right, the values shown are:\n       *\n       * - average render frequency (e.g. 60 fps)\n       * - exact engine delta time used for last update (e.g. 16.66ms)\n       * - average updates per frame (e.g. 1)\n       * - average engine execution duration (e.g. 5.00ms)\n       * - average render execution duration (e.g. 0.40ms)\n       * - average effective play speed (e.g. '1.00x' is 'real-time')\n       *\n       * Each value is recorded over a fixed sample of past frames (60 frames).\n       *\n       * A chart shown below each value indicates the variance from the average over the sample.\n       * The more stable or fixed the value is the flatter the chart will appear.\n       *\n       * @property options.showPerformance\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable rendering entirely.\n       *\n       * @property options.enabled\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to toggle wireframe rendering otherwise solid fill rendering is used.\n       *\n       * @property options.wireframes\n       * @type boolean\n       * @default true\n       */\n/**\n       * A flag to enable or disable sleeping bodies indicators.\n       *\n       * @property options.showSleeping\n       * @type boolean\n       * @default true\n       */\n/**\n       * A flag to enable or disable the debug information overlay.\n       *\n       * @property options.showDebug\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the collision broadphase debug overlay.\n       *\n       * @deprecated no longer implemented\n       * @property options.showBroadphase\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body bounds debug overlay.\n       *\n       * @property options.showBounds\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body velocity debug overlay.\n       *\n       * @property options.showVelocity\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body collisions debug overlay.\n       *\n       * @property options.showCollisions\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the collision resolver separations debug overlay.\n       *\n       * @property options.showSeparations\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body axes debug overlay.\n       *\n       * @property options.showAxes\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body positions debug overlay.\n       *\n       * @property options.showPositions\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body angle debug overlay.\n       *\n       * @property options.showAngleIndicator\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body and part ids debug overlay.\n       *\n       * @property options.showIds\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body vertex numbers debug overlay.\n       *\n       * @property options.showVertexNumbers\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body convex hulls debug overlay.\n       *\n       * @property options.showConvexHulls\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the body internal edges debug overlay.\n       *\n       * @property options.showInternalEdges\n       * @type boolean\n       * @default false\n       */\n/**\n       * A flag to enable or disable the mouse position debug overlay.\n       *\n       * @property options.showMousePosition\n       * @type boolean\n       * @default false\n       */})()},function(e,t,n){var i={};e.exports=i;var o=n(5);var r=n(17);var a=n(0);(function(){i._maxFrameDelta=1e3/15;i._frameDeltaFallback=1e3/60;i._timeBufferMargin=1.5;i._elapsedNextEstimate=1;i._smoothingLowerBound=.1;i._smoothingUpperBound=.9;\n/**\n       * Creates a new Runner. \n       * See the properties section below for detailed information on what you can pass via the `options` object.\n       * @method create\n       * @param {} options\n       */i.create=function(e){var t={delta:1e3/60,frameDelta:null,frameDeltaSmoothing:true,frameDeltaSnapping:true,frameDeltaHistory:[],frameDeltaHistorySize:100,frameRequestId:null,timeBuffer:0,timeLastTick:null,maxUpdates:null,maxFrameTime:1e3/30,lastUpdatesDeferred:0,enabled:true};var n=a.extend(t,e);n.fps=0;return n};\n/**\n       * Runs a `Matter.Engine` whilst synchronising engine updates with the browser frame rate. \n       * See module and properties descriptions for more information on this runner.\n       * Alternatively see `Engine.update` to step the engine directly inside your own game loop implementation.\n       * @method run\n       * @param {runner} runner\n       * @param {engine} [engine]\n       * @return {runner} runner\n       */i.run=function(e,t){e.timeBuffer=i._frameDeltaFallback;(function onFrame(n){e.frameRequestId=i._onNextFrame(e,onFrame);n&&e.enabled&&i.tick(e,t,n)})();return e};\n/**\n       * Performs a single runner tick as used inside `Runner.run`.\n       * See module and properties descriptions for more information on this runner.\n       * Alternatively see `Engine.update` to step the engine directly inside your own game loop implementation.\n       * @method tick\n       * @param {runner} runner\n       * @param {engine} engine\n       * @param {number} time\n       */i.tick=function(e,t,n){var s=a.now(),l=e.delta,c=0;var u=n-e.timeLastTick;(!u||!e.timeLastTick||u>Math.max(i._maxFrameDelta,e.maxFrameTime))&&(u=e.frameDelta||i._frameDeltaFallback);if(e.frameDeltaSmoothing){e.frameDeltaHistory.push(u);e.frameDeltaHistory=e.frameDeltaHistory.slice(-e.frameDeltaHistorySize);var f=e.frameDeltaHistory.slice(0).sort();var p=e.frameDeltaHistory.slice(f.length*i._smoothingLowerBound,f.length*i._smoothingUpperBound);var d=_mean(p);u=d||u}e.frameDeltaSnapping&&(u=1e3/Math.round(1e3/u));e.frameDelta=u;e.timeLastTick=n;e.timeBuffer+=e.frameDelta;e.timeBuffer=a.clamp(e.timeBuffer,0,e.frameDelta+l*i._timeBufferMargin);e.lastUpdatesDeferred=0;var v=e.maxUpdates||Math.ceil(e.maxFrameTime/l);var y={timestamp:t.timing.timestamp};o.trigger(e,\"beforeTick\",y);o.trigger(e,\"tick\",y);var m=a.now();while(l>0&&e.timeBuffer>=l*i._timeBufferMargin){o.trigger(e,\"beforeUpdate\",y);r.update(t,l);o.trigger(e,\"afterUpdate\",y);e.timeBuffer-=l;c+=1;var g=a.now()-s,x=a.now()-m,h=g+i._elapsedNextEstimate*x/c;if(c>=v||h>e.maxFrameTime){e.lastUpdatesDeferred=Math.round(Math.max(0,e.timeBuffer/l-i._timeBufferMargin));break}}t.timing.lastUpdatesPerFrame=c;o.trigger(e,\"afterTick\",y);if(e.frameDeltaHistory.length>=100){e.lastUpdatesDeferred&&Math.round(e.frameDelta/l)>v?a.warnOnce(\"Matter.Runner: runner reached runner.maxUpdates, see docs.\"):e.lastUpdatesDeferred&&a.warnOnce(\"Matter.Runner: runner reached runner.maxFrameTime, see docs.\");typeof e.isFixed!==\"undefined\"&&a.warnOnce(\"Matter.Runner: runner.isFixed is now redundant, see docs.\");(e.deltaMin||e.deltaMax)&&a.warnOnce(\"Matter.Runner: runner.deltaMin and runner.deltaMax were removed, see docs.\");e.fps!==0&&a.warnOnce(\"Matter.Runner: runner.fps was replaced by runner.delta, see docs.\")}};\n/**\n       * Ends execution of `Runner.run` on the given `runner` by canceling the frame loop.\n       * Alternatively to temporarily pause the runner, see `runner.enabled`.\n       * @method stop\n       * @param {runner} runner\n       */i.stop=function(e){i._cancelNextFrame(e)};\n/**\n       * Schedules the `callback` on this `runner` for the next animation frame.\n       * @private\n       * @method _onNextFrame\n       * @param {runner} runner\n       * @param {function} callback\n       * @return {number} frameRequestId\n       */i._onNextFrame=function(e,t){if(typeof window===\"undefined\"||!window.requestAnimationFrame)throw new Error(\"Matter.Runner: missing required global window.requestAnimationFrame.\");e.frameRequestId=window.requestAnimationFrame(t);return e.frameRequestId};\n/**\n       * Cancels the last callback scheduled by `Runner._onNextFrame` on this `runner`.\n       * @private\n       * @method _cancelNextFrame\n       * @param {runner} runner\n       */i._cancelNextFrame=function(e){if(typeof window===\"undefined\"||!window.cancelAnimationFrame)throw new Error(\"Matter.Runner: missing required global window.cancelAnimationFrame.\");window.cancelAnimationFrame(e.frameRequestId)};\n/**\n       * Returns the mean of the given numbers.\n       * @method _mean\n       * @private\n       * @param {Number[]} values\n       * @return {Number} the mean of given values.\n       */var _mean=function(e){var t=0,n=e.length;for(var i=0;i<n;i+=1)t+=e[i];return t/n||0};\n/**\n      * Fired once at the start of the browser frame, before any engine updates.\n      *\n      * @event beforeTick\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired once at the start of the browser frame, after `beforeTick`.\n      *\n      * @event tick\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired once at the end of the browser frame, after `beforeTick`, `tick` and after any engine updates.\n      *\n      * @event afterTick\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired before each and every engine update in this browser frame (if any). \n      * There may be multiple engine update calls per browser frame (or none) depending on framerate and timestep delta.\n      *\n      * @event beforeUpdate\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n      * Fired after each and every engine update in this browser frame (if any). \n      * There may be multiple engine update calls per browser frame (or none) depending on framerate and timestep delta.\n      *\n      * @event afterUpdate\n      * @param {} event An event object\n      * @param {number} event.timestamp The engine.timing.timestamp of the event\n      * @param {} event.source The source object of the event\n      * @param {} event.name The name of the event\n      */\n/**\n       * The fixed timestep size used for `Engine.update` calls in milliseconds, known as `delta`.\n       * \n       * This value is recommended to be `1000 / 60` ms or smaller (i.e. equivalent to at least 60hz).\n       * \n       * Smaller `delta` values provide higher quality results at the cost of performance.\n       * \n       * You should usually avoid changing `delta` during running, otherwise quality may be affected. \n       * \n       * For smoother frame pacing choose a `delta` that is an even multiple of each display FPS you target, i.e. `1000 / (n * fps)` as this helps distribute an equal number of updates over each display frame.\n       * \n       * For example with a 60 Hz `delta` i.e. `1000 / 60` the runner will on average perform one update per frame on displays running 60 FPS and one update every two frames on displays running 120 FPS, etc.\n       * \n       * Where as e.g. using a 240 Hz `delta` i.e. `1000 / 240` the runner will on average perform four updates per frame on displays running 60 FPS and two updates per frame on displays running 120 FPS, etc.\n       * \n       * Therefore `Runner.run` will call multiple engine updates (or none) as needed to simulate the time elapsed between browser frames. \n       * \n       * In practice the number of updates in any particular frame may be restricted to respect the runner's performance budgets. These are specified by `runner.maxFrameTime` and `runner.maxUpdates`, see those properties for details.\n       * \n       * @property delta\n       * @type number\n       * @default 1000 / 60\n       */\n/**\n       * A flag that can be toggled to enable or disable tick calls on this runner, therefore pausing engine updates and events while the runner loop remains running.\n       *\n       * @property enabled\n       * @type boolean\n       * @default true\n       */\n/**\n       * The accumulated time elapsed that has yet to be simulated in milliseconds.\n       * This value is clamped within certain limits (see `Runner.tick` code).\n       *\n       * @private\n       * @property timeBuffer\n       * @type number\n       * @default 0\n       */\n/**\n       * The measured time elapsed between the last two browser frames measured in milliseconds.\n       * This is useful e.g. to estimate the current browser FPS using `1000 / runner.frameDelta`.\n       *\n       * @readonly\n       * @property frameDelta\n       * @type number\n       */\n/**\n       * Enables averaging to smooth frame rate measurements and therefore stabilise play rate.\n       *\n       * @property frameDeltaSmoothing\n       * @type boolean\n       * @default true\n       */\n/**\n       * Rounds measured browser frame delta to the nearest 1 Hz.\n       * This option can help smooth frame rate measurements and simplify handling hardware timing differences e.g. 59.94Hz and 60Hz displays.\n       * For best results you should also round your `runner.delta` equivalent to the nearest 1 Hz.\n       *\n       * @property frameDeltaSnapping\n       * @type boolean\n       * @default true\n       */\n/**\n       * A performance budget that limits execution time allowed for this runner per browser frame in milliseconds.\n       * \n       * To calculate the effective browser FPS at which this throttle is applied use `1000 / runner.maxFrameTime`.\n       * \n       * This performance budget is intended to help maintain browser interactivity and help improve framerate recovery during temporary high CPU usage.\n       * \n       * This budget only covers the measured time elapsed executing the functions called in the scope of the runner tick, including `Engine.update` and its related user event callbacks.\n       * \n       * You may also reduce this budget to allow for any significant additional processing you perform on the same thread outside the scope of this runner tick, e.g. rendering time.\n       * \n       * See also `runner.maxUpdates`.\n       *\n       * @property maxFrameTime\n       * @type number\n       * @default 1000 / 30\n       */\n/**\n       * An optional limit for maximum engine update count allowed per frame tick in addition to `runner.maxFrameTime`.\n       * \n       * Unless you set a value it is automatically chosen based on `runner.delta` and `runner.maxFrameTime`.\n       * \n       * See also `runner.maxFrameTime`.\n       * \n       * @property maxUpdates\n       * @type number\n       * @default null\n       */\n/**\n       * The timestamp of the last call to `Runner.tick` used to measure `frameDelta`.\n       *\n       * @private\n       * @property timeLastTick\n       * @type number\n       * @default 0\n       */\n/**\n       * The id of the last call to `Runner._onNextFrame`.\n       *\n       * @private\n       * @property frameRequestId\n       * @type number\n       * @default null\n       */})()},function(e,t,n){\n/**\n    * This module has now been replaced by `Matter.Collision`.\n    *\n    * All usage should be migrated to `Matter.Collision`.\n    * For back-compatibility purposes this module will remain for a short term and then later removed in a future release.\n    *\n    * The `Matter.SAT` module contains methods for detecting collisions using the Separating Axis Theorem.\n    *\n    * @class SAT\n    * @deprecated\n    */\nvar i={};e.exports=i;var o=n(8);var r=n(0);var a=r.deprecated;(function(){\n/**\n       * Detect collision between two bodies using the Separating Axis Theorem.\n       * @deprecated replaced by Collision.collides\n       * @method collides\n       * @param {body} bodyA\n       * @param {body} bodyB\n       * @return {collision} collision\n       */\ni.collides=function(e,t){return o.collides(e,t)};a(i,\"collides\",\"SAT.collides \u27A4 replaced by Collision.collides\")})()},function(e,t,n){var i={};e.exports=i;n(1);var o=n(0);(function(){\n/**\n       * Converts an SVG path into an array of vector points.\n       * If the input path forms a concave shape, you must decompose the result into convex parts before use.\n       * See `Bodies.fromVertices` which provides support for this.\n       * Note that this function is not guaranteed to support complex paths (such as those with holes).\n       * You must load the `pathseg.js` polyfill on newer browsers.\n       * @method pathToVertices\n       * @param {SVGPathElement} path\n       * @param {Number} [sampleLength=15]\n       * @return {Vector[]} points\n       */\ni.pathToVertices=function(e,t){typeof window===\"undefined\"||\"SVGPathSeg\"in window||o.warn(\"Svg.pathToVertices: SVGPathSeg not defined, a polyfill is required.\");var n,r,a,s,l,c,u,f,p,d,v,y,m=[],g=0,x=0,h=0;t=t||15;var addPoint=function(e,t,n){var i=n%2===1&&n>1;if(!p||e!=p.x||t!=p.y){if(p&&i){v=p.x;y=p.y}else{v=0;y=0}var o={x:v+e,y:y+t};!i&&p||(p=o);m.push(o);x=v+e;h=y+t}};var addSegmentPoint=function(e){var t=e.pathSegTypeAsLetter.toUpperCase();if(t!==\"Z\"){switch(t){case\"M\":case\"L\":case\"T\":case\"C\":case\"S\":case\"Q\":x=e.x;h=e.y;break;case\"H\":x=e.x;break;case\"V\":h=e.y;break}addPoint(x,h,e.pathSegType)}};i._svgPathToAbsolute(e);a=e.getTotalLength();c=[];for(n=0;n<e.pathSegList.numberOfItems;n+=1)c.push(e.pathSegList.getItem(n));u=c.concat();while(g<a){d=e.getPathSegAtLength(g);l=c[d];if(l!=f){while(u.length&&u[0]!=l)addSegmentPoint(u.shift());f=l}switch(l.pathSegTypeAsLetter.toUpperCase()){case\"C\":case\"T\":case\"S\":case\"Q\":case\"A\":s=e.getPointAtLength(g);addPoint(s.x,s.y,0);break}g+=t}for(n=0,r=u.length;n<r;++n)addSegmentPoint(u[n]);return m};i._svgPathToAbsolute=function(e){var t,n,i,o,r,a,s=e.pathSegList,l=0,c=0,u=s.numberOfItems;for(var f=0;f<u;++f){var p=s.getItem(f),d=p.pathSegTypeAsLetter;if(/[MLHVCSQTA]/.test(d)){\"x\"in p&&(l=p.x);\"y\"in p&&(c=p.y)}else{\"x1\"in p&&(i=l+p.x1);\"x2\"in p&&(r=l+p.x2);\"y1\"in p&&(o=c+p.y1);\"y2\"in p&&(a=c+p.y2);\"x\"in p&&(l+=p.x);\"y\"in p&&(c+=p.y);switch(d){case\"m\":s.replaceItem(e.createSVGPathSegMovetoAbs(l,c),f);break;case\"l\":s.replaceItem(e.createSVGPathSegLinetoAbs(l,c),f);break;case\"h\":s.replaceItem(e.createSVGPathSegLinetoHorizontalAbs(l),f);break;case\"v\":s.replaceItem(e.createSVGPathSegLinetoVerticalAbs(c),f);break;case\"c\":s.replaceItem(e.createSVGPathSegCurvetoCubicAbs(l,c,i,o,r,a),f);break;case\"s\":s.replaceItem(e.createSVGPathSegCurvetoCubicSmoothAbs(l,c,r,a),f);break;case\"q\":s.replaceItem(e.createSVGPathSegCurvetoQuadraticAbs(l,c,i,o),f);break;case\"t\":s.replaceItem(e.createSVGPathSegCurvetoQuadraticSmoothAbs(l,c),f);break;case\"a\":s.replaceItem(e.createSVGPathSegArcAbs(l,c,p.r1,p.r2,p.angle,p.largeArcFlag,p.sweepFlag),f);break;case\"z\":case\"Z\":l=t;c=n;break}}if(d==\"M\"||d==\"m\"){t=l;n=c}}}})()},function(e,t,n){var i={};e.exports=i;var o=n(6);n(0);(function(){i.create=o.create;i.add=o.add;i.remove=o.remove;i.clear=o.clear;i.addComposite=o.addComposite;i.addBody=o.addBody;i.addConstraint=o.addConstraint})()}])}));var n=t;const i=t.Matter,o=t.__esModule;export{i as Matter,o as __esModule,n as default};\n//# sourceMappingURL=matter.js.map\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import Matter from\"matter-js\";import{addPropertyControls,ControlType}from\"framer\";const opts={isStatic:true,friction:2};/**\n * @framerDisableUnlink\n */export function makeBodies(container,world,elements,frictionOpts,densityOpts){const conainerBounding=container.getBoundingClientRect();let stack=Matter.Composites.stack(0,0,elements.length,1,0,0,(xx,yy,i)=>{const{x,y,width,height}=elements[i].getBoundingClientRect();let maxLeft=conainerBounding.width-width;let maxTop=conainerBounding.height-height;//Randomizing children placement positions\nlet tLeft=Math.floor(Math.random()*maxLeft);let tTop=Math.floor(Math.random()*maxTop);return Matter.Bodies.rectangle(tLeft,tTop,width,height,{isStatic:false,density:densityOpts.enable?densityOpts.density:0,friction:frictionOpts.friction,frictionAir:frictionOpts.frictionAir});});Matter.World.add(world,stack);return stack;}export function makeWalls(conainerBounding,engine,wallOptions){let Bodies=Matter.Bodies;let bottom,top,wLeft,wRight;if(wallOptions.bottom){bottom=Bodies.rectangle(conainerBounding.width/2,conainerBounding.height+50,conainerBounding.width+100,100,opts);Matter.World.add(engine,bottom);}if(wallOptions.top){top=Bodies.rectangle(conainerBounding.width/2,-50,conainerBounding.width+100,100,opts);Matter.World.add(engine,top);}if(wallOptions.right){wRight=Bodies.rectangle(conainerBounding.width+50,conainerBounding.height/2,100,conainerBounding.height,opts);Matter.World.add(engine,wRight);}if(wallOptions.bottom){wLeft=Bodies.rectangle(-50,conainerBounding.height/2,100,conainerBounding.height,opts);Matter.World.add(engine,wLeft);}}/**\n * Realistic Physics\n * By OneFramer.com\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n */export default function Physics(props){var _props_children;//Setting intersection observer\nconst[isInView,setIsInView]=useState(false);useEffect(()=>{const observer=new IntersectionObserver(entries=>{entries.forEach(entry=>{if(entry.isIntersecting){setIsInView(true);}});},{threshold:.5});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);let engine;useEffect(()=>{if(!isInView)return;if(!engine){var _containerRef_current;engine=Matter.Engine.create({gravity:{y:props.gravY,x:props.gravX}});const containerBounding=containerRef.current.getBoundingClientRect();makeWalls(containerBounding,engine.world,props.wallOptions);if(props.debug){let render=Matter.Render.create({element:containerRef.current,engine:engine,options:{height:containerBounding.height,width:containerBounding.width,showAngleIndicator:true,showVelocity:true}});Matter.Render.run(render);}let mouseConstraint=null;if(props.mouseOptions.enable){let mouse=Matter.Mouse.create(containerRef.current);mouseConstraint=Matter.MouseConstraint.create(engine,{mouse:mouse,constraint:{angularStiffness:props.mouseOptions.angularStiffness,stiffness:props.mouseOptions.stiffness}});Matter.Composite.add(engine.world,mouseConstraint);mouseConstraint.mouse.element.removeEventListener(\"mousewheel\",mouseConstraint.mouse.mousewheel);mouseConstraint.mouse.element.removeEventListener(\"DOMMouseScroll\",mouseConstraint.mouse.mousewheel);mouseConstraint.mouse.element.removeEventListener(\"touchstart\",mouseConstraint.mouse.mousedown);mouseConstraint.mouse.element.removeEventListener(\"touchmove\",mouseConstraint.mouse.mousemove);mouseConstraint.mouse.element.removeEventListener(\"touchend\",mouseConstraint.mouse.mouseup);mouseConstraint.mouse.element.addEventListener(\"touchstart\",mouseConstraint.mouse.mousedown,{passive:true});mouseConstraint.mouse.element.addEventListener(\"touchmove\",e=>{if(mouseConstraint.body){mouseConstraint.mouse.mousemove(e);}});mouseConstraint.mouse.element.addEventListener(\"touchend\",e=>{if(mouseConstraint.body){mouseConstraint.mouse.mouseup(e);}});containerRef.current.addEventListener(\"mouseleave\",()=>{mouseConstraint.mouse.mouseup(event);});}let stack=makeBodies(containerRef.current,engine.world,(_containerRef_current=containerRef.current)===null||_containerRef_current===void 0?void 0:_containerRef_current.children,props.frictionOptions,props.densityOptions);(function update(){requestAnimationFrame(update);stack.bodies.forEach((block,i)=>{var _containerRef_current;let el=(_containerRef_current=containerRef.current)===null||_containerRef_current===void 0?void 0:_containerRef_current.children[i];let{x,y}=block.vertices[0];if(el){el.style.visibility=\"visible\";el.style.top=`${y}px`;el.style.left=`${x}px`;el.style.transform=`\n                          translate(-50%, -50%)\n                          rotate(${block.angle}rad) \n                          translate(50%, 50%)\n                          `;}});//\nMatter.Engine.update(engine);})();}},[isInView]);const containerRef=useRef(null);return /*#__PURE__*/_jsx(\"div\",{style:containerStyle,ref:containerRef,draggable:\"false\",onDragStart:e=>{e.preventDefault();},children:(props===null||props===void 0?void 0:(_props_children=props.children)===null||_props_children===void 0?void 0:_props_children.length)>0?props===null||props===void 0?void 0:props.children.map((el,i)=>{return /*#__PURE__*/_jsx(\"div\",{style:bodyStyle,id:\"physics-body\",draggable:\"false\",children:el});}):/*#__PURE__*/_jsx(\"div\",{style:bodyStyle,id:\"physics-body\",draggable:\"false\",children:props===null||props===void 0?void 0:props.children})});}//Parent and child element styles\nconst containerStyle={height:\"100%\",width:\"100%\",overflow:\"hidden\"};const bodyStyle={position:\"absolute\",visibility:\"hidden\"};//Default prop values\nPhysics.defaultProps={gravX:0,gravY:1,children:{},wallOptions:{top:true,bottom:true,right:true,left:true},frictionOptions:{friction:.1,frictionAir:.01},mouseOptions:{angularStiffnes:0,stiffness:.2,enable:true},densityOptions:{enable:true,density:.001}};//Property controls\naddPropertyControls(Physics,{children:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},gravY:{type:ControlType.Number,defaultValue:1,max:5,min:-5,step:.25,title:\"Gravity Y\",displayStepper:true},gravX:{type:ControlType.Number,defaultValue:0,max:5,min:-5,step:.25,title:\"Gravity X\",displayStepper:true},wallOptions:{title:\"Walls\",type:ControlType.Object,controls:{top:{type:ControlType.Boolean,defaultValue:true},bottom:{type:ControlType.Boolean,defaultValue:true},right:{type:ControlType.Boolean,defaultValue:true},left:{type:ControlType.Boolean,defaultValue:true}}},mouseOptions:{title:\"Mouse\",type:ControlType.Object,controls:{enable:{title:\"Enable\",type:ControlType.Boolean,defaultValue:true},angularStiffness:{title:\"Angular stiffness\",description:\"A value of 0 allows objects to swing when held by the mouse\",type:ControlType.Number,defaultValue:0,min:0,max:1,step:.01,displayStepper:true},stiffness:{title:\"Stiffness\",type:ControlType.Number,defaultValue:.2,min:.001,max:1,step:.01,displayStepper:true}}},friction:{type:ControlType.Object,controls:{friction:{title:\"Body friction\",type:ControlType.Number,min:0,max:1,defaultValue:.1,step:.01,displayStepper:true},frictionAir:{title:\"Air friction\",type:ControlType.Number,min:0,max:1,defaultValue:.01,step:.01,displayStepper:true}}},densityOptions:{title:\"Density\",type:ControlType.Object,controls:{enable:{type:ControlType.Boolean,defaultValue:true,description:\"Enabling density will cause mass to be calculated based on width and height\"},density:{type:ControlType.Number,defaultValue:.001,min:.001,max:1,step:.01,displayStepper:true}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Physics\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"makeBodies\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"makeWalls\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Physics.map", "// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SVGIcon from\"https://framerusercontent.com/modules/nCHxtXz6uqq1WVU5GP8Z/EQnJn75w9rD6j2U8enWU/SVG_Icon.js\";import Physics from\"https://framerusercontent.com/modules/rBHReI0HHk3yLYdlh0AX/xzyeyK9hQqvMiMerinY7/Physics.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6fweBtxO5tSuYwBUj0B7/ptU1vRbIblcKJ44rIGdU/aCoFbuR1C.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iCp3x1XyFznnh6Fr7saU/iHNGXDwgk20H9ZWd4gjd/mXBcYP47a.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/gO4cxOt8nGh8ce29NEk0/rRTtEAhJOtzbLFWUL3zS/ro7OPezbn.js\";import Button from\"https://framerusercontent.com/modules/lTvxRpKJhlAA7m9yvdaE/CON6XvM67wsWkRibsJMc/cwsX4aGnF.js\";import BigPill from\"https://framerusercontent.com/modules/sKUuWT7ppmDm6yVXtuuk/jCJhxugh4cyMtAMWl4mk/nADpfWhzA.js\";const ButtonFonts=getFonts(Button);const SVGIconFonts=getFonts(SVGIcon);const BigPillFonts=getFonts(BigPill);const PhysicsFonts=getFonts(Physics);const cycleOrder=[\"x5nSmRBD4\",\"jQa095zYQ\",\"mVz4gKBnW\",\"GKsAUiHlD\"];const serializationHash=\"framer-Ni60h\";const variantClassNames={GKsAUiHlD:\"framer-v-7x5kpq\",jQa095zYQ:\"framer-v-z2il1e\",mVz4gKBnW:\"framer-v-iy253\",x5nSmRBD4:\"framer-v-1y9t3mu\"};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 radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"x5nSmRBD4\",Laptop:\"jQa095zYQ\",Phone:\"GKsAUiHlD\",Tablet:\"mVz4gKBnW\"};const getProps=({background,height,id,radius,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,UJKCw9lWY:(_ref=radius!==null&&radius!==void 0?radius:props.UJKCw9lWY)!==null&&_ref!==void 0?_ref:\"0px 0px 0px 0px\",uXiSTzTdx:(_ref1=background!==null&&background!==void 0?background:props.uXiSTzTdx)!==null&&_ref1!==void 0?_ref1:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"x5nSmRBD4\"};};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,UJKCw9lWY,uXiSTzTdx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"x5nSmRBD4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if([\"mVz4gKBnW\",\"GKsAUiHlD\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"mVz4gKBnW\",\"GKsAUiHlD\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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-1y9t3mu\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"x5nSmRBD4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:uXiSTzTdx,borderBottomLeftRadius:radiusForCorner(UJKCw9lWY,3),borderBottomRightRadius:radiusForCorner(UJKCw9lWY,2),borderTopLeftRadius:radiusForCorner(UJKCw9lWY,0),borderTopRightRadius:radiusForCorner(UJKCw9lWY,1),...style},...addPropertyOverrides({GKsAUiHlD:{\"data-framer-name\":\"Phone\"},jQa095zYQ:{\"data-framer-name\":\"Laptop\"},mVz4gKBnW:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-76g2y8\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"tpyKMcpxD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c98y8k\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"l0NYfvLBa\",style:{backgroundColor:\"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ji68wr\",\"data-framer-name\":\"Head\",layoutDependency:layoutDependency,layoutId:\"cFpJKy2Cy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yefx6w\",\"data-framer-name\":\"CTA content\",layoutDependency:layoutDependency,layoutId:\"ti7bkPWoX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{className:\"framer-styles-preset-6sup80\",\"data-styles-preset\":\"mXBcYP47a\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Don't just market. \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1sp2osd, var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0)))\"},children:\"Dominate.\"})]})}),className:\"framer-12oed59\",\"data-framer-name\":\"Don't just market. Dominate.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bkoDcpav7\",style:{\"--extracted-1sp2osd\":\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"EXL - Your performance marketing partner.\"})}),className:\"framer-bi3g8c\",\"data-framer-name\":\"EXL, Your performance marketing partner.\",fonts:[\"FS;Cabinet Grotesk-bold\"],layoutDependency:layoutDependency,layoutId:\"zYXNk6btK\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GKsAUiHlD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWJvbGQ=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"EXL - Your performance marketing partner.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined},{href:{webPageId:\"eOXcIB2K2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(120+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1043.5)-240-803.5)/2)+0+40+0+0+0+391.2,...addPropertyOverrides({GKsAUiHlD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-160-2031.8)/2)+0+32+0+0+0+0+339.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nvex1j-container\",layoutDependency:layoutDependency,layoutId:\"dxswM9xtP-container\",children:/*#__PURE__*/_jsx(Button,{BUUqoZYUq:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",CVstdoAbH:\"space-between\",FRvGe31Ve:\"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\",height:\"100%\",id:\"dxswM9xtP\",layoutId:\"dxswM9xtP\",lImERsIuD:false,R3SMkngjt:\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",tYKasPPnV:\"Book your discovery call\",u4fVrIoY5:false,uXB6K1yqQ:\"4px 4px 4px 16px\",variant:\"XfeNojiOp\",vSngY_KQO:resolvedLinks[0],width:\"100%\",wkZe7h5FU:\"var(--token-25b31a9d-211f-4aed-b06c-add80335f614, rgb(0, 0, 0))\",ysD4u_Zs4:true,...addPropertyOverrides({GKsAUiHlD:{vSngY_KQO:resolvedLinks[3]},jQa095zYQ:{vSngY_KQO:resolvedLinks[1]},mVz4gKBnW:{vSngY_KQO:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3v25us\",\"data-framer-name\":\"Link Group\",layoutDependency:layoutDependency,layoutId:\"BMQLZI_6M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wjupni\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"DZmMZ1SyY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"Menu \"})}),className:\"framer-r9vfr8\",\"data-framer-name\":\"Menu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KWxbRbAN1\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d9n4oc\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"s_mw79IJt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":sG95OxpYb\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Home\"})})})}),className:\"framer-24t5qo\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KyvXDoLyO\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":LYTJihe34\",webPageId:\"ebZjGsmfV\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})}),className:\"framer-12wykjm\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iQPSq5OeS\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"I4IP1rpad\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Case Studies\"})})})}),className:\"framer-1w4w9ay\",\"data-framer-name\":\"Case Studies\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BC1RufDfq\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ow9h0x\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"YnZDAfs2O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"COMPANY\"})}),className:\"framer-wmh31k\",\"data-framer-name\":\"COMPANY\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rDvmBLw7Y\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-myr2vx\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"OC2yvhOeG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":SkLv16xqN\",webPageId:\"UMxPGWbOI\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Why Us\"})})})}),className:\"framer-17numqg\",\"data-framer-name\":\"Why Us\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OPJ2Uo5Du\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":HJnA7qocx\",webPageId:\"vF4L5j6Mo\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"About Us\"})})})}),className:\"framer-1s8pc4d\",\"data-framer-name\":\"About Us\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HBtmqVlrD\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":gZdT8U75B\",webPageId:\"eOXcIB2K2\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Contacts\"})})})}),className:\"framer-1gl1cyb\",\"data-framer-name\":\"Contacts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ICJCUbwcK\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y85yxc\",\"data-framer-name\":\"Category\",layoutDependency:layoutDependency,layoutId:\"VdBx6Yv5j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"SOCIAL\"})}),className:\"framer-1a1b3cc\",\"data-framer-name\":\"SOCIAL\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fjXujDX6g\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-afldej\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"LpvLUQBSC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:\"X\"})}),className:\"framer-8rmjzn\",\"data-framer-name\":\"TWITTER\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZTma5ag61\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/totalengage\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"LINKEDIN\"})})})}),className:\"framer-1119y94\",\"data-framer-name\":\"LINKEDIN\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cmpptBiPJ\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1syuzqh\",\"data-styles-preset\":\"aCoFbuR1C\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://swiy.co/PuT3\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"INSTAGRAM\"})})})}),className:\"framer-xjzjhu\",\"data-framer-name\":\"INSTAGRAM\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J3DaVqFGW\",style:{\"--extracted-r6o4lv\":\"var(--token-619a6a28-1b0b-49f3-ac26-778263d30015, rgb(255, 255, 228))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pl02yh-container\",\"data-framer-name\":\"Footer EXL\",layoutDependency:layoutDependency,layoutId:\"AOACxdCea-container\",name:\"Footer EXL\",children:/*#__PURE__*/_jsx(SVGIcon,{fillColor:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",height:\"100%\",id:\"AOACxdCea\",layoutId:\"AOACxdCea\",name:\"Footer EXL\",padding:0,strokeColor:\"rgba(0, 0, 0, 0)\",strokeWidth:0,style:{width:\"100%\"},svgCode:'<svg width=\"1279\" height=\"294\" viewBox=\"0 0 1279 294\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M1137.25 160.523V1.24707H943.594V294H943.923H1137.25H1279V160.523H1137.25Z\" fill=\"#DEFF00\"/> <path d=\"M814.71 1.8999H682.392L636.635 67.6588L586.877 1.8999H458.53H363.463V93.0717L447.725 147.935L363.463 202.798V294H458.53H586.877L634.874 231.893L682.392 294H814.71H906.314H909.776V202.798L825.515 147.935L909.776 93.0717V1.8999H906.314H814.71Z\" fill=\"#DEFF00\"/> <path d=\"M0 294H329.615V204.847H222.221V170.112H329.615V123.858H222.221V89.2124H329.615V0H0V294Z\" fill=\"#DEFF00\"/> </svg>',width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o54ann\",layoutDependency:layoutDependency,layoutId:\"Z3vTu_TTO\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12nsdyz-container\",\"data-framer-name\":\"Physics Mobile\",layoutDependency:layoutDependency,layoutId:\"KANl4AR4e-container\",name:\"Physics Mobile\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:1,height:\"100%\",id:\"KANl4AR4e\",layoutId:\"KANl4AR4e\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},name:\"Physics Mobile\",style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t0mwvp-container\",\"data-framer-name\":\"Measurable date\",layoutDependency:layoutDependency,layoutId:\"VHcjxEvfG-container\",name:\"Measurable date\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\",h7uCh8C_S:\"var(--token-80755e4e-39ea-4501-96ff-a0f06046212b, rgb(255, 255, 255))\",height:\"100%\",id:\"VHcjxEvfG\",layoutId:\"VHcjxEvfG\",name:\"Measurable date\",tXKdnHwF3:\"Measurable data\",variant:\"gZAHmLdQU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1703xog-container\",\"data-framer-name\":\"Growth\",layoutDependency:layoutDependency,layoutId:\"tcuM18gkZ-container\",name:\"Growth\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-940fbdde-1ec1-401a-8921-74ab1e3aba1a, rgb(75, 92, 11))\",h7uCh8C_S:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",height:\"100%\",id:\"tcuM18gkZ\",layoutId:\"tcuM18gkZ\",name:\"Growth\",tXKdnHwF3:\"growth\",variant:\"gZAHmLdQU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x5ff7x-container\",\"data-framer-name\":\"Impact\",layoutDependency:layoutDependency,layoutId:\"n_dDwcyMI-container\",name:\"Impact\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-93d35508-fdb0-430e-8392-31c646e9e136, rgb(172, 226, 254))\",h7uCh8C_S:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",height:\"100%\",id:\"n_dDwcyMI\",layoutId:\"n_dDwcyMI\",name:\"Impact\",tXKdnHwF3:\"Impact\",variant:\"gZAHmLdQU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ikwrj8-container\",\"data-framer-name\":\"Gain Insights\",layoutDependency:layoutDependency,layoutId:\"WRzHDiVOd-container\",name:\"Gain Insights\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-6e9c36ba-32ba-4ef5-85f3-022d361b8ba6, rgb(206, 195, 183))\",h7uCh8C_S:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",height:\"100%\",id:\"WRzHDiVOd\",layoutId:\"WRzHDiVOd\",name:\"Gain Insights\",tXKdnHwF3:\"Insights\",variant:\"gZAHmLdQU\",width:\"100%\"})})})]})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mz450t-container\",\"data-framer-name\":\"Physics Desktop\",layoutDependency:layoutDependency,layoutId:\"Qsebni5PO-container\",name:\"Physics Desktop\",children:/*#__PURE__*/_jsxs(Physics,{densityOptions:{density:.001,enable:true},friction:{friction:.1,frictionAir:.01},gravX:0,gravY:1,height:\"100%\",id:\"Qsebni5PO\",layoutId:\"Qsebni5PO\",mouseOptions:{angularStiffness:0,enable:true,stiffness:.2},name:\"Physics Desktop\",style:{height:\"100%\",width:\"100%\"},wallOptions:{bottom:true,left:true,right:true,top:true},width:\"100%\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mr6d6z-container\",\"data-framer-name\":\"Impact\",layoutDependency:layoutDependency,layoutId:\"JDeI65ZPl-container\",name:\"Impact\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-93d35508-fdb0-430e-8392-31c646e9e136, rgb(172, 226, 254))\",h7uCh8C_S:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",height:\"100%\",id:\"JDeI65ZPl\",layoutId:\"JDeI65ZPl\",name:\"Impact\",tXKdnHwF3:\"Impact\",variant:\"ITXY5I24N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14bhd1t-container\",\"data-framer-name\":\"Measurable date\",layoutDependency:layoutDependency,layoutId:\"tYJsT47tt-container\",name:\"Measurable date\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-07fc3228-e0a8-4c69-9446-32d6a52e89a2, rgb(255, 84, 0))\",h7uCh8C_S:\"var(--token-80755e4e-39ea-4501-96ff-a0f06046212b, rgb(255, 255, 255))\",height:\"100%\",id:\"tYJsT47tt\",layoutId:\"tYJsT47tt\",name:\"Measurable date\",tXKdnHwF3:\"Measurable data\",variant:\"ITXY5I24N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wcnbpz-container\",\"data-framer-name\":\"Growth\",layoutDependency:layoutDependency,layoutId:\"pIeEy7J4z-container\",name:\"Growth\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-940fbdde-1ec1-401a-8921-74ab1e3aba1a, rgb(75, 92, 11))\",h7uCh8C_S:\"var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0))\",height:\"100%\",id:\"pIeEy7J4z\",layoutId:\"pIeEy7J4z\",name:\"Growth\",tXKdnHwF3:\"growth\",variant:\"ITXY5I24N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:163,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hujjc8-container\",\"data-framer-name\":\"Gain Insights\",layoutDependency:layoutDependency,layoutId:\"YAgTn0nAz-container\",name:\"Gain Insights\",children:/*#__PURE__*/_jsx(BigPill,{dPZblZzGc:\"var(--token-6e9c36ba-32ba-4ef5-85f3-022d361b8ba6, rgb(206, 195, 183))\",h7uCh8C_S:\"var(--token-5161ec15-8a3f-436a-8821-c90d9f50c7f6, rgb(17, 24, 39))\",height:\"100%\",id:\"YAgTn0nAz\",layoutId:\"YAgTn0nAz\",name:\"Gain Insights\",tXKdnHwF3:\"Insights\",variant:\"ITXY5I24N\",width:\"100%\"})})})]})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ni60h.framer-1yj9rsc, .framer-Ni60h .framer-1yj9rsc { display: block; }\",\".framer-Ni60h.framer-1y9t3mu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 40px 120px 40px; position: relative; width: 1440px; }\",\".framer-Ni60h .framer-76g2y8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ni60h .framer-1c98y8k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 804px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ni60h .framer-1ji68wr { -webkit-user-select: auto; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; user-select: auto; width: 100%; z-index: 4; }\",\".framer-Ni60h .framer-1yefx6w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 480px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ni60h .framer-12oed59, .framer-Ni60h .framer-bi3g8c, .framer-Ni60h .framer-r9vfr8, .framer-Ni60h .framer-24t5qo, .framer-Ni60h .framer-12wykjm, .framer-Ni60h .framer-1w4w9ay, .framer-Ni60h .framer-wmh31k, .framer-Ni60h .framer-17numqg, .framer-Ni60h .framer-1s8pc4d, .framer-Ni60h .framer-1gl1cyb, .framer-Ni60h .framer-1a1b3cc, .framer-Ni60h .framer-8rmjzn, .framer-Ni60h .framer-1119y94, .framer-Ni60h .framer-xjzjhu { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ni60h .framer-1nvex1j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ni60h .framer-3v25us { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ni60h .framer-wjupni, .framer-Ni60h .framer-1ow9h0x, .framer-Ni60h .framer-1y85yxc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ni60h .framer-1d9n4oc, .framer-Ni60h .framer-myr2vx, .framer-Ni60h .framer-afldej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ni60h .framer-1pl02yh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Ni60h .framer-1o54ann { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 64px; z-index: 1; }\",\".framer-Ni60h .framer-12nsdyz-container { flex: none; height: 804px; left: 0px; position: absolute; right: 0px; top: -64px; }\",\".framer-Ni60h .framer-t0mwvp-container, .framer-Ni60h .framer-1703xog-container, .framer-Ni60h .framer-x5ff7x-container, .framer-Ni60h .framer-ikwrj8-container, .framer-Ni60h .framer-1mr6d6z-container, .framer-Ni60h .framer-14bhd1t-container, .framer-Ni60h .framer-1wcnbpz-container, .framer-Ni60h .framer-1hujjc8-container { height: auto; position: relative; width: auto; }\",\".framer-Ni60h .framer-mz450t-container { -webkit-user-select: auto; bottom: 0px; flex: none; left: 0px; pointer-events: auto; position: absolute; right: 0px; top: 0px; user-select: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ni60h.framer-1y9t3mu, .framer-Ni60h .framer-76g2y8, .framer-Ni60h .framer-1c98y8k, .framer-Ni60h .framer-1ji68wr, .framer-Ni60h .framer-1yefx6w, .framer-Ni60h .framer-3v25us, .framer-Ni60h .framer-wjupni, .framer-Ni60h .framer-1d9n4oc, .framer-Ni60h .framer-1ow9h0x, .framer-Ni60h .framer-myr2vx, .framer-Ni60h .framer-1y85yxc, .framer-Ni60h .framer-afldej, .framer-Ni60h .framer-1o54ann { gap: 0px; } .framer-Ni60h.framer-1y9t3mu > *, .framer-Ni60h .framer-76g2y8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ni60h.framer-1y9t3mu > :first-child, .framer-Ni60h .framer-76g2y8 > :first-child, .framer-Ni60h .framer-1ji68wr > :first-child, .framer-Ni60h .framer-3v25us > :first-child, .framer-Ni60h .framer-1o54ann > :first-child { margin-left: 0px; } .framer-Ni60h.framer-1y9t3mu > :last-child, .framer-Ni60h .framer-76g2y8 > :last-child, .framer-Ni60h .framer-1ji68wr > :last-child, .framer-Ni60h .framer-3v25us > :last-child, .framer-Ni60h .framer-1o54ann > :last-child { margin-right: 0px; } .framer-Ni60h .framer-1c98y8k > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Ni60h .framer-1c98y8k > :first-child, .framer-Ni60h .framer-1yefx6w > :first-child, .framer-Ni60h .framer-wjupni > :first-child, .framer-Ni60h .framer-1d9n4oc > :first-child, .framer-Ni60h .framer-1ow9h0x > :first-child, .framer-Ni60h .framer-myr2vx > :first-child, .framer-Ni60h .framer-1y85yxc > :first-child, .framer-Ni60h .framer-afldej > :first-child { margin-top: 0px; } .framer-Ni60h .framer-1c98y8k > :last-child, .framer-Ni60h .framer-1yefx6w > :last-child, .framer-Ni60h .framer-wjupni > :last-child, .framer-Ni60h .framer-1d9n4oc > :last-child, .framer-Ni60h .framer-1ow9h0x > :last-child, .framer-Ni60h .framer-myr2vx > :last-child, .framer-Ni60h .framer-1y85yxc > :last-child, .framer-Ni60h .framer-afldej > :last-child { margin-bottom: 0px; } .framer-Ni60h .framer-1ji68wr > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Ni60h .framer-1yefx6w > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Ni60h .framer-3v25us > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ni60h .framer-wjupni > *, .framer-Ni60h .framer-1ow9h0x > *, .framer-Ni60h .framer-1y85yxc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Ni60h .framer-1d9n4oc > *, .framer-Ni60h .framer-myr2vx > *, .framer-Ni60h .framer-afldej > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Ni60h .framer-1o54ann > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Ni60h.framer-v-z2il1e.framer-1y9t3mu { width: 1200px; }\",\".framer-Ni60h.framer-v-iy253.framer-1y9t3mu { padding: 120px 24px 120px 24px; width: 768px; }\",\".framer-Ni60h.framer-v-7x5kpq.framer-1y9t3mu { justify-content: flex-start; padding: 80px 0px 80px 0px; width: 390px; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1c98y8k { gap: 160px; height: min-content; padding: 32px; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1ji68wr { flex: none; flex-direction: column; height: min-content; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1yefx6w { flex: none; max-width: 312px; width: 100%; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-3v25us { flex: none; flex-direction: column; gap: 32px; width: 100%; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-wjupni { flex: none; width: min-content; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-r9vfr8, .framer-Ni60h.framer-v-7x5kpq .framer-24t5qo, .framer-Ni60h.framer-v-7x5kpq .framer-12wykjm, .framer-Ni60h.framer-v-7x5kpq .framer-1w4w9ay { white-space: pre; width: auto; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1d9n4oc { width: min-content; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1ow9h0x, .framer-Ni60h.framer-v-7x5kpq .framer-1y85yxc { flex: none; width: 100%; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-1o54ann { bottom: 0px; }\",\".framer-Ni60h.framer-v-7x5kpq .framer-12nsdyz-container { bottom: 0px; height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ni60h.framer-v-7x5kpq .framer-1c98y8k, .framer-Ni60h.framer-v-7x5kpq .framer-1ji68wr, .framer-Ni60h.framer-v-7x5kpq .framer-3v25us { gap: 0px; } .framer-Ni60h.framer-v-7x5kpq .framer-1c98y8k > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-Ni60h.framer-v-7x5kpq .framer-1c98y8k > :first-child, .framer-Ni60h.framer-v-7x5kpq .framer-1ji68wr > :first-child, .framer-Ni60h.framer-v-7x5kpq .framer-3v25us > :first-child { margin-top: 0px; } .framer-Ni60h.framer-v-7x5kpq .framer-1c98y8k > :last-child, .framer-Ni60h.framer-v-7x5kpq .framer-1ji68wr > :last-child, .framer-Ni60h.framer-v-7x5kpq .framer-3v25us > :last-child { margin-bottom: 0px; } .framer-Ni60h.framer-v-7x5kpq .framer-1ji68wr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Ni60h.framer-v-7x5kpq .framer-3v25us > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1043.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jQa095zYQ\":{\"layout\":[\"fixed\",\"auto\"]},\"mVz4gKBnW\":{\"layout\":[\"fixed\",\"auto\"]},\"GKsAUiHlD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UJKCw9lWY\":\"radius\",\"uXiSTzTdx\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN1aXaVD8A=withCSS(Component,css,\"framer-Ni60h\");export default FramerN1aXaVD8A;FramerN1aXaVD8A.displayName=\"Footer\";FramerN1aXaVD8A.defaultProps={height:1043.5,width:1440};addPropertyControls(FramerN1aXaVD8A,{variant:{options:[\"x5nSmRBD4\",\"jQa095zYQ\",\"mVz4gKBnW\",\"GKsAUiHlD\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},UJKCw9lWY:{defaultValue:\"0px 0px 0px 0px\",title:\"Radius\",type:ControlType.BorderRadius},uXiSTzTdx:{defaultValue:'var(--token-d2873cc6-42eb-40c0-8205-582532719427, rgb(222, 255, 0)) /* {\"name\":\"Main Chartreuse 400\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerN1aXaVD8A,[{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:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XMXWOHABYLQDJ42L65EFRYNVRY37HQCB/B2O4O6V3JMFM2WDCYQI3A47L5U4THDUL/WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2\",weight:\"700\"}]},...ButtonFonts,...SVGIconFonts,...BigPillFonts,...PhysicsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN1aXaVD8A\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"UJKCw9lWY\\\":\\\"radius\\\",\\\"uXiSTzTdx\\\":\\\"background\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jQa095zYQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mVz4gKBnW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GKsAUiHlD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"1043.5\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N1aXaVD8A.map"],
  "mappings": "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",
  "names": ["SVGIcon", "svgCode", "strokeColor", "strokeWidth", "fillColor", "padding", "svgContent", "setSvgContent", "ye", "ue", "updatedSvgContent", "svg", "doc", "svgElement", "path", "index", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "SVGIconFonts", "getFonts", "SVGIcon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "distribute", "height", "icon", "iconBG", "iconColor", "id", "lable", "lableColor", "link", "newTab", "padding", "smoothScroll", "width", "props", "_ref", "_humanReadableEnumMap_distribute", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tYKasPPnV", "FRvGe31Ve", "BUUqoZYUq", "wkZe7h5FU", "R3SMkngjt", "vSngY_KQO", "lImERsIuD", "u4fVrIoY5", "CVstdoAbH", "ysD4u_Zs4", "uXB6K1yqQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramercwsX4aGnF", "withCSS", "cwsX4aGnF_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SVGIconFonts", "getFonts", "SVGIcon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "align", "height", "iconColor", "id", "link", "newTab", "smoothScroll", "sublinkName", "textColor", "width", "props", "_ref", "_humanReadableEnumMap_align", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AhZQEMh6Z", "b_etgrb1q", "zkmrymntr", "AE2W6GB84", "hBbXx24ar", "LD4WS2EkB", "LLYu3G6d7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerIOfhW0saf", "withCSS", "IOfhW0saf_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "linkName", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "leoR9pRVZ", "R_GRs2aTO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap19gp46j", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerlodZQGngA", "withCSS", "lodZQGngA_default", "addPropertyControls", "ControlType", "addFonts", "ServiceLinkFonts", "getFonts", "lodZQGngA_default", "SublinkFonts", "IOfhW0saf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "R_GRs2aTOi7keg9", "args", "R_GRs2aTO1c2no4z", "R_GRs2aTO6245u8", "R_GRs2aTO137eo7s", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "Image2", "getLoadingLazyAtYPosition", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "css", "FramerdZlqeRGqy", "withCSS", "dZlqeRGqy_default", "addPropertyControls", "ControlType", "addFonts", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapxelj2o", "args", "onTapzbzc4d", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "Link", "css", "FramerglLQdp29n", "withCSS", "glLQdp29n_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SVGIconFonts", "getFonts", "SVGIcon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "fillColor", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "b31J3dGNS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "ComponentViewportProvider", "SVGIcon", "css", "FramerLylmglZgI", "withCSS", "LylmglZgI_default", "addPropertyControls", "ControlType", "addFonts", "SVGIconFonts", "fontStore", "fonts", "css", "className", "SVGIconFonts", "getFonts", "SVGIcon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click2", "height", "icon", "id", "link", "newTab", "smoothScroll", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ukNwTHIbU", "nXrYh_R1G", "Z6Dx8a9T7", "I5c2HwcVR", "pOZyLZCzL", "uHQPyl2ly", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1lj7q2s", "args", "onTapzref4g", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerSTS5lldtz", "withCSS", "STS5lldtz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LogoFonts", "getFonts", "LylmglZgI_default", "NavLinkFonts", "STS5lldtz_default", "ButtonFonts", "cwsX4aGnF_default", "ServicesDropdownMobileFonts", "glLQdp29n_default", "ServicesDropdownFonts", "dZlqeRGqy_default", "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", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter99k2gu", "args", "onMouseEnter172so1v", "onMouseEnter13fk0bx", "onTapsp1hi5", "onMouseLeave1714qcd", "onMouseLeave19tnzh4", "onTapktgtql", "onTapohobf6", "uHQPyl2lygh5ukp", "uHQPyl2ly1wbn45u", "uHQPyl2lyvkxhth", "uHQPyl2ly12a65xm", "onTap1wc7e9h", "onTap18g3wbw", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "RichText2", "Link", "resolvedLinks6", "css", "FramermjHEViGve", "withCSS", "mjHEViGve_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "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", "background", "height", "id", "text", "textColor", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tXKdnHwF3", "h7uCh8C_S", "dPZblZzGc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramernADpfWhzA", "withCSS", "nADpfWhzA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "e", "global", "t", "n", "__webpack_require__", "i", "o", "r", "a", "s", "window", "_seededRandom", "l", "chain", "c", "u", "f", "p", "d", "v", "y", "m", "g", "x", "h", "b", "S", "w", "_initProperties", "_", "A", "P", "B", "M", "k", "C", "I", "T", "R", "D", "E", "V", "F", "L", "q", "O", "H", "U", "j", "W", "N", "G", "z", "X", "Q", "Y", "Z", "$", "J", "K", "ee", "te", "ne", "ie", "oe", "re", "_createCanvas", "loop", "_updateTiming", "_getPixelRatio", "_applyBackground", "_mean", "_getTexture", "onFrame", "addPoint", "addSegmentPoint", "opts", "makeBodies", "container", "world", "elements", "frictionOpts", "densityOpts", "conainerBounding", "stack", "n", "xx", "yy", "i", "x", "y", "width", "height", "maxLeft", "maxTop", "tLeft", "tTop", "makeWalls", "engine", "wallOptions", "Bodies", "bottom", "top", "wLeft", "wRight", "Physics", "props", "_props_children", "isInView", "setIsInView", "ye", "ue", "observer", "entries", "entry", "containerRef", "_containerRef_current", "containerBounding", "render", "mouseConstraint", "mouse", "e", "update", "block", "el", "pe", "p", "containerStyle", "bodyStyle", "addPropertyControls", "ControlType", "ButtonFonts", "getFonts", "cwsX4aGnF_default", "SVGIconFonts", "SVGIcon", "BigPillFonts", "nADpfWhzA_default", "PhysicsFonts", "Physics", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "radius", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UJKCw9lWY", "uXiSTzTdx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Link", "css", "FramerN1aXaVD8A", "withCSS", "N1aXaVD8A_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
