{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js", "ssg:https://framerusercontent.com/modules/rUScziZxC3afLWZ15mGG/vZIoYGjGffWxaBCs1HGh/FormSpark.js", "ssg:https://framerusercontent.com/modules/nPpUEUk4A8mKxP1xrvQf/OA89iXQ5hlUuznm0SMIH/xtd7KHEU6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,motion}from\"framer\";import{containerStyles,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useMemo}from\"react\";const coordinatesRegex=/^((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?),\\s*((?:\\-?|\\+?)?\\d+(?:\\.\\d+)?)$/;/**\n * GOOGLE MAPS\n *\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function GoogleMaps({coordinates,zoom,style,...props}){const borderRadius=useRadius(props);const[latitude1,longitude1]=useMemo(()=>{var ref;const[,latitude,longitude]=(ref=coordinates.match(coordinatesRegex))!==null&&ref!==void 0?ref:[null,\"\",\"\",];return[latitude,longitude];},[coordinates]);return(/*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,overflow:\"hidden\",borderRadius},...props,children:/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\",border:0},src:`https://maps.google.com/maps?q=${latitude1},${longitude1}&z=${zoom}&output=embed`})}));};addPropertyControls(GoogleMaps,{coordinates:{type:ControlType.String,title:\"Coordinates\",placeholder:\"52.37588, 4.891295\",defaultValue:\"52.37588, 4.891295\",description:\"GPS coordinates can be found directly in [Google Maps](https://maps.google.com).\"},zoom:{type:ControlType.Number,step:1,min:0,max:25,title:\"Zoom\",defaultValue:15},...borderRadiusControl});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"GoogleMaps\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GoogleMaps.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name?.value);const[emailValue,setEmail]=useState(email?.value);const[messageValue,setMessage]=useState(message?.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();// Google Ads Conversion Tracking Code\nif(typeof gtag===\"function\"){gtag(\"event\",\"conversion\",{send_to:\"AW-16505819623/2EtACM_isMEZEOejy749\"});}}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/_jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/_jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/_jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/_jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\"]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "// Generated by Framer (d2aa011)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import GoogleMaps from\"https://framerusercontent.com/modules/Hbc0lxqGSRzFG6uMT9yO/OPmIEDVRw3amYB3GBzWp/GoogleMaps.js\";import Navbar from\"#framer/local/canvasComponent/NRz6UPb8j/NRz6UPb8j.js\";import Button from\"#framer/local/canvasComponent/o0dhMLXrA/o0dhMLXrA.js\";import Footer from\"#framer/local/canvasComponent/VaqXev6Le/VaqXev6Le.js\";import FormSpark from\"#framer/local/codeFile/Ovi7Rm4/FormSpark.js\";import Blog from\"#framer/local/collection/JmhujK3L9/JmhujK3L9.js\";import*as sharedStyle5 from\"#framer/local/css/HCHI3Gs5D/HCHI3Gs5D.js\";import*as sharedStyle2 from\"#framer/local/css/hYZRmnk4e/hYZRmnk4e.js\";import*as sharedStyle4 from\"#framer/local/css/IEKvDLbkA/IEKvDLbkA.js\";import*as sharedStyle1 from\"#framer/local/css/j5yPxg1qO/j5yPxg1qO.js\";import*as sharedStyle3 from\"#framer/local/css/nPp1t2I9y/nPp1t2I9y.js\";import*as sharedStyle from\"#framer/local/css/o6v67Yu4J/o6v67Yu4J.js\";import metadataProvider from\"#framer/local/webPageMetadata/xtd7KHEU6/xtd7KHEU6.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const MotionAWithFX=withFX(motion.a);const TickerFonts=getFonts(Ticker);const GoogleMapsFonts=getFonts(GoogleMaps);const FormSparkFonts=getFonts(FormSpark);const FooterFonts=getFonts(Footer);const breakpoints={bLylQFjXq:\"(min-width: 810px) and (max-width: 1199px)\",oJDi8fZTt:\"(max-width: 809px)\",PVbbiIODr:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PAnDa\";const variantClassNames={bLylQFjXq:\"framer-v-14b9hbq\",oJDi8fZTt:\"framer-v-1hmn0i0\",PVbbiIODr:\"framer-v-d1hslt\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:30,delay:.3,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition4={damping:30,delay:.7,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const transition5={damping:30,delay:.8,mass:1,stiffness:150,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const animation6={boxShadow:\"0px 2px 4px 0px rgba(0,0,0,0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transition6={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:40};const transition7={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:40};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"PVbbiIODr\",Phone:\"oJDi8fZTt\",Tablet:\"bLylQFjXq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PVbbiIODr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,yfc64yKRAETT9RQPni,Y48d8QcPMcyU1ewuwq,Qeg6RYtv9cyU1ewuwq,Ar_3PdyG9cyU1ewuwq,Vz579iTNccyU1ewuwq,idcyU1ewuwq,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"FtHV0RhIJ\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"oJDi8fZTt\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"oJDi8fZTt\")return false;return true;};const elementId1=useRouteElementId(\"vP9i4lqUB\");const activeLocaleCode=useLocaleCode();const elementId2=useRouteElementId(\"xRknWkxo_\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"PVbbiIODr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-d1hslt\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{width:componentViewport?.width||\"100vw\"},oJDi8fZTt:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tgqkr5-container\",layoutScroll:true,nodeId:\"J6Vd7NI1i\",rendersWithMotion:true,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{__framer__targets:[{offset:90,ref:ref1,target:\"idMala03j\"}],variant:\"ufCpbfh8t\"},oJDi8fZTt:{__framer__variantAppearEffectEnabled:undefined,style:{maxHeight:\"100%\",width:\"100%\"},variant:\"idMala03j\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:90,ref:ref1,target:\"glW7oYvZc\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"J6Vd7NI1i\",layoutId:\"J6Vd7NI1i\",style:{width:\"100%\"},tceLPBYGn:false,variant:\"NDMx8ro33\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1148,pixelWidth:2048,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KT0NoMC8XyC6HVRfRmeZvBOMk.jpeg\"},className:\"framer-1glbvju\",\"data-border\":true,\"data-framer-name\":\"Hero\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+-2842170943040401e-29),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/IKLWNBbnr0a6zl6Jj4UCuTFH5no.svg\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+85.64999999999998),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/IKLWNBbnr0a6zl6Jj4UCuTFH5no.svg\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+0),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/IKLWNBbnr0a6zl6Jj4UCuTFH5no.svg\"},className:\"framer-qg6z4t\",\"data-framer-name\":\"Hero Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ewfwll\",\"data-framer-name\":\"Content Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-yojcvz\",\"data-styles-preset\":\"o6v67Yu4J\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"Turn-key Aerosol Device, Formulation, Testing and Regulatory Management Solutions.\"})}),className:\"framer-qnn5o4\",\"data-framer-name\":\"A Free Conversion-Focused Template for Your Agency\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8x60oe\",\"data-framer-name\":\"Icon Stack\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"pharmaceutical-aerosol-testing\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"ejPxZ2F1Q\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"QIA_NZv0P\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-l49tpb framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dinjss\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/KcoEADZWI8V1FZySJdpUBYtQCEo.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/KcoEADZWI8V1FZySJdpUBYtQCEo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/KcoEADZWI8V1FZySJdpUBYtQCEo.png\"},className:\"framer-1tbnsc\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Pharmaceutical\"})}),className:\"framer-2qj23m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"bioaerosol\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"ew3h67E4k\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"RRBavZyDI\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1d13997 framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x6rchq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/aiBq9yqPt2VoZhh6B62X61JWQqE.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/aiBq9yqPt2VoZhh6B62X61JWQqE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/aiBq9yqPt2VoZhh6B62X61JWQqE.png\"},className:\"framer-1t1dy3m\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Biological & Chemical\"})}),className:\"framer-1stee38\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"particle-and-gas-testing\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"T4XqlK_NH\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"H25c5nUtE\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1c1rt2o framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pnceu8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/jgFqO5KvDBRNWTTXt4o3cUif5Q.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+136.4+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/jgFqO5KvDBRNWTTXt4o3cUif5Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/jgFqO5KvDBRNWTTXt4o3cUif5Q.png\"},className:\"framer-394d7s\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Particle and Gas\"})}),className:\"framer-rgph62\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"inhalation\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"DU6vDsvx1\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"qq_ZaVSql\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rol70c framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2lb7rp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+136.4+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/5DzrNSayQtQJERYFE4JdRwLJJt8.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+136.4+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/5DzrNSayQtQJERYFE4JdRwLJJt8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/5DzrNSayQtQJERYFE4JdRwLJJt8.png\"},className:\"framer-lpyq3f\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Inhalation Toxicology\"})}),className:\"framer-1qwqzjj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"modeling-and-simulation\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"PWnvSaiJp\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"Neo2nHrmM\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-n46ra6 framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rnhmmp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+136.4+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/qUfM1blLBru6JydjeMjLA55I4A.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+270.8+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/qUfM1blLBru6JydjeMjLA55I4A.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/qUfM1blLBru6JydjeMjLA55I4A.png\"},className:\"framer-gj2gxu\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Modeling & Simulation\"})}),className:\"framer-1kig9wf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"consumer-aerosols\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"ix82mfRY2\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"T2TYEbvZ4\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1dzisk8 framer-1yc89oy\",\"data-framer-name\":\"Icon\",whileHover:animation3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j6hrbw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+84.99999999999997+0+136.4+0+0+12),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/JjTFfRJ4RajP2X4KrXk5AaBAul4.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+170.64999999999998+0+270.8+0+0+12),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/fH13uEdsy7MwoRevmPpMSgGPJI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+150+85+0+0+0+12),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/fH13uEdsy7MwoRevmPpMSgGPJI.png\"},className:\"framer-a4g1ku\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{text:yfc64yKRAETT9RQPni}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1hxxi63\",\"data-styles-preset\":\"j5yPxg1qO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Consumer Aerosols\"})}),className:\"framer-13qruph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbuwon\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{y:(componentViewport?.y||0)+0+0+120+355.79999999999995+0},oJDi8fZTt:{y:(componentViewport?.y||0)+0+0+120+575.85+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"160px\",y:(componentViewport?.y||0)+0+0+150+219.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oqytln-container\",nodeId:\"hlvoWXgwG\",rendersWithMotion:true,scopeId:\"xtd7KHEU6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{ghXSyqIX_:resolvedLinks[1]},oJDi8fZTt:{ghXSyqIX_:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{B6hE3tYQ7:true,esACaN3ib:\"Get Started\",ghXSyqIX_:resolvedLinks[0],height:\"100%\",id:\"hlvoWXgwG\",L9CFaMaNa:\"Learn More\",layoutId:\"hlvoWXgwG\",style:{height:\"100%\",width:\"100%\"},variant:\"ZkGc1qpZ4\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vP9i4lqUB\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":vP9i4lqUB\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":vP9i4lqUB\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{y:(componentViewport?.y||0)+0+0+120+355.79999999999995+0},oJDi8fZTt:{y:(componentViewport?.y||0)+0+0+120+575.85+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+150+219.4+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13c0gdg-container\",nodeId:\"RGVFDayOY\",rendersWithMotion:true,scopeId:\"xtd7KHEU6\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{ghXSyqIX_:resolvedLinks1[1]},oJDi8fZTt:{ghXSyqIX_:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{B6hE3tYQ7:true,esACaN3ib:\"Get Started\",ghXSyqIX_:resolvedLinks1[0],height:\"100%\",id:\"RGVFDayOY\",L9CFaMaNa:\"Learn More\",layoutId:\"RGVFDayOY\",style:{height:\"100%\"},variant:\"ziIMlfVIv\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-j2u00p hidden-d1hslt hidden-14b9hbq\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9om45q hidden-1hmn0i0\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xasejr\",\"data-framer-name\":\"Services\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uh4omb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oftnk4\",\"data-styles-preset\":\"hYZRmnk4e\",children:\"Our Services\"})}),className:\"framer-kd0l9e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yandtc\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"pharmaceutical-aerosol-testing\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"ejPxZ2F1Q\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"fqvJgly7o\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u65hz7 framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3lnft\",\"data-framer-name\":\"Image\",whileHover:animation6,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qrag8a\",\"data-framer-name\":\"Asthma_icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 8c-.31 0-.615.013-.918.038l-.164-1.994C6.275 6.015 6.636 6 7 6c7.18 0 13 5.82 13 13v1.697l2.796 4.194C23.681 26.22 22.729 28 21.13 28H20v2a1 1 0 0 1-1 1h-1a2 2 0 0 0-2 2h3a1 1 0 0 1 1 1v3a4 4 0 0 1-1.917 3.416c-.715.436-1.484.494-2.16.405-.666-.088-1.303-.324-1.826-.549L10 38.517V43H8v-6a1 1 0 0 1 1.394-.92l5.49 2.354c.473.202.909.353 1.3.404.377.05.646-.001.856-.13.578-.352.96-.986.96-1.708v-2h-3a1 1 0 0 1-1-1v-1a4 4 0 0 1 4-4v-2a1 1 0 0 1 1-1h2.131l-2.963-4.445A1 1 0 0 1 18 21v-2c0-6.075-4.925-11-11-11Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.72 15.034a1 1 0 0 0-1.223.706l-.493 1.83a1 1 0 0 0-1.372.65L31.247 27H28a1 1 0 0 0-1 1h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h2a1 1 0 0 0 1 1h6.204a5 5 0 0 0 4.82-3.673l2.94-10.678a1 1 0 0 0-.551-1.177l-.294-.132.777-2.888a1 1 0 0 0-.708-1.226l-4.468-1.192ZM29 34h5.204a3 3 0 0 0 2.892-2.204l2.68-9.736-4.552-2.07-2.248 8.272a1 1 0 0 1-.965.738H29v5Zm7.82-15.482 2.422 1.102.463-1.72-2.536-.676-.349 1.294ZM26 30h1v3h-1v-3Z\" fill=\"currentColor\"/><path d=\"M14.5 23a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3g2j4m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\"Pharmaceutical Aerosols\"})}),className:\"framer-1ihsvqf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Nebulizer, MDI, Spacer Testing, Regulatory Compliance Testing, Formulation Development & Device Design Services\"})}),className:\"framer-2i7mk3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"bioaerosol\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"ew3h67E4k\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"rSeNnCldt\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13in9ag framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7sryn3\",\"data-framer-name\":\"Image\",whileHover:animation3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a5gh35\",\"data-framer-name\":\"Virus_Sanitizer_Spray\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m23.153 4.883 1.414 1.414a3 3 0 0 1 0 4.243l-2.536 2.535v3a3 3 0 0 1-.878 2.121l-5.779 5.778a5 5 0 0 1-7.07 0l-2.83-2.828a5 5 0 0 1 0-7.071l5.779-5.778a3 3 0 0 1 2.121-.879h3l2.536-2.535a3 3 0 0 1 4.243 0Zm-1.415 1.414a1 1 0 0 0-1.414 0l-2.121 2.121 2.828 2.829 2.122-2.122a1 1 0 0 0 0-1.414l-1.415-1.414Zm-5.364 3.121h-3a1 1 0 0 0-.707.293L6.89 15.489a3 3 0 0 0 0 4.243l2.829 2.828a3 3 0 0 0 4.242 0l5.778-5.778a1 1 0 0 0 .293-.707v-3l-3.657-3.657Z\" fill=\"currentColor\"/><path d=\"m31.503 10.63-.118.12.576.349-.459-.468.001-.001Z\" fill=\"currentColor\"/><path d=\"m31.503 10.63.46.47.196.119-.03.05-4.25-2.642-1.036 1.71 4.28 2.592a1 1 0 0 0 1.388-.362c.106-.187.238-.357.391-.508l.001-.001a2.39 2.39 0 0 1 3.294-.052 2.355 2.355 0 0 1 .2 3.259 1 1 0 0 0-.05 1.231 3.465 3.465 0 0 1-.387 4.498 3.518 3.518 0 0 1-4.538.329 1 1 0 0 0-1.224.035 2.387 2.387 0 0 1-1.855.518 2.393 2.393 0 0 1-1.633-1.014 2.356 2.356 0 0 1 .818-3.397 1 1 0 0 0 .377-1.389l-2.559-4.288-1.717 1.025 2.091 3.504a4.371 4.371 0 0 0-1.3 2.202 4.351 4.351 0 0 0 1.943 4.72 4.393 4.393 0 0 0 4.49.087 5.52 5.52 0 0 0 6.509-.905 5.463 5.463 0 0 0 .995-6.473 4.353 4.353 0 0 0-.805-5.412 4.39 4.39 0 0 0-6.049.094Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.685 36c.111-.483.302-.936.557-1.344L6.05 33.465a1 1 0 1 1 1.415-1.415l1.191 1.192A4.404 4.404 0 0 1 10 32.685V31a1 1 0 1 1 2 0v1.685c.483.111.936.302 1.344.557l1.192-1.192a1 1 0 0 1 1.414 1.415l-1.192 1.191c.255.408.446.861.557 1.344H17a1 1 0 1 1 0 2h-1.685a4.4 4.4 0 0 1-.557 1.344l1.192 1.191a1 1 0 0 1-1.414 1.415l-1.192-1.192a4.392 4.392 0 0 1-1.344.557V43a1 1 0 1 1-2 0v-1.685a4.401 4.401 0 0 1-1.344-.557L7.465 41.95a1 1 0 1 1-1.415-1.415l1.192-1.191A4.401 4.401 0 0 1 6.685 38H5a1 1 0 1 1 0-2h1.685Zm1.886 1c0-.668.27-1.272.706-1.711l.006-.006.006-.006A2.42 2.42 0 0 1 11 34.57c.668 0 1.272.27 1.711.706l.006.006.006.006A2.42 2.42 0 0 1 13.43 37a2.42 2.42 0 0 1-.705 1.71l-.007.007-.007.007a2.42 2.42 0 0 1-1.71.705 2.42 2.42 0 0 1-1.71-.705l-.007-.007-.007-.007A2.42 2.42 0 0 1 8.57 37Z\" fill=\"currentColor\"/><path d=\"m26.401 27.663.663-.749-1.497-1.326-.663.75A7.533 7.533 0 0 0 23.117 30H20v-.2a1 1 0 1 0-2 0v2.4a1 1 0 1 0 2 0V32h3.031a7.456 7.456 0 0 0 1.594 3.96L22.6 37.987l-.493-.493a1 1 0 0 0-1.414 1.414l2.4 2.4a1 1 0 1 0 1.414-1.414l-.493-.493 2.043-2.043A8.16 8.16 0 0 0 30 38.94V42h-.2a1 1 0 1 0 0 2h2.4a1 1 0 1 0 0-2H32v-3.06a8.16 8.16 0 0 0 3.943-1.583l1.843 1.843-.493.493a1 1 0 0 0 1.414 1.414l2.4-2.4a1 1 0 0 0-1.414-1.414l-.493.493-1.825-1.825A7.456 7.456 0 0 0 38.969 32H42v.2a1 1 0 1 0 2 0v-2.4a1 1 0 1 0-2 0v.2h-3.117a7.449 7.449 0 0 0-.9-2.44l-.145-.247c.07-.03.14-.061.209-.094 1.416-.659 2.73-1.813 3.821-3.723a1 1 0 1 0-1.736-.992c-.909 1.59-1.928 2.436-2.929 2.902C36.184 25.88 35.101 26 34 26a1 1 0 1 0 0 2c.582 0 1.205-.029 1.848-.128l.407.697c.476.815.745 1.75.745 2.746C37 34.412 34.358 37 31 37s-6-2.588-6-5.685c0-1.386.523-2.66 1.401-3.652Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qktjnl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\"Biological & Chemical Aerosols\"})}),className:\"framer-1le51so\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Bioaerosol Decontamination Testing, Bioaerosol Challenge, Biological Collection, Detection & Identification Design, Engineering and Testing\"})}),className:\"framer-16rwyl6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"particle-and-gas-testing\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"T4XqlK_NH\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"K_2J6Lfhv\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3vbe9v framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eqxfiw\",\"data-framer-name\":\"Image\",whileHover:animation3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l5a6bc\",\"data-framer-name\":\"Virus_Research_Alt\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35 8a1 1 0 1 0 0-2h-2a1 1 0 1 0 0 2v1.1c-.638.13-1.233.38-1.757.728L30.414 9A1 1 0 0 0 29 7.586l-.698.698-.01.009-.008.01-.698.697A1 1 0 0 0 29 10.414l.828.829A4.972 4.972 0 0 0 29.1 13H28a1 1 0 1 0-2 0v2a1 1 0 1 0 2 0h1.1c.13.638.38 1.233.728 1.757l-.828.829A1 1 0 1 0 27.586 19L29 20.414A1 1 0 0 0 30.414 19l.829-.828A4.972 4.972 0 0 0 33 18.9V20a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2v-1.1a4.972 4.972 0 0 0 1.757-.728l.829.828A1 1 0 0 0 39 20.414L40.414 19A1 1 0 0 0 39 17.586l-.828-.829A4.972 4.972 0 0 0 38.9 15H40a1 1 0 1 0 2 0v-2a1 1 0 1 0-2 0h-1.1a4.972 4.972 0 0 0-.728-1.757l.828-.829A1 1 0 1 0 40.414 9L39 7.586A1 1 0 1 0 37.586 9l-.829.828A4.972 4.972 0 0 0 35 9.1V8Zm-1 3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm-19.049.157-1.5-2.598 1.732-1 1.5 2.598 1.732-1 1.085 1.88a3.001 3.001 0 0 1 3.147 1.45l4 6.928a3 3 0 0 1-1.098 4.098l-.866.5 1 1.732-1.732 1-1-1.732-.866.5a3 3 0 0 1-4.098-1.098l-2.776-4.808A9.49 9.49 0 0 0 11 27.5c0 .854.112 1.68.323 2.465A9.462 9.462 0 0 1 15.5 29a9.488 9.488 0 0 1 7.709 3.947l13.634-7.872 1 1.732-13.64 7.876a9.567 9.567 0 0 1 .68 5.317H39a1 1 0 1 1 0 2H6.634l-.216-.706A9.498 9.498 0 0 1 6 38.5a9.482 9.482 0 0 1 3.568-7.42A11.49 11.49 0 0 1 9 27.5a11.49 11.49 0 0 1 5.21-9.628l-.223-.385a3.001 3.001 0 0 1 .317-3.45l-1.085-1.88 1.732-1Zm4.598 1.964-3.464 2a1 1 0 0 0-.366 1.366l4 6.928a1 1 0 0 0 1.366.366l3.464-2a1 1 0 0 0 .366-1.366l-4-6.928a1 1 0 0 0-1.366-.366Zm1.916 20.833-2.808 1.621 1 1.732 2.8-1.616A7.538 7.538 0 0 1 22.85 40H8.15a7.5 7.5 0 0 1 13.316-6.046Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yiaaz8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\"General Aerosol Testing\"})}),className:\"framer-hey38j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Particle Size, Spray Pattern, Plume Geometry & Velocimetry Testing.  Stability and Accelerated Aging Studies for Consumer and Industrial Related Products\"})}),className:\"framer-19n0eu6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"inhalation\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"DU6vDsvx1\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"HITDYFMKv\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-68odsl framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dx5fz4\",\"data-framer-name\":\"Image\",whileHover:animation3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1h0qa98\",\"data-framer-name\":\"Pneumonia_icon\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M33.974 19a2 2 0 1 1-4 .003 2 2 0 0 1 4-.003Zm3.016 18.997a2 2 0 1 0-.004-4 2 2 0 0 0 .004 4ZM33.986 34a2 2 0 1 1-4 .003 2 2 0 0 1 4-.003Zm1.998-3.002a2 2 0 1 0-.004-4 2 2 0 0 0 .004 4ZM33.979 25a2 2 0 1 1-4 .003 2 2 0 0 1 4-.003Zm-18.004-3.985a2 2 0 1 1-.003-4 2 2 0 0 1 .003 4ZM8.988 36.02a2 2 0 1 0 4-.003 2 2 0 0 0-4 .003Zm7-.005a2 2 0 1 1-.004-4 2 2 0 0 1 .004 4ZM9.982 29.02a2 2 0 1 0 4-.004 2 2 0 0 0-4 .004Zm5.998-2.005a2 2 0 1 1-.003-4 2 2 0 0 1 .003 4Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24 6.001h1v14.496c0 1.397.564 1.942 1.004 2.198.05.029.098.055.147.078l-.003-.373c-.038-3.528-.112-10.4 5.327-10.4 7.45 0 12.773 26.007 9.58 28.66-3.194 2.654-9.58 1.062-12.773-2.123-2.578-2.57-2.355-8.578-2.195-12.891.01-.264.02-.522.028-.773a4.275 4.275 0 0 1-1.118-.45A3.813 3.813 0 0 1 24 23.59c-.297.353-.64.627-.997.835-.4.233-.793.37-1.119.45l.028.77c.16 4.313.384 10.321-2.194 12.892-3.193 3.185-9.579 4.777-12.772 2.123C3.754 38.007 9.074 12 16.525 12c5.439 0 5.365 6.872 5.328 10.4v.049l-.004.327c.05-.024.099-.05.148-.078.44-.257 1.003-.801 1.003-2.198V6h1ZM31.475 14c-.954 0-1.49.3-1.867.687-.433.446-.795 1.164-1.049 2.178-.445 1.775-.426 3.817-.41 5.465.002.285.004.558.004.816 0 .76-.033 1.67-.069 2.616v.002l-.04 1.127c-.044 1.375-.07 2.815-.004 4.208.067 1.4.224 2.685.517 3.76.297 1.09.694 1.82 1.137 2.262 1.279 1.275 3.297 2.304 5.355 2.704 2.035.394 3.673.102 4.633-.628l.016-.04a3.71 3.71 0 0 0 .19-.788c.117-.775.147-1.856.068-3.188-.157-2.65-.728-6.012-1.63-9.32-.904-3.321-2.109-6.46-3.474-8.722-.683-1.133-1.357-1.96-1.982-2.485-.618-.52-1.077-.654-1.395-.654Zm-14.95 0c.954 0 1.49.3 1.867.687.433.446.795 1.164 1.05 2.178.444 1.775.425 3.817.41 5.465-.002.285-.005.558-.005.816 0 .76.034 1.67.07 2.616l.04 1.129c.044 1.375.07 2.815.004 4.208-.067 1.4-.224 2.685-.517 3.76-.296 1.09-.694 1.82-1.137 2.262-1.278 1.275-3.296 2.304-5.355 2.704-2.035.394-3.673.102-4.632-.628a3.708 3.708 0 0 1-.206-.829c-.117-.774-.148-1.855-.069-3.187.157-2.65.727-6.012 1.629-9.32.905-3.321 2.11-6.46 3.474-8.722.683-1.132 1.357-1.96 1.982-2.485.618-.52 1.077-.654 1.395-.654Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hocg0l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\"Inhalation Toxicology\"})}),className:\"framer-uqrzqa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Acute, Chronic and sub-Chronic 14, 28 and 90-Day Inhalation toxicology Studies, Inhalational Systems & VaccineEfficacy Studies\"})}),className:\"framer-1g66mli\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"modeling-and-simulation\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"PWnvSaiJp\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"LhAfxjtvi\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tzei9w framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrmj1n\",\"data-framer-name\":\"Image\",whileHover:animation3,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q6z6am\",\"data-framer-name\":\"Infected_Stable_Chart\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M7 42a1 1 0 0 1-1-1V6h2v25.995c2.31-.024 4.575-.39 6.627-1.067l3.671-1.207A14.85 14.85 0 0 1 22.92 29c1.595 0 3.176.245 4.621.721l3.672 1.211c2.122.7 4.474 1.068 6.867 1.068h1.287l-3.074-3.075a1 1 0 0 1 1.414-1.414l4.78 4.782a1 1 0 0 1 0 1.414l-4.78 4.782a1 1 0 0 1-1.414-1.414L39.366 34H38.08c-2.592 0-5.157-.398-7.493-1.168l-3.672-1.211A12.85 12.85 0 0 0 22.92 31c-1.396 0-2.765.215-3.995.62l-3.672 1.208c-2.264.746-4.743 1.143-7.253 1.167V40h34v2H7Z\" fill=\"currentColor\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.482 16.5a6.067 6.067 0 0 0 1.056 2.548l-.988.988-.143-.143a1 1 0 0 0-1.414 1.414l1.7 1.7a1 1 0 0 0 1.414-1.414l-.143-.143.988-.988a6.05 6.05 0 0 0 2.548 1.056v1.493A1 1 0 0 0 19.65 25h1.7a1 1 0 0 0 .15-1.989v-1.493a6.078 6.078 0 0 0 3.022-1.432l1.364 1.364-.143.143a1 1 0 0 0 1.414 1.414l1.7-1.7a1 1 0 0 0-1.414-1.414l-.143.143-1.505-1.505a6.06 6.06 0 0 0 .723-2.031h1.493A1 1 0 0 0 30 16.35v-1.7a1 1 0 0 0-1.989-.15h-1.493a6.067 6.067 0 0 0-1.056-2.548l.988-.988.143.143a1 1 0 0 0 1.414-1.414l-1.7-1.7a1 1 0 1 0-1.414 1.414l.143.143-.988.988A6.068 6.068 0 0 0 21.5 9.482V7.989A1 1 0 0 0 21.35 6h-1.7a1 1 0 0 0-.15 1.989v1.493a6.068 6.068 0 0 0-2.548 1.056l-.988-.988.143-.143a1 1 0 0 0-1.414-1.414l-1.7 1.7a1 1 0 0 0 1.414 1.414l.143-.143.988.988a6.067 6.067 0 0 0-1.056 2.548h-1.493a1 1 0 0 0-1.989.15v1.7a1 1 0 0 0 1.989.15h1.493Zm1.918-1a4.1 4.1 0 1 1 8.2 0 4.1 4.1 0 0 1-8.2 0Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfk9uj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\" Modeling and Simulation\"})}),className:\"framer-1lv5jqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Computation Fluid Dynamics(CFD), Finite Element Analysis (FEA), Process Engineering & Atmospheric Dispersion Modeling Services\"})}),className:\"framer-1rn3k1g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{YTCOoAJgm:\"regulatory-testing-epa-testing\"},unresolvedPathSlugs:{YTCOoAJgm:{collectionId:\"lTEpmSVG2\",collectionItemId:\"SAUiXT7BM\"}},webPageId:\"ETT9RQPni\"},motionChild:true,nodeId:\"xGXBjCLDY\",openInNewTab:false,scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ctjfnt framer-1yc89oy\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gaitqx\",\"data-framer-name\":\"Image\",whileHover:animation3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+603.8+100+110.4+0+721.6+0+0+0+26.666666666666664),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/fH13uEdsy7MwoRevmPpMSgGPJI.png\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+889.5+20+110.4+0+1804+0+0+0+26.666666666666664),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/fH13uEdsy7MwoRevmPpMSgGPJI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+567.4+80+110.4+0+360.8+0+0+0+26.666666666666664),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/fH13uEdsy7MwoRevmPpMSgGPJI.png\"},className:\"framer-x9jd4e\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ria075\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",children:\"Consumer Aerosols\"})}),className:\"framer-ncbvc0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-bb814673-5b32-46d4-934a-91ae09a517a2, rgb(102, 102, 102))\"},children:\"Aerosol and Spray Cans, Cosmetics, Ecigs and Vapes\"})}),className:\"framer-7e87iq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yfs9d0\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dqcgku\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Need more?\"})}),className:\"framer-1scq8sh\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pk3s6k\",\"data-styles-preset\":\"HCHI3Gs5D\",children:\"Contact us today to explore custom solutions, perfectly tailored to your unique needs.\"})}),className:\"framer-1qynybe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined},{href:{hash:\":xRknWkxo_\",webPageId:\"xtd7KHEU6\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{y:(componentViewport?.y||0)+0+603.8+100+110.4+0+1082.4+0+146},oJDi8fZTt:{y:(componentViewport?.y||0)+0+889.5+20+110.4+0+2164.8+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+567.4+80+110.4+0+360.8+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9iabzk-container\",nodeId:\"mZqD9mVyX\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{ghXSyqIX_:resolvedLinks2[1]},oJDi8fZTt:{ghXSyqIX_:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{B6hE3tYQ7:true,esACaN3ib:\"Get Started\",ghXSyqIX_:resolvedLinks2[0],height:\"100%\",id:\"mZqD9mVyX\",L9CFaMaNa:\"Get in touch\",layoutId:\"mZqD9mVyX\",variant:\"Ocn7wVLPB\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17z32ks\",\"data-framer-name\":\"Client Lists\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s1iont\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oftnk4\",\"data-styles-preset\":\"hYZRmnk4e\",style:{\"--framer-text-color\":\"var(--token-64f53b81-939c-4d98-a618-7121b47c2ab1, rgb(255, 255, 255))\"},children:\"Trusted, by those you trust.\"})}),className:\"framer-1ys9md1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1869pku-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YTTlBiybQ\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"YTTlBiybQ\",layoutId:\"YTTlBiybQ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:2404,pixelHeight:224,pixelWidth:2404,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/fJNifhEm7OpHfaIcIWZsA1uPg.png\",srcSet:\"https://framerusercontent.com/images/fJNifhEm7OpHfaIcIWZsA1uPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/fJNifhEm7OpHfaIcIWZsA1uPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fJNifhEm7OpHfaIcIWZsA1uPg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fJNifhEm7OpHfaIcIWZsA1uPg.png 2404w\"},className:\"framer-11vbz35\",\"data-framer-name\":\"Johnson & Johnson\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:250,intrinsicWidth:1364,pixelHeight:250,pixelWidth:1364,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/bYH1ljfLdF0uS8cx8SfIXOl1ec.png\",srcSet:\"https://framerusercontent.com/images/bYH1ljfLdF0uS8cx8SfIXOl1ec.png?scale-down-to=512 512w,https://framerusercontent.com/images/bYH1ljfLdF0uS8cx8SfIXOl1ec.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bYH1ljfLdF0uS8cx8SfIXOl1ec.png 1364w\"},className:\"framer-1fwjanl\",\"data-framer-name\":\"Philips\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:257,intrinsicWidth:754,pixelHeight:257,pixelWidth:754,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/Xm8YAr2CAlo2yA2AojqrmvbB7M.png\",srcSet:\"https://framerusercontent.com/images/Xm8YAr2CAlo2yA2AojqrmvbB7M.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xm8YAr2CAlo2yA2AojqrmvbB7M.png 754w\"},className:\"framer-13z3sxh\",\"data-framer-name\":\"Nordson\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:365,intrinsicWidth:1005,pixelHeight:365,pixelWidth:1005,sizes:\"136px\",src:\"https://framerusercontent.com/images/2E7NqSblsaTyVxo1BBNmoj7r8.webp\",srcSet:\"https://framerusercontent.com/images/2E7NqSblsaTyVxo1BBNmoj7r8.webp?scale-down-to=512 512w,https://framerusercontent.com/images/2E7NqSblsaTyVxo1BBNmoj7r8.webp 1005w\"},className:\"framer-1vdjjnj\",\"data-framer-name\":\"Convatec\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:300,intrinsicWidth:1456,pixelHeight:300,pixelWidth:1456,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/mQI2EVXztCBS1u3wEwEsfijL8UE.png\",srcSet:\"https://framerusercontent.com/images/mQI2EVXztCBS1u3wEwEsfijL8UE.png?scale-down-to=512 512w,https://framerusercontent.com/images/mQI2EVXztCBS1u3wEwEsfijL8UE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mQI2EVXztCBS1u3wEwEsfijL8UE.png 1456w\"},className:\"framer-1hrlhoe\",\"data-framer-name\":\"Halyard\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:299,intrinsicWidth:837,pixelHeight:299,pixelWidth:837,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/l1549Xo4gLAmY22wxTlffUQ327g.png\",srcSet:\"https://framerusercontent.com/images/l1549Xo4gLAmY22wxTlffUQ327g.png?scale-down-to=512 512w,https://framerusercontent.com/images/l1549Xo4gLAmY22wxTlffUQ327g.png 837w\"},className:\"framer-1bsxyce\",\"data-framer-name\":\"HGI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:259,intrinsicWidth:673,pixelHeight:259,pixelWidth:673,positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/dyWMslRZV9nHW6B6kkTsMPHqk.png\",srcSet:\"https://framerusercontent.com/images/dyWMslRZV9nHW6B6kkTsMPHqk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dyWMslRZV9nHW6B6kkTsMPHqk.png 673w\"},className:\"framer-11f6h34\",\"data-framer-name\":\"BD\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2441.0000000000005),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/WBeQqcKdmx2i7IaT1R4gUYq1G4w.svg\"}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3649.1000000000004),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/WBeQqcKdmx2i7IaT1R4gUYq1G4w.svg\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1749.8000000000002),pixelHeight:551,pixelWidth:1920,src:\"https://framerusercontent.com/images/WBeQqcKdmx2i7IaT1R4gUYq1G4w.svg\"},className:\"framer-1ukv465\",\"data-framer-name\":\"Publications\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-phy5m4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1oftnk4\",\"data-styles-preset\":\"hYZRmnk4e\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Recent Publications\"})}),className:\"framer-1fq1j8u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5341g\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{query:{from:{alias:\"cyU1ewuwq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"cyU1ewuwq\",name:\"Y48d8QcPM\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Qeg6RYtv9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Ar_3PdyG9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Vz579iTNc\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"id\",type:\"Identifier\"}]}},oJDi8fZTt:{query:{from:{alias:\"cyU1ewuwq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"cyU1ewuwq\",name:\"Y48d8QcPM\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Qeg6RYtv9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Ar_3PdyG9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Vz579iTNc\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cyU1ewuwq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"cyU1ewuwq\",name:\"Y48d8QcPM\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Qeg6RYtv9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Ar_3PdyG9\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"Vz579iTNc\",type:\"Identifier\"},{collection:\"cyU1ewuwq\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Ar_3PdyG9:Ar_3PdyG9cyU1ewuwq,id:idcyU1ewuwq,Qeg6RYtv9:Qeg6RYtv9cyU1ewuwq,Vz579iTNc:Vz579iTNccyU1ewuwq,Y48d8QcPM:Y48d8QcPMcyU1ewuwq},index)=>{Y48d8QcPMcyU1ewuwq??=\"\";Ar_3PdyG9cyU1ewuwq??=\"\";const textContent=toDateString(Vz579iTNccyU1ewuwq,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`cyU1ewuwq-${idcyU1ewuwq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Y48d8QcPM:Y48d8QcPMcyU1ewuwq},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{Y48d8QcPM:Y48d8QcPMcyU1ewuwq},webPageId:\"o0MwXBcWM\"},motionChild:true,nodeId:\"MLod4m_eu\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-dxnkmj framer-1yc89oy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2441.0000000000005+80+110.4+0+40+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 180px) / 2, 1px) - 80px)`,...toResponsiveImage(Qeg6RYtv9cyU1ewuwq)}},oJDi8fZTt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3649.1000000000004+20+110.4+0+620+40+0),sizes:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,...toResponsiveImage(Qeg6RYtv9cyU1ewuwq)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1749.8000000000002+80+110.4+0+40+0),sizes:`calc(max((${componentViewport?.width||\"100vw\"} - 200px) / 3, 1px) - 80px)`,...toResponsiveImage(Qeg6RYtv9cyU1ewuwq)},className:\"framer-18u1jpf\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asb8k8\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dgy6ml\",\"data-styles-preset\":\"nPp1t2I9y\",style:{\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Title\"})}),className:\"framer-5awlct\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:Ar_3PdyG9cyU1ewuwq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cok7x\",\"data-styles-preset\":\"IEKvDLbkA\",style:{\"--framer-text-color\":\"var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, rgb(34, 34, 34))\"},children:\"Content\"})}),className:\"framer-lp4xw0\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idcyU1ewuwq);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub9e6\",\"data-framer-name\":\"Contact\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgojj5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8nxv3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Get in touch\"})}),className:\"framer-5sdc1b\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1pk3s6k\",\"data-styles-preset\":\"HCHI3Gs5D\",children:\"We're never too busy to lend a hand, and love giving tours of our facility.If you're in the neighborhood, stop on by, or give us a call at (913) 850-6630.\"})}),className:\"framer-1p5pxj9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zfru17\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kbt191-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GjcsLIAJw\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(GoogleMaps,{borderRadius:28,bottomLeftRadius:28,bottomRightRadius:28,coordinates:\"38.89594191140329, -94.6684976260196\",height:\"100%\",id:\"GjcsLIAJw\",isMixedBorderRadius:false,layoutId:\"GjcsLIAJw\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:28,topRightRadius:28,width:\"100%\",zoom:16})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2etob-container\",isAuthoredByUser:true,nodeId:\"BFqNVwgxM\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(34, 34, 34)\",fontWeight:600,label:\"Send\"},email:{placeholder:\"Email\",value:\"\"},font:true,fontFamily:\"Inter\",fontSize:16,fontWeight:500,formId:\"kmr8c3HGx\",gap:15,height:\"100%\",id:\"BFqNVwgxM\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(242, 242, 242)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"BFqNVwgxM\",message:{placeholder:\"Message\",value:\"\"},nameField:{placeholder:\"Name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",width:\"100%\"},topLeftRadius:8,topRightRadius:8,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bLylQFjXq:{y:(componentViewport?.y||0)+0+4177.400000000001},oJDi8fZTt:{y:(componentViewport?.y||0)+0+6155.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:470,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3486.2000000000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ypk9l-container\",nodeId:\"jlKU8DVhS\",scopeId:\"xtd7KHEU6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oJDi8fZTt:{variant:\"ELVJeuqNn\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jlKU8DVhS\",layoutId:\"jlKU8DVhS\",style:{width:\"100%\"},variant:\"Wz2fepaej\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PAnDa.framer-1yc89oy, .framer-PAnDa .framer-1yc89oy { display: block; }\",\".framer-PAnDa.framer-d1hslt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-PAnDa .framer-1tgqkr5-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-PAnDa .framer-1glbvju { --border-bottom-width: 1px; --border-color: #e3ebf2; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 80px 150px 80px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-PAnDa .framer-qg6z4t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-PAnDa .framer-1ewfwll { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-qnn5o4, .framer-PAnDa .framer-5awlct, .framer-PAnDa .framer-lp4xw0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PAnDa .framer-8x60oe { align-content: flex-start; align-items: flex-start; 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%; z-index: 3; }\",\".framer-PAnDa .framer-l49tpb, .framer-PAnDa .framer-1d13997, .framer-PAnDa .framer-1c1rt2o, .framer-PAnDa .framer-1rol70c, .framer-PAnDa .framer-n46ra6, .framer-PAnDa .framer-1dzisk8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PAnDa .framer-1dinjss, .framer-PAnDa .framer-1x6rchq, .framer-PAnDa .framer-1pnceu8, .framer-PAnDa .framer-2lb7rp, .framer-PAnDa .framer-rnhmmp, .framer-PAnDa .framer-j6hrbw { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-PAnDa .framer-1tbnsc, .framer-PAnDa .framer-1t1dy3m, .framer-PAnDa .framer-394d7s, .framer-PAnDa .framer-lpyq3f, .framer-PAnDa .framer-gj2gxu, .framer-PAnDa .framer-a4g1ku { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 36px); justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 36px; }\",\".framer-PAnDa .framer-2qj23m, .framer-PAnDa .framer-1stee38, .framer-PAnDa .framer-rgph62, .framer-PAnDa .framer-1qwqzjj, .framer-PAnDa .framer-1kig9wf, .framer-PAnDa .framer-13qruph { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 250px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PAnDa .framer-1xbuwon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-PAnDa .framer-oqytln-container { flex: none; height: 48px; position: relative; width: 160px; }\",\".framer-PAnDa .framer-13c0gdg-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-PAnDa .framer-j2u00p { background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.5) 24.696391337626682%, rgba(125, 47, 194, 0.5) 77.01196069115991%); flex: none; height: 124%; left: calc(49.743589743589766% - 99.74358974358975% / 2); overflow: hidden; position: absolute; top: calc(71.05115233277124% - 124% / 2); width: 100%; z-index: 1; }\",\".framer-PAnDa .framer-9om45q { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 32.50416248768299%, rgba(235, 229, 244, 0.58011) 42.792792792792795%, rgba(125, 47, 194, 0.5) 84.21911291173987%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-PAnDa .framer-1xasejr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; scroll-margin-top: 90px; width: 100%; }\",\".framer-PAnDa .framer-uh4omb, .framer-PAnDa .framer-phy5m4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-kd0l9e, .framer-PAnDa .framer-1fq1j8u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-PAnDa .framer-yandtc { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1u65hz7 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; z-index: 1; }\",\".framer-PAnDa .framer-1c3lnft { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-288f7fe1-3c71-4d09-a7fb-9d2abc58987b, #f5f5f5); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 120px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-PAnDa .framer-qrag8a { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; z-index: 1; }\",\".framer-PAnDa .framer-3g2j4m, .framer-PAnDa .framer-1qktjnl, .framer-PAnDa .framer-1yiaaz8, .framer-PAnDa .framer-hocg0l, .framer-PAnDa .framer-mfk9uj, .framer-PAnDa .framer-ria075 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1ihsvqf, .framer-PAnDa .framer-1le51so, .framer-PAnDa .framer-hey38j, .framer-PAnDa .framer-uqrzqa, .framer-PAnDa .framer-1lv5jqq, .framer-PAnDa .framer-ncbvc0, .framer-PAnDa .framer-1scq8sh, .framer-PAnDa .framer-1qynybe, .framer-PAnDa .framer-5sdc1b, .framer-PAnDa .framer-1p5pxj9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PAnDa .framer-2i7mk3, .framer-PAnDa .framer-16rwyl6, .framer-PAnDa .framer-19n0eu6, .framer-PAnDa .framer-1g66mli, .framer-PAnDa .framer-1rn3k1g, .framer-PAnDa .framer-7e87iq { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PAnDa .framer-13in9ag, .framer-PAnDa .framer-3vbe9v, .framer-PAnDa .framer-68odsl, .framer-PAnDa .framer-tzei9w, .framer-PAnDa .framer-1ctjfnt { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-PAnDa .framer-7sryn3, .framer-PAnDa .framer-eqxfiw, .framer-PAnDa .framer-1dx5fz4, .framer-PAnDa .framer-1mrmj1n, .framer-PAnDa .framer-gaitqx { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-288f7fe1-3c71-4d09-a7fb-9d2abc58987b, #f5f5f5); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 120px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PAnDa .framer-a5gh35, .framer-PAnDa .framer-l5a6bc, .framer-PAnDa .framer-1h0qa98, .framer-PAnDa .framer-1q6z6am { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-PAnDa .framer-x9jd4e { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); position: relative; width: 50px; }\",\".framer-PAnDa .framer-1yfs9d0 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; grid-column: auto / span 2; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1dqcgku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-9iabzk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PAnDa .framer-17z32ks { align-content: flex-start; align-items: flex-start; background-color: var(--token-e1894437-7d60-492e-b1bc-d60c5bc1d89b, #222222); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-s1iont { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1ys9md1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PAnDa .framer-1869pku-container { flex: none; height: 76px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-11vbz35, .framer-PAnDa .framer-1fwjanl, .framer-PAnDa .framer-13z3sxh, .framer-PAnDa .framer-1vdjjnj, .framer-PAnDa .framer-1hrlhoe, .framer-PAnDa .framer-1bsxyce, .framer-PAnDa .framer-11f6h34 { aspect-ratio: 2.9565217391304346 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 136px; }\",\".framer-PAnDa .framer-1ukv465 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1r5341g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-dxnkmj { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0.5038813659542939px 1.0077627319085878px 1.1267129868692494px -0.4375px rgba(0, 0, 0, 0.34), 1.1942878102854593px 2.3885756205709185px 2.6705087284976594px -0.875px rgba(0, 0, 0, 0.3352), 2.1785044137941436px 4.357008827588287px 4.8712839585270356px -1.3125px rgba(0, 0, 0, 0.32877), 3.6217592146567767px 7.2435184293135535px 8.098499802108805px -1.75px rgba(0, 0, 0, 0.31934), 5.848845816586982px 11.697691633173964px 13.078416835803758px -2.1875px rgba(0, 0, 0, 0.30479), 9.573980282226692px 19.147960564453385px 21.408070726301503px -2.625px rgba(0, 0, 0, 0.28045), 16.485747529010403px 32.97149505802081px 36.86325213476645px -3.0625px rgba(0, 0, 0, 0.23529), 30px 60px 67.08203932499369px -3.5px rgba(0, 0, 0, 0.147); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; min-height: 600px; padding: 40px; position: relative; text-decoration: none; width: 1px; }\",\".framer-PAnDa .framer-18u1jpf { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 250px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-asb8k8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1ub9e6 { align-content: flex-start; align-items: flex-start; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 80px 100px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PAnDa .framer-1dgojj5 { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PAnDa .framer-d8nxv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-PAnDa .framer-zfru17 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-PAnDa .framer-1kbt191-container { flex: none; height: 500px; position: relative; width: 50%; }\",\".framer-PAnDa .framer-i2etob-container { flex: 1 0 0px; height: 290px; position: relative; width: 1px; }\",\".framer-PAnDa .framer-7ypk9l-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PAnDa.framer-d1hslt, .framer-PAnDa .framer-1glbvju, .framer-PAnDa .framer-qg6z4t, .framer-PAnDa .framer-1ewfwll, .framer-PAnDa .framer-8x60oe, .framer-PAnDa .framer-l49tpb, .framer-PAnDa .framer-1dinjss, .framer-PAnDa .framer-1tbnsc, .framer-PAnDa .framer-1d13997, .framer-PAnDa .framer-1x6rchq, .framer-PAnDa .framer-1t1dy3m, .framer-PAnDa .framer-1c1rt2o, .framer-PAnDa .framer-1pnceu8, .framer-PAnDa .framer-394d7s, .framer-PAnDa .framer-1rol70c, .framer-PAnDa .framer-2lb7rp, .framer-PAnDa .framer-lpyq3f, .framer-PAnDa .framer-n46ra6, .framer-PAnDa .framer-rnhmmp, .framer-PAnDa .framer-gj2gxu, .framer-PAnDa .framer-1dzisk8, .framer-PAnDa .framer-j6hrbw, .framer-PAnDa .framer-a4g1ku, .framer-PAnDa .framer-1xbuwon, .framer-PAnDa .framer-1xasejr, .framer-PAnDa .framer-uh4omb, .framer-PAnDa .framer-1u65hz7, .framer-PAnDa .framer-1c3lnft, .framer-PAnDa .framer-3g2j4m, .framer-PAnDa .framer-13in9ag, .framer-PAnDa .framer-7sryn3, .framer-PAnDa .framer-1qktjnl, .framer-PAnDa .framer-3vbe9v, .framer-PAnDa .framer-eqxfiw, .framer-PAnDa .framer-1yiaaz8, .framer-PAnDa .framer-68odsl, .framer-PAnDa .framer-1dx5fz4, .framer-PAnDa .framer-hocg0l, .framer-PAnDa .framer-tzei9w, .framer-PAnDa .framer-1mrmj1n, .framer-PAnDa .framer-mfk9uj, .framer-PAnDa .framer-1ctjfnt, .framer-PAnDa .framer-gaitqx, .framer-PAnDa .framer-ria075, .framer-PAnDa .framer-1yfs9d0, .framer-PAnDa .framer-1dqcgku, .framer-PAnDa .framer-17z32ks, .framer-PAnDa .framer-s1iont, .framer-PAnDa .framer-1ukv465, .framer-PAnDa .framer-phy5m4, .framer-PAnDa .framer-1r5341g, .framer-PAnDa .framer-dxnkmj, .framer-PAnDa .framer-asb8k8, .framer-PAnDa .framer-1ub9e6, .framer-PAnDa .framer-1dgojj5, .framer-PAnDa .framer-d8nxv3, .framer-PAnDa .framer-zfru17 { gap: 0px; } .framer-PAnDa.framer-d1hslt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PAnDa.framer-d1hslt > :first-child, .framer-PAnDa .framer-1glbvju > :first-child, .framer-PAnDa .framer-qg6z4t > :first-child, .framer-PAnDa .framer-1ewfwll > :first-child, .framer-PAnDa .framer-l49tpb > :first-child, .framer-PAnDa .framer-1d13997 > :first-child, .framer-PAnDa .framer-1c1rt2o > :first-child, .framer-PAnDa .framer-1rol70c > :first-child, .framer-PAnDa .framer-n46ra6 > :first-child, .framer-PAnDa .framer-1dzisk8 > :first-child, .framer-PAnDa .framer-1xasejr > :first-child, .framer-PAnDa .framer-1u65hz7 > :first-child, .framer-PAnDa .framer-1c3lnft > :first-child, .framer-PAnDa .framer-3g2j4m > :first-child, .framer-PAnDa .framer-13in9ag > :first-child, .framer-PAnDa .framer-7sryn3 > :first-child, .framer-PAnDa .framer-1qktjnl > :first-child, .framer-PAnDa .framer-3vbe9v > :first-child, .framer-PAnDa .framer-eqxfiw > :first-child, .framer-PAnDa .framer-1yiaaz8 > :first-child, .framer-PAnDa .framer-68odsl > :first-child, .framer-PAnDa .framer-1dx5fz4 > :first-child, .framer-PAnDa .framer-hocg0l > :first-child, .framer-PAnDa .framer-tzei9w > :first-child, .framer-PAnDa .framer-1mrmj1n > :first-child, .framer-PAnDa .framer-mfk9uj > :first-child, .framer-PAnDa .framer-1ctjfnt > :first-child, .framer-PAnDa .framer-gaitqx > :first-child, .framer-PAnDa .framer-ria075 > :first-child, .framer-PAnDa .framer-1yfs9d0 > :first-child, .framer-PAnDa .framer-1dqcgku > :first-child, .framer-PAnDa .framer-17z32ks > :first-child, .framer-PAnDa .framer-1ukv465 > :first-child, .framer-PAnDa .framer-dxnkmj > :first-child, .framer-PAnDa .framer-asb8k8 > :first-child, .framer-PAnDa .framer-1dgojj5 > :first-child, .framer-PAnDa .framer-d8nxv3 > :first-child { margin-top: 0px; } .framer-PAnDa.framer-d1hslt > :last-child, .framer-PAnDa .framer-1glbvju > :last-child, .framer-PAnDa .framer-qg6z4t > :last-child, .framer-PAnDa .framer-1ewfwll > :last-child, .framer-PAnDa .framer-l49tpb > :last-child, .framer-PAnDa .framer-1d13997 > :last-child, .framer-PAnDa .framer-1c1rt2o > :last-child, .framer-PAnDa .framer-1rol70c > :last-child, .framer-PAnDa .framer-n46ra6 > :last-child, .framer-PAnDa .framer-1dzisk8 > :last-child, .framer-PAnDa .framer-1xasejr > :last-child, .framer-PAnDa .framer-1u65hz7 > :last-child, .framer-PAnDa .framer-1c3lnft > :last-child, .framer-PAnDa .framer-3g2j4m > :last-child, .framer-PAnDa .framer-13in9ag > :last-child, .framer-PAnDa .framer-7sryn3 > :last-child, .framer-PAnDa .framer-1qktjnl > :last-child, .framer-PAnDa .framer-3vbe9v > :last-child, .framer-PAnDa .framer-eqxfiw > :last-child, .framer-PAnDa .framer-1yiaaz8 > :last-child, .framer-PAnDa .framer-68odsl > :last-child, .framer-PAnDa .framer-1dx5fz4 > :last-child, .framer-PAnDa .framer-hocg0l > :last-child, .framer-PAnDa .framer-tzei9w > :last-child, .framer-PAnDa .framer-1mrmj1n > :last-child, .framer-PAnDa .framer-mfk9uj > :last-child, .framer-PAnDa .framer-1ctjfnt > :last-child, .framer-PAnDa .framer-gaitqx > :last-child, .framer-PAnDa .framer-ria075 > :last-child, .framer-PAnDa .framer-1yfs9d0 > :last-child, .framer-PAnDa .framer-1dqcgku > :last-child, .framer-PAnDa .framer-17z32ks > :last-child, .framer-PAnDa .framer-1ukv465 > :last-child, .framer-PAnDa .framer-dxnkmj > :last-child, .framer-PAnDa .framer-asb8k8 > :last-child, .framer-PAnDa .framer-1dgojj5 > :last-child, .framer-PAnDa .framer-d8nxv3 > :last-child { margin-bottom: 0px; } .framer-PAnDa .framer-1glbvju > *, .framer-PAnDa .framer-1yfs9d0 > *, .framer-PAnDa .framer-dxnkmj > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PAnDa .framer-qg6z4t > *, .framer-PAnDa .framer-3g2j4m > *, .framer-PAnDa .framer-1qktjnl > *, .framer-PAnDa .framer-1yiaaz8 > *, .framer-PAnDa .framer-hocg0l > *, .framer-PAnDa .framer-mfk9uj > *, .framer-PAnDa .framer-ria075 > *, .framer-PAnDa .framer-asb8k8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PAnDa .framer-1ewfwll > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-PAnDa .framer-8x60oe > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PAnDa .framer-8x60oe > :first-child, .framer-PAnDa .framer-1dinjss > :first-child, .framer-PAnDa .framer-1tbnsc > :first-child, .framer-PAnDa .framer-1x6rchq > :first-child, .framer-PAnDa .framer-1t1dy3m > :first-child, .framer-PAnDa .framer-1pnceu8 > :first-child, .framer-PAnDa .framer-394d7s > :first-child, .framer-PAnDa .framer-2lb7rp > :first-child, .framer-PAnDa .framer-lpyq3f > :first-child, .framer-PAnDa .framer-rnhmmp > :first-child, .framer-PAnDa .framer-gj2gxu > :first-child, .framer-PAnDa .framer-j6hrbw > :first-child, .framer-PAnDa .framer-a4g1ku > :first-child, .framer-PAnDa .framer-1xbuwon > :first-child, .framer-PAnDa .framer-uh4omb > :first-child, .framer-PAnDa .framer-s1iont > :first-child, .framer-PAnDa .framer-phy5m4 > :first-child, .framer-PAnDa .framer-1r5341g > :first-child, .framer-PAnDa .framer-1ub9e6 > :first-child, .framer-PAnDa .framer-zfru17 > :first-child { margin-left: 0px; } .framer-PAnDa .framer-8x60oe > :last-child, .framer-PAnDa .framer-1dinjss > :last-child, .framer-PAnDa .framer-1tbnsc > :last-child, .framer-PAnDa .framer-1x6rchq > :last-child, .framer-PAnDa .framer-1t1dy3m > :last-child, .framer-PAnDa .framer-1pnceu8 > :last-child, .framer-PAnDa .framer-394d7s > :last-child, .framer-PAnDa .framer-2lb7rp > :last-child, .framer-PAnDa .framer-lpyq3f > :last-child, .framer-PAnDa .framer-rnhmmp > :last-child, .framer-PAnDa .framer-gj2gxu > :last-child, .framer-PAnDa .framer-j6hrbw > :last-child, .framer-PAnDa .framer-a4g1ku > :last-child, .framer-PAnDa .framer-1xbuwon > :last-child, .framer-PAnDa .framer-uh4omb > :last-child, .framer-PAnDa .framer-s1iont > :last-child, .framer-PAnDa .framer-phy5m4 > :last-child, .framer-PAnDa .framer-1r5341g > :last-child, .framer-PAnDa .framer-1ub9e6 > :last-child, .framer-PAnDa .framer-zfru17 > :last-child { margin-right: 0px; } .framer-PAnDa .framer-l49tpb > *, .framer-PAnDa .framer-1d13997 > *, .framer-PAnDa .framer-1c1rt2o > *, .framer-PAnDa .framer-1rol70c > *, .framer-PAnDa .framer-n46ra6 > *, .framer-PAnDa .framer-1dzisk8 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-PAnDa .framer-1dinjss > *, .framer-PAnDa .framer-1tbnsc > *, .framer-PAnDa .framer-1x6rchq > *, .framer-PAnDa .framer-1t1dy3m > *, .framer-PAnDa .framer-1pnceu8 > *, .framer-PAnDa .framer-394d7s > *, .framer-PAnDa .framer-2lb7rp > *, .framer-PAnDa .framer-lpyq3f > *, .framer-PAnDa .framer-rnhmmp > *, .framer-PAnDa .framer-gj2gxu > *, .framer-PAnDa .framer-j6hrbw > *, .framer-PAnDa .framer-a4g1ku > *, .framer-PAnDa .framer-uh4omb > *, .framer-PAnDa .framer-s1iont > *, .framer-PAnDa .framer-phy5m4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PAnDa .framer-1xbuwon > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PAnDa .framer-1xasejr > *, .framer-PAnDa .framer-17z32ks > *, .framer-PAnDa .framer-1ukv465 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PAnDa .framer-1u65hz7 > *, .framer-PAnDa .framer-1c3lnft > *, .framer-PAnDa .framer-13in9ag > *, .framer-PAnDa .framer-7sryn3 > *, .framer-PAnDa .framer-3vbe9v > *, .framer-PAnDa .framer-eqxfiw > *, .framer-PAnDa .framer-68odsl > *, .framer-PAnDa .framer-1dx5fz4 > *, .framer-PAnDa .framer-tzei9w > *, .framer-PAnDa .framer-1mrmj1n > *, .framer-PAnDa .framer-1ctjfnt > *, .framer-PAnDa .framer-gaitqx > *, .framer-PAnDa .framer-1dqcgku > *, .framer-PAnDa .framer-1dgojj5 > *, .framer-PAnDa .framer-d8nxv3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PAnDa .framer-1r5341g > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-PAnDa .framer-1ub9e6 > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-PAnDa .framer-zfru17 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-PAnDa[data-border=\"true\"]::after, .framer-PAnDa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PAnDa.framer-d1hslt { width: 810px; } .framer-PAnDa .framer-1glbvju { padding: 120px 20px 80px 20px; } .framer-PAnDa .framer-8x60oe { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-PAnDa .framer-l49tpb { align-self: center; flex: none; justify-self: center; order: 0; padding: 0px 0px 18px 0px; width: 130px; } .framer-PAnDa .framer-2qj23m, .framer-PAnDa .framer-1stee38, .framer-PAnDa .framer-rgph62, .framer-PAnDa .framer-1qwqzjj, .framer-PAnDa .framer-1kig9wf, .framer-PAnDa .framer-13qruph { max-width: 100%; } .framer-PAnDa .framer-1d13997 { align-self: center; flex: none; justify-self: center; order: 1; width: 130px; } .framer-PAnDa .framer-1c1rt2o { align-self: center; flex: none; justify-self: center; order: 2; padding: 0px 0px 18px 0px; width: 130px; } .framer-PAnDa .framer-1rol70c { align-self: center; flex: none; justify-self: center; order: 3; width: 130px; } .framer-PAnDa .framer-n46ra6 { align-self: center; flex: none; justify-self: center; order: 4; width: 130px; } .framer-PAnDa .framer-1dzisk8 { align-self: center; flex: none; justify-self: center; order: 5; width: 130px; } .framer-PAnDa .framer-9om45q { background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.6) 24.69636384431306%, rgba(125, 47, 194, 0.5) 84.21911291173987%); } .framer-PAnDa .framer-1xasejr { padding: 100px 40px 100px 40px; } .framer-PAnDa .framer-yandtc { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-PAnDa .framer-1yfs9d0 { grid-column: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PAnDa .framer-8x60oe { gap: 0px; } .framer-PAnDa .framer-8x60oe > *, .framer-PAnDa .framer-8x60oe > :first-child, .framer-PAnDa .framer-8x60oe > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-PAnDa.framer-d1hslt { width: 390px; } .framer-PAnDa .framer-1tgqkr5-container { max-height: 100vh; } .framer-PAnDa .framer-1glbvju { height: 890px; padding: 120px 10px 60px 10px; } .framer-PAnDa .framer-qg6z4t, .framer-PAnDa .framer-1dinjss { order: 0; } .framer-PAnDa .framer-8x60oe { align-content: unset; align-items: unset; display: grid; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); order: 1; } .framer-PAnDa .framer-l49tpb { align-self: center; flex: none; justify-self: center; order: 0; padding: 0px 0px 18px 0px; width: 130px; } .framer-PAnDa .framer-2qj23m { order: 1; } .framer-PAnDa .framer-1d13997 { align-self: center; flex: none; justify-self: center; order: 1; width: 130px; } .framer-PAnDa .framer-1c1rt2o { align-self: center; flex: none; justify-self: center; order: 2; padding: 0px 0px 16px 0px; width: 130px; } .framer-PAnDa .framer-1rol70c { align-self: center; flex: none; justify-self: center; order: 3; width: 130px; } .framer-PAnDa .framer-n46ra6 { align-self: center; flex: none; justify-self: center; order: 4; width: 130px; } .framer-PAnDa .framer-1dzisk8 { align-self: center; flex: none; justify-self: center; order: 5; width: 130px; } .framer-PAnDa .framer-1xbuwon { order: 2; } .framer-PAnDa .framer-j2u00p { order: 5; } .framer-PAnDa .framer-1xasejr, .framer-PAnDa .framer-1ukv465 { padding: 20px; } .framer-PAnDa .framer-yandtc { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-PAnDa .framer-x9jd4e { height: var(--framer-aspect-ratio-supported, 67px); } .framer-PAnDa .framer-1yfs9d0 { grid-column: auto / span 1; } .framer-PAnDa .framer-s1iont { padding: 0px 20px 0px 20px; } .framer-PAnDa .framer-1r5341g, .framer-PAnDa .framer-zfru17 { flex-direction: column; } .framer-PAnDa .framer-dxnkmj { flex: none; width: 100%; } .framer-PAnDa .framer-1ub9e6 { padding: 60px 20px 60px 20px; } .framer-PAnDa .framer-d8nxv3 { width: 100%; } .framer-PAnDa .framer-1kbt191-container { order: 1; width: 100%; } .framer-PAnDa .framer-i2etob-container { flex: none; order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PAnDa .framer-8x60oe, .framer-PAnDa .framer-1r5341g, .framer-PAnDa .framer-zfru17 { gap: 0px; } .framer-PAnDa .framer-8x60oe > *, .framer-PAnDa .framer-8x60oe > :first-child, .framer-PAnDa .framer-8x60oe > :last-child { margin: 0px; } .framer-PAnDa .framer-1r5341g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PAnDa .framer-1r5341g > :first-child, .framer-PAnDa .framer-zfru17 > :first-child { margin-top: 0px; } .framer-PAnDa .framer-1r5341g > :last-child, .framer-PAnDa .framer-zfru17 > :last-child { margin-bottom: 0px; } .framer-PAnDa .framer-zfru17 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4209\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bLylQFjXq\":{\"layout\":[\"fixed\",\"auto\"]},\"oJDi8fZTt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"FtHV0RhIJ\":{\"pattern\":\":FtHV0RhIJ\",\"name\":\"hero\"},\"vP9i4lqUB\":{\"pattern\":\":vP9i4lqUB\",\"name\":\"learn-more\"},\"xRknWkxo_\":{\"pattern\":\":xRknWkxo_\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const Framerxtd7KHEU6=withCSS(Component,css,\"framer-PAnDa\");export default Framerxtd7KHEU6;Framerxtd7KHEU6.displayName=\"Home\";Framerxtd7KHEU6.defaultProps={height:4209,width:1200};addFonts(Framerxtd7KHEU6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...NavbarFonts,...ButtonFonts,...TickerFonts,...GoogleMapsFonts,...FormSparkFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerxtd7KHEU6\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"FtHV0RhIJ\\\":{\\\"pattern\\\":\\\":FtHV0RhIJ\\\",\\\"name\\\":\\\"hero\\\"},\\\"vP9i4lqUB\\\":{\\\"pattern\\\":\\\":vP9i4lqUB\\\",\\\"name\\\":\\\"learn-more\\\"},\\\"xRknWkxo_\\\":{\\\"pattern\\\":\\\":xRknWkxo_\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4209\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bLylQFjXq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oJDi8fZTt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "coordinatesRegex", "GoogleMaps", "coordinates", "zoom", "style", "props", "borderRadius", "useRadius", "latitude1", "longitude1", "se", "ref", "latitude", "longitude", "p", "motion", "containerStyles", "addPropertyControls", "ControlType", "borderRadiusControl", "emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "NavbarFonts", "getFonts", "NRz6UPb8j_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "o0dhMLXrA_default", "ContainerWithFX", "Container", "MotionAWithFX", "TickerFonts", "Ticker", "GoogleMapsFonts", "GoogleMaps", "FormSparkFonts", "FormSpark_default", "FooterFonts", "VaqXev6Le_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "transition7", "animation8", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "yfc64yKRAETT9RQPni", "Y48d8QcPMcyU1ewuwq", "Qeg6RYtv9cyU1ewuwq", "Ar_3PdyG9cyU1ewuwq", "Vz579iTNccyU1ewuwq", "idcyU1ewuwq", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId1", "activeLocaleCode", "useLocaleCode", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "SVG", "resolvedLinks2", "ChildrenCanSuspend", "JmhujK3L9_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "css", "Framerxtd7KHEU6", "withCSS", "xtd7KHEU6_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
