{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js", "ssg:https://framerusercontent.com/modules/UthdJNYSG1iBTt5ulrgv/HyPot0st7fF5EOUZiF5h/AWreEf71D.js", "ssg:https://framerusercontent.com/modules/ksYcdZkN0iEwYPuBIQ6n/Okf6jYihAY12u5HD0Dob/bjHY8VzSE.js", "ssg:https://framerusercontent.com/modules/SGeNAa4ubrIMWOYiFNxI/d5G4Na1rWg45m7Hy9JM9/QCVA72OzD.js", "ssg:https://framerusercontent.com/modules/vFcMVNla7vFIkR6r8agN/SP6iahBBOieaowogvzBr/TIbPxse0J.js", "ssg:https://framerusercontent.com/modules/qtcv56H6qgzs0FFmlyn3/NLmeaWcha8skC8GOPnUv/augiA20Il.js"],
  "sourcesContent": ["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===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0: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://submit-form.com/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).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:0.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:0.3},whileHover:{opacity:0.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\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"550\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{sync.read(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}});},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(hasChildren)measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (b964d09)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,SVG,useActiveVariantCallback,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"OfvpFiac1\",\"UV908eeax\",\"hTdqDSCgc\",\"as8FAiiPL\",\"wQzvmKMMb\",\"XbR8BbAjA\"];const variantClassNames={as8FAiiPL:\"framer-v-1wbzmd9\",hTdqDSCgc:\"framer-v-lrgfwz\",OfvpFiac1:\"framer-v-13vzzbx\",UV908eeax:\"framer-v-1lh0hob\",wQzvmKMMb:\"framer-v-18zbju8\",XbR8BbAjA:\"framer-v-1xulr6e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"OfvpFiac1\",\"Variant 2\":\"UV908eeax\",\"Variant 3\":\"hTdqDSCgc\",\"Variant 4\":\"as8FAiiPL\",\"Variant 5\":\"wQzvmKMMb\",\"Variant 6\":\"XbR8BbAjA\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"OfvpFiac1\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"OfvpFiac1\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1e1frkv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),3e3);});useOnVariantChange(baseVariant,{default:onAppear1e1frkv});const isDisplayed=()=>{if([\"UV908eeax\",\"hTdqDSCgc\",\"as8FAiiPL\",\"wQzvmKMMb\",\"XbR8BbAjA\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"hTdqDSCgc\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"UV908eeax\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"as8FAiiPL\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"wQzvmKMMb\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"XbR8BbAjA\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-O6JqK\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-13vzzbx\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OfvpFiac1\",ref:ref,style:{backgroundColor:\"var(--token-c3ee15e9-a354-4350-83a0-6fd6b65af979, rgb(218, 228, 213))\",...style},transition:transition,variants:{hTdqDSCgc:{backgroundColor:\"var(--token-74c5951f-ca17-4628-9572-3c9ba754f0b3, rgb(179, 219, 158))\"},UV908eeax:{backgroundColor:\"var(--token-82293e77-a432-4ea0-80d7-705770fb4252, rgb(200, 226, 187))\"},wQzvmKMMb:{backgroundColor:\"var(--token-82293e77-a432-4ea0-80d7-705770fb4252, rgb(207, 224, 199))\"},XbR8BbAjA:{backgroundColor:\"var(--token-74c5951f-ca17-4628-9572-3c9ba754f0b3, rgb(200, 226, 187))\"}},...addPropertyOverrides({as8FAiiPL:{\"data-framer-name\":\"Variant 4\"},hTdqDSCgc:{\"data-framer-name\":\"Variant 3\"},UV908eeax:{\"data-framer-name\":\"Variant 2\"},wQzvmKMMb:{\"data-framer-name\":\"Variant 5\"},XbR8BbAjA:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1r3044u\",\"data-framer-name\":\"1\",fill:\"#DAE4D5\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"f8RErccJW\",svg:'<svg width=\"658\" height=\"270\" viewBox=\"0 0 658 270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M96.5245 69H91.9765C92.008 67.8285 92.0005 68.9925 92.0005 63.75C92.0005 63.336 92.338 63 92.7505 63H95.7505C96.163 63 96.5005 63.336 96.5005 63.75C96.5005 68.979 96.493 67.8255 96.5245 69ZM101 105H110V97.5H101V105ZM96.6175 70.5H91.8835C91.54 73.7865 90.6745 75.5355 88.741 80.6895C87.094 85.0845 87.5005 87.336 87.5005 102C87.5005 103.654 88.846 105 90.5005 105C98.551 105 98.545 105.139 99.5005 104.583V87H100.976C100.79 80.172 97.27 76.7505 96.6175 70.5ZM120.5 88.5V96H111.5V90H110V96H101V88.5H104.912C104.128 87.936 103.496 87.117 103.187 86.496C102.163 84.438 104.171 82.3005 106.406 82.8435C108.476 83.352 109.939 84.4005 110.75 85.9305C111.562 84.4005 113.024 83.352 115.094 82.8435C117.332 82.299 119.336 84.441 118.313 86.4945C118 87.1245 117.377 87.9315 116.587 88.4985H120.5V88.5ZM109.963 88.4805C109.717 86.1345 108.296 84.852 106.049 84.3015C105.062 84.0585 104.08 84.9225 104.53 85.827C105.493 87.759 107.807 88.3755 109.963 88.4805V88.4805ZM111.539 88.4805C113.696 88.3755 116.009 87.759 116.972 85.8255C117.421 84.924 116.443 84.0555 115.453 84.3C113.207 84.8505 111.785 86.1315 111.539 88.479V88.4805ZM111.502 105H120.502V97.5H111.502V105Z\" fill=\"#293A20\"/>\\n<path d=\"M245.09 74.6025C245.471 70.6815 247 68.8035 248.068 67.5C248.068 67.5 250.213 75.327 254.216 79.0575C253.889 79.2675 253.402 79.5 252.499 79.5C249.41 79.5 246.865 77.0505 245.089 74.6025H245.09ZM275.842 87.4125L275.351 88.002C274.442 89.094 272.798 90.2595 270.914 90.2595C269.62 90.2595 268.424 89.6985 267.335 88.65C266.951 90.561 266.749 92.5275 266.749 94.5H265.249C265.249 90.87 266.002 85.6005 267.889 82.5H263.012C262.853 86.97 261.76 90.816 257.843 93.468C255.704 94.917 252.814 95.9175 248.747 96.003L244.249 103.499C240.326 102.518 237.659 99.888 236.112 97.854C234.335 95.5185 233.269 92.979 233 91.4985H246.079L243.781 90.1065C240.232 87.957 236 83.8515 236 76.4985C236 72.135 237.404 69.843 239.75 67.4985C241.858 73.32 246.329 80.9985 252.5 80.9985C255.88 80.9985 256.285 78.4755 258.511 77.202C261.718 75.3735 267.074 77.0055 268.715 81.327C269.608 80.2125 270.724 79.269 271.885 78.453C270.376 77.748 268.565 75.8445 269.128 71.91L269.263 70.965L270.148 71.319C271.639 71.913 274.28 74.106 273.61 78.138C273.475 78.9495 273.485 79.158 273.167 79.371C270.02 81.4695 268.729 83.475 267.922 86.2335C269.707 85.335 272.572 84.7965 275.245 86.9325L275.842 87.4095V87.4125ZM263 79.875C263 79.254 262.496 78.75 261.875 78.75C261.254 78.75 260.75 79.254 260.75 79.875C260.75 80.496 261.254 81 261.875 81C262.496 81 263 80.496 263 79.875Z\" fill=\"#293A20\"/>\\n<path d=\"M418.253 64.5V63H415.253V64.5H392.753V63H389.753V64.5C389.753 69.3585 394.258 71.871 399.533 73.8795C397.408 74.6865 395.407 75.576 393.818 76.659C391.184 78.4515 389.732 80.7945 389.732 83.2545C389.732 85.7145 391.184 88.059 393.818 89.8515C395.405 90.9315 397.406 91.821 399.535 92.628C394.259 94.635 389.753 97.1445 389.753 101.999V103.499H392.753V101.999H415.253V103.499H418.253V101.999C418.253 97.1505 413.752 94.635 408.47 92.625C413.746 90.618 418.253 88.1085 418.253 83.253C418.253 78.3975 413.743 75.8895 408.466 73.881C413.747 71.871 418.253 69.357 418.253 64.4985V64.5ZM414.928 66C414.418 67.161 413.327 68.1375 411.889 69H396.121C394.682 68.1375 393.589 67.161 393.079 66H414.928ZM408.853 70.5C407.332 71.1375 405.668 71.721 404.002 72.2955C402.338 71.721 400.675 71.1375 399.155 70.5H408.853V70.5ZM413.011 87H395.002C393.818 86.0805 393.073 85.047 392.83 84H415.174C414.937 85.152 414.152 86.1345 413.011 87ZM410.498 88.5C408.586 89.439 406.297 90.249 404.006 91.0395C401.714 90.2505 399.4 89.436 397.49 88.5H410.498ZM392.833 82.5C393.08 81.453 393.829 80.4195 395.017 79.5H412.996C414.142 80.3655 414.931 81.348 415.171 82.5H392.833ZM397.511 78C399.416 77.067 401.719 76.2555 404 75.4695C406.283 76.257 408.565 77.0655 410.476 78H397.511ZM404.006 94.2135C405.665 94.785 407.321 95.367 408.836 96H399.175C400.69 95.367 402.349 94.785 404.006 94.2135ZM393.08 100.5C393.592 99.339 394.688 98.3625 396.131 97.5H411.877C413.32 98.3625 414.415 99.3405 414.926 100.5H393.08Z\" fill=\"#293A20\"/>\\n<path d=\"M574.575 78.8235L569.43 66.1635C569.778 65.7135 569.859 65.088 569.577 64.551C569.192 63.8205 568.286 63.537 567.551 63.9225L557 69.4755V66C557 65.172 556.328 64.5 555.5 64.5H552.5C551.672 64.5 551 65.172 551 66V72.6345L539.051 78.924C538.317 79.3095 538.037 80.217 538.422 80.9505C538.455 81.012 538.5 81.06 538.541 81.114L533.429 92.502C533.145 93.135 533 93.807 533 94.5015H531.969C533.102 96.249 536.157 97.5015 539.75 97.5015C543.342 97.5015 546.398 96.249 547.53 94.5015H546.5C546.5 93.8085 546.356 93.135 546.071 92.502L541.029 81.2715L551 76.0245V98.4L539 102V105H569V102L557 98.4V72.8655L566.343 67.947L561.924 78.8235C561.642 79.518 561.5 80.2515 561.5 81H560.469C561.602 82.7475 564.657 84 568.25 84C571.842 84 574.898 82.7475 576.03 81H575C575 80.2515 574.857 79.5195 574.575 78.8235V78.8235ZM534.5 94.5C534.5 94.026 534.602 93.5475 534.797 93.1155L539 83.7525V94.5015H534.5V94.5ZM545 94.5H540.5V83.751L544.703 93.114C544.896 93.5475 545 94.0245 545 94.4985V94.5ZM563 81C563 80.445 563.106 79.9035 563.315 79.3875L567.5 69.087V80.9985H563V81ZM569 81V69.0885L573.185 79.389C573.393 79.9035 573.5 80.4465 573.5 81.0015H569V81Z\" fill=\"#293A20\"/>\\n<path d=\"M94.9995 174H93.4995V171H94.9995V174ZM90.0375 183.857C91.0905 183.308 92.274 183 93.4995 183C93.7605 183 94.023 183.014 94.281 183.041C95.3205 181.221 97.275 180.032 99.4245 180.005C99.06 177.461 96.894 175.5 94.2495 175.5C91.35 175.5 88.9995 177.851 88.9995 180.75C88.9995 181.917 89.3925 182.985 90.0375 183.857ZM116.75 202.5C117.99 202.5 119 201.491 119 200.25C119 199.009 117.99 198 116.75 198C115.509 198 114.5 199.009 114.5 200.25C114.5 201.491 115.509 202.5 116.75 202.5ZM110 200.25C110 197.91 111.191 195.847 113 194.637V168.75C113 166.678 114.678 165 116.75 165C118.821 165 120.5 166.678 120.5 168.75V194.637C122.309 195.847 123.5 197.91 123.5 200.25C123.5 203.977 120.477 207 116.75 207C113.022 207 110 203.977 110 200.25ZM113 200.25C113 202.318 114.683 204 116.75 204C118.817 204 120.5 202.318 120.5 200.25C120.5 198.438 119.21 196.925 117.5 196.577V169.5C117.5 169.086 117.164 168.75 116.75 168.75C116.336 168.75 116 169.086 116 169.5V196.577C114.29 196.925 113 198.439 113 200.25ZM90.006 175.448L87.885 173.327L86.8245 174.387L88.9455 176.508L90.006 175.448V175.448ZM101.673 174.387L100.613 173.327L98.4915 175.448L99.552 176.508L101.673 174.387V174.387ZM87.498 180H84.4995V181.5H87.4995V180H87.498ZM87.498 196.5H109.412C109.928 195.496 110.637 194.608 111.498 193.896V183.042C109.748 183.235 108.197 184.098 107.112 185.37C106.205 184.818 105.138 184.5 103.998 184.5C103.913 184.5 103.829 184.502 103.745 184.505C103.128 182.754 101.46 181.5 99.498 181.5C97.4505 181.5 95.7225 182.867 95.178 184.739C94.6455 184.584 94.0815 184.5 93.498 184.5C91.251 184.5 89.292 185.736 88.263 187.564C88.014 187.521 87.759 187.5 87.498 187.5C85.0125 187.5 82.998 189.515 82.998 192C82.998 194.485 85.0125 196.5 87.498 196.5V196.5Z\" fill=\"#293A20\"/>\\n<path d=\"M271.144 178.115L268.499 184.992C268.201 185.769 267.326 186.155 266.551 185.85L264.673 185.114C263.905 184.812 263.524 183.948 263.821 183.179L266.471 176.289C266.771 175.509 267.652 175.125 268.429 175.436L270.301 176.184C271.063 176.489 271.438 177.35 271.144 178.115V178.115ZM258.847 167.564L256.28 166.538C255.505 166.227 254.624 166.611 254.323 167.391L251.5 174.72L255.902 179.336L259.688 169.496C259.982 168.729 259.607 167.87 258.845 167.564H258.847ZM257.908 182.459L260.485 183.47C261.259 183.774 262.133 183.389 262.432 182.612L266.44 172.194C266.734 171.428 266.359 170.568 265.597 170.262L263.026 169.233C262.249 168.923 261.368 169.307 261.068 170.087L257.054 180.521C256.759 181.29 257.138 182.154 257.906 182.456L257.908 182.459ZM262.049 185.696H262.046L255.982 183.315C255.659 184.152 255.679 185.081 256.034 185.904C257.045 188.246 257.776 191.106 257.482 195.248L255.989 195.089C256.241 191.345 255.661 188.781 254.618 186.399C254.257 185.576 253.588 184.926 252.752 184.592L245.717 181.778L246.271 180.383L251.587 182.51C253.063 183.101 254.738 182.37 255.31 180.885L251.188 176.564C250.541 175.886 249.646 175.502 248.708 175.502H243.151C241.736 175.502 240.514 176.49 240.217 177.873L239.068 183.233C238.894 184.043 239.063 184.889 239.534 185.568L245.545 194.252L244.045 204.002H262.045L262.795 198.752L266.779 193.629C267.247 193.028 267.5 192.288 267.5 191.526V187.835L262.052 185.697H262.049V185.696ZM251.024 167.664L249.149 166.914C248.372 166.604 247.492 166.988 247.192 167.769L244.795 174H250.171L251.867 169.596C252.163 168.83 251.786 167.969 251.024 167.664Z\" fill=\"#293A20\"/>\\n<path d=\"M412.175 192.545L412.116 192.486L412.175 192.545ZM412.853 191.866L414.501 193.644V201C414.501 202.658 413.159 204 411.501 204H387.5C385.842 204 384.5 202.658 384.5 201V198H407.075C407.423 199.71 408.938 201 410.75 201H411.5V199.5H410.75C409.509 199.5 408.5 198.491 408.5 197.25V196.5H390.5V172.5C390.5 170.015 392.515 168 395 168H419C420.658 168 422 169.342 422 171V175.5H416V174.75C416 173.509 417.009 172.5 418.25 172.5H419V171H418.25C416.183 171 414.5 172.682 414.5 174.75V178.752C414.241 178.752 413.981 178.8 413.73 178.902C413.489 179.004 413.275 179.148 413.092 179.331L412.511 179.911C412.136 180.286 411.931 180.785 411.931 181.314C411.931 181.341 411.946 181.365 411.946 181.393L406.583 186.756C406.319 186.753 406.053 186.798 405.804 186.901C405.561 187 405.346 187.144 405.16 187.33L404.58 187.911C404.211 188.28 404 188.79 404 189.313C404 189.843 404.205 190.341 404.58 190.716L408.185 194.319C408.56 194.692 409.058 194.898 409.584 194.898C410.105 194.898 410.617 194.687 410.987 194.318L411.566 193.737C411.863 193.44 412.022 193.046 412.087 192.635L412.175 192.546L412.853 191.868V191.866ZM405.501 180H393.5V181.5H405.5V180H405.501ZM411.501 175.5H393.5V177H411.5V175.5H411.501ZM399.502 184.5H393.502V186H399.502V184.5ZM412.631 182.832L408.05 187.415L411.569 190.933C411.587 190.951 411.593 190.976 411.609 190.994L412.9 189.703C414.008 190.909 419.538 196.907 422.403 199.77C422.711 200.078 423.129 200.251 423.564 200.251C423.999 200.251 424.418 200.079 424.725 199.77C425.033 199.463 425.207 199.044 425.207 198.609C425.207 198.174 425.034 197.755 424.725 197.448C421.86 194.583 415.865 189.052 414.661 187.944L416.219 186.387C416.187 186.36 416.147 186.348 416.117 186.319L412.632 182.835L412.631 182.832ZM414.495 180.25C414.432 180.25 414.369 180.264 414.309 180.286C414.254 180.31 414.2 180.346 414.153 180.391L413.573 180.972C413.481 181.063 413.432 181.185 413.432 181.314C413.432 181.442 413.483 181.563 413.573 181.654L417.175 185.256C417.356 185.437 417.674 185.436 417.855 185.256L418.436 184.674C418.526 184.583 418.577 184.461 418.577 184.332C418.577 184.204 418.526 184.081 418.438 183.993L414.834 180.39C414.789 180.345 414.735 180.308 414.674 180.284C414.62 180.261 414.557 180.249 414.494 180.249L414.495 180.25ZM410.507 192.673C410.597 192.583 410.648 192.461 410.648 192.333C410.648 192.204 410.597 192.083 410.507 191.99L406.906 188.39C406.862 188.346 406.808 188.31 406.75 188.286C406.69 188.262 406.626 188.25 406.563 188.25C406.5 188.25 406.437 188.264 406.377 188.286C406.319 188.312 406.267 188.346 406.222 188.39L405.641 188.972C405.551 189.062 405.5 189.185 405.5 189.312C405.5 189.441 405.551 189.563 405.641 189.656L409.243 193.255C409.424 193.434 409.744 193.437 409.925 193.255L410.504 192.675L410.507 192.673Z\" fill=\"#293A20\"/>\\n<path d=\"M573.5 181.5V196.5C573.5 198.157 572.158 199.5 570.5 199.5H549.037C548.837 199.5 548.647 199.579 548.506 199.719L541.376 206.847C541.052 207.171 540.499 206.941 540.499 206.484V200.248C540.499 199.834 540.163 199.498 539.749 199.498H537.499C535.841 199.498 534.499 198.156 534.499 196.498V181.5C534.499 179.842 535.841 178.5 537.499 178.5H544.001L539.248 186.817C538.628 187.903 538.633 189.195 539.261 190.275C539.888 191.355 541.007 191.998 542.255 191.998H566.911C568.159 191.998 569.278 191.353 569.905 190.275C570.533 189.195 570.538 187.902 569.918 186.816L565.166 178.498H570.5C572.158 178.498 573.5 179.841 573.5 181.498V181.5ZM540.551 187.561L552.878 165.99C553.633 164.67 555.535 164.67 556.288 165.99L568.615 187.561C569.363 188.871 568.418 190.5 566.909 190.5H542.257C540.749 190.5 539.804 188.871 540.551 187.561V187.561ZM556.1 184.5C556.1 183.756 555.494 183.15 554.75 183.15C554.006 183.15 553.4 183.756 553.4 184.5C553.4 185.244 554.006 185.85 554.75 185.85C555.494 185.85 556.1 185.244 556.1 184.5ZM554 181.5H555.5V172.5H554V181.5V181.5Z\" fill=\"#293A20\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1i8zkr0\",\"data-framer-name\":\"2\",fill:\"#DAE4D5\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"Oz6CblcFG\",svg:'<svg width=\"658\" height=\"270\" viewBox=\"0 0 658 270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M94.0005 74C94.0005 76.2092 95.7913 78 98.0005 78C100.21 78 102 76.2092 102 74C102 71.7909 100.21 70 98.0005 70C95.7913 70 94.0005 71.7909 94.0005 74Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.0005 93.3524V100C92.0005 100.641 91.6928 101.244 91.1732 101.62C90.6535 101.996 89.985 102.1 89.3757 101.9C86.9587 101.105 85.1084 100.039 83.8518 98.6497C82.5539 97.2153 82.0005 95.5576 82.0005 93.8563V73.9641C82.0005 72.1339 82.9401 70.5952 84.2012 69.4079C85.4585 68.2243 87.1699 67.2504 89.1184 66.4745C93.0268 64.9182 98.2893 64 104 64C109.712 64 114.974 64.9182 118.883 66.4745C120.831 67.2504 122.542 68.2243 123.8 69.4079C125.061 70.5952 126 72.1339 126 73.9641V93.8563C126 95.5576 125.447 97.2153 124.149 98.6497C122.893 100.039 121.042 101.105 118.625 101.9C118.016 102.1 117.347 101.996 116.828 101.62C116.308 101.244 116 100.641 116 100V93.3524C112.639 92.5082 108.503 92 104 92C99.4978 92 95.3622 92.5082 92.0005 93.3524ZM86.0005 73.9641C86.0005 73.595 86.1801 73.0386 86.9431 72.3203C87.71 71.5983 88.9275 70.856 90.5983 70.1907C93.9284 68.8647 98.666 68 104 68C109.335 68 114.073 68.8647 117.403 70.1907C119.073 70.856 120.291 71.5983 121.058 72.3203C121.821 73.0386 122 73.595 122 73.9641C122 74.7359 121.775 75.4197 121.183 76.0737C120.55 76.7733 119.401 77.542 117.376 78.2079C116.555 78.4777 116 79.244 116 80.1078V81.1716L110 75.1716L96.7419 88.4302C95.0742 88.6341 93.4855 88.907 92.0005 89.2411V80.1078C92.0005 79.244 91.4459 78.4777 90.6253 78.2079C88.6004 77.542 87.4508 76.7733 86.8179 76.0737C86.2261 75.4197 86.0005 74.7359 86.0005 73.9641ZM102.818 88.011C103.21 88.0037 103.604 88 104 88C108.364 88 112.475 88.4477 116 89.2411V86.8284L110 80.8284L102.818 88.011ZM120 81.5006C120.731 81.1987 121.398 80.8655 122 80.499V93.8563C122 94.6281 121.775 95.312 121.183 95.966C120.902 96.2771 120.518 96.6019 120 96.9252V81.5006ZM86.0005 93.8563V80.499C86.6028 80.8655 87.2698 81.1987 88.0005 81.5006V96.9252C87.483 96.6019 87.0993 96.2771 86.8179 95.966C86.2261 95.312 86.0005 94.6281 86.0005 93.8563Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M276 84C276 96.1502 266.151 106 254 106C241.85 106 232 96.1502 232 84C232 71.8497 241.85 62 254 62C266.151 62 276 71.8497 276 84ZM252.34 66.9459C253.061 66.183 253.623 66 254 66C254.378 66 254.94 66.183 255.661 66.9459C256.387 67.713 257.132 68.9304 257.8 70.6006C257.977 71.0429 258.146 71.51 258.306 72H249.695C249.855 71.51 250.024 71.0429 250.201 70.6006C250.869 68.9304 251.614 67.713 252.34 66.9459ZM245.517 72C245.805 70.9747 246.129 70.0094 246.487 69.1151C246.742 68.4756 247.02 67.8616 247.319 67.281C244.72 68.3205 242.42 69.9484 240.584 72H245.517ZM237.872 76H244.637C244.323 77.8905 244.118 79.9064 244.038 82H236.11C236.346 79.8652 236.956 77.843 237.872 76ZM236.11 86H244.038C244.118 88.0936 244.323 90.1094 244.637 92H237.872C236.956 90.157 236.346 88.1347 236.11 86ZM240.584 96C242.42 98.0516 244.72 99.6795 247.319 100.719C247.02 100.138 246.742 99.5244 246.487 98.8849C246.129 97.9905 245.805 97.0253 245.517 96H240.584ZM249.695 96C249.855 96.49 250.024 96.9571 250.201 97.3993C250.869 99.0695 251.614 100.287 252.34 101.054C253.061 101.817 253.623 102 254 102C254.378 102 254.94 101.817 255.661 101.054C256.387 100.287 257.132 99.0695 257.8 97.3993C257.977 96.9571 258.146 96.49 258.306 96H249.695ZM262.483 96C262.196 97.0253 261.872 97.9905 261.514 98.8849C261.258 99.5244 260.981 100.138 260.682 100.719C263.281 99.6795 265.581 98.0516 267.417 96H262.483ZM270.129 92H263.364C263.678 90.1094 263.883 88.0936 263.962 86H271.891C271.655 88.1347 271.045 90.157 270.129 92ZM259.303 92H248.698C248.359 90.1581 248.13 88.139 248.042 86H259.959C259.871 88.139 259.642 90.1581 259.303 92ZM248.698 76C248.359 77.8419 248.13 79.861 248.042 82H259.959C259.871 79.861 259.642 77.8419 259.303 76H248.698ZM263.962 82H271.891C271.655 79.8652 271.045 77.843 270.129 76H263.364C263.678 77.8905 263.883 79.9064 263.962 82ZM267.417 72C265.581 69.9484 263.281 68.3205 260.682 67.281C260.981 67.8616 261.258 68.4756 261.514 69.1151C261.872 70.0094 262.196 70.9747 262.483 72H267.417Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M415.415 81.4142L424.829 72L415.415 62.5858L412.586 65.4142L417.248 70.0764C408.514 70.3591 400.634 71.4125 394.621 72.9948C391.093 73.9232 388.094 75.0628 385.93 76.4094C383.872 77.6897 382 79.5257 382 82V88C382 90.9363 383.496 93.5312 385.77 95.681C388.039 97.8269 391.215 99.6672 394.973 101.171C402.502 104.182 412.765 106 424 106C425.105 106 426 105.105 426 104V92C426 90.8954 425.105 90 424 90C413.069 90 403.24 88.8904 396.201 87.1308C392.667 86.2471 389.948 85.2268 388.162 84.1707C386.241 83.0355 386 82.2371 386 82C386 81.7129 386.255 80.9182 388.043 79.8057C389.725 78.7595 392.291 77.7443 395.639 76.8631C401.235 75.3905 408.701 74.3729 417.088 74.084L412.586 78.5858L415.415 81.4142ZM386.126 87.6142C386.084 87.5894 386.042 87.5643 386 87.5391V88C386 89.482 386.743 91.0962 388.518 92.7748C390.297 94.4574 392.979 96.0648 396.459 97.4568C402.978 100.064 411.951 101.778 422 101.98V93.9879C411.629 93.8617 402.223 92.7593 395.231 91.0114C391.527 90.0854 388.388 88.9509 386.126 87.6142Z\" fill=\"#293A20\"/>\\n<path d=\"M575.891 86.2077C575.963 85.4816 576 84.7451 576 84C576 81.6712 575.639 79.4269 574.968 77.3203C573.799 78.8042 572.341 80.1289 570.684 81.259C566.329 84.2281 560.425 86 554 86C547.576 86 541.672 84.2281 537.317 81.259C535.66 80.1289 534.202 78.8042 533.033 77.3203C532.362 79.4269 532 81.6712 532 84C532 84.7451 532.038 85.4816 532.11 86.2077C537.218 92.1571 545.088 96 554 96C562.913 96 570.783 92.1571 575.891 86.2077Z\" fill=\"#293A20\"/>\\n<path d=\"M573.826 93.549C568.357 97.5959 561.457 100 554 100C546.544 100 539.644 97.5959 534.175 93.549C537.73 100.917 545.272 106 554 106C562.729 106 570.27 100.917 573.826 93.549Z\" fill=\"#293A20\"/>\\n<path d=\"M554 62C562.127 62 569.224 66.4057 573.033 72.9589C572.117 74.7905 570.563 76.4999 568.43 77.9541C564.822 80.414 559.727 82 554 82C548.274 82 543.179 80.414 539.571 77.9541C537.438 76.4999 535.884 74.7905 534.968 72.9589C538.777 66.4057 545.874 62 554 62Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M126.075 176.568L126.055 176.574C125.625 175.478 124.745 174.633 123.873 174.024C122.596 173.134 120.88 172.412 118.938 171.839C115.03 170.685 109.749 170 104 170C98.251 170 92.9701 170.685 89.0615 171.839C87.1202 172.412 85.4036 173.134 84.1272 174.024C83.2549 174.633 82.375 175.478 81.9451 176.574L81.9247 176.568C80.6852 179.466 80 182.656 80 186C80 189.369 80.7872 192.716 82.0163 195.59L82.0246 195.609L82.0334 195.628C82.6343 196.955 83.8773 197.911 85.1575 198.609C86.4943 199.338 88.1726 199.946 90.0587 200.437C93.8399 201.422 98.7184 202 104 202C109.282 202 114.16 201.422 117.941 200.437C119.827 199.946 121.506 199.338 122.843 198.609C124.123 197.911 125.366 196.955 125.967 195.628L125.975 195.609L125.984 195.59C127.213 192.716 128 189.369 128 186C128 182.656 127.315 179.466 126.075 176.568ZM85.6927 178.006L85.6949 177.99C85.7483 177.89 85.9155 177.654 86.4165 177.305C87.1971 176.76 88.457 176.188 90.194 175.676C93.6417 174.658 98.5234 174 104 174C109.476 174 114.358 174.658 117.806 175.676C119.543 176.188 120.803 176.76 121.583 177.305C122.085 177.655 122.252 177.891 122.305 177.99L122.307 178.006C122.256 178.103 122.092 178.341 121.583 178.695C120.803 179.24 119.543 179.812 117.806 180.324C114.358 181.342 109.476 182 104 182C98.5235 182 93.6418 181.342 90.194 180.324C88.4571 179.812 87.1972 179.24 86.4165 178.695C85.9083 178.341 85.7436 178.103 85.6927 178.006Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.891 162.336C255.562 161.888 256.438 161.888 257.109 162.336L275.109 174.336C275.666 174.707 276 175.331 276 176V188C276 188.669 275.666 189.293 275.109 189.664L245.109 209.664C244.438 210.112 243.562 210.112 242.891 209.664L230.891 201.664C230.334 201.293 230 200.669 230 200V188C230 187.331 230.334 186.707 230.891 186.336L242 178.93V172C242 171.958 242.001 171.917 242.004 171.875C242.021 171.609 242.09 171.352 242.205 171.118C242.272 170.981 242.355 170.852 242.452 170.734C242.578 170.579 242.729 170.443 242.899 170.33L254.891 162.336ZM235.606 188L245.105 181.667L245.109 181.664L248 179.737V186.93L241 191.596L235.606 188ZM251.103 193.669L246 197.07V204.263L272 186.93V179.737L266.113 183.661L266.109 183.664L251.109 193.664L251.103 193.669ZM265 179.596L270.394 176L258 167.737V174.93L265 179.596ZM254 174.93V167.737L247.606 172L251.109 174.336C251.631 174.684 251.957 175.254 251.996 175.875C251.999 175.917 252 175.958 252 176V176.263L254 174.93ZM252 181.07V188.263L261.394 182L256 178.404L252 181.07ZM234 191.737V198.93L242 204.263V197.07L234 191.737Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M404 170C398.251 170 392.97 170.685 389.062 171.839C387.12 172.412 385.404 173.134 384.127 174.024C383.254 174.634 382.374 175.48 381.944 176.577L381.925 176.568C380.685 179.466 380 182.656 380 186C380 189.369 380.787 192.716 382.016 195.59L382.025 195.609L382.033 195.628C382.634 196.955 383.877 197.911 385.157 198.609C386.494 199.338 388.173 199.946 390.059 200.437C393.84 201.422 398.718 202 404 202C409.282 202 414.16 201.422 417.941 200.437C419.827 199.946 421.506 199.338 422.843 198.609C424.123 197.911 425.366 196.955 425.967 195.628L425.975 195.609L425.984 195.59C427.213 192.716 428 189.369 428 186C428 182.656 427.315 179.466 426.075 176.568L426.056 176.577C425.626 175.48 424.746 174.634 423.873 174.024C422.596 173.134 420.88 172.412 418.938 171.839C415.03 170.685 409.749 170 404 170ZM386.417 178.695C385.898 178.333 385.737 178.093 385.69 178C385.737 177.907 385.898 177.667 386.417 177.305C387.197 176.76 388.457 176.188 390.194 175.676C393.642 174.658 398.524 174 404 174C409.477 174 414.358 174.658 417.806 175.676C419.543 176.188 420.803 176.76 421.584 177.305C422.102 177.667 422.263 177.907 422.31 178C422.263 178.093 422.102 178.333 421.584 178.695C420.803 179.24 419.543 179.812 417.806 180.324C414.358 181.342 409.477 182 404 182C398.524 182 393.642 181.342 390.194 180.324C388.457 179.812 387.197 179.24 386.417 178.695ZM423.628 182.141C422.381 182.956 420.758 183.624 418.938 184.161C418.453 184.304 417.946 184.44 417.42 184.569C417.631 185.81 417.782 187.096 417.867 188.417C417.96 188.392 418.053 188.367 418.144 188.342C420 187.831 421.477 187.243 422.534 186.634C423.335 186.172 423.771 185.77 423.993 185.484C423.965 184.342 423.84 183.225 423.628 182.141ZM413.907 189.248C413.842 187.893 413.701 186.582 413.492 185.33C411.186 185.676 408.657 185.898 406 185.972V189.971C408.849 189.89 411.521 189.636 413.907 189.248ZM402 189.971C399.151 189.89 396.479 189.636 394.093 189.248C394.158 187.893 394.299 186.582 394.508 185.33C396.814 185.676 399.343 185.898 402 185.972V189.971ZM402 193.973V197.97C399.343 197.892 396.859 197.657 394.652 197.305C394.413 196.036 394.234 194.683 394.136 193.303C396.569 193.666 399.22 193.898 402 193.973ZM406 197.97V193.973C408.78 193.898 411.431 193.666 413.864 193.303C413.766 194.683 413.587 196.036 413.348 197.305C411.141 197.657 408.657 197.892 406 197.97ZM390.133 188.417C390.218 187.096 390.369 185.81 390.58 184.569C390.054 184.44 389.547 184.304 389.062 184.161C387.242 183.624 385.619 182.956 384.372 182.141C384.16 183.225 384.035 184.342 384.007 185.484C384.229 185.77 384.665 186.172 385.466 186.634C386.523 187.243 388 187.831 389.856 188.342C389.947 188.367 390.04 188.392 390.133 188.417ZM388.794 192.199C389.213 192.314 389.643 192.424 390.086 192.529C390.142 193.844 390.268 195.145 390.448 196.398C389.041 195.998 387.908 195.552 387.072 195.097C386.085 194.559 385.757 194.14 385.682 193.989C385.237 192.944 384.864 191.83 384.583 190.681C385.811 191.264 387.236 191.77 388.794 192.199ZM417.552 196.398C417.732 195.145 417.858 193.844 417.914 192.529C418.357 192.424 418.787 192.314 419.206 192.199C420.764 191.77 422.189 191.264 423.417 190.681C423.136 191.83 422.763 192.944 422.318 193.989C422.243 194.14 421.915 194.559 420.928 195.097C420.092 195.552 418.959 195.998 417.552 196.398Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M554 172C554 168.686 556.686 166 560 166H568C571.313 166 574 168.686 574 172V200C574 203.314 571.313 206 568 206H540C536.686 206 534 203.314 534 200V192C534 188.686 536.686 186 540 186H554V172ZM558 190H540C538.895 190 538 190.895 538 192V200C538 201.105 538.895 202 540 202H554V196H558V202H568C569.104 202 570 201.105 570 200V190H564V186H570V172C570 170.895 569.104 170 568 170H560C558.895 170 558 170.895 558 172V190Z\" fill=\"#293A20\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1xgbxe2\",\"data-framer-name\":\"3\",fill:\"#DAE4D5\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"jYSfSgoYE\",svg:'<svg width=\"658\" height=\"270\" viewBox=\"0 0 658 270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_313_96)\">\\n<path d=\"M95.9635 66.265L90.4984 69.4194C91.6043 71.3348 95.217 71.3178 98.5675 69.3843C101.918 67.4499 103.737 64.3295 102.633 62.4141L97.1684 65.5695L96.553 64.5046C96.7481 64.1234 96.7742 63.664 96.544 63.2657C96.1827 62.6413 95.3841 62.4281 94.7596 62.7884C94.1342 63.1486 93.92 63.9482 94.2812 64.5727C94.5114 64.971 94.9217 65.1782 95.3491 65.2002L95.9635 66.265Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M104.845 84.2605L103.979 84.7609C103.5 85.0371 102.888 84.873 102.612 84.3947L99.6093 79.1947L97.876 80.1955L99.8595 83.6301C100.146 84.1265 99.9756 84.7619 99.4792 85.0482L86.5114 92.5348C86.015 92.822 85.3796 92.6519 85.0933 92.1555L80.1216 83.543C79.8344 83.0467 80.0045 82.4122 80.5009 82.1259L93.4697 74.6383C93.966 74.3521 94.6005 74.5222 94.8867 75.0186L96.3749 77.5955L98.1082 76.5948L96.655 74.0779C96.3778 73.5985 96.543 72.9861 97.0213 72.7108L102.221 69.7086C102.7 69.4314 103.312 69.5955 103.588 70.0749L105.041 72.5918L106.743 71.609L105.256 69.0321C104.968 68.5357 105.138 67.9012 105.635 67.615L118.604 60.1273C119.1 59.8411 119.733 60.0113 120.021 60.5076L124.992 69.1191C125.28 69.6155 125.109 70.251 124.613 70.5372L122.939 71.5039C122.891 71.4841 122.843 71.4631 122.795 71.4421C122.71 71.4048 122.625 71.3675 122.538 71.3368C122.484 71.3178 122.429 71.3008 122.375 71.2868C121.555 70.9585 120.695 70.7914 119.815 70.7914C119.502 70.7914 119.19 70.8134 118.881 70.8554C118.584 70.8955 118.297 70.9635 118.022 71.0566L114.435 64.8449L111.836 66.3461L115.629 72.916C115.095 73.7196 114.792 74.6783 114.85 75.6961L114.876 76.1585L111.644 78.0238C111.148 78.3111 110.514 78.1409 110.227 77.6446L108.244 74.21L106.543 75.1917L109.545 80.3916C109.822 80.87 109.658 81.4825 109.18 81.7587L108.312 82.259L109.313 83.9924C109.98 85.1482 106.514 87.1498 105.846 85.9939L104.845 84.2605ZM84.9692 81.8578L88.9773 88.8L86.3453 90.3201L82.3363 83.3769L84.9692 81.8578ZM93.3105 86.2981L89.3025 79.3559L86.7025 80.857L90.7106 87.7992L93.3105 86.2981ZM93.6358 76.854L97.6438 83.7962L95.0438 85.2973L91.0358 78.3551L93.6358 76.854ZM107.47 68.8659L111.478 75.8092L114.111 74.289L110.102 67.3468L107.47 68.8659ZM120.178 70.7864L116.169 63.8442L118.77 62.343L122.778 69.2853L120.178 70.7864Z\" fill=\"#293A20\"/>\\n<path d=\"M121.861 73.2441L121.869 73.2231C127.835 75.3377 129.798 84.7378 126.254 94.2209C122.709 103.703 114.999 109.678 109.032 107.563L109.04 107.543C108.898 107.506 108.757 107.466 108.617 107.416C107.854 107.146 107.205 106.706 106.695 106.157C105.764 105.152 105.786 103.607 106.743 102.613L110.141 99.1867C110.716 98.5902 111.54 98.291 112.368 98.3791L116.867 98.7704C118.416 97.7826 119.987 95.8792 121.268 92.4546C122.548 89.029 122.601 86.5872 122.066 84.8619L118.293 82.403C117.6 81.9527 117.166 81.2071 117.12 80.3905L116.847 75.5829C116.77 74.2198 117.771 73.0259 119.15 72.8388C120.058 72.7147 120.986 72.8428 121.861 73.2441Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip1_313_96)\">\\n<path d=\"M230 89H252.646L252.651 88.988L251.706 87H230V89Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M253.742 81.63L251.63 83.742C251.285 84.087 251.107 84.536 251.07 85H230V74C230 72.8959 230.895 71.9999 232 71.9999L232.91 61.0809C232.961 60.4669 233.391 59.9999 233.904 59.9999H235.095C235.609 59.9999 236.039 60.4669 236.09 61.0809L237 71.9999H239L239.91 61.0809C239.961 60.4669 240.391 59.9999 240.904 59.9999H242.095C242.609 59.9999 243.039 60.4669 243.09 61.0809L244 71.9999L252.016 66.4939C252.678 66.0389 253.582 66.5139 253.582 67.3179V71.8869L261.433 66.4939C261.739 66.2829 262.137 66.2599 262.466 66.4329C262.794 66.6059 263 66.9469 263 67.3179V71.9999C264.104 71.9999 265 72.8959 265 74V78H262.507C261.66 78 260.906 78.533 260.622 79.33L259.519 82.431L258.987 82.651L256.015 81.238C255.247 80.874 254.338 81.034 253.742 81.63ZM237 77H234V75H237V77ZM234 81H237V79H234V81ZM242 81H239V79H242V81ZM239 77H242V75H239V77ZM247 77H244V75H247V77ZM244 81H247V79H244V81ZM249 79H252V81H249V79ZM252 75H249V77H252V75Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M274.06 96.8939L277.999 95.4929V92.5069L274.06 91.1059L273.16 88.9319L274.955 85.1568L272.843 83.0448L269.067 84.8398L266.893 83.9388L265.493 79.9998H262.506L261.105 83.9388L258.931 84.8398L255.156 83.0448L253.044 85.1568L254.839 88.9319L253.938 91.1059L249.999 92.5069V95.4929L253.938 96.8939L254.839 99.0679L253.044 102.844L255.156 104.956L258.931 103.161L261.105 104.061L262.506 108H265.493L266.893 104.061L269.067 103.161L272.843 104.956L274.955 102.844L273.16 99.0679L274.06 96.8939ZM259.099 93.9999C259.099 96.7059 261.293 98.8999 263.999 98.8999C266.705 98.8999 268.899 96.7059 268.899 93.9999C268.899 91.2939 266.705 89.0999 263.999 89.0999C261.293 89.0999 259.099 91.2939 259.099 93.9999Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip2_313_96)\">\\n<path d=\"M409.165 84.1094C408.371 84.3744 407.795 85.1154 407.795 85.9985C407.795 91.3787 407.704 91.6668 408.103 92.9988H390.377C390.377 92.9988 393.503 81.5403 393.503 75.29C393.503 72.3718 393.176 70.4337 392.888 69.2947C392.722 68.6366 393.22 67.9976 393.899 67.9976H407.69C408.369 67.9976 408.867 68.6366 408.701 69.2947C407.511 74.0109 408.243 79.3151 409.165 84.1094Z\" fill=\"#293A20\"/>\\n<path d=\"M410.639 69.7867C411.128 67.8636 409.673 65.9975 407.69 65.9975H394.887C394.525 64.9855 395.298 63.9974 396.295 63.9974H398.508C399.724 59.7012 405.295 58.5721 408.09 62.0673C408.803 61.4082 409.748 60.9973 410.795 60.9973C413.825 60.9973 415.823 64.2784 414.241 66.9976H418.296C419.121 66.9976 419.796 67.6726 419.796 68.4977C419.796 69.3227 419.121 69.9977 418.296 69.9977H410.59C410.606 69.9277 410.623 69.8507 410.639 69.7867Z\" fill=\"#293A20\"/>\\n<path d=\"M389.319 88.9986C390.222 85.1964 391.503 79.1322 391.503 75.29C391.503 72.5538 391.202 70.7857 390.949 69.7837C390.883 69.5227 390.86 69.2597 390.864 68.9977H382.86C382.317 68.9977 381.919 69.5087 382.052 70.0357C382.282 70.9467 382.544 72.4968 382.544 74.832C382.544 79.8322 380.044 88.9986 380.044 88.9986H389.319Z\" fill=\"#293A20\"/>\\n<path d=\"M423.296 74.9976C424.124 74.9976 424.796 75.6697 424.796 76.4977V83.9981H421.796V76.4977C421.796 75.6697 422.468 74.9976 423.296 74.9976Z\" fill=\"#1DC136\"/>\\n<path d=\"M414.295 74.9976C415.123 74.9976 415.795 75.6697 415.795 76.4977V83.9981H412.795V76.4977C412.795 75.6697 413.467 74.9976 414.295 74.9976Z\" fill=\"#1DC136\"/>\\n<path d=\"M427.796 90.9984V85.9981H409.795V90.9984C409.795 93.7605 412.034 95.9987 414.795 95.9987V98.9988C414.795 99.5518 415.243 99.9989 415.795 99.9989H416.795C416.795 104.29 414.155 103.999 409.795 103.999V107.999H411.795C414.021 107.999 420.795 107.999 420.795 99.9989H421.796C422.349 99.9989 422.796 99.5518 422.796 98.9988V95.9987C425.558 95.9987 427.796 93.7605 427.796 90.9984Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip3_313_96)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M551.956 84.0128C551.956 80.1981 559.203 78.0148 564.951 78.0148C570.699 78.0148 577.947 80.2001 577.947 84.0128V103.007C577.947 103.559 577.5 104.006 576.947 104.006H575.948V107.005C575.948 107.558 575.501 108.005 574.948 108.005H572.949C572.397 108.005 571.949 107.558 571.949 107.005V104.006H557.954V107.005C557.954 107.558 557.507 108.005 556.954 108.005H554.955C554.403 108.005 553.955 107.558 553.955 107.005V104.006H552.955C552.403 104.006 551.956 103.559 551.956 103.007V84.0128ZM575.948 96.0089H553.955V88.0115C553.955 86.9079 554.851 86.0122 555.954 86.0122H573.948C575.053 86.0122 575.948 86.9079 575.948 88.0115V96.0089ZM556.954 102.007C557.507 102.007 557.954 101.56 557.954 101.007V99.008C557.954 98.4561 557.507 98.0083 556.954 98.0083H554.955C554.403 98.0083 553.955 98.4561 553.955 99.008V101.007C553.955 101.56 554.403 102.007 554.955 102.007H556.954ZM575.948 101.007C575.948 101.56 575.501 102.007 574.948 102.007H572.949C572.397 102.007 571.949 101.56 571.949 101.007V99.008C571.949 98.4561 572.397 98.0083 572.949 98.0083H574.948C575.501 98.0083 575.948 98.4561 575.948 99.008V101.007ZM571.949 82.0135H557.954V84.0128H571.949V82.0135Z\" fill=\"#1DC136\"/>\\n<path d=\"M574.923 61.0204C573.175 59.7129 568.78 59.6209 564.926 61.0204C561.013 62.441 543.531 68.448 540.901 69.3517L532.421 64.2414L530.018 64.9132L533.785 71.8139L535.062 72.2098L534.327 73.4254C534.132 73.7493 534.125 74.1532 534.311 74.4821C534.497 74.812 534.846 75.0159 535.224 75.0159H535.644L532.399 80.938L535.094 80.2062C535.435 80.1132 535.749 79.9363 536.005 79.6934L540.929 75.0159H541.424C543.576 75.0159 545.716 74.693 547.774 74.0572L551.124 73.0225L544.933 87.012L548.81 86.0353C549.222 85.9313 549.605 85.7524 549.957 85.5265V84.013C549.957 81.0039 552.416 78.9766 555.587 77.713L561.113 69.4547L569.177 66.2737C574.919 64.0085 576.08 61.8842 574.923 61.0204ZM545.018 65.7929C539.279 61.4963 538.494 60.9085 538.494 60.9085C540.076 60.4826 541.77 59.419 544.302 60.4456L551.767 63.4736C549.5 64.2534 547.178 65.0511 545.018 65.7929Z\" fill=\"#293A20\"/>\\n</g>\\n<g clip-path=\"url(#clip4_313_96)\">\\n<path d=\"M101.208 186.805H96.6306L97.0197 202L100.02 204H89.0196L92.0196 202L92.3276 190H81.1176C81.7076 186.801 87.6686 184.932 92.4136 186.639L92.5106 182.894L85.8806 181H80.0195C80.6915 177.36 88.0916 175.652 92.6296 178.239L92.7026 175.378L87.8806 174H82.0196C82.0196 172.343 84.2586 171 87.0196 171C89.2056 171 91.0436 171.846 91.7226 173.018L92.7556 173.313L92.8406 170H83.8435C84.3175 167.426 89.3627 166.059 92.8987 167.734L92.9697 165H87.8436C88.1546 163.313 90.5366 162 93.4316 162C95.5466 162 97.3786 162.705 98.3386 163.74C100.269 164.055 101.832 164.899 102.574 166H96.0976L96.2217 170.838C100.914 168.827 107.398 170.628 108.02 174H96.3027L96.4247 178.753L98.8507 178.348C99.7467 177.537 101.277 177 103.02 177C105.782 177 108.02 178.343 108.02 180H101.102L96.4756 180.771L96.5356 183.097C99.7736 181.622 104.361 181.607 107.654 183.219C107.45 183.736 107.257 184.259 107.087 184.788L107.086 184.789C107.083 184.799 107.081 184.808 107.077 184.818C106.014 184.52 105.093 184.302 104.43 184.158C102.77 183.791 101.173 185.049 101.208 186.805Z\" fill=\"#293A20\"/>\\n<path d=\"M105.268 193.616C104.18 190.993 103.512 188.299 103.208 186.897C103.106 186.426 103.528 186.009 103.995 186.111C105.539 186.446 108.645 187.223 111.502 188.516C109.292 190.047 107.538 192.314 106.787 194.152C106.277 193.96 105.769 193.78 105.268 193.616Z\" fill=\"#1DC136\"/>\\n<path d=\"M122.669 207.042C121.749 207.961 119.711 210 117.318 210C116.213 210 115.032 209.565 113.852 208.385C110.114 204.647 113.852 200.909 115.195 199.566C118.261 196.499 124.662 194.87 127.112 194.339C127.58 194.238 127.999 194.656 127.897 195.125C127.366 197.576 125.737 203.975 122.67 207.041L122.669 207.042Z\" fill=\"#1DC136\"/>\\n<path d=\"M111.198 191.337C113.888 188.646 119.389 186.918 123.115 186.111C123.584 186.009 124.001 186.428 123.9 186.897C123.592 188.319 122.909 191.07 121.794 193.729C118.933 194.696 115.833 196.097 113.701 198.235C112.276 196.804 110.491 195.757 108.621 194.91C109.244 193.314 110.518 192.016 111.198 191.337Z\" fill=\"#1DC136\"/>\\n<path d=\"M108.992 185.4C110.06 182.074 112.014 178.795 112.975 177.304C113.235 176.9 113.827 176.901 114.085 177.303C115.047 178.797 117.005 182.082 118.074 185.414C116.592 185.905 115.022 186.53 113.555 187.294C112.073 186.522 110.486 185.893 108.992 185.4Z\" fill=\"#1DC136\"/>\\n<path d=\"M99.5035 195.125C100.035 197.576 101.664 203.975 104.73 207.041C105.649 207.96 107.687 209.995 110.08 209.997L112.656 209.998C109.678 207.195 109.31 203.488 112.353 199.715C109.534 196.867 104.201 195.187 100.289 194.339C99.8194 194.237 99.4025 194.658 99.5035 195.125Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip5_313_96)\">\\n<path d=\"M231.979 179.427C230.067 177.546 230 175.013 230 175.013C230 175.013 232.532 174.687 234.415 176.599C235.983 178.193 235.98 181.001 235.98 181.001C235.98 181.001 233.573 180.997 231.979 179.427Z\" fill=\"#293A20\"/>\\n<path d=\"M241.541 176.599C243.423 174.687 245.956 175.013 245.956 175.013C245.956 175.013 245.893 177.546 243.981 179.427C242.387 180.997 239.981 181.001 239.981 181.001C239.981 181.001 239.973 178.193 241.541 176.599Z\" fill=\"#293A20\"/>\\n<path d=\"M241.541 169.598C243.423 167.685 245.962 168.012 245.962 168.012C245.962 168.012 245.893 170.545 243.981 172.426C242.387 173.996 239.981 174 239.981 174C239.981 174 239.973 171.192 241.541 169.598Z\" fill=\"#293A20\"/>\\n<path d=\"M236.988 172.993C236.988 171.657 238.98 171.657 238.98 172.993V209.997H236.988V172.993Z\" fill=\"#293A20\"/>\\n<path d=\"M231.979 172.426C230.067 170.545 230 168.012 230 168.012C230 168.012 232.532 167.685 234.415 169.598C235.983 171.192 235.98 174 235.98 174C235.98 174 233.573 173.996 231.979 172.426Z\" fill=\"#293A20\"/>\\n<path d=\"M237.98 169.983C238.98 169.975 239.973 167.918 239.973 165.99C239.973 164.063 238.98 161.99 237.98 161.998C236.98 162.006 235.988 164.063 235.988 165.99C235.988 167.918 236.98 169.991 237.98 169.983Z\" fill=\"#293A20\"/>\\n<path d=\"M243.981 186.421C245.893 184.539 245.961 181.993 245.961 181.993C245.961 181.993 242.981 181.993 241.546 183.592C240.052 185.256 239.981 187.994 239.981 187.994C239.981 187.994 242.387 187.99 243.981 186.421Z\" fill=\"#293A20\"/>\\n<path d=\"M231.979 186.421C230.067 184.539 230 181.993 230 181.993C230 181.993 232.979 181.993 234.415 183.592C235.908 185.256 235.98 187.994 235.98 187.994C235.98 187.994 233.573 187.99 231.979 186.421Z\" fill=\"#293A20\"/>\\n<path d=\"M249.961 184.428C248.049 182.547 247.982 180.014 247.982 180.014C247.982 180.014 250.514 179.687 252.397 181.6C253.965 183.194 253.962 186.002 253.962 186.002C253.962 186.002 251.555 185.998 249.961 184.428Z\" fill=\"#293A20\"/>\\n<path d=\"M259.564 181.6C261.446 179.687 263.979 180.014 263.979 180.014C263.979 180.014 263.917 182.547 262.004 184.428C260.41 185.998 258.004 186.002 258.004 186.002C258.004 186.002 257.996 183.194 259.564 181.6Z\" fill=\"#293A20\"/>\\n<path d=\"M259.564 174.599C261.446 172.686 263.985 173.012 263.985 173.012C263.985 173.012 263.917 175.546 262.004 177.427C260.41 178.996 258.004 179 258.004 179C258.004 179 257.996 176.193 259.564 174.599Z\" fill=\"#293A20\"/>\\n<path d=\"M254.983 177.994C254.983 176.658 256.975 176.658 256.975 177.994V194.995H254.983V177.994Z\" fill=\"#293A20\"/>\\n<path d=\"M249.961 177.427C248.049 175.546 247.982 173.012 247.982 173.012C247.982 173.012 250.514 172.686 252.397 174.599C253.965 176.193 253.962 179 253.962 179C253.962 179 251.555 178.996 249.961 177.427Z\" fill=\"#293A20\"/>\\n<path d=\"M255.975 174.984C256.974 174.976 257.968 172.918 257.968 170.991C257.968 169.064 256.975 166.99 255.975 166.998C254.975 167.006 253.983 169.064 253.983 170.991C253.983 172.918 254.975 174.992 255.975 174.984Z\" fill=\"#293A20\"/>\\n<path d=\"M262.004 191.421C263.917 189.54 263.984 186.994 263.984 186.994C263.984 186.994 261.004 186.994 259.569 188.593C258.076 190.257 258.004 192.995 258.004 192.995C258.004 192.995 260.41 192.991 262.004 191.421Z\" fill=\"#293A20\"/>\\n<path d=\"M249.961 191.421C248.049 189.54 247.982 186.994 247.982 186.994C247.982 186.994 250.961 186.994 252.397 188.593C253.89 190.257 253.962 192.995 253.962 192.995C253.962 192.995 251.555 192.991 249.961 191.421Z\" fill=\"#293A20\"/>\\n<path d=\"M269.626 197.019C274.299 197.235 277.987 199.817 277.987 204.532V206.997C277.987 208.647 276.636 209.997 274.986 209.997H243.981C242.331 209.997 240.98 208.647 240.98 206.997V204.996C240.98 200.046 245.031 196.998 249.982 196.998C250.86 196.998 251.292 196.997 252.088 196.997L247.336 201.75C247.14 201.946 247.14 202.262 247.336 202.458L248.043 203.165C248.238 203.36 248.555 203.36 248.75 203.165L254.867 197.048L254.816 196.997C256.593 196.997 258.12 196.996 259.456 196.996L254.701 201.75C254.506 201.946 254.506 202.262 254.701 202.458L255.408 203.165C255.603 203.36 255.92 203.36 256.115 203.165L262.232 197.048L262.18 196.995C264.366 196.995 265.799 196.996 266.817 197L262.066 201.75C261.871 201.946 261.871 202.262 262.066 202.458L262.773 203.165C262.968 203.36 263.285 203.36 263.48 203.165L269.597 197.048L269.626 197.019Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip6_313_96)\">\\n<path d=\"M390.001 192C391.105 192 392.001 191.105 392.001 190C392.001 188.896 391.105 188 390.001 188C388.896 188 388.001 188.896 388.001 190C388.001 191.105 388.896 192 390.001 192Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M388.533 187C387.455 187 386.455 186.417 385.923 185.479C385.39 184.54 385.405 183.381 385.961 182.456L386.948 180.811L384.11 165.673L380.553 163.895C380.059 163.648 379.859 163.047 380.106 162.553C380.354 162.059 380.954 161.858 381.448 162.106L385.448 164.106C385.452 164.108 385.456 164.111 385.46 164.114C385.461 164.115 385.463 164.116 385.464 164.117L385.466 164.119L385.471 164.123L385.475 164.127C385.482 164.133 385.489 164.14 385.498 164.145C385.561 164.182 385.615 164.228 385.67 164.278L385.684 164.292C385.722 164.327 385.76 164.362 385.791 164.402C385.824 164.447 385.848 164.496 385.874 164.548L385.883 164.565C385.913 164.627 385.942 164.688 385.959 164.756C385.963 164.771 385.971 164.783 385.976 164.796C385.979 164.803 385.981 164.809 385.983 164.816L386.412 167.102L413.183 169.085L411.702 177.236C410.922 177.408 410.17 177.716 409.486 178.239L409.53 178H406.001V180H408.016C407.712 180.588 407.494 181.252 407.343 182H388.567L387.676 183.486C387.49 183.794 387.485 184.18 387.663 184.492C387.841 184.805 388.174 185 388.533 185H403.279C403.123 185.268 403.02 185.57 403.004 185.9L402.949 187H388.533ZM392.001 172H387.331L386.794 169.135L392.001 169.521V172ZM398.001 180H394.001V178H398.001V180ZM398.001 176H394.001V174H398.001V176ZM398.001 172H394.001V169.67L398.001 169.966V172ZM404.001 180H400.001V178H404.001V180ZM404.001 176H400.001V174H404.001V176ZM404.001 172H400.001V170.114L404.001 170.41V172ZM387.706 174H392.001V176H388.081L387.706 174ZM388.456 178H392.001V180H388.831L388.456 178ZM409.893 176H406.001V174H410.257L409.893 176ZM410.621 172H406.001V170.558L410.818 170.915L410.621 172Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M415.001 178.998C412.862 178.995 411.419 179.058 410.39 180.085C409.328 181.144 409.054 182.955 409.01 186H405.001L404.001 206L402.001 210H428.001L426.001 206L425.001 186H420.993C420.949 182.955 420.674 181.144 419.613 180.085C418.583 179.058 417.141 178.995 415.001 178.998ZM414.576 181C413.175 181.008 412.231 181.074 411.803 181.501C411.196 182.106 411.04 183.942 411.009 186H418.994C418.962 183.942 418.807 182.106 418.2 181.501C417.772 181.074 416.833 181.008 415.43 181C415.212 181 414.795 181 414.576 181Z\" fill=\"#1DC136\"/>\\n</g>\\n<g clip-path=\"url(#clip7_313_96)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M553 177V169H559V173H561V168C561 166.896 560.104 166 559 166H552.418C552.418 166 551.905 165.295 551.31 164.477C550.488 163.346 549.509 162 549.509 162H544.49L541.581 166H534.999C533.895 166 533 166.896 533 168V173H535V169H541V177H531.999C530.895 177 530 177.896 530 179V184H532V180H541L540.985 191C540.863 195.452 539.164 200.927 538.416 203.14C536.918 203.335 535.627 203.65 534.298 203.974C532.983 204.295 531.63 204.624 530 204.857V206.875C531.845 206.63 533.329 206.269 534.741 205.924C536.827 205.416 538.757 204.946 541.463 204.946C543.685 204.946 545.472 205.084 547 205.309L547 205.225C546.999 205.091 546.999 204.933 547.007 204.831C546.186 204.543 545.535 203.902 545.216 203.096C543.64 202.963 541.891 202.919 540.596 202.964L547 196.561L547.021 196.582C547.04 195.773 547.117 194.979 547.24 194.199L547 194.44L543.56 191H548.05L550.864 186.804L548.06 184L551 181.061V186.603L553 183.622V180H559.136C560.675 179.468 562.305 179.145 564 179.051V179C564 177.896 563.104 177 562 177H553ZM544.06 180L547 182.94L549.939 180H544.06ZM543 186.94V181.061L545.939 184L543 186.94ZM544.06 188H549.939L547 185.061L544.06 188ZM545.939 195.5L541.483 199.956C542.088 197.733 542.682 195.035 542.904 192.465L545.939 195.5ZM547 174.061L544.06 177H549.939L547 174.061ZM549.939 169L547 171.94L544.06 169H549.939ZM545.939 173L543 170.061V175.94L545.939 173ZM551 175.94L548.06 173L551 170.061V175.94ZM548.49 164H545.509L544.054 166H549.945L548.49 164Z\" fill=\"#293A20\"/>\\n<path d=\"M564.999 181V191C561.691 191 558.999 193.692 558.999 197H548.999C548.999 188.178 556.177 181 564.999 181Z\" fill=\"#1DC136\"/>\\n<path d=\"M548.999 205H558.999V210H548.999V205Z\" fill=\"#1DC136\"/>\\n<path d=\"M572.999 181H577.999V191H572.999V181Z\" fill=\"#1DC136\"/>\\n<path d=\"M560.999 202C560.999 202.553 560.552 203 559.999 203H547.999C547.447 203 546.999 202.553 546.999 202V200C546.999 199.448 547.447 199 547.999 199H559.999C560.552 199 560.999 199.448 560.999 200V202Z\" fill=\"#1DC136\"/>\\n<path d=\"M569.999 193C570.552 193 570.999 192.553 570.999 192V180C570.999 179.448 570.552 179 569.999 179H567.999C567.447 179 566.999 179.448 566.999 180V192C566.999 192.553 567.447 193 567.999 193H569.999Z\" fill=\"#1DC136\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(80 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(230 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(380 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(530 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip4_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(80 162)\"/>\\n</clipPath>\\n<clipPath id=\"clip5_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(230 162)\"/>\\n</clipPath>\\n<clipPath id=\"clip6_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(380 162)\"/>\\n</clipPath>\\n<clipPath id=\"clip7_313_96\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(530 162)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-ubzrre\",\"data-framer-name\":\"4\",fill:\"#DAE4D5\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"wlK6WO_55\",svg:'<svg width=\"658\" height=\"270\" viewBox=\"0 0 658 270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M88.853 73.116L89.708 73.611C89.9914 73.7741 90.2136 74.0254 90.341 74.3265L91.0265 75.951C91.5349 77.1548 92.4223 78.1597 93.554 78.813L102.158 83.781L102.182 83.7945L103.522 84.567C103.77 84.7106 104.066 84.7495 104.344 84.6751C104.621 84.6007 104.858 84.4191 105.001 84.1702C105.145 83.9214 105.184 83.6257 105.109 83.3482C105.035 83.0707 104.853 82.8341 104.605 82.6905L96.2135 77.8455L97.7135 75.2475L105.28 79.617L105.488 78.888C105.545 78.6886 105.56 78.4795 105.532 78.274C105.504 78.0685 105.434 77.871 105.326 77.694L103.216 74.2335C102.482 73.0312 101.349 72.1254 100.015 71.6745L92.285 69.0615C92.1735 69.0241 92.0668 68.9738 91.967 68.9115L91.5965 68.679L92.3915 67.3935L93.1745 66.126L93.4145 66.276L100.975 68.8335C102.976 69.5098 104.676 70.8686 105.776 72.672L107.887 76.131C108.211 76.662 108.421 77.2545 108.505 77.871C108.589 78.4876 108.544 79.1148 108.373 79.713L108.001 81.012L111.988 82.1505C112.747 82.3674 113.39 82.8748 113.777 83.5628C114.165 84.2508 114.266 85.0638 114.058 85.8255L111.283 96H108.173L111.164 85.035L108.112 84.1635C107.984 85.1383 107.508 86.0342 106.772 86.6863C106.036 87.3383 105.09 87.7028 104.107 87.7125L102.094 88.5L100.138 96H97.037L98.6855 89.682C97.8865 89.7712 97.079 89.6231 96.3637 89.2562C95.6484 88.8892 95.057 88.3197 94.6634 87.6187C94.2697 86.9178 94.0913 86.1163 94.1504 85.3146C94.2095 84.5128 94.5034 83.7462 94.9955 83.1105L92.0555 81.411C90.3577 80.4311 89.0263 78.9238 88.2635 77.118L87.773 75.957L87.02 75.522C87.3875 75.2865 87.71 74.967 87.9545 74.571L88.8545 73.116H88.853ZM91.97 65.37L91.913 65.3355L91.97 65.37ZM98.63 86.631C98.3734 86.731 98.0884 86.7303 97.8323 86.6289C97.5762 86.5274 97.368 86.3329 97.2495 86.0842C97.131 85.8356 97.1109 85.5513 97.1934 85.2885C97.2758 85.0257 97.4547 84.8038 97.694 84.6675L99.692 85.8225L99.578 86.262L98.63 86.631V86.631Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M87.9545 74.571C87.7449 74.9097 87.47 75.2032 87.1457 75.4345C86.8215 75.6658 86.4545 75.8303 86.0661 75.9182C85.6776 76.0062 85.2756 76.0159 84.8833 75.9469C84.4911 75.8778 84.1165 75.7314 83.7815 75.516L81.4385 74.013L83.06 71.49L85.403 72.9945L89.048 67.098L84.464 64.2795L86.0345 61.7235L91.8995 65.3295L93.1805 66.117L92.39 67.395L87.9545 74.5725V74.571ZM87.5 96C86.7043 96 85.9413 96.3161 85.3787 96.8787C84.816 97.4413 84.5 98.2044 84.5 99V106.5H87.5V99H120.5V106.5H123.5V99C123.5 98.2044 123.184 97.4413 122.621 96.8787C122.059 96.3161 121.296 96 120.5 96H87.5Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254.135 60C254.455 60.0002 254.766 60.1024 255.023 60.2918C255.281 60.4813 255.471 60.7479 255.566 61.053L256.871 65.232C257.254 65.3745 257.629 65.5305 257.998 65.6985L261.877 63.666C262.16 63.518 262.483 63.4643 262.799 63.5129C263.115 63.5614 263.407 63.7097 263.633 63.936L268.066 68.367C268.292 68.593 268.44 68.8852 268.488 69.2012C268.536 69.5172 268.482 69.8403 268.334 70.1235L266.3 74.0025C266.47 74.3715 266.624 74.7465 266.767 75.1275L270.946 76.434C271.251 76.5293 271.518 76.7197 271.707 76.9774C271.897 77.2351 271.999 77.5467 271.999 77.8665V84.1335C271.999 84.4533 271.897 84.7649 271.707 85.0226C271.518 85.2803 271.251 85.4707 270.946 85.566L267.004 86.7975L264.538 84.6045C264.709 84.4334 264.919 84.3063 265.15 84.234L269 83.031V78.969L265.151 77.766C264.921 77.6941 264.712 77.568 264.541 77.3983C264.371 77.2286 264.243 77.0203 264.17 76.791C263.936 76.0591 263.642 75.3481 263.29 74.6655C263.179 74.4515 263.121 74.2139 263.122 73.9729C263.122 73.7319 263.181 73.4946 263.293 73.281L265.165 69.708L262.292 66.8355L258.719 68.7075C258.506 68.8194 258.268 68.8783 258.027 68.879C257.786 68.8798 257.549 68.8225 257.335 68.712C256.652 68.359 255.941 68.064 255.209 67.83C254.98 67.7567 254.771 67.6293 254.602 67.4586C254.432 67.2878 254.306 67.0788 254.234 66.849L253.031 63H248.969L247.766 66.849C247.694 67.079 247.568 67.2884 247.399 67.4594C247.229 67.6305 247.02 67.7581 246.791 67.8315C246.06 68.0651 245.349 68.3596 244.667 68.712C244.453 68.8225 244.215 68.8798 243.974 68.879C243.733 68.8783 243.496 68.8194 243.283 68.7075L239.708 66.8355L236.836 69.708L238.708 73.2825C238.819 73.4959 238.878 73.7332 238.879 73.9742C238.88 74.2152 238.823 74.4528 238.712 74.667C238.36 75.3491 238.065 76.0596 237.832 76.791C237.758 77.0203 237.631 77.2286 237.46 77.3983C237.289 77.568 237.08 77.6941 236.851 77.766L233 78.969V83.031L236.851 84.234C237.08 84.3059 237.289 84.432 237.46 84.6017C237.631 84.7714 237.758 84.9797 237.832 85.209C238.067 85.9455 238.363 86.655 238.712 87.333C238.823 87.5472 238.88 87.7848 238.879 88.0258C238.878 88.2668 238.819 88.5041 238.708 88.7175L236.836 92.292L239.708 95.1645L243.283 93.2925C243.496 93.1806 243.733 93.1217 243.974 93.121C244.215 93.1202 244.453 93.1775 244.667 93.288C245.344 93.6375 246.055 93.933 246.791 94.1685C247.02 94.2418 247.229 94.3692 247.398 94.5399C247.568 94.7107 247.694 94.9197 247.766 95.1495L248.969 99H253.031L254.234 95.151C254.319 94.8801 254.478 94.6388 254.695 94.455L256.841 96.867L255.566 100.947C255.471 101.252 255.28 101.519 255.023 101.709C254.765 101.898 254.453 102 254.134 102H247.867C247.547 102 247.235 101.898 246.977 101.709C246.72 101.519 246.529 101.252 246.434 100.947L245.129 96.768C244.748 96.6263 244.373 96.4706 244.004 96.3015L240.124 98.334C239.84 98.482 239.517 98.5357 239.201 98.4871C238.885 98.4386 238.593 98.2903 238.367 98.064L233.935 93.633C233.708 93.407 233.56 93.1148 233.512 92.7988C233.464 92.4828 233.518 92.1597 233.666 91.8765L235.7 87.996C235.531 87.6268 235.376 87.2515 235.235 86.871L231.055 85.566C230.749 85.471 230.482 85.2807 230.292 85.0229C230.102 84.7652 230 84.4535 230 84.1335V77.8665C230 77.5467 230.102 77.2351 230.291 76.9774C230.481 76.7197 230.748 76.5293 231.053 76.434L235.234 75.129C235.375 74.7465 235.531 74.3715 235.699 74.004L233.668 70.1235C233.519 69.8405 233.465 69.5174 233.513 69.2015C233.561 68.8855 233.709 68.5931 233.935 68.367L238.367 63.9345C238.593 63.7087 238.886 63.561 239.201 63.513C239.517 63.4649 239.84 63.5191 240.124 63.6675L244.003 65.6985C244.372 65.5305 244.747 65.3745 245.128 65.2335L246.434 61.053C246.529 60.7477 246.72 60.4808 246.977 60.2914C247.235 60.102 247.547 59.9999 247.867 60H254.134H254.135Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M246.425 73.1355C246.377 73.3777 246.389 73.628 246.461 73.8643C246.532 74.1006 246.661 74.3155 246.836 74.49L251.471 79.125L249.212 81.381L244.577 76.7475C244.402 76.5732 244.187 76.4447 243.951 76.3733C243.715 76.302 243.464 76.29 243.223 76.3386C242.981 76.3871 242.754 76.4945 242.564 76.6514C242.373 76.8083 242.224 77.0098 242.13 77.238C241.442 78.9111 241.242 80.7455 241.555 82.5275C241.868 84.3096 242.681 85.9662 243.899 87.3044C245.116 88.6427 246.689 89.6076 248.434 90.0869C250.178 90.5663 252.023 90.5403 253.754 90.012L266.229 104.033C266.736 104.601 267.352 105.06 268.042 105.382C268.732 105.704 269.481 105.881 270.242 105.903C271.003 105.925 271.76 105.792 272.467 105.511C273.175 105.23 273.818 104.807 274.356 104.269C274.894 103.731 275.317 103.088 275.598 102.381C275.879 101.673 276.013 100.916 275.991 100.155C275.969 99.3942 275.792 98.6458 275.47 97.9558C275.149 97.2658 274.689 96.6487 274.121 96.1425L260.099 83.6655C260.627 81.935 260.653 80.09 260.174 78.3453C259.695 76.6006 258.73 75.0279 257.391 73.8102C256.053 72.5925 254.397 71.7798 252.614 71.4668C250.832 71.1538 248.998 71.3532 247.325 72.042C247.096 72.1361 246.895 72.2851 246.738 72.4759C246.581 72.6666 246.473 72.8932 246.425 73.1355V73.1355ZM250.913 74.325C252.006 74.3172 253.083 74.5827 254.047 75.0974C255.011 75.6122 255.831 76.3597 256.433 77.2721C257.034 78.1845 257.398 79.2328 257.491 80.3216C257.584 81.4105 257.403 82.5053 256.965 83.5065C256.838 83.7965 256.806 84.1193 256.874 84.4286C256.942 84.738 257.105 85.018 257.342 85.2285L272.127 98.3835C272.389 98.6186 272.6 98.9045 272.747 99.2237C272.894 99.5429 272.975 99.8888 272.984 100.24C272.993 100.592 272.931 100.941 272.801 101.268C272.67 101.594 272.475 101.891 272.226 102.139C271.978 102.388 271.681 102.583 271.354 102.713C271.028 102.844 270.678 102.906 270.327 102.896C269.975 102.887 269.63 102.806 269.31 102.659C268.991 102.511 268.705 102.3 268.47 102.039L255.315 87.255C255.105 87.0183 254.825 86.8542 254.516 86.7863C254.206 86.7184 253.884 86.7502 253.593 86.877C252.592 87.3146 251.498 87.495 250.409 87.4017C249.32 87.3085 248.272 86.9446 247.36 86.3432C246.448 85.7418 245.701 84.9219 245.186 83.9581C244.671 82.9943 244.406 81.9171 244.413 80.8245L248.151 84.564C248.433 84.8452 248.814 85.0032 249.212 85.0032C249.61 85.0032 249.991 84.8452 250.272 84.564L254.652 80.184C254.934 79.9027 255.092 79.5213 255.092 79.1235C255.092 78.7258 254.934 78.3443 254.652 78.063L250.911 74.325H250.913Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M413.042 73.9995C413.093 73.8527 413.189 73.7254 413.316 73.6354C413.443 73.5453 413.594 73.497 413.75 73.497C413.906 73.497 414.057 73.5453 414.184 73.6354C414.311 73.7254 414.407 73.8527 414.458 73.9995C414.47 74.0356 414.484 74.0711 414.5 74.106V87C414.5 87.3978 414.658 87.7794 414.939 88.0607C415.221 88.342 415.602 88.5 416 88.5C416.398 88.5 416.779 88.342 417.061 88.0607C417.342 87.7794 417.5 87.3978 417.5 87V75C417.898 75 418.279 75.158 418.561 75.4393C418.842 75.7206 419 76.1022 419 76.5V88.5C419 88.8978 419.158 89.2794 419.439 89.5607C419.721 89.842 420.102 90 420.5 90C420.898 90 421.279 89.842 421.561 89.5607C421.842 89.2794 422 88.8978 422 88.5V81.102C422.265 81.2049 422.494 81.3807 422.663 81.609C422.832 81.8374 422.932 82.1089 422.953 82.392L423.5 90.0555V95.31C423.5 96.858 423.185 98.3895 422.576 99.81C422.107 100.905 421.326 101.838 420.332 102.494C419.337 103.15 418.172 103.5 416.981 103.5H413.264C411.906 103.5 410.569 103.164 409.371 102.523C408.174 101.882 407.153 100.955 406.4 99.825L405.386 98.3055C404.483 96.9507 404 95.3589 404 93.7305V87.75C404 87.2845 404.144 86.8304 404.413 86.4503C404.681 86.0701 405.061 85.7827 405.5 85.6275V91.5C405.5 91.8978 405.658 92.2794 405.939 92.5607C406.221 92.842 406.602 93 407 93C407.398 93 407.779 92.842 408.061 92.5607C408.342 92.2794 408.5 91.8978 408.5 91.5V76.5C408.5 76.1022 408.658 75.7206 408.939 75.4393C409.221 75.158 409.602 75 410 75V87C410 87.3978 410.158 87.7794 410.439 88.0607C410.721 88.342 411.102 88.5 411.5 88.5C411.898 88.5 412.279 88.342 412.561 88.0607C412.842 87.7794 413 87.3978 413 87V74.106C413.015 74.0715 413.03 74.0355 413.042 74.001V73.9995ZM422 78.033C423.036 78.1591 423.997 78.6417 424.716 79.3981C425.436 80.1545 425.871 81.1376 425.945 82.179L426.495 89.8935C426.498 89.9289 426.5 89.9645 426.5 90V95.3085C426.5 97.2625 426.103 99.1961 425.333 100.992C424.632 102.627 423.467 104.02 421.982 104.999C420.498 105.978 418.758 106.5 416.979 106.5H413.264C411.412 106.5 409.589 106.043 407.956 105.169C406.323 104.295 404.931 103.031 403.904 101.49L402.89 99.969C401.658 98.1212 401 95.95 401 93.729V87.75C401 86.4874 401.455 85.2671 402.281 84.3125C403.108 83.358 404.25 82.7332 405.5 82.5525V76.5C405.5 75.3065 405.974 74.1619 406.818 73.318C407.662 72.4741 408.807 72 410 72H410.75C411.434 71.0895 412.521 70.5 413.75 70.5C414.979 70.5 416.066 71.0895 416.75 72H417.5C418.693 72 419.838 72.4741 420.682 73.318C421.526 74.1619 422 75.3065 422 76.5V78.033Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M385.25 76.5C385.249 73.8842 386.103 71.3398 387.682 69.254C389.26 67.1683 391.477 65.6555 393.995 64.9459C396.512 64.2363 399.193 64.3688 401.628 65.3232C404.064 66.2777 406.121 68.0017 407.486 70.233C408.197 69.948 408.969 69.78 409.776 69.753C409.973 69.5797 410.18 69.4193 410.397 69.273C409.103 66.9183 407.2 64.9546 404.888 63.5872C402.575 62.2198 399.937 61.4989 397.25 61.5C388.966 61.5 382.25 68.2155 382.25 76.5C382.25 84.7845 388.966 91.5 397.25 91.5C397.757 91.5 398.257 91.4745 398.75 91.425V88.407C397.061 88.6198 395.346 88.4707 393.718 87.9697C392.091 87.4686 390.589 86.627 389.312 85.5007C388.035 84.3745 387.013 82.9895 386.312 81.4376C385.612 79.8857 385.25 78.2026 385.25 76.5V76.5ZM396.5 72.0825C395.459 72.327 395 73.0605 395 73.5C395 73.8855 395.075 74.082 395.13 74.181C395.204 74.3022 395.309 74.4008 395.435 74.466C395.694 74.6205 396.035 74.7285 396.5 74.8305V72.0825ZM396.5 69.048C394.184 69.345 392 70.9905 392 73.5C392 74.289 392.159 75.015 392.515 75.6465C392.872 76.284 393.372 76.7325 393.909 77.0505C394.719 77.529 395.701 77.7465 396.5 77.8905V80.9175C395.459 80.673 395 79.9395 395 79.5H392C392 82.0095 394.184 83.655 396.5 83.952V85.5H398V83.952C400.316 83.655 402.5 82.0095 402.5 79.5C402.5 78.711 402.341 77.985 401.987 77.3535C401.656 76.7693 401.174 76.2845 400.592 75.9495C399.782 75.471 398.799 75.2535 398 75.1095V72.081C399.041 72.3255 399.5 73.059 399.5 73.4985H402.5C402.5 70.989 400.316 69.3435 398 69.0465V67.5H396.5V69.048ZM398 78.168V80.9175C399.041 80.673 399.5 79.9395 399.5 79.5C399.5 79.1145 399.425 78.918 399.37 78.819C399.296 78.6978 399.191 78.5992 399.065 78.534C398.806 78.3795 398.465 78.2715 398 78.1695V78.168Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M531.5 67.5C531.5 67.8978 531.658 68.2794 531.939 68.5607C532.221 68.842 532.602 69 533 69V75C532.602 75 532.221 75.158 531.939 75.4393C531.658 75.7206 531.5 76.1022 531.5 76.5C531.5 76.8978 531.658 77.2794 531.939 77.5607C532.221 77.842 532.602 78 533 78V84C532.602 84 532.221 84.158 531.939 84.4393C531.658 84.7206 531.5 85.1022 531.5 85.5C531.5 85.8978 531.658 86.2794 531.939 86.5607C532.221 86.842 532.602 87 533 87V93C532.602 93 532.221 93.158 531.939 93.4393C531.658 93.7206 531.5 94.1022 531.5 94.5C531.5 94.8978 531.658 95.2794 531.939 95.5607C532.221 95.842 532.602 96 533 96H548.918C548.768 95.0075 548.718 94.0025 548.768 93H536V87H550.351C551.251 85.2165 552.495 83.637 554 82.35V78C554.398 78 554.779 77.842 555.061 77.5607C555.342 77.2794 555.5 76.8978 555.5 76.5C555.5 76.1022 555.342 75.7206 555.061 75.4393C554.779 75.158 554.398 75 554 75V69C554.398 69 554.779 68.842 555.061 68.5607C555.342 68.2794 555.5 67.8978 555.5 67.5C555.5 67.1022 555.342 66.7206 555.061 66.4393C554.779 66.158 554.398 66 554 66H533C532.602 66 532.221 66.158 531.939 66.4393C531.658 66.7206 531.5 67.1022 531.5 67.5V67.5ZM536 69H551V75H536V69ZM536 84V78H551V84H536ZM554 93.75C554 91.1641 555.027 88.6842 556.856 86.8557C558.684 85.0272 561.164 84 563.75 84C566.336 84 568.816 85.0272 570.644 86.8557C572.473 88.6842 573.5 91.1641 573.5 93.75C573.5 96.3359 572.473 98.8158 570.644 100.644C568.816 102.473 566.336 103.5 563.75 103.5C561.164 103.5 558.684 102.473 556.856 100.644C555.027 98.8158 554 96.3359 554 93.75V93.75ZM563.75 81C560.368 81 557.125 82.3433 554.734 84.7344C552.343 87.1255 551 90.3685 551 93.75C551 97.1315 552.343 100.375 554.734 102.766C557.125 105.157 560.368 106.5 563.75 106.5C567.132 106.5 570.375 105.157 572.766 102.766C575.157 100.375 576.5 97.1315 576.5 93.75C576.5 90.3685 575.157 87.1255 572.766 84.7344C570.375 82.3433 567.132 81 563.75 81Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M543.5 61.5C542.704 61.5 541.941 61.8161 541.379 62.3787C540.816 62.9413 540.5 63.7044 540.5 64.5V66H543.5V64.5H548V66H551V64.5C551 63.7044 550.684 62.9413 550.121 62.3787C549.559 61.8161 548.796 61.5 548 61.5H543.5ZM567.939 87.4395L557.439 97.9395L559.561 100.061L570.061 89.5605L567.939 87.4395ZM569.75 97.5C569.75 97.7955 569.692 98.0881 569.579 98.361C569.466 98.634 569.3 98.8821 569.091 99.091C568.882 99.2999 568.634 99.4657 568.361 99.5787C568.088 99.6918 567.795 99.75 567.5 99.75C567.205 99.75 566.912 99.6918 566.639 99.5787C566.366 99.4657 566.118 99.2999 565.909 99.091C565.7 98.8821 565.534 98.634 565.421 98.361C565.308 98.0881 565.25 97.7955 565.25 97.5C565.25 96.9033 565.487 96.331 565.909 95.909C566.331 95.4871 566.903 95.25 567.5 95.25C568.097 95.25 568.669 95.4871 569.091 95.909C569.513 96.331 569.75 96.9033 569.75 97.5V97.5ZM560 92.25C560.597 92.25 561.169 92.0129 561.591 91.591C562.013 91.169 562.25 90.5967 562.25 90C562.25 89.4033 562.013 88.831 561.591 88.409C561.169 87.9871 560.597 87.75 560 87.75C559.403 87.75 558.831 87.9871 558.409 88.409C557.987 88.831 557.75 89.4033 557.75 90C557.75 90.5967 557.987 91.169 558.409 91.591C558.831 92.0129 559.403 92.25 560 92.25Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.32 170.616C105.191 170.378 105.001 170.179 104.769 170.04C104.536 169.902 104.271 169.828 104 169.828C103.729 169.828 103.464 169.902 103.231 170.04C102.999 170.179 102.809 170.378 102.68 170.616L86.702 200.289C86.579 200.517 86.5174 200.774 86.5232 201.033C86.5289 201.293 86.6019 201.546 86.7349 201.769C86.8679 201.992 87.0564 202.176 87.282 202.304C87.5076 202.432 87.7625 202.5 88.022 202.5H119.978C120.237 202.5 120.492 202.432 120.718 202.304C120.944 202.176 121.132 201.992 121.265 201.769C121.398 201.546 121.471 201.293 121.477 201.033C121.483 200.774 121.421 200.517 121.298 200.289L105.322 170.616H105.32ZM100.04 169.194C101.738 166.04 106.265 166.04 107.963 169.194L123.941 198.867C125.555 201.864 123.383 205.5 119.978 205.5H88.0235C84.6185 205.5 82.4465 201.864 84.0605 198.867L100.04 169.194V169.194Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M105.5 180C105.5 179.602 105.342 179.221 105.061 178.939C104.779 178.658 104.398 178.5 104 178.5C103.602 178.5 103.221 178.658 102.939 178.939C102.658 179.221 102.5 179.602 102.5 180V190.5C102.5 190.898 102.658 191.279 102.939 191.561C103.221 191.842 103.602 192 104 192C104.398 192 104.779 191.842 105.061 191.561C105.342 191.279 105.5 190.898 105.5 190.5V180ZM104 199.125C104.696 199.125 105.364 198.848 105.856 198.356C106.348 197.864 106.625 197.196 106.625 196.5C106.625 195.804 106.348 195.136 105.856 194.644C105.364 194.152 104.696 193.875 104 193.875C103.304 193.875 102.636 194.152 102.144 194.644C101.652 195.136 101.375 195.804 101.375 196.5C101.375 197.196 101.652 197.864 102.144 198.356C102.636 198.848 103.304 199.125 104 199.125V199.125Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M234.5 198C233.704 198 232.941 197.684 232.379 197.121C231.816 196.559 231.5 195.796 231.5 195V166.5C231.5 165.704 231.816 164.941 232.379 164.379C232.941 163.816 233.704 163.5 234.5 163.5H257C257.796 163.5 258.559 163.816 259.121 164.379C259.684 164.941 260 165.704 260 166.5V181.789L257 182.727V166.5H234.5V195H246.135L243.135 198H234.5ZM237.5 189H243.5V186H237.5V189ZM254 178.5H237.5V181.5H254V178.5ZM254 171H237.5V174H254V171Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M274.931 181.947C275.012 181.686 275.021 181.408 274.955 181.142C274.89 180.877 274.753 180.634 274.56 180.441C274.366 180.247 274.124 180.11 273.858 180.045C273.593 179.979 273.314 179.988 273.053 180.069L247.553 188.037C247.274 188.124 247.027 188.291 246.841 188.516C246.656 188.742 246.54 189.017 246.509 189.307C246.477 189.597 246.531 189.891 246.664 190.151C246.797 190.411 247.003 190.627 247.256 190.772L258.056 196.943L264.229 207.744C264.374 207.998 264.589 208.204 264.849 208.336C265.11 208.469 265.403 208.523 265.693 208.491C265.984 208.46 266.258 208.344 266.484 208.159C266.71 207.973 266.876 207.726 266.963 207.447L274.933 181.947H274.931ZM265.126 203.268L261.028 196.095L270.25 186.872L265.126 203.267V203.268ZM251.732 189.873L268.129 184.751L258.905 193.973L251.732 189.875V189.873ZM254.44 198.438L248.44 204.438L250.561 206.561L256.561 200.561L254.44 198.44V198.438ZM246.94 198.438L249.94 195.438L252.061 197.561L249.061 200.561L246.94 198.44V198.438ZM257.44 202.938L254.44 205.938L256.561 208.061L259.561 205.061L257.44 202.94V202.938Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M404 166.5H401.727L400.64 169.982C400.497 170.429 400.253 170.839 399.928 171.178C399.602 171.517 399.204 171.778 398.762 171.939C398.424 172.065 398.091 172.203 397.763 172.353C397.337 172.551 396.871 172.649 396.401 172.64C395.931 172.63 395.469 172.513 395.051 172.297L391.819 170.604L388.604 173.82L390.299 177.052C390.758 177.93 390.734 178.934 390.353 179.765C390.203 180.092 390.065 180.424 389.939 180.763C389.778 181.205 389.517 181.604 389.178 181.929C388.839 182.255 388.429 182.498 387.982 182.641L384.5 183.727V188.272L387.982 189.36C388.927 189.655 389.621 190.382 389.939 191.238C390.065 191.577 390.204 191.91 390.353 192.237C390.552 192.663 390.65 193.129 390.64 193.599C390.631 194.07 390.514 194.531 390.297 194.949L388.604 198.182L391.819 201.396L395.051 199.701C395.469 199.486 395.931 199.369 396.401 199.36C396.871 199.35 397.337 199.449 397.763 199.647C398.09 199.797 398.423 199.935 398.762 200.061C399.617 200.379 400.345 201.072 400.64 202.019L401.727 205.5H406.272L407.36 202.019C407.503 201.571 407.747 201.161 408.072 200.822C408.398 200.483 408.796 200.222 409.238 200.061C409.577 199.935 409.91 199.795 410.237 199.647C410.663 199.449 411.129 199.351 411.599 199.36C412.069 199.37 412.531 199.487 412.949 199.703L416.182 201.395L419.396 198.182L417.701 194.949C417.486 194.531 417.369 194.069 417.359 193.599C417.35 193.129 417.448 192.663 417.647 192.237C417.797 191.91 417.935 191.577 418.061 191.238C418.222 190.796 418.483 190.398 418.822 190.072C419.161 189.747 419.571 189.503 420.019 189.36L423.5 188.272V183.727L420.019 182.64C419.571 182.497 419.161 182.253 418.822 181.928C418.483 181.602 418.222 181.204 418.061 180.762C417.935 180.424 417.797 180.091 417.647 179.763C417.449 179.337 417.351 178.871 417.36 178.401C417.37 177.931 417.487 177.469 417.703 177.051L419.395 173.819L416.182 170.604L412.949 172.299C412.531 172.514 412.069 172.631 411.599 172.64C411.129 172.65 410.663 172.551 410.237 172.353C409.91 172.203 409.577 172.065 409.238 171.939C408.796 171.778 408.398 171.517 408.072 171.178C407.747 170.839 407.503 170.429 407.36 169.982L406.272 166.5H404ZM404 163.5H406.272C406.912 163.5 407.534 163.704 408.049 164.083C408.564 164.461 408.945 164.994 409.136 165.605L410.224 169.086L410.231 169.095C410.246 169.11 410.265 169.121 410.285 169.128C410.693 169.28 411.092 169.446 411.485 169.626C411.512 169.638 411.534 169.641 411.548 169.641H411.558L414.79 167.946C415.356 167.65 416.002 167.542 416.634 167.638C417.266 167.735 417.851 168.031 418.302 168.483L421.517 171.698C421.969 172.15 422.265 172.734 422.361 173.366C422.457 173.998 422.349 174.644 422.052 175.211L420.36 178.442V178.452C420.361 178.474 420.366 178.495 420.375 178.515C420.554 178.907 420.72 179.307 420.87 179.715C420.882 179.742 420.896 179.76 420.905 179.769C420.908 179.772 420.911 179.774 420.914 179.776L424.394 180.864C425.005 181.055 425.538 181.435 425.917 181.951C426.296 182.466 426.5 183.089 426.5 183.729V188.272C426.5 188.912 426.296 189.535 425.917 190.05C425.538 190.565 425.004 190.945 424.394 191.136L420.914 192.224L420.905 192.231C420.89 192.246 420.879 192.265 420.872 192.285C420.721 192.691 420.555 193.091 420.374 193.485C420.365 193.505 420.359 193.526 420.359 193.548C420.359 193.551 420.359 193.555 420.359 193.558L422.054 196.79C422.35 197.356 422.458 198.002 422.362 198.634C422.265 199.266 421.969 199.851 421.517 200.302L418.302 203.517C417.85 203.969 417.266 204.265 416.634 204.361C416.002 204.457 415.356 204.349 414.79 204.052L411.558 202.36H411.548C411.526 202.361 411.505 202.366 411.485 202.375C411.093 202.554 410.693 202.72 410.285 202.87C410.262 202.879 410.241 202.893 410.225 202.911C410.224 202.912 410.224 202.913 410.224 202.914L409.136 206.394C408.945 207.005 408.565 207.538 408.049 207.917C407.534 208.296 406.911 208.5 406.271 208.5H401.727C401.088 208.5 400.465 208.296 399.95 207.917C399.435 207.538 399.055 207.004 398.864 206.394L397.776 202.914L397.773 202.91C397.347 202.747 396.927 202.568 396.513 202.374C396.495 202.365 396.474 202.36 396.453 202.359H396.442L393.211 204.054C392.644 204.35 391.998 204.458 391.366 204.362C390.734 204.265 390.149 203.969 389.698 203.517L386.483 200.302C386.031 199.85 385.735 199.266 385.639 198.634C385.543 198.002 385.651 197.356 385.948 196.79L387.639 193.558V193.548C387.639 193.526 387.634 193.505 387.625 193.485C387.445 193.091 387.28 192.691 387.13 192.285C387.122 192.265 387.11 192.246 387.095 192.231L387.086 192.224L383.606 191.136C382.995 190.945 382.462 190.565 382.083 190.049C381.704 189.534 381.5 188.911 381.5 188.271V183.727C381.5 183.088 381.704 182.466 382.083 181.951C382.461 181.436 382.994 181.055 383.605 180.864L387.086 179.776L387.095 179.769C387.11 179.754 387.121 179.735 387.128 179.715C387.28 179.307 387.446 178.907 387.626 178.515C387.636 178.495 387.641 178.474 387.641 178.452V178.442L385.946 175.211C385.65 174.644 385.542 173.998 385.638 173.366C385.735 172.734 386.031 172.149 386.483 171.698L389.698 168.483C390.15 168.031 390.734 167.735 391.366 167.639C391.998 167.543 392.644 167.651 393.211 167.948L396.442 169.639H396.452C396.474 169.639 396.495 169.634 396.515 169.625C396.907 169.446 397.307 169.28 397.715 169.13C397.735 169.122 397.754 169.11 397.769 169.095L397.776 169.086L398.864 165.606C399.055 164.995 399.435 164.462 399.951 164.083C400.466 163.704 401.089 163.5 401.729 163.5H404Z\" fill=\"#293A20\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M404 180C400.686 180 398 182.686 398 186C398 189.314 400.686 192 404 192C407.314 192 410 189.314 410 186C410 182.686 407.314 180 404 180ZM395 186C395 181.029 399.029 177 404 177C408.971 177 413 181.029 413 186C413 190.971 408.971 195 404 195C399.029 195 395 190.971 395 186Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M548.195 166.83C548.149 166.411 548.191 165.987 548.32 165.585C548.448 165.183 548.66 164.813 548.941 164.499C549.223 164.185 549.567 163.934 549.952 163.761C550.337 163.589 550.754 163.5 551.175 163.5H556.824C557.246 163.5 557.663 163.589 558.049 163.761C558.434 163.933 558.778 164.184 559.06 164.499C559.341 164.813 559.553 165.183 559.682 165.585C559.81 165.986 559.853 166.411 559.807 166.83L558.64 177.33C558.558 178.064 558.209 178.742 557.659 179.235C557.109 179.728 556.396 180 555.657 180H552.343C551.604 180 550.891 179.728 550.341 179.235C549.791 178.742 549.442 178.064 549.36 177.33L548.195 166.83V166.83ZM556.824 166.5H551.175L552.343 177H555.657L556.824 166.5ZM531.5 183.175C531.5 182.754 531.589 182.337 531.761 181.951C531.933 181.566 532.184 181.222 532.499 180.94C532.813 180.659 533.183 180.447 533.585 180.318C533.986 180.19 534.411 180.147 534.83 180.193L545.33 181.36C546.064 181.442 546.742 181.791 547.235 182.341C547.728 182.891 548 183.604 548 184.343V187.657C548 188.396 547.728 189.109 547.235 189.659C546.742 190.209 546.064 190.558 545.33 190.64L534.83 191.805C534.411 191.851 533.987 191.809 533.585 191.68C533.183 191.552 532.813 191.34 532.499 191.059C532.185 190.777 531.934 190.433 531.761 190.048C531.589 189.663 531.5 189.246 531.5 188.824V183.175V183.175ZM573.17 180.193C573.589 180.147 574.014 180.19 574.415 180.318C574.817 180.447 575.187 180.659 575.501 180.94C575.816 181.222 576.067 181.566 576.239 181.951C576.411 182.337 576.5 182.754 576.5 183.175V188.824C576.5 189.246 576.411 189.663 576.239 190.049C576.067 190.434 575.816 190.778 575.501 191.06C575.187 191.341 574.817 191.553 574.415 191.682C574.014 191.81 573.589 191.853 573.17 191.807L562.67 190.64C561.936 190.558 561.258 190.209 560.765 189.659C560.272 189.109 560 188.396 560 187.657V184.343C560 183.604 560.272 182.891 560.765 182.341C561.258 181.791 561.936 181.442 562.67 181.36L573.17 180.195V180.193ZM545 184.344L534.5 183.177V188.826L545 187.659V184.344ZM573.5 183.177L563 184.344V187.659L573.5 188.826V183.177ZM549.36 194.67C549.442 193.936 549.791 193.258 550.341 192.765C550.891 192.272 551.604 192 552.343 192H555.657C556.396 192 557.109 192.272 557.659 192.765C558.209 193.258 558.558 193.936 558.64 194.67L559.805 205.17C559.851 205.589 559.809 206.013 559.68 206.415C559.552 206.817 559.34 207.187 559.059 207.501C558.777 207.815 558.433 208.066 558.048 208.239C557.663 208.411 557.246 208.5 556.824 208.5H551.175C550.754 208.5 550.337 208.411 549.951 208.239C549.566 208.067 549.222 207.816 548.94 207.501C548.659 207.187 548.447 206.817 548.318 206.415C548.19 206.014 548.147 205.589 548.193 205.17L549.36 194.67ZM555.657 195.001H552.343L551.175 205.501H556.824L555.657 195.001Z\" fill=\"#1DC136\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M548.258 165.795C544.816 166.777 541.681 168.62 539.15 171.151C536.619 173.681 534.775 176.816 533.793 180.258C534.123 180.179 534.473 180.153 534.831 180.194L536.88 180.422C537.762 177.726 539.266 175.277 541.272 173.272C543.277 171.266 545.726 169.762 548.421 168.881L548.193 166.832C548.154 166.485 548.176 166.134 548.258 165.795V165.795ZM559.577 168.881L559.805 166.832C559.845 166.473 559.82 166.124 559.74 165.795C563.183 166.777 566.317 168.62 568.848 171.151C571.379 173.681 573.223 176.816 574.205 180.258C573.866 180.176 573.515 180.154 573.168 180.194L571.118 180.422C570.236 177.726 568.732 175.277 566.727 173.272C564.722 171.266 562.272 169.762 559.577 168.881V168.881ZM549.281 176.618C547.267 177.634 545.632 179.269 544.616 181.283L545.33 181.361C545.728 181.404 546.113 181.527 546.463 181.723C546.813 181.918 547.119 182.181 547.365 182.498C548.072 181.163 549.163 180.072 550.497 179.366C550.182 179.12 549.918 178.813 549.723 178.464C549.528 178.114 549.404 177.729 549.36 177.332L549.281 176.618V176.618ZM557.501 179.366C558.119 178.884 558.546 178.163 558.638 177.332L558.717 176.618C560.731 177.634 562.366 179.269 563.382 181.283L562.668 181.361C562.27 181.404 561.885 181.527 561.535 181.723C561.186 181.918 560.879 182.181 560.633 182.498C559.926 181.163 558.835 180.072 557.501 179.366V179.366ZM560.633 189.503C559.926 190.837 558.835 191.928 557.501 192.635C558.119 193.116 558.546 193.838 558.638 194.669L558.717 195.383C560.731 194.366 562.366 192.731 563.382 190.718L562.668 190.64C562.27 190.596 561.885 190.472 561.536 190.277C561.186 190.082 560.879 189.818 560.633 189.503V189.503ZM571.118 191.579C570.236 194.274 568.732 196.723 566.727 198.728C564.722 200.734 562.272 202.238 559.577 203.12L559.805 205.169C559.845 205.527 559.82 205.877 559.74 206.205C563.183 205.223 566.317 203.38 568.848 200.849C571.379 198.319 573.223 195.184 574.205 191.742C573.866 191.824 573.515 191.845 573.168 191.807L571.118 191.579V191.579ZM548.258 206.205C548.176 205.866 548.155 205.516 548.193 205.17L548.421 203.12C545.726 202.238 543.277 200.734 541.272 198.728C539.266 196.723 537.762 194.274 536.88 191.579L534.831 191.805C534.484 191.844 534.133 191.822 533.793 191.741C534.775 195.183 536.619 198.318 539.15 200.849C541.681 203.38 544.816 205.223 548.258 206.205ZM544.617 190.719C545.633 192.733 547.269 194.368 549.282 195.384L549.36 194.669C549.404 194.271 549.528 193.886 549.723 193.536C549.918 193.187 550.182 192.88 550.497 192.635C549.163 191.928 548.072 190.837 547.365 189.503C547.119 189.818 546.812 190.082 546.463 190.277C546.113 190.472 545.728 190.596 545.33 190.64L544.617 190.719V190.719Z\" fill=\"#293A20\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-hlnjw\",\"data-framer-name\":\"5\",fill:\"#DAE4D5\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"NCp2CFOOS\",svg:'<svg width=\"658\" height=\"270\" viewBox=\"0 0 658 270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_313_148)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M96.0007 79.6C96.0007 77.1424 96.9931 73.5803 98.6682 70.6348C99.4968 69.1779 100.436 67.9735 101.401 67.1557C102.366 66.3381 103.24 66 104.001 66C104.762 66 105.635 66.3381 106.6 67.1557C107.565 67.9735 108.505 69.1779 109.333 70.6348C111.008 73.5803 112.001 77.1424 112.001 79.6C112.001 81.0117 111.673 82.3312 111.097 83.4872C108.221 83.8837 104.114 84.1559 99.6393 84.1251C98.8415 84.1196 98.0366 84.1044 97.2294 84.0789C96.4534 82.7905 96.0007 81.2589 96.0007 79.6ZM92.7171 83.8234C92.253 82.5013 92.0007 81.0779 92.0007 79.6C92.0007 79.3462 92.0082 79.0866 92.0228 78.8222C90.9351 79.0154 89.9312 79.247 89.0225 79.5214C87.1843 80.0765 85.9005 80.7599 85.1013 81.5131C84.7579 81.8367 84.4964 82.1784 84.3146 82.5522C86.8532 83.1636 89.7378 83.5749 92.7171 83.8234ZM80.0006 84.0492C80.0299 95.4443 90.2597 104 104.001 104C117.749 104 127.983 95.4346 128.001 84.0298L128.001 84C128.001 81.8158 127.13 80.0025 125.644 78.6021C124.216 77.257 122.278 76.3393 120.135 75.6922C118.671 75.2499 117.034 74.9122 115.27 74.6592C114.714 72.606 113.865 70.5112 112.81 68.6574C111.829 66.9323 110.614 65.3137 109.186 64.1039C107.758 62.894 106.001 62 104.001 62C102 62 100.243 62.894 98.8153 64.1039C97.3877 65.3137 96.1722 66.9323 95.1911 68.6574C94.1368 70.5112 93.2878 72.606 92.7314 74.6592C90.9672 74.9122 89.3306 75.2499 87.8662 75.6922C85.7233 76.3393 83.7852 77.257 82.3579 78.6021C80.8857 79.9896 80.0169 81.7823 80.0009 83.9396C79.9998 83.9762 79.9997 84.0127 80.0006 84.0492ZM84.2503 86.6411C88.9982 87.6804 94.5408 88.09 99.6117 88.125C105.72 88.1671 111.401 87.6663 114.459 86.9468C115.234 86.7645 115.916 86.5933 116.516 86.4331C117.583 86.1483 118.218 85.0523 117.933 83.9851C117.664 82.977 116.671 82.3551 115.662 82.5293C115.884 81.588 116.001 80.6067 116.001 79.6C116.001 79.3462 115.993 79.0866 115.979 78.8222C117.066 79.0154 118.07 79.247 118.979 79.5214C120.817 80.0765 122.101 80.7599 122.9 81.5131C123.635 82.2057 123.995 82.9812 124.001 83.9769V83.9771L124.001 84C124.001 84.2465 123.761 84.9756 122.293 86.0662C120.928 87.0797 118.905 88.0943 116.438 88.9968C111.513 90.7986 105.246 92 100.001 92C98.896 92 98.0005 92.8954 98.0005 94C98.0005 95.1046 98.896 96 100.001 96C105.755 96 112.488 94.7014 117.813 92.7533C119.405 92.1707 120.91 91.5162 122.246 90.799C119.302 96.1546 112.812 100 104.001 100C93.0384 100 85.669 94.0481 84.2503 86.6411Z\" fill=\"#293A20\"/>\\n</g>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254 64L255.66 62.8846L254 60.4139L252.34 62.8846L254 64ZM271.992 79.5555C271.81 77.5638 271.809 77.5639 271.809 77.5639L271.807 77.564L271.804 77.5643L271.796 77.5651L271.769 77.5677C271.747 77.5699 271.717 77.573 271.68 77.577C271.604 77.5852 271.498 77.5973 271.364 77.6142C271.095 77.648 270.713 77.7012 270.243 77.7802C269.305 77.9378 268.003 78.2002 266.537 78.6215C265.541 78.9074 264.444 79.2737 263.319 79.7425C262.518 76.326 261.127 72.97 259.8 70.2316C258.769 68.1048 257.74 66.2776 256.969 64.9812C256.582 64.3322 256.259 63.814 256.031 63.4553C255.917 63.276 255.826 63.1363 255.763 63.0401C255.732 62.9919 255.707 62.9546 255.69 62.9285L255.669 62.8979L255.663 62.8891L255.661 62.8863L255.661 62.8853C255.66 62.8849 255.66 62.8846 254 64C252.34 62.8846 252.34 62.8849 252.34 62.8853L252.339 62.8863L252.337 62.8891L252.331 62.8979L252.311 62.9285C252.294 62.9546 252.269 62.9919 252.237 63.0401C252.174 63.1363 252.084 63.276 251.969 63.4553C251.741 63.814 251.418 64.3322 251.032 64.9812C250.26 66.2776 249.231 68.1048 248.2 70.2316C246.873 72.97 245.483 76.326 244.681 79.7425C243.556 79.2737 242.459 78.9074 241.464 78.6215C239.997 78.2002 238.695 77.9378 237.757 77.7802C237.287 77.7012 236.906 77.648 236.637 77.6142C236.502 77.5973 236.396 77.5852 236.321 77.577C236.283 77.573 236.253 77.5699 236.231 77.5677L236.205 77.5651L236.196 77.5643L236.193 77.564L236.192 77.5639C236.191 77.5639 236.191 77.5638 236.009 79.5555L236.191 77.5638L234.112 77.3739L234.011 79.4591L236.009 79.5555C234.011 79.4591 234.011 79.4597 234.011 79.4604L234.011 79.4618L234.011 79.4654L234.01 79.4748L234.009 79.5029C234.008 79.5258 234.007 79.5568 234.006 79.5956C234.004 79.6731 234.002 79.7818 234.001 79.9186C233.999 80.1919 234.002 80.5786 234.023 81.054C234.06 81.9084 234.153 83.0614 234.373 84.365C233.567 84.2706 232.774 84.2221 232 84.2221C230.895 84.2221 230 85.1176 230 86.2221C230 91.4234 231.652 98.737 233.001 102.559C233.444 103.815 234.456 104.63 235.63 104.87C236.751 105.1 237.904 104.791 238.803 104.114C243.001 100.956 248.466 99.3333 254 99.3333C259.534 99.3333 264.999 100.956 269.197 104.114C270.096 104.791 271.249 105.1 272.37 104.87C273.544 104.63 274.556 103.815 274.999 102.559C276.348 98.737 278 91.4234 278 86.2221C278 85.1176 277.105 84.2221 276 84.2221C275.226 84.2221 274.433 84.2706 273.628 84.365C273.848 83.0614 273.941 81.9084 273.978 81.054C273.998 80.5786 274.002 80.1919 274 79.9186C273.999 79.7818 273.996 79.6731 273.994 79.5956C273.993 79.5568 273.992 79.5258 273.991 79.5029L273.99 79.4748L273.99 79.4654L273.989 79.4618L273.989 79.4604C273.989 79.4597 273.989 79.4591 271.992 79.5555ZM271.992 79.5555L273.989 79.4591L273.889 77.3739L271.81 77.5638L271.992 79.5555ZM263.956 83.8345C263.985 84.263 264 84.6889 264 85.1111C264 89.1462 262.658 92.1494 260.999 94.3201C262.854 93.7318 264.688 92.8255 266.102 91.4509C268.126 89.4838 269.141 86.6272 269.618 84.0649C269.765 83.2795 269.857 82.5462 269.913 81.9098C269.248 82.0455 268.474 82.2268 267.641 82.466C266.45 82.8081 265.183 83.2562 263.956 83.8345ZM256 93.781V86.2221C256 85.1176 255.105 84.2221 254 84.2221C252.895 84.2221 252 85.1176 252 86.2221V93.7806C250.125 92.2263 248 89.4972 248 85.1111C248 80.9842 249.826 76.0492 251.8 71.9759C252.574 70.3792 253.349 68.9582 254 67.8273C254.652 68.9582 255.427 70.3792 256.2 71.9759C258.174 76.0492 260 80.9842 260 85.1111C260 89.4975 257.875 92.2267 256 93.781ZM247.002 94.3201C245.146 93.7318 243.313 92.8255 241.898 91.4509C239.874 89.4838 238.86 86.6272 238.382 84.0649C238.235 83.2795 238.144 82.5462 238.087 81.9098C238.753 82.0455 239.527 82.2268 240.359 82.466C241.55 82.8081 242.818 83.2562 244.044 83.8345C244.015 84.263 244 84.6889 244 85.1111C244 89.1462 245.343 92.1494 247.002 94.3201ZM243.341 97.1822C241.85 96.486 240.385 95.5583 239.111 94.3196C237.377 92.635 236.24 90.5874 235.49 88.59C235.017 88.4956 234.55 88.4189 234.091 88.3604C234.42 92.5464 235.584 97.6704 236.612 100.758C238.665 99.2483 240.94 98.0582 243.341 97.1822ZM264.66 97.1823C266.15 96.486 267.615 95.5583 268.89 94.3196C270.623 92.635 271.761 90.5874 272.51 88.5899C272.983 88.4955 273.45 88.4189 273.909 88.3604C273.58 92.5464 272.416 97.6704 271.388 100.758C269.335 99.2483 267.06 98.0583 264.66 97.1823ZM236.35 100.946C236.347 100.947 236.345 100.948 236.345 100.947L236.347 100.947L236.35 100.946ZM271.655 100.947C271.655 100.948 271.653 100.947 271.65 100.946L271.653 100.947L271.654 100.947L271.655 100.947ZM268.443 64.3986C269.328 65.0604 269.508 66.3137 268.846 67.1982L266.602 70.1982C265.94 71.0826 264.687 71.2631 263.802 70.6014C262.918 69.9396 262.737 68.6862 263.399 67.8018L265.644 64.8018C266.305 63.9174 267.559 63.7369 268.443 64.3986ZM242.664 64.8906C242.052 63.9715 240.81 63.7232 239.891 64.3359C238.972 64.9486 238.724 66.1903 239.336 67.1094L241.336 70.1094C241.949 71.0285 243.191 71.2768 244.11 70.6641C245.029 70.0514 245.277 68.8097 244.664 67.8906L242.664 64.8906ZM234.211 70.1056C234.705 69.1176 235.906 68.7172 236.894 69.2112L238.894 70.2112C239.882 70.7051 240.283 71.9065 239.789 72.8944C239.295 73.8824 238.094 74.2829 237.106 73.7889L235.106 72.7889C234.118 72.2949 233.717 71.0935 234.211 70.1056ZM271.106 69.2112C272.094 68.7172 273.295 69.1176 273.789 70.1056C274.283 71.0935 273.882 72.2949 272.894 72.7889L270.894 73.7889C269.906 74.2829 268.705 73.8824 268.211 72.8944C267.717 71.9065 268.118 70.7051 269.106 70.2112L271.106 69.2112Z\" fill=\"#293A20\"/>\\n<path d=\"M389 70L382 74L390 77V80.2424C390 87.8541 396.996 93.5426 404.448 91.9901L411.552 90.5102C413.119 90.1837 414.752 90.497 416.087 91.3805L419.434 93.5959C421.382 94.8847 424.016 94.2155 425.112 92.1536C425.609 91.219 425.282 90.0589 424.371 89.5209L411.37 81.8465C407.226 79.4006 404.19 75.4456 402.898 70.8105L402.345 68.8244C401.55 65.9727 398.953 64 395.992 64C393.423 64 391.087 65.4924 390.008 67.8241L389 70Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M410.93 90.644L410.094 90.8179C404.823 91.9141 399.63 88.6399 398.346 83.4108L398 82\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M382 102L424 102\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M388 100C386.934 96.8 384.889 96 384 96C384.445 97.3333 385.867 100 388 100Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M418 106C416.934 102.8 414.889 102 414 102C414.445 103.333 415.867 106 418 106Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<circle cx=\"394\" cy=\"72\" r=\"2\" fill=\"#293A20\"/>\\n<path d=\"M426 68H425.708C423.435 68 421.358 69.284 420.341 71.3167L420 72\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n<path d=\"M414 68H414.291C416.564 68 418.642 69.284 419.658 71.3167L420 72\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\"/>\\n<path d=\"M402 92L396 102\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M411 91L404 102\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<g clip-path=\"url(#clip1_313_148)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M540.342 76H567.659C566.835 73.6696 564.613 72 562 72H546C543.388 72 541.166 73.6696 540.342 76ZM571.81 76.0463C575.295 76.4474 578 79.4077 578 83C578 85.7925 576.365 88.2031 574 89.3265V90C574 94.1281 571.499 97.672 567.929 99.1986C567.337 104.156 563.117 108 558 108H550C544.883 108 540.663 104.156 540.071 99.1986C536.501 97.672 534 94.1281 534 90V89.3262C531.635 88.2026 530 85.7922 530 83C530 79.4077 532.706 76.4474 536.191 76.0463C536.839 72.7768 539.08 70.0807 542.072 68.8013C542.664 63.8436 546.883 60 552 60H556C561.118 60 565.337 63.8436 565.929 68.8013C568.921 70.0807 571.162 72.7768 571.81 76.0463ZM538 90C538 93.3137 540.686 96 544 96H546V90L538 90ZM547.07 86C548.454 83.6088 551.039 82 554 82C556.961 82 559.546 83.6088 560.93 86H571C572.657 86 574 84.6568 574 83C574 81.3431 572.657 80 571 80H537C535.344 80 534 81.3431 534 83C534 84.6568 535.344 86 537 86H547.07ZM562 90V96H564C567.314 96 570 93.3137 570 90H562ZM560 100H548H544.342C545.165 102.33 547.388 104 550 104H558C560.613 104 562.835 102.33 563.659 100H560ZM546.342 68H561.659C560.835 65.6696 558.613 64 556 64H552C549.388 64 547.166 65.6696 546.342 68ZM550 90C550 87.7909 551.791 86 554 86C556.209 86 558 87.7909 558 90V96H550V90Z\" fill=\"#293A20\"/>\\n</g>\\n<g clip-path=\"url(#clip2_313_148)\">\\n<path d=\"M104 208V200.721C104 200.241 104.043 199.762 104.129 199.29L105.558 191.426C105.846 189.846 105.65 188.215 104.998 186.746L103.444 183.249C102.524 181.181 102.524 178.819 103.444 176.751L104.82 173.654C105.582 171.939 105.717 170.011 105.202 168.207L104 164\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M102 178C97.1995 176.2 95.9995 173.25 95.9995 172C97.7773 172.25 101.466 173.8 102 178Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M115.485 170.243C110.818 168.121 107.884 169.359 107 170.243C108.434 171.323 112.138 172.835 115.485 170.243Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<circle cx=\"89.9995\" cy=\"188\" r=\"6\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<circle cx=\"118\" cy=\"188\" r=\"6\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M98.0005 208L96.684 199.706C96.1623 196.42 93.3284 194 90.0005 194V194C86.6726 194 83.8386 196.42 83.3169 199.706L82.0005 208\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M126 208L124.684 199.706C124.162 196.42 121.328 194 118 194V194C114.672 194 111.838 196.42 111.316 199.706L110 208\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g clip-path=\"url(#clip3_313_148)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M246.967 164.358C247.165 163.271 246.444 162.23 245.357 162.032C244.27 161.835 243.229 162.555 243.032 163.642L235.032 207.642C234.834 208.729 235.555 209.77 236.642 209.968C237.728 210.165 238.77 209.444 238.967 208.358L239.762 203.986C239.84 203.995 239.919 204 239.999 204H250.758C250.803 205.438 251.28 207.033 252.211 208.894C252.705 209.882 253.906 210.283 254.894 209.789C255.882 209.295 256.283 208.093 255.789 207.106C255.053 205.634 254.807 204.655 254.762 204H267.999C268.08 204 268.159 203.995 268.238 203.986L269.032 208.358C269.23 209.444 270.271 210.165 271.358 209.968C272.445 209.77 273.165 208.729 272.968 207.642L264.968 163.642C264.77 162.555 263.729 161.835 262.642 162.032C261.556 162.23 260.835 163.271 261.032 164.358L261.331 166L256.865 166C256.079 164.162 255.014 162.939 254.109 162.336C253.19 161.723 251.948 161.971 251.336 162.891C250.723 163.81 250.971 165.051 251.89 165.664C251.956 165.708 252.082 165.818 252.239 166L246.669 166L246.967 164.358ZM253.858 170H245.999C245.98 170 245.961 170 245.941 169.999L243.759 182H249.174C249.429 180.617 249.935 179.532 250.514 178.626C250.338 178.541 250.184 178.452 250.056 178.372C249.571 178.072 249.108 177.687 248.71 177.289C248.313 176.892 247.927 176.429 247.627 175.943C247.367 175.523 246.999 174.818 246.999 174C246.999 172.895 247.895 172 248.999 172C249.818 172 250.522 172.367 250.943 172.628C251.428 172.928 251.891 173.313 252.289 173.711C252.651 174.073 253.003 174.49 253.29 174.929C253.734 174.147 254 173.267 254 172C254 171.262 253.947 170.597 253.858 170ZM249.151 186H243.032L240.487 200H251.953C252.06 199.842 252.168 199.692 252.275 199.55C252.541 199.196 252.761 198.923 252.951 198.688C253.298 198.26 253.542 197.958 253.771 197.518C254.023 197.03 254.207 196.406 254.027 195.329C253.817 194.068 253.465 193.25 253.09 192.637C252.987 192.468 252.88 192.311 252.769 192.16C252.647 192.474 252.497 192.741 252.372 192.943C252.072 193.429 251.687 193.892 251.289 194.289C250.891 194.687 250.428 195.072 249.943 195.372C249.523 195.633 248.818 196 248 196C246.895 196 246 195.105 246 194C246 193.182 246.367 192.477 246.627 192.057C246.928 191.571 247.313 191.108 247.711 190.711C248.108 190.313 248.571 189.928 249.056 189.628C249.347 189.448 249.774 189.216 250.28 189.091C250.12 188.83 249.966 188.55 249.825 188.246C249.516 187.577 249.288 186.839 249.151 186ZM256.947 200C257.082 199.79 257.21 199.575 257.323 199.357C257.636 198.751 257.873 198.09 257.998 197.354C258.146 197.401 258.283 197.438 258.404 197.466C258.959 197.597 259.559 197.652 260.121 197.652C260.684 197.652 261.283 197.597 261.839 197.466C262.32 197.353 263.078 197.114 263.657 196.536C264.438 195.755 264.438 194.488 263.657 193.707C263.078 193.129 262.32 192.89 261.839 192.777C261.283 192.646 260.684 192.591 260.121 192.591C259.559 192.591 258.959 192.646 258.404 192.777C258.18 192.829 257.897 192.909 257.599 193.037C257.311 192.069 256.936 191.259 256.503 190.551C255.936 189.623 255.284 188.904 254.781 188.349L254.781 188.349L254.78 188.349C254.722 188.284 254.665 188.222 254.611 188.162C254.066 187.556 253.711 187.119 253.455 186.566C253.379 186.402 253.307 186.216 253.243 186L264.967 186L267.513 200H256.947ZM253.292 182C253.637 180.968 254.262 180.209 255.036 179.28L255.057 179.256L255.057 179.255C255.153 179.141 255.25 179.024 255.349 178.904C255.467 179.038 255.588 179.167 255.711 179.289C256.108 179.687 256.572 180.072 257.057 180.372C257.477 180.633 258.182 181 259 181C260.105 181 261 180.105 261 179C261 178.182 260.633 177.477 260.373 177.057C260.072 176.571 259.687 176.108 259.289 175.711C258.892 175.313 258.429 174.928 257.943 174.628C257.876 174.586 257.802 174.542 257.72 174.496C257.896 173.761 258 172.936 258 172C258 171.297 257.961 170.63 257.89 170H261.999C262.019 170 262.039 170 262.058 169.999L264.24 182L253.292 182Z\" fill=\"#293A20\"/>\\n</g>\\n<path d=\"M388 180L384 174V172H400V174L396 180L400 196V204H384V196L388 180Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M384 196H400\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M388 180H396\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M384 168V172\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M392 172V168\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M400 168V172\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M426 176L428 176L426 176ZM408 196H406C406 197.105 406.895 198 408 198V196ZM416 180H418C418 179.323 417.657 178.692 417.089 178.323C416.522 177.954 415.806 177.897 415.187 178.172L416 180ZM416 165L416.153 163.006C415.597 162.963 415.049 163.154 414.641 163.533C414.232 163.911 414 164.443 414 165H416ZM416 169L416.485 170.94L418 170.562V169H416ZM426 196V198C427.104 198 428 197.105 428 196H426ZM415.624 169.094L415.139 167.154L415.624 169.094ZM408.746 183.224L407.934 181.396L408.746 183.224ZM407.321 180.171L411.495 174.208L408.219 171.914L404.044 177.877L407.321 180.171ZM424 176C424 178.197 423.57 179.719 423.088 181.287C422.602 182.867 422 184.651 422 187H426C426 185.349 426.397 184.133 426.911 182.463C427.429 180.781 428 178.802 428 176L424 176ZM403.743 181.96L404.356 183.185L407.934 181.396L407.321 180.171L403.743 181.96ZM409.558 185.051L416.812 181.828L415.187 178.172L407.934 181.396L409.558 185.051ZM410 196C410 192.716 411.62 190.176 413.561 187.749C414.462 186.623 415.592 185.338 416.383 184.216C417.186 183.078 418 181.647 418 180H414C414 180.353 413.813 180.922 413.116 181.909C412.407 182.913 411.537 183.877 410.438 185.251C408.379 187.825 406 191.284 406 196H410ZM415.846 166.994C419.835 167.301 424 171.301 424 176L428 176C428 169.125 422.139 163.466 416.153 163.006L415.846 166.994ZM414 165V169H418V165H414ZM415.514 167.06L415.139 167.154L416.109 171.034L416.485 170.94L415.514 167.06ZM412 194H408V198H412V194ZM422 198H426V194H422V198ZM428 196C428 193.599 427.374 192.052 426.856 190.757C426.374 189.552 426 188.599 426 187H422C422 189.401 422.625 190.948 423.143 192.243C423.625 193.448 424 194.401 424 196H428ZM412 198H422V194H412V198ZM411.495 174.208C412.601 172.629 414.239 171.502 416.109 171.034L415.139 167.154C412.334 167.855 409.877 169.545 408.219 171.914L411.495 174.208ZM404.356 183.185C405.312 185.098 407.604 185.92 409.558 185.051L407.934 181.396L407.934 181.396L404.356 183.185ZM404.044 177.877C403.202 179.08 403.087 180.647 403.743 181.96L407.321 180.171L407.321 180.171L404.044 177.877Z\" fill=\"#293A20\"/>\\n<path d=\"M412 196L408 200V204H426V200L422 196\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M542 198H538V190H554H570V198H566M542 198L544 208H564L566 198M542 198H566\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M554 190V174V170M554 170L553.479 169.219C552.583 167.875 552.583 166.125 553.479 164.781L554 164L554.52 164.781C555.416 166.125 555.416 167.875 554.52 169.219L554 170Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M554 182H564M564 182L566.211 180.894C567.337 180.331 568.663 180.331 569.789 180.894L572 182L569.789 183.106C568.663 183.669 567.337 183.669 566.211 183.106L564 182Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M554 182H544M544 182L541.789 180.894C540.663 180.331 539.337 180.331 538.211 180.894L536 182L538.211 183.106C539.337 183.669 540.663 183.669 541.789 183.106L544 182Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M553.196 177L549.732 175M549.732 175L548.37 172.937C547.676 171.886 546.528 171.224 545.272 171.148L542.804 171L544.166 173.063C544.86 174.114 546.008 174.777 547.264 174.852L549.732 175Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M555 177L558.464 175M558.464 175L559.826 172.937C560.52 171.886 561.668 171.224 562.925 171.148L565.392 171L564.03 173.063C563.336 174.114 562.189 174.777 560.932 174.852L558.464 175Z\" stroke=\"#293A20\" stroke-width=\"4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<clipPath id=\"clip0_313_148\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(80 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip1_313_148\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(530 60)\"/>\\n</clipPath>\\n<clipPath id=\"clip2_313_148\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(80 162)\"/>\\n</clipPath>\\n<clipPath id=\"clip3_313_148\">\\n<rect width=\"48\" height=\"48\" fill=\"white\" transform=\"translate(230 162)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1wozpsu\",\"data-framer-name\":\"8\",fill:\"black\",intrinsicHeight:270,intrinsicWidth:658,layoutDependency:layoutDependency,layoutId:\"NUJ0km6RP\",svg:'<svg width=\"658\" height=\"270\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M540 171a3 3 0 0 1 3-3h14.343a3 3 0 0 1 .657.073V173a5 5 0 0 0 5 5h4.927a3 3 0 0 1 .073.657V182a1 1 0 0 0 2 0v-3.343a5.004 5.004 0 0 0-1.464-3.536l-7.657-7.657a5.004 5.004 0 0 0-3.536-1.464H543a5 5 0 0 0-5 5v30a5 5 0 0 0 5 5h8a1 1 0 0 0 0-2h-8a3 3 0 0 1-3-3v-30Zm26.586 5L560 169.414V173a3 3 0 0 0 3 3h3.586Zm-.207 9.707a3 3 0 0 1 4.242 0l3.672 3.672a3 3 0 0 1 0 4.242l-11.5 11.5a3 3 0 0 1-2.121.879H557a3 3 0 0 1-3-3v-3.672a3 3 0 0 1 .879-2.121l11.5-11.5Zm2.828 1.414a1 1 0 0 0-1.414 0l-1.629 1.629 5.086 5.086 1.629-1.629a1 1 0 0 0 0-1.414l-3.672-3.672Zm.629 8.129-5.086-5.086-8.457 8.457a1 1 0 0 0-.293.707V203a1 1 0 0 0 1 1h3.672a1 1 0 0 0 .707-.293l8.457-8.457Zm-178.695-29.24a1 1 0 0 0-1.131.848l-1 7a1.004 1.004 0 0 0 .849 1.132l.294.042c.134.049.276.069.416.059l6.29.899a1 1 0 0 0 .282-1.98l-4.515-.645A16.937 16.937 0 0 1 404 169c9.389 0 17 7.611 17 17s-7.611 17-17 17-17-7.611-17-17c0-1.469.186-2.893.536-4.251a1 1 0 0 0-1.937-.498A19.027 19.027 0 0 0 385 186c0 10.493 8.507 19 19 19s19-8.507 19-19-8.507-19-19-19a18.93 18.93 0 0 0-12.683 4.853l.673-4.712a1 1 0 0 0-.849-1.131ZM405 177a1 1 0 0 0-2 0v9c0 .265.105.52.293.707l5 5a.999.999 0 1 0 1.414-1.414L405 185.586V177Zm-157.92-8.801a4.003 4.003 0 0 1 7.84 0 1 1 0 0 0 .98.801h3.1v3a1 1 0 0 1-1 1h-14a1 1 0 0 1-1-1v-3h3.1a1 1 0 0 0 .98-.801ZM242 167h3.342a6.002 6.002 0 0 1 11.316 0H263a5 5 0 0 1 5 5v6a1 1 0 0 1-2 0v-6a3 3 0 0 0-3-3h-2v3a3 3 0 0 1-3 3h-14a3 3 0 0 1-3-3v-3h-2a3 3 0 0 0-3 3v29a3 3 0 0 0 3 3h8a1 1 0 0 1 0 2h-8a5 5 0 0 1-5-5v-29a5 5 0 0 1 5-5h3Zm8 17a3 3 0 0 1 3-3h18a3 3 0 0 1 3 3v22a3 3 0 0 1-3 3h-18a3 3 0 0 1-3-3v-22Zm3-1a1 1 0 0 0-1 1v22a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-22a1 1 0 0 0-1-1h-18Zm4 4a1 1 0 0 0 0 2h10a1 1 0 0 0 0-2h-10Zm-1 7a1 1 0 0 1 1-1h10a1 1 0 0 1 0 2h-10a1 1 0 0 1-1-1Zm1 5a1 1 0 0 0 0 2h5a1 1 0 0 0 0-2h-5ZM95 171a5 5 0 0 1 5-5h19a5 5 0 0 1 5 5v19a5 5 0 0 1-5 5h-3a1 1 0 0 1 0-2h3a3 3 0 0 0 3-3v-19a3 3 0 0 0-3-3h-19a3 3 0 0 0-3 3v3a1 1 0 0 1-2 0v-3Zm-11 11a5 5 0 0 1 5-5h19a5 5 0 0 1 5 5v19a5 5 0 0 1-5 5H89a5 5 0 0 1-5-5v-19Zm5-3a3 3 0 0 0-3 3v19a3 3 0 0 0 3 3h19a3 3 0 0 0 3-3v-19a3 3 0 0 0-3-3H89Zm17.707 8.707a.999.999 0 1 0-1.414-1.414L96 195.586l-4.293-4.293a1 1 0 1 0-1.414 1.414L94.586 197a2 2 0 0 0 2.828 0l9.293-9.293Zm460.1-121.416a1 1 0 1 0-1.913-.583c-.627 2.058-1.182 3.668-2.068 5.178-.878 1.496-2.109 2.939-4.135 4.588-.732.595-1.281 1.45-1.45 2.363-.175.947.064 1.994.966 2.728 1.064.866 2.244 1.252 3.263 1.407a50.17 50.17 0 0 1-.955.87c-1.029.91-.945 2.638.185 3.436.491.347 1.045.713 1.85 1.002.794.284 1.783.478 3.152.563l.018.002c-.753 1.205-1.344 1.757-1.792 2.057-.334.224-.568.313-.87.427-.161.061-.342.13-.568.23-.501.223-.979.66-1.01 1.355-.025.552.262.997.448 1.242.331.437.847.861 1.079 1.052l.093.078h.001l.001.001.005.01a.212.212 0 0 1 .013.08.443.443 0 0 1-.088.267c-.444.576-.919 1.405-1.068 2.447-.151 1.064.051 2.267.834 3.535.591.958 1.365 1.552 2.274 1.857.874.293 1.808.297 2.699.213.675-.064 1.401-.189 2.109-.31l.64-.109c.93-.153 1.849-.277 2.764-.277a1 1 0 0 0 0-2c-1.084 0-2.134.147-3.089.304-.245.04-.481.081-.71.12-.689.118-1.31.225-1.903.281-.782.074-1.389.045-1.874-.118-.449-.151-.853-.436-1.208-1.011-.552-.894-.638-1.628-.556-2.203.085-.597.365-1.11.672-1.508.621-.806.792-2.228-.208-3.093a9.34 9.34 0 0 0-.171-.143l-.054-.045c-.08-.067-.164-.137-.248-.212a4.358 4.358 0 0 1-.177-.164c.357-.14.834-.342 1.284-.644.755-.506 1.538-1.31 2.409-2.715.859-1.386-.253-2.918-1.626-3.003-1.245-.077-2.036-.247-2.599-.449-.554-.198-.935-.444-1.372-.752-.012-.009-.054-.05-.059-.148-.005-.097.032-.146.045-.158a72.017 72.017 0 0 0 2.341-2.187c.464-.451.411-1.055.233-1.415-.176-.356-.598-.741-1.202-.693-.897.072-2.475.002-3.742-1.03-.239-.194-.329-.454-.262-.813.072-.392.336-.843.745-1.176 2.172-1.767 3.576-3.384 4.598-5.127 1.015-1.728 1.625-3.534 2.256-5.606Zm-14.473 16.76a1.001 1.001 0 0 1 1.415 1.413 5 5 0 0 0 0 7.072 1 1 0 0 1-1.415 1.414 7.001 7.001 0 0 1 0-9.9Zm-3.535-4.95a1 1 0 0 0-1.414 0c-5.468 5.467-5.468 14.331 0 19.799a1 1 0 1 0 1.414-1.415c-4.686-4.686-4.686-12.284 0-16.97a1 1 0 0 0 0-1.415Zm-6.364-4.95a1 1 0 1 1 1.414 1.414c-7.42 7.42-7.42 19.45 0 26.87a.999.999 0 1 1-1.414 1.414c-8.201-8.2-8.201-21.497 0-29.698Zm21.023 18.7ZM382 61a1 1 0 0 0-.707 1.707L386 67.414V80a5 5 0 0 0 5 5h4a1 1 0 0 0 0-2h-4a3 3 0 0 1-3-3V67a.998.998 0 0 0-.293-.707L384.414 63H405a3 3 0 0 1 3 3v13a1 1 0 0 0 2 0V66a5 5 0 0 0-5-5h-23Zm16.923 5.615a1 1 0 0 0-1.846 0l-5 12a1 1 0 0 0 1.846.77l1.41-3.385h5.334l1.41 3.385a1 1 0 1 0 1.846-.77l-5-12Zm.91 7.385L398 69.6l-1.833 4.4h3.666Zm27.091 31.383c-.155.373-.52.617-.924.617h-23a5 5 0 0 1-5-5V87a5 5 0 0 1 5-5h14a5 5 0 0 1 5 5v12.586l4.707 4.707a1 1 0 0 1 .217 1.09ZM423.586 104l-3.293-3.293A.997.997 0 0 1 420 100V87a3 3 0 0 0-3-3h-14a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h20.586ZM403 91a1 1 0 0 0 0 2h1v7a.998.998 0 0 0 1.243.97l2-.5a1 1 0 0 0-.486-1.94l-.757.19V92a1 1 0 0 0-1-1h-2Zm6 4a1 1 0 0 1 1-1h2v-1h-3a1 1 0 0 1 0-2h3v-1h-2a1 1 0 0 1 0-2h2.351c.322 0 .643-.052.949-.154l2.384-.795a1 1 0 1 1 .632 1.898L414 89.72V91h3a1 1 0 0 1 0 2h-3v1h2a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0h-4a1 1 0 0 1-2 0v-5Zm2 1h4v2h-4v-2Zm-6.553-8.894a1 1 0 1 0-.894 1.788l2 1a1 1 0 1 0 .894-1.788l-2-1ZM270 66a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm1 5.874A4 4 0 1 0 266.126 67h-24.252A4.002 4.002 0 0 0 234 68a4.002 4.002 0 0 0 3 3.874v24.252a4 4 0 1 0 4.874 4.874h24.252a4.002 4.002 0 0 0 7.874-1 4.002 4.002 0 0 0-3-3.874V71.874ZM241.874 69h24.252A4.007 4.007 0 0 0 269 71.874v24.252A4.007 4.007 0 0 0 266.126 99h-24.252A4.007 4.007 0 0 0 239 96.126V71.874A4.007 4.007 0 0 0 241.874 69ZM238 66a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm32 32a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-32 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm9-23a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V78a3 3 0 0 0-3-3h-14Zm4.255 16H261a1 1 0 0 0 1-1v-3.586l-2.306-2.306a1 1 0 0 0-1.408-.007L251.255 91ZM262 83.586V78a1 1 0 0 0-1-1h-14a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h1.399l8.486-8.326a3 3 0 0 1 4.223.02l.892.892ZM251 81a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-3 1a3 3 0 1 1 6 0 3 3 0 0 1-6 0ZM101.854 64a4 4 0 0 0-3.578 2.211L97.382 68H95a5 5 0 0 0-5 5v10a5 5 0 0 0 5 5h18a5 5 0 0 0 5-5V73a5 5 0 0 0-5-5h-2.382l-.894-1.789A4.001 4.001 0 0 0 106.146 64h-4.292Zm-1.789 3.106A2.001 2.001 0 0 1 101.854 66h4.292a2 2 0 0 1 1.789 1.106l1.171 2.341A.999.999 0 0 0 110 70h3a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H95a3 3 0 0 1-3-3V73a3 3 0 0 1 3-3h3a1 1 0 0 0 .894-.553l1.171-2.341ZM100 77a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Zm16.274 15.289a1 1 0 0 0 .039 1.413C121.462 88.79 122 89.91 122 91c0 1.624-1.222 3.343-3.786 4.829-2.524 1.461-6.128 2.551-10.315 2.976a1 1 0 0 0 .202 1.99c4.386-.445 8.282-1.595 11.115-3.236C122.008 95.942 124 93.696 124 91c0-1.802-.902-3.414-2.313-4.75a1 1 0 0 0-1.413.04Zm-32.548 0a1 1 0 0 0-1.413-.04C84.902 87.586 84 89.198 84 91c0 3 2.455 5.441 5.794 7.102 3.11 1.547 7.259 2.571 11.858 2.832l-1.359 1.36a1 1 0 1 0 1.414 1.414l2.293-2.293a2 2 0 0 0 0-2.828l-2.293-2.293a1 1 0 1 0-1.414 1.414l1.214 1.214c-4.281-.273-8.058-1.236-10.822-2.61C87.53 94.74 86 92.811 86 91c0-1.09.538-2.21 1.687-3.297a1 1 0 0 0 .04-1.414Z\" fill=\"#293A20\"/></svg>',transition:transition,withExternalLayout:true})]})})});});const css=['.framer-O6JqK [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O6JqK .framer-10fu2a1 { display: block; }\",\".framer-O6JqK .framer-13vzzbx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 270px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 658px; }\",\".framer-O6JqK .framer-1r3044u, .framer-O6JqK .framer-1i8zkr0, .framer-O6JqK .framer-1xgbxe2, .framer-O6JqK .framer-ubzrre, .framer-O6JqK .framer-hlnjw, .framer-O6JqK .framer-1wozpsu { flex: 1 0 0px; height: 1px; max-height: 270px; max-width: 658px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O6JqK .framer-13vzzbx { gap: 0px; } .framer-O6JqK .framer-13vzzbx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-O6JqK .framer-13vzzbx > :first-child { margin-top: 0px; } .framer-O6JqK .framer-13vzzbx > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 270\n * @framerIntrinsicWidth 658\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UV908eeax\":{\"layout\":[\"fixed\",\"fixed\"]},\"hTdqDSCgc\":{\"layout\":[\"fixed\",\"fixed\"]},\"as8FAiiPL\":{\"layout\":[\"fixed\",\"fixed\"]},\"wQzvmKMMb\":{\"layout\":[\"fixed\",\"fixed\"]},\"XbR8BbAjA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerAWreEf71D=withCSS(Component,css,\"framer-O6JqK\");export default FramerAWreEf71D;FramerAWreEf71D.displayName=\"Rotating Thumbnail\";FramerAWreEf71D.defaultProps={height:270,width:658};addPropertyControls(FramerAWreEf71D,{variant:{options:[\"OfvpFiac1\",\"UV908eeax\",\"hTdqDSCgc\",\"as8FAiiPL\",\"wQzvmKMMb\",\"XbR8BbAjA\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerAWreEf71D,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAWreEf71D\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"270\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"658\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UV908eeax\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hTdqDSCgc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"as8FAiiPL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wQzvmKMMb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XbR8BbAjA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AWreEf71D.map", "// Generated by Framer (c126521)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SH2rDT8Lf\",\"qiQap92Y9\"];const serializationHash=\"framer-XqDEH\";const variantClassNames={qiQap92Y9:\"framer-v-e2jx3n\",SH2rDT8Lf:\"framer-v-s5haz2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Hidden Text\":\"SH2rDT8Lf\",\"Revealed Text\":\"qiQap92Y9\"};const getProps=({content,content2,content3,height,id,width,...props})=>{return{...props,aZMDCkPrM:content3??props.aZMDCkPrM,variant:humanReadableVariantMap[props.variant]??props.variant??\"SH2rDT8Lf\",vVy_fh2o5:content??props.vVy_fh2o5??\"Text goes here\",wMSrLh_7k:content2??props.wMSrLh_7k};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vVy_fh2o5,wMSrLh_7k,aZMDCkPrM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SH2rDT8Lf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapc2ryxy=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"qiQap92Y9\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"qiQap92Y9\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"qiQap92Y9\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-s5haz2\",className,classNames),\"data-framer-name\":\"Hidden Text\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SH2rDT8Lf\",onTap:onTapc2ryxy,ref:ref??ref1,style:{...style},...addPropertyOverrides({qiQap92Y9:{\"data-framer-name\":\"Revealed Text\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qdjczl\",layoutDependency:layoutDependency,layoutId:\"dc4nFoXB5\",style:{backgroundColor:\"var(--token-c3ee15e9-a354-4350-83a0-6fd6b65af979, rgb(218, 228, 213))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"30px\"},children:\"Continue reading\u2026\"})}),className:\"framer-8uxk4o\",\"data-framer-name\":\"Continue Reading\u2026\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oV_SGZblg\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"30px\"},children:\"Continue reading\u2026\"})}),className:\"framer-1h89sum\",\"data-framer-name\":\"Content 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JW7RJP1aT\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qiQap92Y9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"30px\"},children:\"Text goes here\"})}),text:vVy_fh2o5}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"30px\"},children:\"Text goes here\"})}),className:\"framer-1a3re7c\",\"data-framer-name\":\"Content 2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"THad6dRxL\",text:wMSrLh_7k,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"30px\"},children:\"Text goes here\"})}),className:\"framer-g4rcfr\",\"data-framer-name\":\"Content 3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T6v1xdTd5\",text:aZMDCkPrM,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XqDEH.framer-1ftwzni, .framer-XqDEH .framer-1ftwzni { display: block; }\",\".framer-XqDEH.framer-s5haz2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 281px; }\",\".framer-XqDEH .framer-qdjczl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-XqDEH .framer-8uxk4o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XqDEH .framer-1h89sum, .framer-XqDEH .framer-1a3re7c, .framer-XqDEH .framer-g4rcfr { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XqDEH.framer-s5haz2, .framer-XqDEH .framer-qdjczl { gap: 0px; } .framer-XqDEH.framer-s5haz2 > *, .framer-XqDEH .framer-qdjczl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XqDEH.framer-s5haz2 > :first-child, .framer-XqDEH .framer-qdjczl > :first-child { margin-left: 0px; } .framer-XqDEH.framer-s5haz2 > :last-child, .framer-XqDEH .framer-qdjczl > :last-child { margin-right: 0px; } }\",\".framer-XqDEH.framer-v-e2jx3n.framer-s5haz2 { cursor: unset; flex-direction: column; gap: 24px; height: min-content; }\",\".framer-XqDEH.framer-v-e2jx3n .framer-1h89sum { flex: none; order: 1; width: 100%; }\",\".framer-XqDEH.framer-v-e2jx3n .framer-1a3re7c { flex: none; order: 2; width: 100%; }\",\".framer-XqDEH.framer-v-e2jx3n .framer-g4rcfr { flex: none; order: 3; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XqDEH.framer-v-e2jx3n.framer-s5haz2 { gap: 0px; } .framer-XqDEH.framer-v-e2jx3n.framer-s5haz2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-XqDEH.framer-v-e2jx3n.framer-s5haz2 > :first-child { margin-top: 0px; } .framer-XqDEH.framer-v-e2jx3n.framer-s5haz2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 281\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qiQap92Y9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vVy_fh2o5\":\"content\",\"wMSrLh_7k\":\"content2\",\"aZMDCkPrM\":\"content3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbjHY8VzSE=withCSS(Component,css,\"framer-XqDEH\");export default FramerbjHY8VzSE;FramerbjHY8VzSE.displayName=\"Show More button\";FramerbjHY8VzSE.defaultProps={height:30,width:281};addPropertyControls(FramerbjHY8VzSE,{variant:{options:[\"SH2rDT8Lf\",\"qiQap92Y9\"],optionTitles:[\"Hidden Text\",\"Revealed Text\"],title:\"Variant\",type:ControlType.Enum},vVy_fh2o5:{defaultValue:\"Text goes here\",displayTextArea:false,title:\"Content\",type:ControlType.String},wMSrLh_7k:{defaultValue:\"\",description:\"\",title:\"Content 2\",type:ControlType.String},aZMDCkPrM:{defaultValue:\"\",displayTextArea:false,title:\"Content 3\",type:ControlType.String}});addFonts(FramerbjHY8VzSE,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbjHY8VzSE\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"vVy_fh2o5\\\":\\\"content\\\",\\\"wMSrLh_7k\\\":\\\"content2\\\",\\\"aZMDCkPrM\\\":\\\"content3\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qiQap92Y9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"281\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bjHY8VzSE.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\"]);export const fonts=[];export const css=['.framer-tx0BX .framer-styles-preset-w25ns7:not(.rich-text-wrapper), .framer-tx0BX .framer-styles-preset-w25ns7.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1d1711; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-tx0BX .framer-styles-preset-w25ns7:not(.rich-text-wrapper), .framer-tx0BX .framer-styles-preset-w25ns7.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1d1711; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tx0BX .framer-styles-preset-w25ns7:not(.rich-text-wrapper), .framer-tx0BX .framer-styles-preset-w25ns7.rich-text-wrapper h3 { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #1d1711; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-tx0BX\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Chivo-700\"]);export const fonts=[{family:\"Chivo\",moduleAsset:{localModuleIdentifier:\"local-module:css/TIbPxse0J:default\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_Wxjul2DSFXjQiQ.ttf\",weight:\"700\"}];export const css=['.framer-nKzcR .framer-styles-preset-cijvvt:not(.rich-text-wrapper), .framer-nKzcR .framer-styles-preset-cijvvt.rich-text-wrapper h1 { --framer-font-family: \"Chivo\", \"Chivo Placeholder\", sans-serif; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 810px) { .framer-nKzcR .framer-styles-preset-cijvvt:not(.rich-text-wrapper), .framer-nKzcR .framer-styles-preset-cijvvt.rich-text-wrapper h1 { --framer-font-family: \"Chivo\", \"Chivo Placeholder\", sans-serif; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nKzcR .framer-styles-preset-cijvvt:not(.rich-text-wrapper), .framer-nKzcR .framer-styles-preset-cijvvt.rich-text-wrapper h1 { --framer-font-family: \"Chivo\", \"Chivo Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-nKzcR\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ae50a0d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/PlLMu0V3HsBupvdXeFrH/FormSpark.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/bwgDNfOkuRQlrlKseDFD/SlideShow.js\";import RotatingThumbnail from\"#framer/local/canvasComponent/AWreEf71D/AWreEf71D.js\";import TopNav from\"#framer/local/canvasComponent/aXtxR0byl/aXtxR0byl.js\";import ShowMoreButton from\"#framer/local/canvasComponent/bjHY8VzSE/bjHY8VzSE.js\";import ViewCaseStudy from\"#framer/local/canvasComponent/ikH2JjdDe/ikH2JjdDe.js\";import Footer from\"#framer/local/canvasComponent/UqpqQn_cn/UqpqQn_cn.js\";import*as sharedStyle2 from\"#framer/local/css/E6uOn3UIL/E6uOn3UIL.js\";import*as sharedStyle1 from\"#framer/local/css/loYPv_FZh/loYPv_FZh.js\";import*as sharedStyle3 from\"#framer/local/css/lZbFXiRTe/lZbFXiRTe.js\";import*as sharedStyle from\"#framer/local/css/nXff8NJdr/nXff8NJdr.js\";import*as sharedStyle4 from\"#framer/local/css/QCVA72OzD/QCVA72OzD.js\";import*as sharedStyle5 from\"#framer/local/css/TIbPxse0J/TIbPxse0J.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopNavFonts=getFonts(TopNav);const RotatingThumbnailFonts=getFonts(RotatingThumbnail);const ViewCaseStudyFonts=getFonts(ViewCaseStudy);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const ShowMoreButtonFonts=getFonts(ShowMoreButton);const FormSparkFonts=getFonts(FormSpark);const FooterFonts=getFonts(Footer);const breakpoints={Mv5HcJ9O_:\"(min-width: 810px) and (max-width: 1439px)\",Pj45KAzUa:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BrCuY\";const variantClassNames={Mv5HcJ9O_:\"framer-v-1bvv02q\",Pj45KAzUa:\"framer-v-10xzzdy\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:1,mass:1,stiffness:800,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Pj45KAzUa\",Tablet:\"Mv5HcJ9O_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);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 elementId=useRouteElementId(\"NiO0UDq0C\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Pj45KAzUa\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Pj45KAzUa\")return true;return false;};const elementId1=useRouteElementId(\"sC4Dx2YiF\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"Yn4svdK3V\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"QxXS_bVxQ\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, rgb(41, 58, 32)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q51awm-container\",layoutScroll:true,nodeId:\"i8DOzAJxE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{variant:\"aqR2XOGnx\"},Pj45KAzUa:{variant:\"aqR2XOGnx\"}},children:/*#__PURE__*/_jsx(TopNav,{height:\"100%\",id:\"i8DOzAJxE\",layoutId:\"i8DOzAJxE\",style:{height:\"100%\",width:\"100%\"},variant:\"BIUtlKMR5\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5n3t3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fa56vi\",\"data-framer-name\":\"Intro\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pjzkhp\",\"data-framer-name\":\"Frame 161\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1b1w54m\",\"data-styles-preset\":\"nXff8NJdr\",children:[\"Hello there! I\u2019m a freelance \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"icon designer.\"})]})}),className:\"framer-11huli3\",\"data-framer-name\":\"Hello there! I\u2019m a freelance \\u2028icon designer.\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1g74h6y\",\"data-styles-preset\":\"loYPv_FZh\",children:[\"I love to create thousands of beautiful icons while using automation. This includes some icons you\u2019ve probably seen at places like LinkedIn, \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jgsArEgAZ\"},motionChild:true,nodeId:\"vYlSRPRjY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:\"Strava\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fF6O9ljjv\"},motionChild:true,nodeId:\"vYlSRPRjY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:\"Sonos\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wqAeum3u4\"},motionChild:true,nodeId:\"vYlSRPRjY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:\"Twitter\"})}),\", \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uudaiw4d6\"},motionChild:true,nodeId:\"vYlSRPRjY\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:\"Netflix\"})}),\", and Peerspace.\"]}),/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1g74h6y\",\"data-styles-preset\":\"loYPv_FZh\",children:[\"If you'd like to work together, email me at \",/*#__PURE__*/_jsx(\"strong\",{children:\"grifflecuyer@gmail.com\"}),\". Or you can simply start up a conversation with me on \",/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/grifflecuyer\",motionChild:true,nodeId:\"vYlSRPRjY\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-iv1fq3\",\"data-styles-preset\":\"E6uOn3UIL\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"LinkedIn\"})})}),\"!\"]})]}),className:\"framer-10l0d0v\",\"data-framer-name\":\"I love to create thousands of beautiful icons using automation. This includes some icons you\u2019ve probably seen at places like Nordstrom, Realtor.com, Twitter and Netflix. \\u2028 Let\u2019s work together! Just email me at grifflecuyer@gmail.com\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12v8cov\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ualhie-container\",nodeId:\"vu_i0rwBQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(RotatingThumbnail,{height:\"100%\",id:\"vu_i0rwBQ\",layoutId:\"vu_i0rwBQ\",style:{height:\"100%\",width:\"100%\"},variant:\"OfvpFiac1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gx8att\",\"data-framer-name\":\"Featured Projects\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nulvgi\",\"data-framer-name\":\"Featured Projects\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121l4sk\",\"data-framer-name\":\"Strava Icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-120c1y8\",\"data-framer-name\":\"Top Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d3zs5h\",\"data-framer-name\":\"Strava Thumbnail\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:141,intrinsicWidth:390,svg:'<svg width=\"390\" height=\"141\" viewBox=\"0 0 390 141\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.37136 32.1998C9.17148 31.6539 9.04163 31.087 9.04163 30.5334C9.04163 29.4408 9.46731 28.5988 10.1192 28.0384C10.7562 27.4908 11.5733 27.2417 12.3333 27.2417C13.0933 27.2417 13.9104 27.4908 14.5474 28.0384C15.1993 28.5988 15.625 29.4408 15.625 30.5334C15.625 31.2282 15.4204 31.9439 15.1296 32.613C15.6544 32.9643 15.9999 33.5626 15.9999 34.2415V40.2415C15.9999 41.3231 15.1231 42.1999 14.0416 42.1999H2.7231C1.47539 42.1999 0.693168 40.852 1.31221 39.7686L5.07337 33.1867C5.42204 32.5765 6.07092 32.2 6.77368 32.2L9.37136 32.1998ZM10.2916 30.5334C10.2916 31.4762 10.8609 32.6266 11.52 33.6152C11.8105 34.051 12.1019 34.4313 12.3333 34.7163C12.5647 34.4313 12.8561 34.051 13.1466 33.6152C13.8057 32.6266 14.375 31.4762 14.375 30.5334C14.375 29.7921 14.0985 29.3009 13.7326 28.9863C13.3519 28.659 12.8357 28.4917 12.3333 28.4917C11.8309 28.4917 11.3147 28.659 10.934 28.9863C10.5681 29.3009 10.2916 29.7921 10.2916 30.5334ZM7.3749 38.45V38.445L6.42067 40.9499H10.3179L10.7986 38.45H7.3749ZM11.5908 40.9499H14.0416C14.4328 40.9499 14.7499 40.6327 14.7499 40.2415V38.45H12.0715L11.5908 40.9499ZM6.77368 33.45C6.51949 33.45 6.28479 33.5862 6.15867 33.8069L2.39751 40.3888C2.25466 40.6388 2.43517 40.9499 2.7231 40.9499H5.08303L7.94017 33.45H6.77368ZM11.7502 35.9626C11.6731 35.8753 11.5642 35.7493 11.4342 35.5914C11.1746 35.2762 10.8279 34.8305 10.4799 34.3086C10.3055 34.047 10.125 33.7579 9.95336 33.4498H9.27785L7.84922 37.2H14.7499V34.2415C14.7499 34.0469 14.6714 33.8706 14.5444 33.7426C14.4254 33.9421 14.3047 34.1316 14.1867 34.3086C13.8387 34.8305 13.492 35.2762 13.2324 35.5914C13.1024 35.7493 12.9935 35.8753 12.9164 35.9626C12.7271 36.177 12.5283 36.3831 12.3333 36.5922C12.1383 36.3831 11.9395 36.177 11.7502 35.9626Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.5372 30.623C60.4136 31.1468 61.0004 32.1049 61.0004 33.2V42.2C61.0004 43.8569 59.6572 45.2 58.0004 45.2H40.5975C38.6733 45.2 37.4705 43.1174 38.432 41.4507L44.0569 31.7008C44.5927 30.7722 45.5834 30.2 46.6555 30.2H50.3239C50.1232 29.5386 50.0002 28.8634 50.0002 28.2C50.0002 26.5436 50.6462 25.263 51.6383 24.4102C52.6066 23.5778 53.8474 23.2 55.0002 23.2C56.1531 23.2 57.3939 23.5778 58.3622 24.4102C59.3543 25.263 60.0002 26.5436 60.0002 28.2C60.0002 29.0056 59.819 29.8285 59.5372 30.623ZM53.6033 35.8268C53.213 35.3529 52.6915 34.6826 52.1682 33.8976C51.8312 33.3921 51.4783 32.8172 51.1575 32.2H51.0204L48.7127 38.2H59.0004V33.2C59.0004 32.9171 58.8829 32.6616 58.694 32.4797C58.4148 32.9911 58.1178 33.4693 57.8323 33.8976C57.309 34.6826 56.7874 35.3529 56.3972 35.8268C55.9994 36.3098 55.5735 36.7659 55.1469 37.2228C55.098 37.2751 55.0491 37.3275 55.0002 37.3799C54.9514 37.3275 54.9025 37.2751 54.8536 37.2228C54.4269 36.7659 54.0011 36.3098 53.6033 35.8268ZM52.0002 28.2C52.0002 27.1057 52.4075 26.3863 52.942 25.9268C53.5003 25.4469 54.2595 25.2 55.0002 25.2C55.7409 25.2 56.5002 25.4469 57.0584 25.9268C57.593 26.3863 58.0002 27.1057 58.0002 28.2C58.0002 29.5942 57.156 31.3064 56.1682 32.7882C55.7539 33.4097 55.3381 33.9559 55.0002 34.375C54.6623 33.9559 54.2466 33.4097 53.8323 32.7882C52.8444 31.3064 52.0002 29.5942 52.0002 28.2ZM45.7893 32.7003C45.9679 32.3907 46.2981 32.2 46.6555 32.2H48.8776L44.6468 43.2H40.5975C40.2126 43.2 39.9721 42.7835 40.1644 42.4502L45.7893 32.7003ZM59.0004 40.2H54.4546L53.8777 43.2H58.0004C58.5526 43.2 59.0004 42.7523 59.0004 42.2V40.2ZM51.841 43.2L52.4179 40.2H47.9435L46.7896 43.2H51.841Z\" fill=\"white\"/>\\n<path d=\"M112.25 25.8667C112.25 26.9501 112.001 28.059 111.616 29.1292C112.463 29.8476 113 30.9195 113 32.1168V44.2835C113 46.4466 111.246 48.2001 109.083 48.2001L86.4521 48.2001C83.9546 48.2001 82.3904 45.5002 83.6326 43.3335L91.1809 30.1686C91.879 28.951 93.1752 28.2001 94.5787 28.2001H98.4999L98.5112 28.2001H99.422C99.2098 27.4249 99.0833 26.6393 99.0833 25.8667C99.0833 23.6816 99.9347 21.9974 101.238 20.8767C102.512 19.7815 104.147 19.2833 105.667 19.2833C107.187 19.2833 108.821 19.7815 110.095 20.8767C111.399 21.9974 112.25 23.6816 112.25 25.8667ZM101.583 25.8667C101.583 27.7523 102.722 30.0532 104.04 32.0304C104.621 32.9019 105.204 33.6625 105.667 34.2325C106.129 33.6625 106.712 32.9019 107.293 32.0304C108.611 30.0532 109.75 27.7523 109.75 25.8667C109.75 24.3842 109.197 23.4016 108.465 22.7725C107.704 22.118 106.671 21.7833 105.667 21.7833C104.662 21.7833 103.629 22.118 102.868 22.7725C102.136 23.4016 101.583 24.3842 101.583 25.8667ZM95.1557 41.7001L93.6267 45.7001H101.827L102.596 41.7001H95.1557ZM109.083 45.7001C109.866 45.7001 110.5 45.0659 110.5 44.2835V41.7001H105.142L104.373 45.7001H109.083ZM93.3497 31.4121L85.8014 44.577C85.5148 45.077 85.8757 45.7001 86.4521 45.7001H90.9503L96.6839 30.7001H94.5787C94.0711 30.7001 93.6022 30.9717 93.3497 31.4121ZM104.5 36.7252C104.346 36.5506 104.128 36.2986 103.868 35.9827C103.349 35.3524 102.656 34.4609 101.96 33.4172C101.428 32.619 100.868 31.6934 100.385 30.7001H99.3603L96.1113 39.2001H110.5V32.1168C110.5 31.9669 110.477 31.8225 110.434 31.687C110.088 32.3078 109.725 32.8903 109.373 33.4172C108.678 34.4609 107.984 35.3524 107.465 35.9827C107.205 36.2986 106.987 36.5506 106.833 36.7252L105.667 37.9844C105.557 37.8668 105.447 37.7497 105.337 37.6326C105.055 37.3331 104.773 37.0335 104.5 36.7252Z\" fill=\"white\"/>\\n<path d=\"M153.316 25.2C151.346 25.2 149.527 26.2534 148.546 27.9617L136.779 48.4596C135.057 51.4596 137.222 55.2 140.681 55.2H176C179.038 55.2 181.5 52.7376 181.5 49.7V30.7C181.5 28.4282 180.123 26.478 178.157 25.6392C178.674 24.1645 179 22.6577 179 21.2C179 18.1683 177.827 15.8876 176.072 14.3787C174.34 12.8901 172.1 12.2 170 12.2C167.9 12.2 165.66 12.8901 163.928 14.3787C162.173 15.8876 161 18.1683 161 21.2C161 22.5133 161.265 23.8664 161.695 25.2H153.316ZM170 15.2C171.482 15.2 173 15.6941 174.116 16.6536C175.185 17.5725 176 19.0111 176 21.2C176 23.9889 174.311 27.4137 172.336 30.3763C171.507 31.6193 170.676 32.7118 170 33.5501C169.324 32.7118 168.493 31.6193 167.664 30.3763C165.689 27.4137 164 23.9889 164 21.2C164 19.0111 164.815 17.5725 165.884 16.6536C167 15.6941 168.518 15.2 170 15.2ZM167.998 35.842C168.638 36.6184 169.314 37.358 170 38.0942C170.686 37.358 171.362 36.6187 172.002 35.842L172.022 35.8179C172.787 34.8886 173.809 33.5754 174.832 32.0404C175.564 30.9431 176.314 29.7064 176.973 28.3965C177.87 28.776 178.5 29.6645 178.5 30.7V43.2H154.367L160.664 28.2H162.929C163.611 29.5827 164.4 30.8884 165.168 32.0404C166.191 33.5754 167.213 34.8886 167.978 35.8179L167.998 35.842ZM150.59 52.2L153.108 46.2H165.537L164.383 52.2H150.59ZM167.438 52.2L168.591 46.2H178.5V49.7C178.5 51.0807 177.381 52.2 176 52.2H167.438ZM151.148 29.4553C151.594 28.6788 152.421 28.2 153.316 28.2H157.41L147.336 52.2H140.681C139.528 52.2 138.807 50.9532 139.381 49.9532L151.148 29.4553Z\" fill=\"white\"/>\\n<path d=\"M215.5 32.2C213.567 32.2 212 33.767 212 35.7C212 37.633 213.567 39.2 215.5 39.2C217.433 39.2 219 37.633 219 35.7C219 33.767 217.433 32.2 215.5 32.2ZM213.25 35.7C213.25 34.4574 214.257 33.45 215.5 33.45C216.743 33.45 217.75 34.4574 217.75 35.7C217.75 36.9427 216.743 37.95 215.5 37.95C214.257 37.95 213.25 36.9427 213.25 35.7Z\" fill=\"white\"/>\\n<path d=\"M208 32.2V33.45H210V32.2H208Z\" fill=\"white\"/>\\n<path d=\"M214.547 28.2C213.892 28.2 213.281 28.5273 212.918 29.0721L212.166 30.2H212V29.4917C212 28.7783 211.422 28.2 210.708 28.2H209.292C208.578 28.2 208 28.7783 208 29.4917V30.2H207.625C206.728 30.2 206 30.9275 206 31.825V39.575C206 40.4725 206.728 41.2 207.625 41.2H220.375C221.272 41.2 222 40.4725 222 39.575V31.825C222 30.9275 221.272 30.2 220.375 30.2H218.835L218.083 29.0721C217.719 28.5273 217.108 28.2 216.453 28.2H214.547ZM213.958 29.7654C214.089 29.5684 214.31 29.45 214.547 29.45H216.453C216.69 29.45 216.911 29.5684 217.043 29.7654L218.166 31.45H220.375C220.582 31.45 220.75 31.6179 220.75 31.825V39.575C220.75 39.7821 220.582 39.95 220.375 39.95H207.625C207.418 39.95 207.25 39.7821 207.25 39.575V31.825C207.25 31.6179 207.418 31.45 207.625 31.45H212.835L213.958 29.7654ZM210.75 29.4917V30.2H209.25V29.4917C209.25 29.4687 209.269 29.45 209.292 29.45H210.708C210.731 29.45 210.75 29.4687 210.75 29.4917Z\" fill=\"white\"/>\\n<path d=\"M257.5 30.2C254.462 30.2 252 32.6624 252 35.7C252 38.7376 254.462 41.2 257.5 41.2C260.538 41.2 263 38.7376 263 35.7C263 32.6624 260.538 30.2 257.5 30.2ZM254 35.7C254 33.767 255.567 32.2 257.5 32.2C259.433 32.2 261 33.767 261 35.7C261 37.633 259.433 39.2 257.5 39.2C255.567 39.2 254 37.633 254 35.7Z\" fill=\"white\"/>\\n<path d=\"M247 31.2V33.2H250V31.2H247Z\" fill=\"white\"/>\\n<path d=\"M256.07 24.2C255.067 24.2 254.131 24.7013 253.574 25.5359L252.465 27.2H252V26.2C252 25.0954 251.105 24.2 250 24.2H247C245.895 24.2 245 25.0954 245 26.2V27.3707C243.835 27.7826 243 28.8938 243 30.2V41.2C243 42.8569 244.343 44.2 246 44.2H264C265.657 44.2 267 42.8569 267 41.2V30.2C267 28.5432 265.657 27.2 264 27.2H262.535L261.426 25.5359C260.869 24.7013 259.933 24.2 258.93 24.2H256.07ZM255.238 26.6453C255.424 26.3671 255.736 26.2 256.07 26.2H258.93C259.264 26.2 259.576 26.3671 259.762 26.6453L261.465 29.2H264C264.552 29.2 265 29.6477 265 30.2V41.2C265 41.7523 264.552 42.2 264 42.2H246C245.448 42.2 245 41.7523 245 41.2V30.2C245 29.6477 245.448 29.2 246 29.2H253.535L255.238 26.6453ZM250 26.2V27.2H247V26.2H250Z\" fill=\"white\"/>\\n<path d=\"M307.5 28.2C303.358 28.2 300 31.5579 300 35.7C300 39.8421 303.358 43.2 307.5 43.2C311.642 43.2 315 39.8421 315 35.7C315 31.5579 311.642 28.2 307.5 28.2ZM302.5 35.7C302.5 32.9386 304.739 30.7 307.5 30.7C310.262 30.7 312.5 32.9386 312.5 35.7C312.5 38.4614 310.262 40.7 307.5 40.7C304.739 40.7 302.5 38.4614 302.5 35.7Z\" fill=\"white\"/>\\n<path d=\"M293.042 29.2V31.7H297V29.2H293.042Z\" fill=\"white\"/>\\n<path d=\"M305.515 20.2C304.157 20.2 302.896 20.9036 302.183 22.0594L300.861 24.2H300V22.7833C300 21.3566 298.844 20.2 297.417 20.2H293.583C292.157 20.2 291 21.3566 291 22.7833V24.2095C289.322 24.3371 288 25.7392 288 27.45V43.95C288 45.7449 289.455 47.2 291.25 47.2H316.75C318.545 47.2 320 45.7449 320 43.95V27.45C320 25.6551 318.545 24.2 316.75 24.2H314.139L312.817 22.0594C312.104 20.9036 310.843 20.2 309.485 20.2H305.515ZM304.31 23.3725C304.568 22.9545 305.024 22.7 305.515 22.7H309.485C309.976 22.7 310.432 22.9545 310.69 23.3725L312.744 26.7H316.75C317.164 26.7 317.5 27.0358 317.5 27.45V43.95C317.5 44.3642 317.164 44.7 316.75 44.7H291.25C290.836 44.7 290.5 44.3642 290.5 43.95V27.45C290.5 27.0358 290.836 26.7 291.25 26.7H302.256L304.31 23.3725ZM297.5 22.7833V24.2H293.5V22.7833C293.5 22.7373 293.537 22.7 293.583 22.7H297.417C297.463 22.7 297.5 22.7373 297.5 22.7833Z\" fill=\"white\"/>\\n<path d=\"M370 25.2C363.925 25.2 359 30.1249 359 36.2C359 42.2751 363.925 47.2 370 47.2C376.075 47.2 381 42.2751 381 36.2C381 30.1249 376.075 25.2 370 25.2ZM362 36.2C362 31.7817 365.582 28.2 370 28.2C374.418 28.2 378 31.7817 378 36.2C378 40.6183 374.418 44.2 370 44.2C365.582 44.2 362 40.6183 362 36.2Z\" fill=\"white\"/>\\n<path d=\"M349 27.2V30.2H354V27.2H349Z\" fill=\"white\"/>\\n<path d=\"M367.141 13.2C365.302 13.2 363.585 14.1191 362.564 15.6492L360.197 19.2H359V17.7C359 15.767 357.433 14.2 355.5 14.2H349.5C347.567 14.2 346 15.767 346 17.7V19.2224C343.197 19.475 341 21.831 341 24.7V47.7C341 50.7376 343.462 53.2 346.5 53.2H383.5C386.538 53.2 389 50.7376 389 47.7V24.7C389 21.6624 386.538 19.2 383.5 19.2H379.803L377.436 15.6492C376.415 14.1191 374.698 13.2 372.859 13.2H367.141ZM365.061 17.3133C365.524 16.6178 366.305 16.2 367.141 16.2H372.859C373.695 16.2 374.476 16.6178 374.939 17.3133L378.197 22.2H383.5C384.881 22.2 386 23.3193 386 24.7V47.7C386 49.0807 384.881 50.2 383.5 50.2H346.5C345.119 50.2 344 49.0807 344 47.7V24.7C344 23.3193 345.119 22.2 346.5 22.2H361.803L365.061 17.3133ZM356 17.7V19.2H349V17.7C349 17.4239 349.224 17.2 349.5 17.2H355.5C355.776 17.2 356 17.4239 356 17.7Z\" fill=\"white\"/>\\n<path d=\"M7.18024 97.5603C7.28301 97.3405 7.50375 97.2 7.74643 97.2H8.11238C9.67835 97.2 10.896 98.5623 10.7209 100.118L10.3743 103.2H14.0649C15.2717 103.2 16.25 104.178 16.25 105.385C16.25 105.896 16.0708 106.391 15.7435 106.784L15.625 106.926V108.217C15.625 108.675 15.4644 109.119 15.1711 109.471L15 109.676V110.075C15 111.249 14.0486 112.2 12.875 112.2H6.70325C6.44655 112.2 6.19568 112.124 5.98264 111.98L4.82638 111.203C4.81926 111.198 4.81084 111.196 4.80226 111.196L3.31885 111.227C2.59501 111.242 2 110.66 2 109.936V106.01C2 105.629 2.16822 105.268 2.45966 105.022L4.49211 103.311L7.18024 97.5603ZM8.14401 98.4504L5.56619 103.965C5.52778 104.047 5.47196 104.12 5.40258 104.178L3.26483 105.978C3.25543 105.986 3.25 105.998 3.25 106.01V109.936C3.25 109.959 3.26919 109.978 3.29254 109.977L4.77595 109.946C5.04186 109.941 5.30301 110.017 5.52374 110.166L6.68 110.943C6.68687 110.948 6.69497 110.95 6.70325 110.95H12.875C13.3582 110.95 13.75 110.558 13.75 110.075V109.224L14.2108 108.671C14.3169 108.543 14.375 108.383 14.375 108.217V106.474L14.7833 105.984C14.9233 105.816 15 105.604 15 105.385C15 104.869 14.5813 104.45 14.0649 104.45H8.97575L9.47876 99.9787C9.56928 99.1741 8.94897 98.4684 8.14401 98.4504Z\" fill=\"white\"/>\\n<path d=\"M47.2345 93.7819C47.3977 93.4272 47.7524 93.2 48.1429 93.2H48.6482C51.0323 93.2 52.887 95.2723 52.6237 97.6417L52.1173 102.2H57.5378C59.4499 102.2 61 103.75 61 105.662C61 106.546 60.6618 107.397 60.0549 108.04L60 108.098V109.872C60 110.667 59.6839 111.43 59.1213 111.993L59 112.114V113.2C59 114.857 57.6569 116.2 56 116.2H47.3028C46.9079 116.2 46.5219 116.083 46.1934 115.864L43.6972 114.2H41C39.8954 114.2 39 113.305 39 112.2V106.7C39 106.07 39.2964 105.478 39.8 105.1L43.1975 102.552L47.2345 93.7819ZM48.7814 95.2044L44.9084 103.618C44.8389 103.769 44.7329 103.9 44.6 104L41 106.7V112.2H43.6972C44.0921 112.2 44.4781 112.317 44.8066 112.536L47.3028 114.2H56C56.5523 114.2 57 113.752 57 113.2V111.286L57.7071 110.579C57.8946 110.391 58 110.137 58 109.872V107.302L58.6008 106.666C58.8572 106.395 59 106.036 59 105.662C59 104.855 58.3453 104.2 57.5378 104.2H49.8827L50.636 97.4209C50.7627 96.2807 49.9084 95.2781 48.7814 95.2044Z\" fill=\"white\"/>\\n<path d=\"M95.3563 89.9298C95.5598 89.4851 96.0039 89.2 96.4929 89.2H97.2248C100.357 89.2 102.792 91.9246 102.442 95.0369L101.749 101.2H109.046C111.506 101.2 113.5 103.194 113.5 105.654C113.5 106.882 112.993 108.056 112.099 108.897L112 108.99V111.561C112 112.409 111.725 113.233 111.217 113.911L111 114.2V116.283C111 118.446 109.246 120.2 107.083 120.2H95.4444C94.8855 120.2 94.3416 120.019 93.8944 119.683L90.6056 117.217C90.5911 117.206 90.5736 117.2 90.5556 117.2H86.5833C85.1566 117.2 84 116.043 84 114.617V107.147C84 106.301 84.4139 105.509 85.1081 105.026L90.0056 101.619L95.3563 89.9298ZM97.295 91.7009L92.1366 102.97C92.0435 103.174 91.8975 103.348 91.7138 103.476L86.5357 107.078C86.5134 107.094 86.5 107.119 86.5 107.147V114.617C86.5 114.663 86.5373 114.7 86.5833 114.7H90.5556C91.1145 114.7 91.6584 114.881 92.1056 115.217L95.3944 117.683C95.4089 117.694 95.4264 117.7 95.4444 117.7H107.083C107.866 117.7 108.5 117.066 108.5 116.283V113.367L109.217 112.411C109.401 112.166 109.5 111.868 109.5 111.561V107.91L110.385 107.077C110.778 106.708 111 106.193 111 105.654C111 104.575 110.125 103.7 109.046 103.7H98.9515L99.9575 94.7574C100.138 93.1505 98.9015 91.7409 97.295 91.7009Z\" fill=\"white\"/>\\n<path d=\"M154.938 82.0414C155.19 81.5265 155.713 81.2 156.286 81.2H157.391C161.547 81.2 164.787 84.7997 164.352 88.9328L163.166 100.2H175.576C179.124 100.2 182 103.076 182 106.624C182 108.265 181.373 109.843 180.246 111.036L180 111.296V115.043C180 116.502 179.421 117.901 178.389 118.932L178 119.321V121.7C178 124.738 175.538 127.2 172.5 127.2H154.106C153.415 127.2 152.739 126.995 152.164 126.612L147.172 123.284C147.09 123.229 146.993 123.2 146.894 123.2H141.5C139.567 123.2 138 121.633 138 119.7V108.661C138 107.598 138.483 106.592 139.314 105.928L145.8 100.739L154.938 82.0414ZM157.222 84.2L148.348 102.359C148.25 102.558 148.11 102.733 147.937 102.871L141.188 108.271C141.069 108.366 141 108.509 141 108.661V119.7C141 119.976 141.224 120.2 141.5 120.2H146.894C147.585 120.2 148.261 120.405 148.836 120.788L153.828 124.116C153.91 124.171 154.007 124.2 154.106 124.2H172.5C173.881 124.2 175 123.081 175 121.7V118.079L176.268 116.811C176.737 116.342 177 115.706 177 115.043V110.104L178.065 108.976C178.666 108.34 179 107.499 179 106.624C179 104.733 177.467 103.2 175.576 103.2H159.834L161.369 88.6188C161.617 86.257 159.765 84.2 157.391 84.2H157.222Z\" fill=\"white\"/>\\n<path d=\"M211.846 97.2C211.483 97.2 211.131 97.3203 210.844 97.5421L208.439 99.4006C208.436 99.4029 208.433 99.4047 208.429 99.4062L206.387 100.247C206.153 100.343 206 100.572 206 100.825C206 101.874 206.133 102.652 206.387 103.268C206.646 103.896 207.013 104.31 207.4 104.649C207.586 104.812 207.767 104.953 207.942 105.09C208.488 105.518 208.982 105.904 209.43 106.79C210.12 108.509 211.014 109.887 212.4 110.822C213.79 111.76 215.595 112.2 218 112.2C219.421 112.2 220.391 111.801 221.027 111.2C221.654 110.608 221.882 109.889 221.962 109.385C222.069 108.713 221.697 108.161 221.274 107.847L218.707 105.946C218.591 105.86 218.504 105.741 218.458 105.604L216.245 99.0769C216.068 98.5527 215.576 98.2 215.022 98.2H214.282C213.933 98.2 213.598 98.3416 213.355 98.5925L212.975 98.9846L212.643 97.8041C212.543 97.4468 212.217 97.2 211.846 97.2ZM209.699 100.006L211.56 98.5687L212.359 101.415L214.252 99.4626C214.26 99.4545 214.271 99.45 214.282 99.45H215.022C215.04 99.45 215.056 99.4613 215.062 99.4782L215.984 102.2H214V103.45H216.408L216.662 104.2H215V105.45H217.086L217.274 106.006C217.402 106.383 217.643 106.713 217.963 106.95L220.156 108.575C219.618 108.766 218.874 108.95 218 108.95C216.672 108.95 215.854 108.675 215.265 108.253C214.663 107.821 214.229 107.184 213.76 106.302C213.604 106.01 213.447 105.694 213.281 105.359C212.531 103.851 211.588 101.956 209.699 100.006ZM208.612 100.683C210.477 102.543 211.367 104.328 212.142 105.881C212.316 106.229 212.485 106.566 212.657 106.889C213.146 107.809 213.691 108.662 214.537 109.269C215.396 109.886 216.494 110.2 218 110.2C219.035 110.2 219.914 109.985 220.553 109.76C220.466 109.944 220.342 110.128 220.169 110.292C219.816 110.625 219.181 110.95 218 110.95C215.738 110.95 214.21 110.535 213.1 109.786C211.993 109.039 211.222 107.905 210.58 106.301C210.574 106.285 210.567 106.269 210.559 106.254C209.97 105.076 209.206 104.483 208.626 104.033C208.479 103.918 208.343 103.813 208.225 103.709C207.935 103.455 207.708 103.191 207.543 102.791C207.398 102.441 207.289 101.957 207.258 101.24L208.612 100.683Z\" fill=\"white\"/>\\n<path d=\"M217.88 99.1906L218.32 99.6352C219.398 100.727 220 102.122 220 103.574L220 104.199L218.75 104.199L218.75 103.574C218.75 102.477 218.297 101.391 217.43 100.514L216.991 100.069L217.88 99.1906Z\" fill=\"white\"/>\\n<path d=\"M219.834 98.1503L219.411 97.6908L218.492 98.5382L218.916 98.9977C219.581 99.7191 220.08 100.549 220.389 101.44C220.629 102.132 220.75 102.852 220.75 103.574V104.199H222V103.574C222 102.712 221.855 101.854 221.57 101.03C221.203 99.9721 220.612 98.9939 219.834 98.1503Z\" fill=\"white\"/>\\n<path d=\"M251.688 93.2C251.025 93.2 250.38 93.4151 249.849 93.8131L246.53 96.3026L243.684 97.2513C243.275 97.3874 243 97.7696 243 98.2C243 99.779 243.197 100.972 243.567 101.934C243.943 102.912 244.474 103.588 245.043 104.157C245.348 104.462 245.643 104.724 245.929 104.977C246.714 105.674 247.428 106.307 248.088 107.611C249.12 110.182 250.458 112.359 252.534 113.881C254.629 115.418 257.356 116.2 261 116.2C263.128 116.2 264.587 115.647 265.549 114.789C266.505 113.937 266.843 112.895 266.957 112.161C267.109 111.174 266.568 110.374 265.99 109.912L262.098 106.797C261.943 106.674 261.829 106.508 261.769 106.32L258.675 96.5936C258.411 95.7637 257.64 95.2 256.769 95.2H255.333C254.901 95.2 254.48 95.3404 254.133 95.6L253.562 96.0282L253.047 94.2249C252.874 93.6182 252.319 93.2 251.688 93.2ZM251.049 95.4131C251.118 95.3616 251.192 95.3189 251.27 95.2856L252.438 99.3718L255.333 97.2H256.769L257.723 100.2H255V102.2H258.36L258.678 103.2H256V105.2H259.314L259.863 106.926C260.043 107.491 260.386 107.989 260.848 108.359L263.954 110.844C263.184 111.034 262.176 111.2 261 111.2C259.029 111.2 257.822 110.769 256.954 110.113C256.059 109.436 255.409 108.438 254.703 107.057C254.479 106.62 254.254 106.15 254.015 105.654C252.875 103.281 251.444 100.301 248.531 97.302L251.049 95.4131ZM246.743 98.3398C249.645 101.198 250.997 104.004 252.184 106.466C252.433 106.983 252.675 107.484 252.922 107.968C253.654 109.4 254.473 110.745 255.749 111.709C257.053 112.694 258.721 113.2 261 113.2C262.492 113.2 263.754 112.97 264.684 112.721C264.571 112.92 264.419 113.116 264.218 113.296C263.718 113.742 262.782 114.2 261 114.2C257.644 114.2 255.371 113.482 253.716 112.269C252.053 111.048 250.893 109.241 249.928 106.829C249.918 106.803 249.907 106.778 249.894 106.753C249.041 105.045 247.947 104.08 247.104 103.336C246.864 103.124 246.645 102.931 246.457 102.743C246.026 102.312 245.682 101.863 245.433 101.216C245.224 100.671 245.066 99.9451 245.016 98.9153L246.743 98.3398Z\" fill=\"white\"/>\\n<path d=\"M261.252 95.6491L261.894 96.4151C263.26 98.0423 264 100.093 264 102.2L264 103.2L262 103.2L262 102.2C262 100.561 261.424 98.9662 260.362 97.7007L259.72 96.9347L261.252 95.6491Z\" fill=\"white\"/>\\n<path d=\"M264.193 94.4864L263.55 93.7204L262.018 95.006L262.66 95.772C263.505 96.778 264.142 97.9404 264.537 99.1928C264.844 100.167 265 101.181 265 102.2V103.2L267 103.2V102.2C267 100.978 266.813 99.7608 266.445 98.5914C265.971 97.0885 265.206 95.6936 264.193 94.4864Z\" fill=\"white\"/>\\n<path d=\"M301.408 90.8419C301.136 89.8708 300.25 89.1998 299.242 89.2L299.075 89.2C298.599 89.2001 298.136 89.3507 297.752 89.6303L292.661 93.3326C292.655 93.337 292.649 93.3406 292.642 93.3432L288.811 94.7796C288.323 94.9626 288 95.429 288 95.95C288 98.0507 288.267 99.6297 288.767 100.896C289.275 102.182 289.991 103.065 290.755 103.806C291.153 104.192 291.54 104.526 291.916 104.85C292.989 105.775 293.97 106.62 294.859 108.381C296.24 111.817 298.028 114.573 300.801 116.444C303.581 118.321 307.191 119.2 312 119.2C314.81 119.2 316.735 118.452 318.01 117.313C319.273 116.183 319.745 114.802 319.916 113.816C320.151 112.454 319.361 111.354 318.493 110.764L313.412 107.314C313.182 107.158 313.011 106.93 312.925 106.665L308.747 93.757C308.446 92.8288 307.582 92.2 306.606 92.2H304.299C303.86 92.2 303.431 92.3282 303.064 92.5689L302.075 93.2179L301.408 90.8419ZM295.182 94.5904L299.07 91.7628L300.591 97.182L304.374 94.7H306.424L307.881 99.1999H304V101.7H308.69L309.175 103.2H305V105.7H309.985L310.546 107.435C310.803 108.229 311.318 108.914 312.008 109.383L316.127 112.18C315.076 112.452 313.663 112.7 312 112.7C309.345 112.7 307.707 112.151 306.531 111.307C305.327 110.443 304.458 109.169 303.52 107.405C303.209 106.819 302.895 106.188 302.562 105.519C301.033 102.445 299.103 98.5676 295.182 94.5904ZM292.951 95.8971C296.868 99.7149 298.698 103.38 300.285 106.561C300.633 107.258 300.969 107.932 301.313 108.578C302.292 110.419 303.382 112.124 305.073 113.338C306.793 114.572 308.989 115.2 312 115.2C314.081 115.2 315.826 114.862 317.075 114.514C316.904 114.837 316.668 115.159 316.343 115.449C315.638 116.08 314.361 116.7 312 116.7C307.476 116.7 304.419 115.87 302.199 114.372C299.985 112.877 298.443 110.61 297.161 107.402C297.148 107.37 297.134 107.339 297.118 107.308C295.976 105.024 294.505 103.762 293.361 102.782C293.042 102.508 292.749 102.257 292.495 102.011C291.905 101.439 291.434 100.843 291.092 99.9781C290.799 99.2344 290.58 98.2368 290.518 96.8096L292.951 95.8971Z\" fill=\"white\"/>\\n<path d=\"M312.437 92.0671L313.223 93.0396C315.024 95.2706 315.996 98.0745 315.996 100.95L315.996 102.2L313.496 102.2L313.496 100.95C313.496 98.634 312.712 96.3872 311.277 94.6102L310.492 93.6376L312.437 92.0671Z\" fill=\"white\"/>\\n<path d=\"M316.208 90.5218L315.405 89.5639L313.489 91.17L314.292 92.1279C315.449 93.5085 316.324 95.1038 316.865 96.8227C317.287 98.1602 317.5 99.5521 317.5 100.95V102.2H320V100.95C320 99.2978 319.748 97.6525 319.25 96.0716C318.61 94.0398 317.576 92.1539 316.208 90.5218Z\" fill=\"white\"/>\\n<path d=\"M358.396 81.2C357.148 81.2 355.939 81.6294 354.971 82.4161L348.356 87.7908C348.306 87.8313 348.249 87.8618 348.187 87.8806L342.059 89.7663C341.429 89.96 341 90.5415 341 91.2C341 94.3302 341.423 96.6637 342.192 98.5231C342.969 100.403 344.058 101.697 345.222 102.792C345.808 103.344 346.387 103.831 346.954 104.309C348.656 105.742 350.254 107.087 351.631 109.817C353.697 114.959 356.47 119.104 360.659 121.942C364.859 124.788 370.31 126.2 377.5 126.2C381.564 126.2 384.308 125.233 386.119 123.771C387.936 122.303 388.636 120.481 388.888 119.126C389.224 117.318 388.19 115.84 387.088 115L378.925 108.781C378.512 108.466 378.207 108.031 378.053 107.535L371.87 87.6603C371.414 86.197 370.06 85.2 368.528 85.2H365.751C364.904 85.2 364.085 85.5077 363.447 86.066L361.828 87.4826L360.605 82.8972C360.338 81.8964 359.432 81.2 358.396 81.2ZM356.863 84.7444C357.156 84.506 357.499 84.3408 357.863 84.259L360.172 92.9175L365.422 88.3237C365.513 88.244 365.63 88.2 365.751 88.2H368.528C368.747 88.2 368.94 88.3424 369.005 88.5515L371.385 96.2H366V99.2H372.318L373.251 102.2H368V105.2H374.185L375.188 108.426C375.528 109.517 376.198 110.475 377.107 111.167L383.802 116.268C382.16 116.734 379.814 117.2 377 117.2C372.971 117.2 370.436 116.345 368.591 114.991C366.708 113.609 365.37 111.587 363.954 108.88C363.491 107.993 363.025 107.043 362.533 106.039C360.202 101.284 357.287 95.3384 351.257 89.2987L356.863 84.7444ZM348.601 90.8922C354.608 96.7229 357.395 102.394 359.794 107.276C360.303 108.312 360.795 109.312 361.296 110.27C362.755 113.063 364.354 115.603 366.816 117.409C369.314 119.243 372.529 120.2 377 120.2C380.165 120.2 382.806 119.673 384.662 119.142C385.125 119.01 385.54 118.877 385.903 118.752C385.72 119.577 385.28 120.593 384.234 121.437C383.107 122.347 381.1 123.2 377.5 123.2C370.69 123.2 365.891 121.862 362.341 119.458C358.796 117.057 356.325 113.473 354.393 108.643C354.377 108.604 354.36 108.566 354.342 108.529C352.654 105.155 350.447 103.305 348.658 101.807C348.159 101.388 347.692 100.997 347.278 100.608C346.317 99.7029 345.531 98.7471 344.964 97.3769C344.466 96.1724 344.108 94.5732 344.02 92.3016L348.601 90.8922Z\" fill=\"white\"/>\\n<path d=\"M377.942 87.3026L378.906 88.4517C381.561 91.6155 383 95.6026 383 99.7005L383 101.2L380 101.2L380 99.7004C380 96.305 378.807 93.0015 376.608 90.38L375.644 89.2309L377.942 87.3026Z\" fill=\"white\"/>\\n<path d=\"M383.502 84.5942L382.538 83.4452L380.24 85.3735L381.204 86.5226C382.934 88.5849 384.242 90.9678 385.051 93.5353C385.681 95.533 386 97.612 386 99.6997V101.2H389V99.6997C389 97.3065 388.634 94.9232 387.912 92.6332C386.984 89.6899 385.486 86.9583 383.502 84.5942Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ji6vp\",\"data-framer-name\":\"Bottom Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhopsv\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmbbvs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Strava\"})})},Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8pkw38\",\"data-styles-preset\":\"lZbFXiRTe\",children:\"Strava\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Strava\"})}),className:\"framer-1ynaoqw\",\"data-framer-name\":\"Strava\",fonts:[\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wu5b7f\",\"data-framer-name\":\"New Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tcmVndWxhcg==\",\"--framer-font-family\":'\"Chivo\", \"Chivo Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, rgb(41, 58, 32))\"},children:\"New!\"})}),className:\"framer-nll0ud\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Chivo-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w25ns7\",\"data-styles-preset\":\"QCVA72OzD\",children:\"Style exploration and production on 1440 icon assets in 4 sizes\"})}),className:\"framer-1cv7b0v\",\"data-framer-name\":\"Production icon design on 4500 icon assets in 9 different sizes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jgsArEgAZ\"},implicitPathVariables:undefined},{href:{webPageId:\"jgsArEgAZ\"},implicitPathVariables:undefined},{href:{webPageId:\"jgsArEgAZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 30px)`},Pj45KAzUa:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"1290px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-pq7dky-container\",nodeId:\"rex47s7hl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks[1]},Pj45KAzUa:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"rex47s7hl\",layoutId:\"rex47s7hl\",style:{width:\"100%\"},variant:\"l_c6HJExb\",width:\"100%\",Xt_kqkOhf:resolvedLinks[0]})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2oyckp\",\"data-framer-name\":\"Featured Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-luhwjb\",\"data-framer-name\":\"Netflix Icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tdzaxp\",\"data-framer-name\":\"Top Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:70.5,intrinsicWidth:195,pixelHeight:141,pixelWidth:390,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6ABFiZc6lI5Pea53g8br7wlDo.svg\"},className:\"framer-jfyz3o\",\"data-framer-name\":\"Netflix_Thumbnail\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6uxe6\",\"data-framer-name\":\"Bottom Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ysrn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Netflix\"})})},Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8pkw38\",\"data-styles-preset\":\"lZbFXiRTe\",children:\"Netflix\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Netflix\"})}),className:\"framer-1iyaug0\",\"data-framer-name\":\"Netflix\",fonts:[\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w25ns7\",\"data-styles-preset\":\"QCVA72OzD\",children:\"Production icon design on 4500 icon assets in 9 different sizes\"})}),className:\"framer-yewsk4\",\"data-framer-name\":\"Production icon design on 4500 icon assets in 9 different sizes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined},{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined},{href:{webPageId:\"uudaiw4d6\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 30px)`},Pj45KAzUa:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"605px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2sazu-container\",nodeId:\"oFGs7ru0n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks1[1]},Pj45KAzUa:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"oFGs7ru0n\",layoutId:\"oFGs7ru0n\",style:{width:\"100%\"},variant:\"l_c6HJExb\",width:\"100%\",Xt_kqkOhf:resolvedLinks1[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flw3kh\",\"data-framer-name\":\"Twitter Icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yeb5d6\",\"data-framer-name\":\"Top Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 300 98\"><path d=\"M 25.619 32.087 C 27.53 32.087 29.086 30.578 29.086 28.721 L 29.086 13.241 L 15.96 13.241 L 13.186 9.202 L 1.351 9.202 L 1.351 28.721 C 1.351 30.578 2.907 32.087 4.818 32.087 Z M 40.901 12.568 C 40.901 9.97 43.078 7.856 45.754 7.856 L 61.009 7.856 C 63.685 7.856 65.862 9.97 65.862 12.568 C 65.862 15.166 63.685 17.279 61.009 17.279 L 54.768 17.279 L 54.768 20.76 L 56.561 19.02 L 58.522 20.924 L 53.381 25.913 L 48.241 20.924 L 50.201 19.02 L 51.995 20.76 L 51.995 17.279 L 45.754 17.279 C 43.075 17.276 40.904 15.169 40.901 12.568 Z M 41.456 31.414 L 53.381 36.238 L 65.307 31.414 L 53.381 26.59 Z M 86.528 30.703 C 84.461 31.229 82.217 31.501 79.716 31.501 L 78.098 31.501 L 78.098 26.79 L 79.716 26.79 C 81.416 26.79 82.236 27.155 82.812 27.514 C 84.121 28.329 85.273 29.434 86.528 30.703 Z M 90.436 10.869 C 88.926 11.847 87.512 12.744 85.659 13.366 C 84.105 13.89 82.246 14.223 79.716 14.223 L 78.098 14.223 L 78.098 23.646 L 79.716 23.646 C 81.704 23.646 83.197 24.022 84.556 24.866 C 86.402 26.012 87.889 27.528 89.465 29.133 L 89.632 29.303 C 91.002 30.697 92.713 32.44 94.806 33.615 C 97.484 35.119 100.455 35.95 103.883 36.159 L 105.601 36.263 L 105.601 28.422 L 104.119 28.297 C 102.364 28.151 100.947 27.748 99.662 27.025 C 97.811 25.987 96.373 24.57 94.685 22.824 L 94.457 22.588 C 93.048 21.128 91.591 19.617 89.789 18.499 C 89.211 18.139 88.605 17.845 87.998 17.558 C 89.326 17.05 90.447 16.444 91.477 15.821 C 92.05 15.475 92.601 15.125 93.132 14.783 C 96.069 12.88 98.842 11.081 105.601 11.081 L 105.601 6.373 C 97.371 6.373 93.688 8.762 90.436 10.869 Z M 95.584 15.733 C 94.672 16.053 93.825 16.456 93.008 16.887 C 94.47 18.015 95.703 19.289 96.821 20.446 L 97.044 20.677 C 98.413 22.092 99.593 23.242 100.901 24.062 C 101.944 23.858 103.001 23.732 104.063 23.685 L 105.6 23.61 L 105.6 14.191 L 103.916 14.259 C 100.783 14.383 98.057 14.865 95.584 15.732 Z M 135.643 33.433 L 114.886 33.433 L 127.797 10.581 L 135.644 33.433 Z M 138.197 32.356 L 144.01 25.302 L 130.971 11.313 Z M 159.565 29.395 L 180.366 29.395 L 180.366 33.433 L 159.565 33.433 C 157.269 33.43 155.408 31.624 155.405 29.395 L 155.405 9.202 L 159.565 9.202 Z M 176.209 26.702 L 180.37 26.702 L 180.37 21.318 L 176.209 21.318 Z M 162.34 18.625 L 162.34 26.702 L 166.501 26.702 L 166.501 18.625 Z M 169.278 11.895 L 169.278 26.702 L 173.438 26.702 L 173.438 11.895 Z M 194.564 20.645 L 194.564 17.139 C 195.313 17.647 196.118 18.07 196.965 18.402 C 199.517 19.416 202.85 19.972 206.352 19.972 C 209.853 19.972 213.187 19.416 215.74 18.4 C 216.586 18.07 217.391 17.647 218.139 17.139 L 218.139 20.646 C 218.139 21.294 217.824 21.921 217.204 22.502 C 216.615 23.057 215.768 23.555 214.688 23.986 C 212.464 24.87 209.502 25.358 206.353 25.358 C 203.204 25.358 200.241 24.871 198.017 23.988 C 196.937 23.556 196.09 23.059 195.5 22.502 C 194.88 21.919 194.566 21.295 194.566 20.645 Z M 206.352 28.048 C 202.85 28.048 199.517 27.491 196.965 26.478 C 196.118 26.146 195.313 25.722 194.564 25.215 L 194.564 30.066 C 194.564 32.669 199.842 34.778 206.352 34.778 C 212.861 34.778 218.139 32.669 218.139 30.066 L 218.139 25.215 C 217.39 25.721 216.586 26.144 215.74 26.476 C 213.188 27.491 209.855 28.048 206.352 28.048 Z M 195.499 14.425 C 196.088 14.98 196.936 15.478 198.016 15.911 C 200.24 16.793 203.201 17.281 206.352 17.281 C 209.502 17.281 212.462 16.795 214.687 15.909 C 215.766 15.479 216.613 14.982 217.203 14.425 C 217.822 13.844 218.137 13.218 218.137 12.569 C 218.137 9.967 212.859 7.858 206.35 7.858 C 199.841 7.858 194.564 9.966 194.564 12.568 C 194.564 13.217 194.879 13.843 195.499 14.425 Z M 255.32 11.221 C 253.409 11.221 251.853 12.731 251.853 14.587 C 251.853 14.695 251.875 14.796 251.886 14.901 L 248.569 16.985 C 247.409 15.88 245.848 15.261 244.223 15.26 C 243.37 15.26 242.527 15.431 241.746 15.763 L 238.97 12.088 C 239.23 11.615 239.368 11.087 239.372 10.55 C 239.372 8.694 237.816 7.185 235.905 7.185 C 233.995 7.185 232.438 8.694 232.438 10.55 C 232.438 12.406 233.995 13.915 235.905 13.915 C 236.22 13.915 236.519 13.861 236.81 13.784 L 239.525 17.378 C 238.578 18.44 237.982 19.808 237.982 21.321 C 237.982 22.175 238.169 22.987 238.502 23.725 L 236.163 25.388 C 235.474 24.93 234.658 24.684 233.822 24.685 C 231.526 24.688 229.665 26.495 229.662 28.724 C 229.662 30.951 231.529 32.762 233.822 32.762 C 236.116 32.762 237.982 30.951 237.982 28.724 C 237.976 28.332 237.911 27.944 237.788 27.571 L 240.161 25.881 C 241.255 26.801 242.664 27.378 244.223 27.378 C 245.049 27.379 245.868 27.219 246.63 26.907 L 248.19 29.027 C 247.866 29.544 247.693 30.137 247.689 30.742 C 247.689 32.598 249.246 34.108 251.156 34.108 C 253.068 34.108 254.623 32.598 254.623 30.742 C 254.623 28.886 253.068 27.377 251.156 27.377 C 250.911 27.377 250.671 27.404 250.44 27.451 L 248.873 25.319 C 249.852 24.25 250.464 22.857 250.464 21.319 C 250.464 20.591 250.31 19.9 250.067 19.253 L 253.238 17.26 C 253.835 17.707 254.567 17.95 255.321 17.952 C 257.232 17.952 258.788 16.443 258.788 14.587 C 258.788 12.731 257.232 11.221 255.321 11.221 Z M 297.246 19.971 L 298.697 19.971 L 295.563 29.724 C 295.116 31.133 293.772 32.093 292.254 32.088 L 270.511 32.088 L 275.965 19.972 L 297.246 19.972 Z M 274.15 17.279 L 295.171 17.279 L 295.171 13.241 L 283.433 13.241 L 280.659 9.202 L 268.823 9.202 L 268.823 29.112 Z M 1.649 71.671 L 1.649 91.19 C 1.649 93.046 3.205 94.555 5.115 94.555 L 25.916 94.555 C 27.827 94.555 29.383 93.046 29.383 91.19 L 29.383 75.709 L 16.257 75.709 L 13.484 71.671 Z M 26.61 78.401 L 26.61 91.19 C 26.61 91.56 26.299 91.863 25.916 91.863 L 5.115 91.863 C 4.733 91.862 4.422 91.561 4.422 91.19 L 4.422 74.363 L 12.001 74.363 L 14.774 78.401 Z M 61.306 79.747 C 63.982 79.747 66.16 77.634 66.16 75.036 C 66.16 72.438 63.982 70.324 61.306 70.324 L 46.052 70.324 C 43.373 70.327 41.201 72.435 41.198 75.036 C 41.198 77.634 43.375 79.747 46.052 79.747 L 52.292 79.747 L 52.292 83.228 L 50.499 81.488 L 48.538 83.391 L 53.678 88.382 L 58.819 83.391 L 56.858 81.488 L 55.065 83.228 L 55.065 79.747 L 61.305 79.747 Z M 43.972 75.036 C 43.972 73.922 44.904 73.017 46.052 73.017 L 61.306 73.017 C 62.452 73.017 63.386 73.922 63.386 75.036 C 63.386 76.149 62.452 77.055 61.306 77.055 L 46.052 77.055 C 44.904 77.054 43.973 76.15 43.972 75.036 Z M 53.679 89.058 L 41.753 93.882 L 53.679 98.705 L 65.605 93.882 Z M 48.964 93.882 L 53.679 91.974 L 58.394 93.882 L 53.679 95.789 Z M 102.94 73.017 L 102.94 70.324 C 96.096 70.324 93.031 72.312 90.327 74.065 C 87.853 75.669 85.716 77.055 80.753 77.055 L 79.366 77.055 L 79.366 91.863 L 80.753 91.863 C 83.678 91.863 86.199 91.443 88.466 90.597 L 88.769 90.904 C 90.215 92.383 91.711 93.913 93.687 95.022 C 95.985 96.313 98.53 97.025 101.468 97.204 L 102.94 97.293 L 102.94 89.225 L 101.672 89.12 C 100.166 88.994 98.953 88.648 97.851 88.03 C 97.116 87.618 96.45 87.105 95.81 86.539 C 96.254 86.312 96.712 86.113 97.182 85.942 C 98.44 85.502 99.894 85.247 101.623 85.163 L 102.94 85.098 L 102.94 75.679 L 101.496 75.737 C 98.809 75.844 96.474 76.259 94.354 77.001 C 92.55 77.635 91.005 78.604 89.511 79.544 C 89.145 79.774 88.785 79.999 88.427 80.217 C 87.615 79.786 86.763 79.431 85.881 79.156 C 88.447 78.502 90.185 77.395 91.867 76.305 C 94.474 74.614 96.937 73.017 102.94 73.017 Z M 82.139 89.137 L 82.139 86.566 C 83.471 86.741 84.304 87.152 84.902 87.522 C 85.368 87.812 85.8 88.144 86.225 88.493 C 84.973 88.844 83.636 89.058 82.139 89.135 Z M 91.021 81.804 C 92.446 80.909 93.793 80.062 95.297 79.533 C 96.764 79.019 98.369 78.684 100.167 78.519 L 100.167 82.573 C 98.712 82.722 97.419 82.998 96.24 83.411 C 95.363 83.719 94.547 84.111 93.767 84.543 L 93.718 84.493 C 92.845 83.593 91.944 82.681 90.937 81.854 L 91.019 81.803 Z M 87.893 82.99 C 89.301 83.862 90.464 85.066 91.699 86.339 C 93.106 87.791 94.561 89.292 96.464 90.36 C 97.577 90.986 98.797 91.409 100.167 91.643 L 100.167 94.369 C 98.281 94.104 96.605 93.551 95.074 92.691 C 93.446 91.776 92.151 90.453 90.78 89.05 C 89.468 87.71 88.112 86.322 86.397 85.257 C 85.131 84.469 83.754 84.012 82.139 83.852 L 82.139 81.148 C 84.302 81.326 86.193 81.933 87.892 82.989 Z M 144.307 87.771 L 129.034 71.383 L 115.183 95.901 L 137.606 95.901 Z M 137.414 91.826 L 132.94 79.588 L 140.667 87.88 Z M 129.041 76.97 L 134.976 93.209 L 119.868 93.209 Z M 159.169 93.209 L 180.664 93.209 L 180.664 95.901 L 159.169 95.901 C 157.256 95.899 155.705 94.394 155.703 92.536 L 155.703 73.017 L 158.476 73.017 L 158.476 92.536 C 158.476 92.906 158.787 93.209 159.169 93.209 Z M 162.638 81.094 L 162.638 90.517 L 165.411 90.517 L 165.411 81.094 Z M 176.506 83.786 L 176.506 90.517 L 179.279 90.517 L 179.279 83.786 Z M 169.575 74.363 L 169.575 90.517 L 172.349 90.517 L 172.349 74.363 Z M 206.352 97.247 C 212.554 97.247 218.832 95.397 218.832 91.863 L 218.832 75.709 C 218.832 72.174 212.554 70.324 206.352 70.324 C 200.148 70.324 193.871 72.174 193.871 75.709 L 193.871 91.863 C 193.871 95.397 200.148 97.247 206.352 97.247 Z M 206.352 73.017 C 212.657 73.017 216.059 74.928 216.059 75.709 C 216.059 76.49 212.657 78.401 206.352 78.401 C 200.046 78.401 196.644 76.49 196.644 75.709 C 196.644 74.928 200.046 73.017 206.352 73.017 Z M 196.644 79.218 C 201.46 81.695 211.242 81.695 216.059 79.218 L 216.059 83.786 C 216.059 84.567 212.657 86.478 206.352 86.478 C 200.046 86.478 196.644 84.567 196.644 83.786 Z M 196.644 87.295 C 201.46 89.772 211.242 89.772 216.059 87.295 L 216.059 91.863 C 216.059 92.644 212.657 94.555 206.352 94.555 C 200.046 94.555 196.644 92.644 196.644 91.863 Z M 255.615 73.017 C 253.319 73.019 251.458 74.826 251.455 77.055 C 251.455 77.303 251.485 77.542 251.53 77.778 L 249.461 79.078 C 248.161 77.785 246.379 77.056 244.518 77.055 C 243.52 77.059 242.534 77.274 241.63 77.686 L 239.716 75.153 C 240.135 74.514 240.358 73.773 240.36 73.017 C 240.36 70.79 238.493 68.978 236.2 68.978 C 233.903 68.981 232.042 70.787 232.039 73.017 C 232.039 75.243 233.906 77.055 236.2 77.055 C 236.67 77.055 237.115 76.962 237.536 76.822 L 239.398 79.287 C 238.282 80.482 237.583 82.05 237.583 83.787 C 237.583 84.79 237.826 85.735 238.233 86.591 L 237.03 87.447 C 236.216 86.848 235.213 86.479 234.116 86.479 C 231.437 86.482 229.266 88.59 229.263 91.191 C 229.263 93.789 231.44 95.902 234.116 95.902 C 236.793 95.902 238.97 93.789 238.97 91.191 C 238.97 90.636 238.854 90.113 238.67 89.618 L 239.881 88.757 C 241.112 89.841 242.728 90.517 244.517 90.517 C 245.487 90.515 246.446 90.314 247.33 89.927 L 248.048 90.901 C 247.555 91.577 247.291 92.384 247.29 93.211 C 247.29 95.438 249.157 97.25 251.451 97.25 C 253.744 97.25 255.611 95.438 255.611 93.211 C 255.611 90.985 253.744 89.173 251.451 89.173 C 251.053 89.173 250.676 89.245 250.311 89.346 L 249.58 88.353 C 250.731 87.151 251.451 85.555 251.451 83.788 C 251.447 82.951 251.281 82.122 250.961 81.345 L 252.924 80.112 C 253.652 80.717 254.583 81.096 255.614 81.096 C 257.907 81.096 259.774 79.284 259.774 77.057 C 259.774 74.831 257.907 73.019 255.614 73.019 Z M 236.201 74.363 C 235.437 74.363 234.814 73.759 234.814 73.017 C 234.814 72.273 235.437 71.671 236.201 71.671 C 236.965 71.671 237.588 72.273 237.588 73.017 C 237.588 73.759 236.965 74.363 236.201 74.363 Z M 234.118 93.209 C 232.97 93.208 232.039 92.304 232.038 91.19 C 232.038 90.076 232.971 89.171 234.118 89.171 C 235.265 89.171 236.198 90.076 236.198 91.19 C 236.198 92.303 235.265 93.209 234.118 93.209 Z M 251.452 91.863 C 252.216 91.863 252.839 92.466 252.839 93.209 C 252.839 93.952 252.216 94.555 251.452 94.555 C 250.688 94.555 250.065 93.952 250.065 93.209 C 250.065 92.466 250.688 91.863 251.452 91.863 Z M 244.519 87.824 C 242.222 87.821 240.361 86.015 240.358 83.786 C 240.358 81.559 242.225 79.747 244.519 79.747 C 246.812 79.747 248.679 81.559 248.679 83.786 C 248.679 86.012 246.812 87.824 244.519 87.824 Z M 255.615 78.401 C 254.851 78.401 254.229 77.798 254.229 77.055 C 254.229 76.312 254.851 75.709 255.615 75.709 C 256.379 75.709 257.002 76.312 257.002 77.055 C 257.002 77.798 256.379 78.401 255.615 78.401 Z M 294.874 75.709 L 283.135 75.709 L 280.362 71.671 L 268.526 71.671 L 268.526 94.555 L 291.956 94.555 C 293.475 94.56 294.819 93.601 295.267 92.193 L 298.833 81.094 L 294.874 81.094 Z M 278.878 74.363 L 281.651 78.401 L 292.1 78.401 L 292.1 81.094 L 273.854 81.094 L 271.299 86.766 L 271.299 74.363 Z M 295.064 83.786 L 292.619 91.39 C 292.53 91.672 292.261 91.865 291.956 91.863 L 272.032 91.863 L 275.668 83.786 Z\" fill=\"rgb(248,248,248)\"></path></svg>',svgContentId:10495259164},Pj45KAzUa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 295 118\"><path d=\"M 26.261 37.945 C 28.137 37.945 29.665 36.418 29.665 34.541 L 29.665 18.883 L 16.777 18.883 L 14.054 14.798 L 2.434 14.798 L 2.434 34.541 C 2.434 36.418 3.962 37.945 5.838 37.945 Z M 41.265 18.202 C 41.265 15.574 43.403 13.437 46.031 13.437 L 61.008 13.437 C 63.635 13.437 65.773 15.574 65.773 18.202 C 65.773 20.83 63.635 22.968 61.008 22.968 L 54.881 22.968 L 54.881 26.489 L 56.641 24.729 L 58.566 26.654 L 53.519 31.7 L 48.472 26.654 L 50.397 24.729 L 52.158 26.489 L 52.158 22.968 L 46.031 22.968 C 43.4 22.965 41.268 20.833 41.265 18.202 Z M 41.81 37.264 L 53.519 42.143 L 65.228 37.264 L 53.519 32.385 Z M 86.064 36.545 C 84.033 37.077 81.831 37.352 79.375 37.352 L 77.786 37.352 L 77.786 32.587 L 79.375 32.587 C 81.044 32.587 81.85 32.957 82.415 33.319 C 83.7 34.144 84.831 35.262 86.064 36.545 Z M 89.9 16.484 C 88.418 17.474 87.03 18.381 85.21 19.01 C 83.684 19.54 81.859 19.877 79.375 19.877 L 77.786 19.877 L 77.786 29.408 L 79.375 29.408 C 81.327 29.408 82.793 29.787 84.127 30.641 C 85.94 31.8 87.399 33.333 88.947 34.957 L 89.11 35.128 C 90.456 36.538 92.136 38.302 94.19 39.49 C 96.821 41.012 99.737 41.852 103.103 42.063 L 104.79 42.168 L 104.79 34.237 L 103.335 34.112 C 101.612 33.964 100.22 33.556 98.959 32.825 C 97.141 31.775 95.73 30.342 94.072 28.576 L 93.849 28.337 C 92.465 26.86 91.034 25.332 89.265 24.201 C 88.697 23.838 88.103 23.54 87.506 23.25 C 88.81 22.735 89.911 22.123 90.923 21.493 C 91.485 21.143 92.026 20.789 92.548 20.443 C 95.431 18.518 98.153 16.699 104.79 16.699 L 104.79 11.937 C 96.709 11.937 93.093 14.353 89.9 16.484 Z M 94.954 21.404 C 94.06 21.728 93.228 22.135 92.426 22.571 C 93.861 23.712 95.072 25 96.169 26.171 L 96.389 26.404 C 97.733 27.836 98.891 28.998 100.175 29.828 C 101.199 29.622 102.237 29.494 103.279 29.446 L 104.789 29.371 L 104.789 19.844 L 103.135 19.912 C 100.059 20.039 97.383 20.526 94.954 21.403 Z M 134.286 39.306 L 113.906 39.306 L 126.582 16.192 L 134.287 39.306 Z M 136.794 38.217 L 142.501 31.082 L 129.699 16.933 Z M 157.774 35.221 L 178.197 35.221 L 178.197 39.306 L 157.774 39.306 C 155.519 39.303 153.692 37.476 153.689 35.221 L 153.689 14.798 L 157.774 14.798 Z M 174.115 32.498 L 178.2 32.498 L 178.2 27.052 L 174.115 27.052 Z M 160.498 24.329 L 160.498 32.498 L 164.583 32.498 L 164.583 24.329 Z M 167.31 17.521 L 167.31 32.498 L 171.394 32.498 L 171.394 17.521 Z M 192.137 26.371 L 192.137 22.826 C 192.872 23.339 193.662 23.768 194.493 24.103 C 196.999 25.129 200.272 25.691 203.71 25.691 C 207.147 25.691 210.42 25.129 212.927 24.101 C 213.758 23.767 214.548 23.339 215.283 22.826 L 215.283 26.373 C 215.283 27.029 214.973 27.663 214.365 28.25 C 213.786 28.812 212.954 29.315 211.895 29.751 C 209.711 30.645 206.803 31.138 203.711 31.138 C 200.619 31.138 197.711 30.647 195.527 29.753 C 194.466 29.316 193.634 28.813 193.056 28.25 C 192.447 27.66 192.138 27.03 192.138 26.371 Z M 203.71 33.86 C 200.272 33.86 196.999 33.296 194.493 32.271 C 193.662 31.936 192.872 31.507 192.137 30.994 L 192.137 35.901 C 192.137 38.533 197.319 40.666 203.71 40.666 C 210.101 40.666 215.283 38.533 215.283 35.901 L 215.283 30.994 C 214.548 31.506 213.758 31.934 212.927 32.27 C 210.422 33.296 207.149 33.86 203.71 33.86 Z M 193.054 20.081 C 193.633 20.642 194.465 21.146 195.525 21.583 C 197.709 22.476 200.616 22.969 203.71 22.969 C 206.803 22.969 209.709 22.477 211.894 21.582 C 212.953 21.147 213.785 20.644 214.364 20.081 C 214.972 19.493 215.281 18.86 215.281 18.204 C 215.281 15.571 210.099 13.438 203.708 13.438 C 197.317 13.438 192.137 15.571 192.137 18.202 C 192.137 18.859 192.445 19.492 193.054 20.081 Z M 251.788 16.841 C 249.912 16.841 248.384 18.367 248.384 20.245 C 248.384 20.353 248.406 20.456 248.416 20.562 L 245.16 22.67 C 244.021 21.552 242.488 20.926 240.892 20.925 C 240.056 20.925 239.228 21.099 238.461 21.434 L 235.735 17.717 C 235.991 17.238 236.126 16.704 236.13 16.161 C 236.13 14.284 234.602 12.758 232.726 12.758 C 230.85 12.758 229.322 14.284 229.322 16.161 C 229.322 18.039 230.85 19.565 232.726 19.565 C 233.036 19.565 233.329 19.511 233.615 19.433 L 236.28 23.067 C 235.35 24.142 234.766 25.525 234.766 27.055 C 234.766 27.92 234.949 28.741 235.275 29.487 L 232.98 31.169 C 232.303 30.705 231.501 30.458 230.681 30.458 C 228.426 30.461 226.599 32.288 226.596 34.543 C 226.596 36.796 228.429 38.628 230.681 38.628 C 232.934 38.628 234.766 36.796 234.766 34.543 C 234.76 34.147 234.696 33.754 234.575 33.377 L 236.905 31.668 C 237.979 32.598 239.362 33.182 240.892 33.182 C 241.704 33.183 242.508 33.021 243.256 32.706 L 244.788 34.85 C 244.469 35.373 244.299 35.972 244.296 36.585 C 244.296 38.462 245.824 39.988 247.7 39.988 C 249.577 39.988 251.104 38.462 251.104 36.585 C 251.104 34.707 249.577 33.181 247.7 33.181 C 247.46 33.181 247.224 33.208 246.997 33.256 L 245.458 31.1 C 246.42 30.018 247.021 28.61 247.021 27.054 C 247.021 26.317 246.87 25.619 246.631 24.964 L 249.744 22.949 C 250.33 23.4 251.049 23.646 251.789 23.648 C 253.665 23.648 255.193 22.122 255.193 20.245 C 255.193 18.367 253.665 16.841 251.789 16.841 Z M 292.952 25.691 L 294.377 25.691 L 291.3 35.555 C 290.861 36.98 289.542 37.95 288.051 37.945 L 266.703 37.945 L 272.058 25.691 L 292.952 25.691 Z M 270.276 22.968 L 290.915 22.968 L 290.915 18.883 L 279.39 18.883 L 276.667 14.798 L 265.046 14.798 L 265.046 34.936 Z M 2.726 77.981 L 2.726 97.723 C 2.726 99.6 4.254 101.127 6.13 101.127 L 26.553 101.127 C 28.429 101.127 29.957 99.6 29.957 97.723 L 29.957 82.065 L 17.069 82.065 L 14.346 77.981 Z M 27.234 84.788 L 27.234 97.723 C 27.234 98.097 26.928 98.404 26.553 98.404 L 6.13 98.404 C 5.754 98.403 5.45 98.099 5.449 97.723 L 5.449 80.704 L 12.89 80.704 L 15.613 84.788 Z M 61.299 86.15 C 63.926 86.15 66.065 84.012 66.065 81.384 C 66.065 78.757 63.926 76.619 61.299 76.619 L 46.323 76.619 C 43.692 76.622 41.56 78.754 41.557 81.384 C 41.557 84.012 43.695 86.15 46.323 86.15 L 52.449 86.15 L 52.449 89.67 L 50.689 87.91 L 48.763 89.835 L 53.81 94.883 L 58.858 89.835 L 56.933 87.91 L 55.172 89.67 L 55.172 86.15 L 61.299 86.15 Z M 44.28 81.384 C 44.28 80.258 45.196 79.342 46.323 79.342 L 61.299 79.342 C 62.425 79.342 63.342 80.258 63.342 81.384 C 63.342 82.51 62.425 83.427 61.299 83.427 L 46.323 83.427 C 45.195 83.425 44.282 82.512 44.28 81.384 Z M 53.811 95.567 L 42.102 100.446 L 53.811 105.324 L 65.52 100.446 Z M 49.182 100.446 L 53.811 98.516 L 58.44 100.446 L 53.811 102.375 Z M 102.177 79.342 L 102.177 76.619 C 95.457 76.619 92.448 78.63 89.793 80.403 C 87.364 82.024 85.266 83.427 80.393 83.427 L 79.031 83.427 L 79.031 98.404 L 80.393 98.404 C 83.265 98.404 85.74 97.979 87.966 97.124 L 88.264 97.434 C 89.683 98.93 91.152 100.477 93.092 101.599 C 95.349 102.904 97.847 103.625 100.732 103.806 L 102.177 103.896 L 102.177 95.736 L 100.932 95.63 C 99.454 95.502 98.262 95.152 97.181 94.527 C 96.459 94.11 95.805 93.591 95.177 93.019 C 95.612 92.789 96.062 92.588 96.523 92.415 C 97.759 91.97 99.187 91.712 100.884 91.627 L 102.177 91.562 L 102.177 82.035 L 100.759 82.093 C 98.122 82.202 95.829 82.622 93.747 83.372 C 91.976 84.013 90.459 84.993 88.992 85.944 C 88.633 86.177 88.279 86.404 87.928 86.625 C 87.131 86.189 86.294 85.83 85.428 85.552 C 87.947 84.89 89.654 83.771 91.306 82.668 C 93.865 80.958 96.283 79.343 102.177 79.343 Z M 81.754 95.647 L 81.754 93.046 C 83.061 93.223 83.88 93.639 84.467 94.013 C 84.924 94.306 85.349 94.643 85.766 94.995 C 84.536 95.351 83.224 95.567 81.754 95.645 Z M 90.474 88.23 C 91.874 87.325 93.196 86.468 94.673 85.933 C 96.113 85.413 97.689 85.074 99.454 84.908 L 99.454 89.008 C 98.026 89.159 96.756 89.438 95.599 89.855 C 94.738 90.166 93.936 90.563 93.171 91.001 L 93.122 90.949 C 92.265 90.039 91.38 89.116 90.393 88.281 L 90.473 88.228 Z M 87.404 89.43 C 88.786 90.312 89.928 91.529 91.14 92.817 C 92.522 94.285 93.95 95.804 95.818 96.884 C 96.911 97.517 98.109 97.945 99.454 98.181 L 99.454 100.938 C 97.603 100.671 95.957 100.111 94.454 99.242 C 92.855 98.316 91.584 96.978 90.238 95.559 C 88.95 94.203 87.619 92.799 85.934 91.722 C 84.691 90.926 83.34 90.463 81.754 90.301 L 81.754 87.567 C 83.878 87.747 85.735 88.361 87.402 89.428 Z M 142.793 94.265 L 127.797 77.69 L 114.198 102.488 L 136.214 102.488 Z M 136.025 98.367 L 131.632 85.989 L 139.219 94.375 Z M 127.804 83.341 L 133.631 99.765 L 118.797 99.765 Z M 157.385 99.765 L 178.489 99.765 L 178.489 102.488 L 157.385 102.488 C 155.506 102.486 153.983 100.963 153.981 99.084 L 153.981 79.342 L 156.704 79.342 L 156.704 99.084 C 156.704 99.459 157.009 99.765 157.385 99.765 Z M 160.79 87.511 L 160.79 97.042 L 163.513 97.042 L 163.513 87.511 Z M 174.406 90.234 L 174.406 97.042 L 177.129 97.042 L 177.129 90.234 Z M 167.602 80.704 L 167.602 97.042 L 170.325 97.042 L 170.325 80.704 Z M 203.71 103.85 C 209.799 103.85 215.963 101.978 215.963 98.404 L 215.963 82.065 C 215.963 78.49 209.799 76.619 203.71 76.619 C 197.619 76.619 191.456 78.49 191.456 82.065 L 191.456 98.404 C 191.456 101.978 197.619 103.85 203.71 103.85 Z M 203.71 79.342 C 209.9 79.342 213.24 81.276 213.24 82.065 C 213.24 82.855 209.9 84.788 203.71 84.788 C 197.518 84.788 194.179 82.855 194.179 82.065 C 194.179 81.276 197.518 79.342 203.71 79.342 Z M 194.179 85.614 C 198.907 88.12 208.511 88.12 213.24 85.614 L 213.24 90.234 C 213.24 91.024 209.9 92.958 203.71 92.958 C 197.518 92.958 194.179 91.024 194.179 90.234 Z M 194.179 93.784 C 198.907 96.289 208.511 96.289 213.24 93.784 L 213.24 98.404 C 213.24 99.193 209.9 101.127 203.71 101.127 C 197.518 101.127 194.179 99.193 194.179 98.404 Z M 252.078 79.342 C 249.823 79.345 247.996 81.172 247.994 83.427 C 247.994 83.677 248.023 83.919 248.067 84.157 L 246.035 85.473 C 244.759 84.165 243.01 83.427 241.183 83.427 C 240.202 83.431 239.235 83.648 238.347 84.065 L 236.468 81.502 C 236.879 80.857 237.098 80.107 237.1 79.342 C 237.1 77.09 235.267 75.258 233.015 75.258 C 230.761 75.26 228.934 77.087 228.931 79.342 C 228.931 81.594 230.763 83.427 233.015 83.427 C 233.477 83.427 233.914 83.332 234.328 83.191 L 236.155 85.684 C 235.06 86.893 234.374 88.479 234.374 90.235 C 234.374 91.25 234.612 92.206 235.012 93.072 L 233.831 93.938 C 233.031 93.332 232.047 92.958 230.97 92.958 C 228.339 92.961 226.207 95.093 226.204 97.724 C 226.204 100.351 228.342 102.489 230.97 102.489 C 233.598 102.489 235.735 100.351 235.735 97.724 C 235.735 97.163 235.621 96.634 235.441 96.134 L 236.63 95.262 C 237.839 96.358 239.425 97.043 241.181 97.043 C 242.134 97.041 243.075 96.837 243.944 96.445 L 244.648 97.431 C 244.165 98.114 243.905 98.931 243.904 99.767 C 243.904 102.019 245.737 103.852 247.989 103.852 C 250.241 103.852 252.074 102.019 252.074 99.767 C 252.074 97.516 250.241 95.683 247.989 95.683 C 247.599 95.683 247.228 95.755 246.87 95.858 L 246.153 94.854 C 247.283 93.638 247.989 92.023 247.989 90.237 C 247.985 89.39 247.822 88.552 247.509 87.766 L 249.435 86.518 C 250.15 87.13 251.065 87.514 252.077 87.514 C 254.329 87.514 256.161 85.681 256.161 83.429 C 256.161 81.177 254.329 79.344 252.077 79.344 Z M 233.017 80.704 C 232.266 80.704 231.655 80.093 231.655 79.342 C 231.655 78.59 232.266 77.981 233.017 77.981 C 233.766 77.981 234.378 78.59 234.378 79.342 C 234.378 80.093 233.766 80.704 233.017 80.704 Z M 230.971 99.765 C 229.844 99.764 228.93 98.85 228.929 97.723 C 228.929 96.597 229.845 95.681 230.971 95.681 C 232.098 95.681 233.014 96.597 233.014 97.723 C 233.014 98.848 232.098 99.765 230.971 99.765 Z M 247.991 98.404 C 248.741 98.404 249.352 99.013 249.352 99.765 C 249.352 100.516 248.741 101.127 247.991 101.127 C 247.24 101.127 246.629 100.516 246.629 99.765 C 246.629 99.013 247.24 98.404 247.991 98.404 Z M 241.183 94.319 C 238.928 94.316 237.101 92.489 237.098 90.234 C 237.098 87.982 238.931 86.15 241.183 86.15 C 243.435 86.15 245.268 87.982 245.268 90.234 C 245.268 92.486 243.435 94.319 241.183 94.319 Z M 252.078 84.788 C 251.328 84.788 250.717 84.178 250.717 83.427 C 250.717 82.675 251.328 82.065 252.078 82.065 C 252.828 82.065 253.44 82.675 253.44 83.427 C 253.44 84.178 252.828 84.788 252.078 84.788 Z M 290.623 82.065 L 279.098 82.065 L 276.375 77.981 L 264.754 77.981 L 264.754 101.127 L 287.759 101.127 C 289.25 101.132 290.569 100.162 291.009 98.737 L 294.511 87.511 L 290.623 87.511 Z M 274.918 80.704 L 277.641 84.788 L 287.9 84.788 L 287.9 87.511 L 269.986 87.511 L 267.477 93.249 L 267.477 80.704 Z M 290.81 90.234 L 288.409 97.926 C 288.322 98.211 288.057 98.405 287.759 98.404 L 268.197 98.404 L 271.766 90.234 Z\" fill=\"rgb(248,248,248)\"></path></svg>',svgContentId:10787927470}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1629lkc\",\"data-framer-name\":\"Twitter_Thumbnail\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 390 156\"><path d=\"M 34.718 50.164 C 37.198 50.164 39.218 48.146 39.218 45.664 L 39.218 24.964 L 22.18 24.964 L 18.58 19.564 L 3.218 19.564 L 3.218 45.664 C 3.218 48.146 5.238 50.164 7.718 50.164 Z M 54.554 24.064 C 54.554 20.59 57.38 17.764 60.854 17.764 L 80.654 17.764 C 84.128 17.764 86.954 20.59 86.954 24.064 C 86.954 27.538 84.128 30.364 80.654 30.364 L 72.554 30.364 L 72.554 35.019 L 74.881 32.692 L 77.426 35.237 L 70.754 41.909 L 64.081 35.237 L 66.626 32.692 L 68.954 35.019 L 68.954 30.364 L 60.854 30.364 C 57.376 30.36 54.558 27.542 54.554 24.064 Z M 55.274 49.264 L 70.754 55.714 L 86.234 49.264 L 70.754 42.814 Z M 113.779 48.314 C 111.095 49.017 108.183 49.381 104.936 49.381 L 102.836 49.381 L 102.836 43.081 L 104.936 43.081 C 107.143 43.081 108.208 43.57 108.955 44.049 C 110.654 45.139 112.149 46.617 113.779 48.314 Z M 118.851 21.793 C 116.891 23.101 115.056 24.3 112.651 25.132 C 110.633 25.832 108.22 26.278 104.936 26.278 L 102.836 26.278 L 102.836 38.878 L 104.936 38.878 C 107.517 38.878 109.455 39.38 111.219 40.508 C 113.615 42.041 115.545 44.068 117.591 46.214 L 117.807 46.441 C 119.586 48.305 121.807 50.636 124.523 52.207 C 128 54.219 131.856 55.33 136.306 55.609 L 138.536 55.748 L 138.536 45.263 L 136.612 45.097 C 134.334 44.901 132.494 44.362 130.827 43.396 C 128.424 42.007 126.558 40.113 124.367 37.778 L 124.071 37.463 C 122.242 35.51 120.35 33.49 118.011 31.995 C 117.261 31.514 116.475 31.121 115.686 30.737 C 117.41 30.057 118.865 29.247 120.203 28.414 C 120.946 27.952 121.662 27.484 122.351 27.026 C 126.163 24.481 129.762 22.076 138.536 22.076 L 138.536 15.781 C 127.853 15.781 123.072 18.975 118.851 21.793 Z M 125.533 28.297 C 124.35 28.725 123.25 29.263 122.19 29.84 C 124.088 31.348 125.688 33.051 127.139 34.599 L 127.429 34.907 C 129.206 36.8 130.737 38.337 132.435 39.433 C 133.788 39.161 135.16 38.993 136.539 38.929 L 138.534 38.829 L 138.534 26.235 L 136.348 26.325 C 132.282 26.492 128.744 27.136 125.533 28.295 Z M 177.53 51.964 L 150.588 51.964 L 167.346 21.407 L 177.532 51.964 Z M 180.846 50.524 L 188.391 41.092 L 171.466 22.386 Z M 208.582 46.564 L 235.582 46.564 L 235.582 51.964 L 208.582 51.964 C 205.601 51.96 203.186 49.545 203.182 46.564 L 203.182 19.564 L 208.582 19.564 Z M 230.186 42.964 L 235.586 42.964 L 235.586 35.764 L 230.186 35.764 Z M 212.184 32.164 L 212.184 42.964 L 217.584 42.964 L 217.584 32.164 Z M 221.189 23.164 L 221.189 42.964 L 226.589 42.964 L 226.589 23.164 Z M 254.011 34.864 L 254.011 30.177 C 254.983 30.855 256.028 31.421 257.127 31.865 C 260.439 33.221 264.766 33.965 269.311 33.965 C 273.856 33.965 278.183 33.221 281.497 31.863 C 282.596 31.421 283.64 30.855 284.611 30.177 L 284.611 34.866 C 284.611 35.733 284.202 36.571 283.398 37.348 C 282.633 38.09 281.533 38.756 280.132 39.332 C 277.245 40.514 273.4 41.166 269.313 41.166 C 265.225 41.166 261.38 40.516 258.493 39.334 C 257.091 38.757 255.991 38.092 255.226 37.348 C 254.421 36.568 254.013 35.734 254.013 34.864 Z M 269.311 44.764 C 264.766 44.764 260.439 44.019 257.127 42.664 C 256.028 42.22 254.983 41.654 254.011 40.975 L 254.011 47.462 C 254.011 50.942 260.862 53.762 269.311 53.762 C 277.76 53.762 284.611 50.942 284.611 47.462 L 284.611 40.975 C 283.64 41.652 282.595 42.218 281.497 42.662 C 278.185 44.019 273.858 44.764 269.311 44.764 Z M 255.224 26.548 C 255.989 27.29 257.089 27.956 258.491 28.534 C 261.378 29.714 265.221 30.366 269.311 30.366 C 273.4 30.366 277.243 29.716 280.131 28.532 C 281.531 27.957 282.631 27.292 283.396 26.548 C 284.2 25.771 284.609 24.934 284.609 24.066 C 284.609 20.586 277.758 17.766 269.309 17.766 C 260.86 17.766 254.011 20.585 254.011 24.064 C 254.011 24.932 254.419 25.769 255.224 26.548 Z M 332.872 22.264 C 330.392 22.264 328.372 24.282 328.372 26.764 C 328.372 26.908 328.401 27.044 328.415 27.184 L 324.11 29.97 C 322.604 28.493 320.578 27.665 318.468 27.664 C 317.362 27.664 316.267 27.893 315.254 28.337 L 311.65 23.423 C 311.988 22.79 312.167 22.084 312.172 21.366 C 312.172 18.884 310.152 16.866 307.672 16.866 C 305.192 16.866 303.172 18.884 303.172 21.366 C 303.172 23.848 305.192 25.866 307.672 25.866 C 308.081 25.866 308.469 25.794 308.847 25.691 L 312.37 30.496 C 311.141 31.916 310.368 33.745 310.368 35.768 C 310.368 36.911 310.611 37.996 311.042 38.983 L 308.007 41.207 C 307.112 40.594 306.053 40.266 304.968 40.267 C 301.987 40.271 299.572 42.686 299.568 45.667 C 299.568 48.645 301.991 51.067 304.968 51.067 C 307.946 51.067 310.368 48.645 310.368 45.667 C 310.36 45.143 310.275 44.624 310.116 44.125 L 313.196 41.866 C 314.616 43.096 316.445 43.868 318.468 43.868 C 319.541 43.869 320.604 43.654 321.593 43.238 L 323.618 46.073 C 323.197 46.764 322.972 47.557 322.968 48.366 C 322.968 50.848 324.988 52.866 327.468 52.866 C 329.949 52.866 331.968 50.848 331.968 48.366 C 331.968 45.884 329.949 43.866 327.468 43.866 C 327.15 43.866 326.838 43.902 326.538 43.965 L 324.504 41.115 C 325.775 39.685 326.57 37.823 326.57 35.766 C 326.57 34.792 326.37 33.869 326.054 33.003 L 330.17 30.339 C 330.945 30.936 331.896 31.261 332.874 31.264 C 335.354 31.264 337.374 29.246 337.374 26.764 C 337.374 24.282 335.354 22.264 332.874 22.264 Z M 387.293 33.964 L 389.177 33.964 L 385.109 47.005 C 384.528 48.889 382.784 50.172 380.813 50.165 L 352.591 50.165 L 359.67 33.965 L 387.293 33.965 Z M 357.314 30.364 L 384.6 30.364 L 384.6 24.964 L 369.363 24.964 L 365.763 19.564 L 350.4 19.564 L 350.4 46.186 Z M 3.604 103.093 L 3.604 129.193 C 3.604 131.675 5.624 133.693 8.104 133.693 L 35.104 133.693 C 37.584 133.693 39.604 131.675 39.604 129.193 L 39.604 108.493 L 22.566 108.493 L 18.966 103.093 Z M 36.004 112.093 L 36.004 129.193 C 36.004 129.688 35.6 130.093 35.104 130.093 L 8.104 130.093 C 7.607 130.092 7.205 129.69 7.204 129.193 L 7.204 106.693 L 17.041 106.693 L 20.641 112.093 Z M 81.04 113.893 C 84.513 113.893 87.34 111.067 87.34 107.593 C 87.34 104.119 84.513 101.293 81.04 101.293 L 61.24 101.293 C 57.762 101.297 54.944 104.115 54.94 107.593 C 54.94 111.067 57.766 113.893 61.24 113.893 L 69.34 113.893 L 69.34 118.547 L 67.012 116.22 L 64.467 118.765 L 71.139 125.438 L 77.812 118.765 L 75.267 116.22 L 72.939 118.547 L 72.939 113.893 L 81.039 113.893 Z M 58.54 107.593 C 58.54 106.104 59.75 104.893 61.24 104.893 L 81.04 104.893 C 82.528 104.893 83.74 106.104 83.74 107.593 C 83.74 109.081 82.528 110.293 81.04 110.293 L 61.24 110.293 C 59.75 110.291 58.542 109.083 58.54 107.593 Z M 71.14 126.343 L 55.66 132.793 L 71.14 139.242 L 86.62 132.793 Z M 65.02 132.793 L 71.14 130.242 L 77.26 132.793 L 71.14 135.343 Z M 135.082 104.893 L 135.082 101.293 C 126.198 101.293 122.22 103.951 118.71 106.295 C 115.498 108.439 112.725 110.293 106.282 110.293 L 104.482 110.293 L 104.482 130.093 L 106.282 130.093 C 110.079 130.093 113.351 129.531 116.294 128.401 L 116.688 128.811 C 118.564 130.789 120.506 132.834 123.071 134.317 C 126.054 136.043 129.357 136.996 133.171 137.235 L 135.082 137.354 L 135.082 126.566 L 133.435 126.426 C 131.481 126.257 129.906 125.794 128.476 124.968 C 127.522 124.417 126.658 123.731 125.827 122.974 C 126.403 122.671 126.997 122.404 127.607 122.176 C 129.241 121.588 131.128 121.246 133.372 121.134 L 135.082 121.048 L 135.082 108.453 L 133.207 108.53 C 129.72 108.674 126.689 109.229 123.937 110.221 C 121.595 111.068 119.59 112.364 117.651 113.621 C 117.176 113.929 116.708 114.229 116.244 114.521 C 115.19 113.945 114.083 113.47 112.939 113.102 C 116.269 112.228 118.526 110.748 120.709 109.29 C 124.093 107.029 127.29 104.894 135.082 104.894 Z M 108.082 126.448 L 108.082 123.01 C 109.81 123.244 110.892 123.794 111.668 124.289 C 112.273 124.676 112.834 125.121 113.385 125.587 C 111.76 126.057 110.025 126.343 108.082 126.446 Z M 119.61 116.643 C 121.46 115.446 123.208 114.314 125.161 113.606 C 127.065 112.919 129.148 112.471 131.482 112.251 L 131.482 117.671 C 129.594 117.871 127.915 118.24 126.385 118.792 C 125.247 119.203 124.187 119.728 123.175 120.306 L 123.111 120.238 C 121.978 119.035 120.808 117.815 119.502 116.71 L 119.608 116.641 Z M 115.551 118.229 C 117.378 119.395 118.888 121.004 120.49 122.707 C 122.317 124.648 124.205 126.656 126.675 128.084 C 128.12 128.921 129.704 129.486 131.482 129.799 L 131.482 133.444 C 129.034 133.09 126.858 132.35 124.871 131.201 C 122.758 129.977 121.077 128.208 119.298 126.332 C 117.595 124.54 115.835 122.684 113.608 121.26 C 111.965 120.207 110.178 119.595 108.082 119.381 L 108.082 115.766 C 110.889 116.004 113.344 116.816 115.549 118.227 Z M 188.777 124.621 L 168.952 102.709 L 150.973 135.493 L 180.079 135.493 Z M 179.829 130.044 L 174.022 113.68 L 184.052 124.767 Z M 168.961 110.179 L 176.665 131.893 L 157.054 131.893 Z M 208.068 131.893 L 235.968 131.893 L 235.968 135.493 L 208.068 135.493 C 205.584 135.49 203.571 133.477 203.568 130.993 L 203.568 104.893 L 207.168 104.893 L 207.168 130.993 C 207.168 131.488 207.571 131.893 208.068 131.893 Z M 212.57 115.693 L 212.57 128.293 L 216.17 128.293 L 216.17 115.693 Z M 230.571 119.293 L 230.571 128.293 L 234.171 128.293 L 234.171 119.293 Z M 221.575 106.693 L 221.575 128.293 L 225.175 128.293 L 225.175 106.693 Z M 269.311 137.293 C 277.362 137.293 285.511 134.819 285.511 130.093 L 285.511 108.493 C 285.511 103.766 277.362 101.293 269.311 101.293 C 261.259 101.293 253.111 103.766 253.111 108.493 L 253.111 130.093 C 253.111 134.819 261.259 137.293 269.311 137.293 Z M 269.311 104.893 C 277.495 104.893 281.911 107.449 281.911 108.493 C 281.911 109.537 277.495 112.093 269.311 112.093 C 261.126 112.093 256.711 109.537 256.711 108.493 C 256.711 107.449 261.126 104.893 269.311 104.893 Z M 256.711 113.185 C 262.962 116.497 275.659 116.497 281.911 113.185 L 281.911 119.293 C 281.911 120.337 277.495 122.893 269.311 122.893 C 261.126 122.893 256.711 120.337 256.711 119.293 Z M 256.711 123.985 C 262.962 127.297 275.659 127.297 281.911 123.985 L 281.911 130.093 C 281.911 131.137 277.495 133.693 269.311 133.693 C 261.126 133.693 256.711 131.137 256.711 130.093 Z M 333.256 104.893 C 330.275 104.896 327.859 107.312 327.856 110.293 C 327.856 110.624 327.895 110.944 327.953 111.259 L 325.267 112.998 C 323.58 111.269 321.267 110.294 318.852 110.293 C 317.556 110.298 316.276 110.586 315.103 111.137 L 312.619 107.749 C 313.162 106.895 313.451 105.905 313.454 104.893 C 313.454 101.915 311.031 99.493 308.054 99.493 C 305.073 99.497 302.658 101.912 302.654 104.893 C 302.654 107.87 305.077 110.293 308.054 110.293 C 308.664 110.293 309.242 110.168 309.789 109.981 L 312.205 113.277 C 310.757 114.875 309.85 116.972 309.85 119.294 C 309.85 120.635 310.165 121.899 310.694 123.044 L 309.132 124.189 C 308.075 123.388 306.774 122.894 305.35 122.894 C 301.872 122.898 299.054 125.716 299.05 129.194 C 299.05 132.668 301.876 135.494 305.35 135.494 C 308.824 135.494 311.65 132.668 311.65 129.194 C 311.65 128.453 311.499 127.753 311.261 127.092 L 312.833 125.94 C 314.431 127.389 316.528 128.294 318.85 128.294 C 320.109 128.291 321.354 128.022 322.502 127.504 L 323.433 128.807 C 322.794 129.71 322.451 130.789 322.45 131.896 C 322.45 134.873 324.873 137.296 327.85 137.296 C 330.827 137.296 333.25 134.873 333.25 131.896 C 333.25 128.919 330.827 126.496 327.85 126.496 C 327.334 126.496 326.844 126.592 326.371 126.728 L 325.422 125.4 C 326.916 123.793 327.85 121.658 327.85 119.296 C 327.845 118.177 327.63 117.069 327.215 116.029 L 329.762 114.38 C 330.707 115.189 331.916 115.696 333.254 115.696 C 336.231 115.696 338.654 113.273 338.654 110.296 C 338.654 107.319 336.231 104.896 333.254 104.896 Z M 308.056 106.693 C 307.064 106.693 306.256 105.886 306.256 104.893 C 306.256 103.899 307.064 103.093 308.056 103.093 C 309.047 103.093 309.856 103.899 309.856 104.893 C 309.856 105.886 309.047 106.693 308.056 106.693 Z M 305.352 131.893 C 303.862 131.891 302.654 130.683 302.652 129.193 C 302.652 127.704 303.863 126.493 305.352 126.493 C 306.841 126.493 308.052 127.704 308.052 129.193 C 308.052 130.681 306.841 131.893 305.352 131.893 Z M 327.852 130.093 C 328.844 130.093 329.652 130.899 329.652 131.893 C 329.652 132.886 328.844 133.693 327.852 133.693 C 326.86 133.693 326.052 132.886 326.052 131.893 C 326.052 130.899 326.86 130.093 327.852 130.093 Z M 318.852 124.693 C 315.871 124.689 313.456 122.274 313.452 119.293 C 313.452 116.315 315.875 113.893 318.852 113.893 C 321.829 113.893 324.252 116.315 324.252 119.293 C 324.252 122.27 321.829 124.693 318.852 124.693 Z M 333.256 112.093 C 332.264 112.093 331.456 111.286 331.456 110.293 C 331.456 109.299 332.264 108.493 333.256 108.493 C 334.247 108.493 335.056 109.299 335.056 110.293 C 335.056 111.286 334.247 112.093 333.256 112.093 Z M 384.214 108.493 L 368.977 108.493 L 365.377 103.093 L 350.014 103.093 L 350.014 133.693 L 380.427 133.693 C 382.398 133.699 384.142 132.417 384.724 130.534 L 389.353 115.693 L 384.214 115.693 Z M 363.451 106.693 L 367.051 112.093 L 380.614 112.093 L 380.614 115.693 L 356.93 115.693 L 353.614 123.278 L 353.614 106.693 Z M 384.461 119.293 L 381.287 129.461 C 381.171 129.838 380.822 130.095 380.427 130.093 L 354.565 130.093 L 359.284 119.293 Z\" fill=\"rgb(248,248,248)\"></path></svg>',svgContentId:10720590779,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12aetb0\",\"data-framer-name\":\"Bottom Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ve8468\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Twitter\"})})},Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8pkw38\",\"data-styles-preset\":\"lZbFXiRTe\",children:\"Twitter\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Twitter\"})}),className:\"framer-q0ls8p\",\"data-framer-name\":\"Twitter\",fonts:[\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w25ns7\",\"data-styles-preset\":\"QCVA72OzD\",children:\"Transitioning icon library styles and producing icons for multiple libaries\"})}),className:\"framer-1nop5nh\",\"data-framer-name\":\"Transitioning icon library styles and producing icons for multiple libaries\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined},{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined},{href:{webPageId:\"wqAeum3u4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 30px)`},Pj45KAzUa:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"605px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yc910d-container\",nodeId:\"GUcoZvXEv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks2[1]},Pj45KAzUa:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"GUcoZvXEv\",layoutId:\"GUcoZvXEv\",style:{width:\"100%\"},variant:\"l_c6HJExb\",width:\"100%\",Xt_kqkOhf:resolvedLinks2[0]})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hgbg5\",\"data-framer-name\":\"Featured Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jk6lib\",\"data-framer-name\":\"Sonos Icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uxcsh6\",\"data-framer-name\":\"Top Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k8efzx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ogwq7d\",\"data-framer-name\":\"Sonos_Thumbnail_Vector\",fill:\"black\",intrinsicHeight:87,intrinsicWidth:317,svg:'<svg width=\"317\" height=\"87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.22 13.224A11.049 11.049 0 0 0 22 13c-6.075 0-11 4.925-11 11s4.925 11 11 11 11-4.925 11-11c0-.76-.077-1.503-.224-2.22a6.091 6.091 0 0 1-1.865.95 9 9 0 1 1-7.642-7.642 6.09 6.09 0 0 1 .951-1.864Zm-10.613-.831a1 1 0 0 0-1.414 0l-1.8 1.8a1 1 0 1 0 1.414 1.414l1.8-1.8a1 1 0 0 0 0-1.414Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22 17a1 1 0 0 1 1 1v5h3a1 1 0 1 1 0 2h-4a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33 17a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\" fill=\"#FFE424\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M65.785 22.34a5.125 5.125 0 1 0-4.463-7.73l-9.663 6.84a2 2 0 0 0-.577 2.633l1.38 2.39a2 2 0 0 0 2.568.817L60 25.003V33h-3a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2h-3v-8.918l3.785-1.741Zm2.658-6.687a3.125 3.125 0 0 0-5.516.195l2.589 4.485a3.125 3.125 0 0 0 2.927-4.68Zm-15.629 7.43 8.505-6.02 2.34 4.054-9.465 4.356-1.38-2.39ZM90 14a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V15a1 1 0 0 0-1-1h-6Zm1 18V16h4v16h-4Zm11 1a8.986 8.986 0 0 1-3-.512v-2.162a7 7 0 1 0 0-12.653v-2.16a8.986 8.986 0 0 1 3-.513 9 9 0 0 1 9 9 9 9 0 0 1-9 9Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102 22a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm38-8a1 1 0 0 0-2 0v7.586l-1.293-1.293a1 1 0 1 0-1.414 1.414l3 3a1 1 0 0 0 1.414 0l2.848-2.848a6.134 6.134 0 0 1-1.414-1.414L140 21.585V14Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129 25a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-6a2 2 0 0 0-2-2h-6.126a1 1 0 0 0-.968.75 3.003 3.003 0 0 1-5.812 0 1 1 0 0 0-.968-.75H129Zm0 2h5.416a5.002 5.002 0 0 0 9.168 0H149v6h-20v-6Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M150 17a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\" fill=\"#FFE424\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M173 16a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2V16h-13Zm4 12.25a2.25 2.25 0 1 1-2.25-2.25h.25v-4a1 1 0 0 1 1-1h.014c.279 0 1.24 0 2.152.497.483.264.957.668 1.303 1.27.344.601.531 1.342.531 2.233a1 1 0 0 1-2 0c0-.61-.126-.993-.266-1.236a1.376 1.376 0 0 0-.734-.607v5.093Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M168 20a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2V20Zm14 0h-12v12h12V20Zm24-5a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h7c1.982 0 2.913 1.079 3.099 1.435a1.001 1.001 0 0 0 1.802 0C218.087 33.08 219.018 32 221 32h7a1 1 0 0 0 1-1V16a1 1 0 0 0-1-1h-7c-1.844 0-3.169.68-4 1.427-.831-.747-2.156-1.427-4-1.427h-7Zm12 15.723c.775-.422 1.773-.723 3-.723h6V17h-6c-1.745 0-2.675.837-3 1.28v12.443Zm-2-12.444c-.325-.442-1.255-1.279-3-1.279h-6v13h6c1.227 0 2.225.301 3 .723V18.279ZM253 16a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2V16h-11Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M251 18a2 2 0 0 0-2 2h11v11a2 2 0 0 0 2-2v-9a2 2 0 0 0-2-2h-9Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M245 24a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-9a2 2 0 0 1-2-2v-9Zm11 0h-9v9h9v-9Zm40-12a1 1 0 0 0-1 1v5.128l-1.527.678A5.849 5.849 0 0 0 295 29.94V33a1 1 0 1 1-1.867-.5 1 1 0 1 0-1.731-1A3 3 0 1 0 297 33v-3a4 4 0 0 0 0-8v-2.572l1.453-.646A3.544 3.544 0 0 0 297.014 12H296Zm1 2v3.239l.641-.285a1.545 1.545 0 0 0-.627-2.954H297Zm-2 6.317-.714.317a3.85 3.85 0 0 0 .714 7.272v-7.59ZM297 24v4a2 2 0 1 0 0-4ZM16 62a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm9 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Zm-5-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 59.687a2 2 0 0 1-.78-2.43l1.2-3A2 2 0 0 1 13.277 53h13.446a2 2 0 0 1 1.857 1.257l1.2 3a2 2 0 0 1-.78 2.43V62h2a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H13a2 2 0 0 1-2-2V59.687ZM12.077 58l1.2-3h13.446l1.2 3H12.077ZM13 60v11h5v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h5V60H13Zm18 11h-2v-7h2v7Zm30-19.75c.69 0 1.25.558 1.25 1.246v.016a1.248 1.248 0 0 1-1.258 1.238 1.248 1.248 0 0 1-1.242-1.254c0-.688.56-1.246 1.25-1.246Zm2.351 3.486a4 4 0 0 1-4.702 0 1 1 0 1 0-1.175 1.618 6 6 0 0 0 7.053 0 1 1 0 0 0-1.176-1.618ZM55.36 60.95l.002-.002a6.001 6.001 0 0 0 .13-3.706 1 1 0 0 0-1.923.551 4 4 0 0 1-.085 2.467l-.002.004a4 4 0 0 1-1.522 1.948 1 1 0 0 0 1.119 1.658 6 6 0 0 0 2.282-2.92Zm-4.7-.46c.69 0 1.25-.558 1.25-1.246v-.016a1.248 1.248 0 0 0-1.258-1.238 1.248 1.248 0 0 0-1.242 1.254c0 .688.56 1.246 1.25 1.246Zm15.978.458.001.003a6 6 0 0 0 2.282 2.919 1 1 0 1 0 1.119-1.658 4 4 0 0 1-1.522-1.948l-.001-.004a4 4 0 0 1-.086-2.467 1 1 0 1 0-1.922-.551 6.001 6.001 0 0 0 .13 3.706Zm4.702-.458c.69 0 1.25-.558 1.25-1.246v-.016a1.248 1.248 0 0 0-1.258-1.238 1.248 1.248 0 0 0-1.242 1.254c0 .688.56 1.246 1.25 1.246ZM57 64a4 4 0 1 1 6.889 2.767 6.763 6.763 0 0 1 3.185 3.173c.302.629.355 1.432-.046 2.133C65.983 73.903 63.572 75 61 75c-2.572 0-4.983-1.097-6.029-2.927-.4-.7-.347-1.504-.045-2.133a6.763 6.763 0 0 1 3.185-3.173A3.986 3.986 0 0 1 57 64Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 6.118a4.736 4.736 0 0 0-4.272 2.688c-.066.139-.042.237-.02.275C57.284 72.09 58.883 73 61 73s3.716-.911 4.292-1.919c.022-.038.046-.136-.02-.275A4.736 4.736 0 0 0 61 68.118Zm39-11.436A6 6 0 0 0 89 60c0 3.249 2.147 6.133 4.323 8.252 2.215 2.155 4.672 3.72 5.691 4.332a1.91 1.91 0 0 0 1.972 0c1.019-.611 3.476-2.177 5.691-4.332C108.853 66.133 111 63.249 111 60a6 6 0 0 0-11-3.318ZM95 56a4 4 0 0 0-4 4c0 2.398 1.627 4.783 3.718 6.818 2.025 1.971 4.296 3.431 5.282 4.025.986-.594 3.257-2.054 5.282-4.025C107.373 64.783 109 62.398 109 60a4 4 0 0 0-8 0 1 1 0 0 1-2 0 4 4 0 0 0-4-4Zm51-4a1 1 0 0 1 1 1v2h2a1 1 0 0 1 0 2h-2v2a1 1 0 0 1-2 0v-2h-2a1 1 0 0 1 0-2h2v-2a1 1 0 0 1 1-1Zm-6 3.889c0-.302.022-.599.064-.889H129a1 1 0 0 0 0 2h11.101a6.163 6.163 0 0 1-.101-1.111ZM129 69a1 1 0 0 0 0 2h20a1 1 0 0 0 0-2h-20Zm20-5.004L137 64a1 1 0 1 1 0-2l12-.004a1 1 0 1 1 0 2Zm-18.805 1.744 3.274-2.084a.778.778 0 0 0 0-1.312l-3.274-2.083a.778.778 0 0 0-1.195.656v4.166c0 .614.678.986 1.195.656Zm57.184 3.008a11.002 11.002 0 0 0-2.235-14.113A11.001 11.001 0 0 0 178 52a1 1 0 0 0 0 2 8.999 8.999 0 1 1-6 2.292V59a1 1 0 0 0 2 0v-5a.998.998 0 0 0-1-1h-5a1 1 0 0 0 0 2h2.45a10.996 10.996 0 0 0-2.251 12.994 11.001 11.001 0 0 0 19.18.754Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M179 57a1 1 0 0 0-2 0v5.586a2 2 0 0 0 .586 1.414l2.707 2.707a1 1 0 1 0 1.414-1.414L179 62.586V57Zm37.999-2.9a1 1 0 0 0 1-1v-.01a1 1 0 1 0-2 0v.01a1 1 0 0 0 1 1Zm-2.446-.745a1 1 0 0 1-1.879.684l-.004-.01a1 1 0 0 1 1.88-.683l.003.009Zm-3.274 2.827a1 1 0 0 1-1.409-.123l-.006-.008a1 1 0 1 1 1.532-1.285l.006.007a1 1 0 0 1-.123 1.41Zm-1.987 2.368a1 1 0 0 0-.366-1.366l-.009-.005a1 1 0 0 0-1 1.732l.009.005a1 1 0 0 0 1.366-.366Zm-1.057 2.904a1 1 0 0 0-.811-1.158l-.01-.002a1 1 0 1 0-.347 1.97l.009.002a1 1 0 0 0 1.159-.812Zm18.341-1.158a1 1 0 1 0 .347 1.97l.01-.002a1 1 0 0 0-.347-1.97l-.01.002Zm-19.5 3.438a1 1 0 0 1 .348 1.97l-.01.002a1 1 0 1 1-.347-1.97l.009-.002Zm19.847 0a1 1 0 1 0-.347 1.97l.009.002a1 1 0 0 0 .348-1.97l-.01-.002Zm-.849 3.35a1 1 0 1 0-1 1.732l.008.005a1 1 0 1 0 1-1.732l-.008-.005Zm-1.366-8.534a.999.999 0 0 1 .366-1.366l.008-.005a1 1 0 1 1 1 1.732l-.008.005a1 1 0 0 1-1.366-.366Zm-16.782 8.534a1 1 0 0 1 1 1.732l-.009.005a1 1 0 0 1-1-1.732l.009-.005Zm13.399-13.045a1 1 0 0 1-1.88-.684l.004-.01a1 1 0 0 1 1.879.685l-.003.009Zm1.395 2.143a1 1 0 0 0 1.409-.123l.006-.008a1 1 0 1 0-1.532-1.285l-.006.008a1 1 0 0 0 .123 1.408ZM213 63a4 4 0 1 1 6.889 2.767 6.763 6.763 0 0 1 3.185 3.173c.302.629.355 1.432-.045 2.133C221.983 72.903 219.572 74 217 74s-4.983-1.097-6.029-2.927c-.4-.7-.347-1.504-.045-2.133a6.763 6.763 0 0 1 3.185-3.173A3.988 3.988 0 0 1 213 63Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 6.118a4.735 4.735 0 0 0-4.271 2.688c-.067.139-.043.237-.021.275C213.284 71.09 214.883 72 217 72s3.716-.911 4.292-1.919c.022-.038.046-.136-.021-.275A4.735 4.735 0 0 0 217 67.118Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M267 56a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\" fill=\"#FFE424\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M262 61.9v.1h1a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2h-14a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h1v-4a6 6 0 0 1 8.107-5.62 6.072 6.072 0 0 0-.869 1.815A4 4 0 0 0 252 58v4h8v-.85c.607.36 1.281.617 2 .75ZM249 73v-9h14v9h-14Zm40.484-21.415a1 1 0 0 0-1.339-.456 10.995 10.995 0 0 0-5.002 4.989 1 1 0 1 0 1.792.888 8.998 8.998 0 0 1 4.093-4.082c.495-.244.699-.843.456-1.339Zm11.032 0a1 1 0 0 1 1.339-.456 10.995 10.995 0 0 1 5.002 4.989 1 1 0 1 1-1.792.888 8.998 8.998 0 0 0-4.093-4.082 1.001 1.001 0 0 1-.456-1.339ZM299 59a2 2 0 0 1 2 2v3h3a1 1 0 0 1 1 1v7a3 3 0 0 1-3 3h-9a4 4 0 0 1-4-4V61a2 2 0 0 1 2-2h8Zm-6 14a2 2 0 0 1-2-2h8a2 2 0 0 1-2 2h-4Zm-2-12v8h8v-8h-3v2a1 1 0 0 1-2 0v-2h-3Zm10 10v-5h2v6a1 1 0 0 1-1 1h-1.535c.34-.588.535-1.271.535-2Zm-1.192-16.23a1 1 0 1 0-.882 1.794 5.505 5.505 0 0 1 2.503 2.495 1 1 0 1 0 1.792-.888 7.503 7.503 0 0 0-3.413-3.402Zm-9.616 0a1 1 0 1 1 .882 1.794 5.5 5.5 0 0 0-2.503 2.495 1 1 0 1 1-1.792-.888 7.503 7.503 0 0 1 3.413-3.402Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rkryop\",\"data-framer-name\":\"Bottom Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aub8a9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Sonos\"})})},Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8pkw38\",\"data-styles-preset\":\"lZbFXiRTe\",children:\"Sonos\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Sonos\"})}),className:\"framer-1idd0go\",\"data-framer-name\":\"Twitter\",fonts:[\"Inter-Black\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w25ns7\",\"data-styles-preset\":\"QCVA72OzD\",children:\"Built a full icon library from scratch of about 270 icons.\"})}),className:\"framer-pdzf1f\",\"data-framer-name\":\"Transitioning icon library styles and producing icons for multiple libaries\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fF6O9ljjv\"},implicitPathVariables:undefined},{href:{webPageId:\"fF6O9ljjv\"},implicitPathVariables:undefined},{href:{webPageId:\"fF6O9ljjv\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 30px)`},Pj45KAzUa:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"605px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sg45oi-container\",nodeId:\"VMlfE9h9f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks3[1]},Pj45KAzUa:{Xt_kqkOhf:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"VMlfE9h9f\",layoutId:\"VMlfE9h9f\",style:{width:\"100%\"},variant:\"l_c6HJExb\",width:\"100%\",Xt_kqkOhf:resolvedLinks3[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x57vls\",\"data-framer-name\":\"Lingraphica Icons\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n0hzcb\",\"data-framer-name\":\"Top Image\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m3vd65\",\"data-framer-name\":\"Lingraphica_Thumbnail\",fill:\"black\",intrinsicHeight:127,intrinsicWidth:353,svg:'<svg width=\"353\" height=\"127\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M20.962 16.25c-5.414-4.406-5.63-7.627-7.75-14.25h-2.19a6 6 0 0 0-6 5.996L5.002 39C5 40.104 5.895 41 7 41c4 0 7.743 2.167 9.635-.899 1.335-2.162.576-3.873-.175-4.846-.394-.512-.419-1.303.07-1.726l.918-.793c.428-.37.456-1.033-.06-1.263-.937-.417-2.066-.507-3.705-3.15-.394-.637.09-1.433.837-1.479 2.615-.16 3.56-.727 4.487-1.382.6-.424.649-1.386.1-1.872-1.3-1.149-2.804-2.643-2.804-2.643s2.91.66 5.143-1.157c1.14-.93.657-2.612-.484-3.54Z\" fill=\"#B6865C\"/><path d=\"M25.243 32.243a6 6 0 0 0 0-8.486m4.949 13.435c5.077-5.076 5.077-13.308 0-18.384\"/><path d=\"M35.142 13.858c7.81 7.81 7.81 20.474 0 28.284\"/></g><path d=\"M85 22V3\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m99 11-14 6V5l14 6Z\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M85 22 65.707 41.293c-.63.63-.184 1.707.707 1.707H103a1 1 0 0 0 1-1v-4.515a6 6 0 0 0-1.757-4.242L99 30l-3 3-11-11Z\" fill=\"#AAA\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m96 33 2 2\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m81 34-4-4 8-8 7 7-4 4-3-3-4 4Z\" fill=\"#fff\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"146\" cy=\"24\" r=\"19\" fill=\"#fff\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M145.606 5.004A18.94 18.94 0 0 0 132.63 10.5c3.362 1.11 5.853 3.008 9.37 6.5.377-5.936 1.325-9.334 3.606-11.996Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M161.367 35.177A18.914 18.914 0 0 0 165 24c0-3.514-.954-6.805-2.616-9.628C154.959 12.348 149.846 13.148 142 17c9.158 5.669 13.618 10.205 19.367 18.177Z\" fill=\"#E97781\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M141.725 42.517c-7.19-1.653-12.821-7.386-14.327-14.63C131.215 22.432 135.214 20.066 142 17c-1.684 10.344-1.861 16.508-.275 25.517Z\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M140.121 21c-6.55 0-4.792-9 1.758-9s4.792 9-1.758 9Z\" fill=\"#fff\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M227 40h3\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M214 19h2.586a1 1 0 0 0 .707-.293l2.414-2.414a1 1 0 0 1 .707-.293H223a1 1 0 0 1 1 1v7h-5a1 1 0 0 0-1 1v3h-4v-9Zm-24 5v-4a1 1 0 0 1 1-1h8v9h-3a1 1 0 0 1-1-1v-2a1 1 0 0 0-1-1h-4Z\" fill=\"#C1E2F5\"/><path d=\"M203 29v10a1 1 0 0 1-1 1h-15a1 1 0 0 1-1-1V25a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h6a1 1 0 0 1 1 1Z\" fill=\"#6BB6E1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M199 28V12a1 1 0 0 1 1-1h4.086a1 1 0 0 0 .707-.293l2.414-2.414a1 1 0 0 1 .707-.293H213a1 1 0 0 1 1 1v19h3a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-17a1 1 0 0 1-1-1v1h-6V29a1 1 0 0 0-1-1h-3Z\" fill=\"#fff\"/><path d=\"M210 29v10h3V29h-3Zm-10-17v15h2a2 2 0 0 1 2 2V12h-4Z\" fill=\"#6BB6E1\"/><path d=\"M208 13h3m-3 4h3m-3 4h3m-27 19h3m0 0h15a1 1 0 0 0 1-1V29m-16 11a1 1 0 0 1-1-1V25a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v2a1 1 0 0 0 1 1h6m1 1a1 1 0 0 0-1-1m1 1v11h6V29m-7-1h-3V12a1 1 0 0 1 1-1h4.086a1 1 0 0 0 .707-.293l2.414-2.414a1 1 0 0 1 .707-.293H213a1 1 0 0 1 1 1v19h-4m0 0a1 1 0 0 0-1 1m1-1h7a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-17a1 1 0 0 1-1-1V29m-20-1v-1m3 1v-1m0 5v-1m-3 1v-1m32-4v1m4-1v1m-4 3v1m4-1v1m-4 3v1m4-1v1\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M265 28h-10v1.84c-4.236 1.447-7.937 4.69-10 9.16h30c-2.056-4.454-5.758-7.706-10-9.158V28Z\" fill=\"#A67256\"/><path d=\"M255 28v-1a1 1 0 0 0-1 1h1Zm10 0h1a1 1 0 0 0-1-1v1Zm-10 1.84.323.947a1 1 0 0 0 .677-.947h-1ZM245 39l-.908-.42A1 1 0 0 0 245 40v-1Zm30 0v1a.999.999 0 0 0 .908-1.42L275 39Zm-10-9.158h-1a1 1 0 0 0 .676.947l.324-.947ZM255 29h10v-2h-10v2Zm1 .84V28h-2v1.84h2Zm-10.092 9.58c1.949-4.225 5.441-7.276 9.415-8.633l-.646-1.893c-4.498 1.536-8.409 4.971-10.585 9.687l1.816.838ZM275 38h-30v2h30v-2Zm-10.324-7.212c3.981 1.363 7.474 4.423 9.416 8.631l1.816-.838c-2.169-4.7-6.081-8.144-10.584-9.685l-.648 1.892ZM264 28v1.842h2V28h-2Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M265.849 30.16C265.467 31.41 264.172 34 260 34c-4.175 0-5.469-2.593-5.85-3.842-3.878 1.573-7.226 4.674-9.15 8.842h30c-1.917-4.154-5.267-7.262-9.151-8.84Z\" fill=\"#505050\"/><path d=\"m265.849 30.16.377-.927a1 1 0 0 0-1.333.635l.956.292Zm-11.699-.002.956-.292a1 1 0 0 0-1.332-.635l.376.927ZM245 39l-.908-.42A1 1 0 0 0 245 40v-1Zm30 0v1a.999.999 0 0 0 .908-1.42L275 39Zm-15-4c2.312 0 3.923-.725 5.015-1.708a6.313 6.313 0 0 0 1.791-2.84l-1.913-.584a4.31 4.31 0 0 1-1.216 1.938C262.983 32.43 261.86 33 260 33v2Zm-6.806-4.55a6.314 6.314 0 0 0 1.789 2.84c1.092.984 2.703 1.71 5.017 1.71v-2c-1.861 0-2.984-.57-3.678-1.196a4.317 4.317 0 0 1-1.216-1.938l-1.912.584Zm.58-1.219c-4.115 1.669-7.652 4.952-9.682 9.35l1.816.838c1.818-3.938 4.976-6.857 8.618-8.335l-.752-1.853ZM245 40h30v-2h-30v2Zm30.908-1.42c-2.023-4.383-5.562-7.673-9.682-9.347l-.753 1.853c3.648 1.482 6.808 4.409 8.619 8.333l1.816-.838Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M265.884 30.174 260 39l-5.885-8.828A16.747 16.747 0 0 0 250 32.594V39h20v-6.402a16.784 16.784 0 0 0-4.116-2.424Z\" fill=\"#C57E0B\"/><path d=\"m265.884 30.174.378-.926a1 1 0 0 0-1.21.371l.832.555Zm-11.769-.002.832-.555a1 1 0 0 0-1.21-.37l.378.925ZM250 32.594l-.624-.782a1 1 0 0 0-.376.782h1ZM250 39h-1a1 1 0 0 0 1 1v-1Zm20 0v1a1 1 0 0 0 1-1h-1Zm0-6.402h1a1 1 0 0 0-.376-.782l-.624.782Zm-9.168 6.957 5.884-8.826-1.664-1.11-5.884 8.826 1.664 1.11Zm-7.549-8.828 5.885 8.828 1.664-1.11-5.885-8.828-1.664 1.11Zm.454-1.48a17.76 17.76 0 0 0-4.361 2.565l1.248 1.563a15.76 15.76 0 0 1 3.869-2.277l-.756-1.852ZM251 39v-6.406h-2V39h2Zm9-1h-10v2h10v-2Zm10 0h-10v2h10v-2Zm-1-5.402V39h2v-6.402h-2Zm1.624-.782a17.799 17.799 0 0 0-4.362-2.568l-.756 1.852c1.374.562 2.68 1.33 3.87 2.28l1.248-1.564Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M254 31.803V38h-2v-5.61c.565-.36 1.149-.682 1.748-.965l.252.378Zm14 .592V38h-2v-6.197l.25-.376c.6.284 1.185.607 1.75.968Z\" fill=\"#F5CF47\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M250.471 14.81c.315-.21.527-.55.536-.928C251.154 7.632 253.581 4 260 4c6.326 0 8.775 4.895 8.985 11.104.017.51.402.934.875 1.124 3.49 1.406 8.148 8.558 1.079 11.964-.785.378-.94 1.589-.444 2.306.311.449.486.925.503 1.419a.66.66 0 0 1 .002.044c.002.04.004.08.003.12-.021.481-.637 2.919-11.003 2.919-3.067 0-5.28-.213-6.877-.526a90.656 90.656 0 0 1-.992-.166c-1.961-.334-3.013-.514-4.373.273-.631.364-1.449.105-1.441-.623.013-1.394.538-3.303 3.172-3.823a1.24 1.24 0 0 0 .608-.314c.241-.226.518-.443.829-.648a.164.164 0 0 0 .074-.137.17.17 0 0 0-.118-.157c-9.686-3.112-3.848-11.785-.411-14.069Z\" fill=\"#FCE99A\"/><path d=\"m270.998 31.917 1-.036-1 .036Zm.002.044h1l-.001-.048-.999.048Zm0 0h-1l.002.049.998-.048Zm.003.12-1-.042 1 .043Zm-17.88 2.393.192-.982a1.07 1.07 0 0 0-.035-.006l-.157.988Zm-.992-.166.168-.985-.168.985Zm-4.373.273-.501-.866.501.866Zm-1.441-.623-1-.01 1 .01Zm4.565-5.079.306-.952-.306.952Zm20.057-.687.434.9-.434-.9Zm-.444 2.306.822-.57-.822.57Zm-19.569-1.325-.552-.834.552.834Zm-1.437.962-.193-.98.193.98Zm19.496-15.03-.999.033.999-.034Zm.875 1.123-.374.928.374-.928Zm-19.389-1.418.553.833-.553-.833ZM260 3c-3.401 0-5.937.97-7.612 2.952-1.643 1.944-2.305 4.687-2.381 7.906l2 .047c.071-3.03.696-5.227 1.908-6.662C255.095 5.847 256.982 5 260 5V3Zm9.984 12.07c-.108-3.202-.794-6.202-2.384-8.428C265.97 4.362 263.463 3 260 3v2c2.863 0 4.744 1.086 5.973 2.805 1.268 1.774 1.911 4.326 2.013 7.333l1.998-.068Zm1.389 14.023c1.933-.931 3.171-2.174 3.789-3.615.616-1.436.564-2.942.155-4.306-.408-1.357-1.179-2.614-2.074-3.624-.89-1.003-1.957-1.823-3.009-2.247l-.748 1.855c.693.279 1.516.88 2.261 1.72.738.832 1.344 1.84 1.654 2.871.308 1.026.313 2.034-.077 2.942-.387.902-1.217 1.83-2.819 2.602l.868 1.802Zm.625 2.788c-.026-.716-.281-1.374-.681-1.953l-1.645 1.139c.222.32.317.614.327.886l1.999-.072Zm.001.032-.001-.032-1.999.072.003.057 1.997-.097Zm.001.049h-2 2Zm.002.163a2.068 2.068 0 0 0-.003-.212l-1.997.097.001.024v.013-.008l1.999.086ZM260 36c5.232 0 8.15-.61 9.8-1.37 1.713-.79 2.172-1.81 2.202-2.505l-1.999-.086c.01-.214.151.225-1.041.774C267.707 33.392 265.134 34 260 34v2Zm-7.07-.545c1.68.33 3.961.545 7.07.545v-2c-3.025 0-5.17-.21-6.685-.508l-.385 1.963Zm-.967-.16c.306.051.64.108 1.002.166l.315-1.975a80.54 80.54 0 0 1-.981-.163l-.336 1.971Zm-3.705.151c1.006-.581 1.701-.494 3.705-.152l.336-1.971c-1.918-.328-3.327-.6-5.042.392l1.001 1.731Zm-2.941-1.498a1.73 1.73 0 0 0 1.117 1.663c.59.23 1.269.156 1.824-.165l-1.001-1.731a.215.215 0 0 1-.086.029c-.024.002-.026-.003-.009.004a.252.252 0 0 1 .105.089c.044.062.05.117.049.13l-1.999-.02Zm3.979-4.794c-1.557.307-2.593 1.056-3.216 2.023-.602.933-.756 1.969-.763 2.77l1.999.02c.006-.59.122-1.206.444-1.706.301-.467.845-.932 1.923-1.145l-.387-1.962Zm1.078-.815a7.234 7.234 0 0 0-.961.752l1.368 1.46c.194-.183.427-.365.697-.544l-1.104-1.668Zm-.457-14.362c-.974.648-2.064 1.706-2.997 2.96-.934 1.257-1.758 2.775-2.137 4.365-.382 1.6-.323 3.329.605 4.896.923 1.562 2.617 2.807 5.188 3.633l.612-1.904c-2.272-.73-3.481-1.736-4.079-2.747-.595-1.006-.677-2.171-.381-3.414.299-1.253.973-2.526 1.798-3.635.825-1.111 1.754-1.994 2.498-2.488l-1.107-1.666ZM252 29.037a1.17 1.17 0 0 0-.812-1.11l-.612 1.904a.83.83 0 0 1-.576-.795h2Zm18.505-1.746c-.764.368-1.142 1.098-1.254 1.759-.113.66.004 1.414.421 2.017l1.645-1.139a.779.779 0 0 1-.095-.542c.037-.219.13-.283.151-.293l-.868-1.802Zm-19.027 2.716c.32-.212.522-.574.522-.97h-2c0-.288.146-.547.374-.698l1.104 1.668Zm-1.795 1.11a2.249 2.249 0 0 0 1.098-.566l-1.368-1.46a.248.248 0 0 1-.117.063l.387 1.962Zm18.303-15.98c.034 1.014.773 1.726 1.5 2.019l.748-1.855a.527.527 0 0 1-.207-.146c-.041-.05-.042-.08-.043-.085l-1.998.068Zm-17.979-1.279c0 .01-.009.066-.09.12l1.107 1.665c.55-.365.965-.99.983-1.738l-2-.046Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M251 20v-1c2.234-1.241 3.37-2.771 4.345-4.084C256.552 13.292 257.511 12 260 12c2.489 0 3.448 1.292 4.655 2.916.975 1.313 2.111 2.843 4.345 4.084v1a9 9 0 0 1-9 9 9 9 0 0 1-9-9Z\" fill=\"#F4CEAB\"/><path d=\"m251 19-.486-.874A1 1 0 0 0 250 19h1Zm4.345-4.084.803.597-.803-.597Zm9.31 0-.803.597.803-.597ZM269 19h1a1 1 0 0 0-.514-.874L269 19Zm-19 0v1h2v-1h-2Zm1.486.874c2.434-1.352 3.677-3.035 4.662-4.361l-1.606-1.193c-.964 1.299-1.993 2.676-4.028 3.806l.972 1.748Zm4.662-4.361c.623-.84 1.079-1.441 1.643-1.864.515-.386 1.163-.649 2.209-.649v-2c-1.443 0-2.52.383-3.408 1.049-.84.63-1.466 1.486-2.05 2.271l1.606 1.193ZM260 13c1.046 0 1.694.263 2.209.65.564.422 1.02 1.023 1.643 1.863l1.606-1.193c-.584-.785-1.21-1.642-2.05-2.271C262.52 11.383 261.443 11 260 11v2Zm3.852 2.513c.985 1.326 2.228 3.009 4.662 4.361l.972-1.748c-2.035-1.13-3.064-2.507-4.028-3.806l-1.606 1.193ZM270 20v-1h-2v1h2Zm-10 10c5.523 0 10-4.477 10-10h-2a8 8 0 0 1-8 8v2Zm-10-10c0 5.523 4.477 10 10 10v-2a8 8 0 0 1-8-8h-2Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M250.055 10.945C250.582 5.918 254.833 2 260 2c5.167 0 9.418 3.918 9.945 8.945L272 13h-24l2.055-2.055Z\" fill=\"#F5CF47\"/><path d=\"m250.055 10.945.707.707c.162-.162.264-.375.288-.603l-.995-.104Zm19.89 0-.995.104c.024.228.126.441.288.603l.707-.707ZM272 13v1a1 1 0 0 0 .707-1.707L272 13Zm-24 0-.707-.707A1 1 0 0 0 248 14v-1Zm12-12c-5.684 0-10.36 4.31-10.94 9.84l1.99.21A9 9 0 0 1 260 3V1Zm10.94 9.84C270.36 5.31 265.684 1 260 1v2a9 9 0 0 1 8.95 8.05l1.99-.21Zm-1.702.812 2.055 2.055 1.414-1.414-2.055-2.055-1.414 1.414ZM272 12h-12v2h12v-2Zm-12 0h-12v2h12v-2Zm-11.293 1.707 2.055-2.055-1.414-1.414-2.055 2.055 1.414 1.414Z\" fill=\"#303030\"/><path d=\"M262.133 1h-4.266c-.497 0-.919.366-.99.859L256 8h8l-.877-6.141a1.001 1.001 0 0 0-.99-.859Z\" fill=\"#F5CF47\"/><path d=\"m264 8-.877-6.141a1.001 1.001 0 0 0-.99-.859h-4.266c-.497 0-.919.366-.99.859L256 8\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M276.208 22.317a.563.563 0 0 1 .335-.697c2.927-1.085 5.244-.5 6.968 1.223l3.889 3.889a.5.5 0 0 1 0 .707.499.499 0 0 0 0 .707l.353.354c.391.39 1.088.32 1.627.437.181.039.354.13.495.27l.707.707a1 1 0 0 1 0 1.414l-3.536 3.536a1 1 0 0 1-1.414 0l-.707-.707a.991.991 0 0 1-.27-.495c-.117-.54-.047-1.236-.437-1.627l-.354-.353a.5.5 0 0 0-.707 0 .5.5 0 0 1-.707 0l-3.182-3.182a1 1 0 0 1 0-1.415l.786-.785c.232-.233.344-.568.242-.88-.515-1.585-1.962-2.55-3.513-2.668a.641.641 0 0 1-.575-.435Z\" fill=\"#DDD\"/><path d=\"M275.252 22.61a1 1 0 0 0 1.912-.587l-1.912.587Zm4.802 3.69.707.707-.707-.707Zm-.786.785-.707-.707.707.707Zm5.387 6.577-.978.212.978-.212Zm-.437-11.526c-.985-.985-2.169-1.67-3.549-1.94-1.375-.267-2.874-.107-4.474.486l.696 1.875c1.327-.492 2.45-.582 3.396-.397.942.183 1.778.651 2.516 1.39l1.415-1.414Zm3.889 3.889-3.889-3.89-1.415 1.415 3.89 3.89 1.414-1.415Zm.353 1.768-.353-.354-1.414 1.414.353.354 1.414-1.414Zm.708 2.121h-.001l1.415-1.414a2 2 0 0 0-.99-.54l-.424 1.954Zm-.001 0 .708.707 1.414-1.414-.707-.707-1.415 1.414Zm.708.707 1.414 1.414a2 2 0 0 0 0-2.828l-1.414 1.414Zm0 0-3.536 3.536 1.414 1.414 3.536-3.536-1.414-1.414Zm-3.536 3.536-1.414 1.414a2 2 0 0 0 2.828 0l-1.414-1.414Zm0 0-.707-.707-1.414 1.414.707.707 1.414-1.414Zm-.707-.707-1.955.424c.079.363.26.71.541.99l1.414-1.414Zm-2.475-1.061.354.353 1.414-1.414-.354-.353-1.414 1.414Zm-4.596-3.182 3.182 3.182 1.414-1.414-3.182-3.182-1.414 1.414Zm.786-3.614-.786.785 1.414 1.415.786-.786-1.414-1.414Zm-2.64-1.844c1.203.091 2.265.831 2.638 1.98l1.902-.619c-.656-2.02-2.489-3.211-4.389-3.355l-.151 1.994Zm.151-1.994c.087.007.245.07.306.268l-1.912.587c.215.7.845 1.093 1.455 1.14l.151-1.995Zm3.903 5.252c.443-.443.727-1.158.486-1.897l-1.902.619a.224.224 0 0 1-.005-.12c.006-.019.012-.022.007-.016l1.414 1.414Zm6.285 2.2c.428.428.968.548 1.309.602.176.027.361.045.491.06a3.2 3.2 0 0 1 .322.045l.424-1.955a5.046 5.046 0 0 0-.531-.08c-.165-.017-.28-.028-.394-.046-.241-.038-.244-.078-.207-.04l-1.414 1.414Zm-7.071-1.414-1.414-1.415a2 2 0 0 0 0 2.829l1.414-1.414Zm6.718-1.061a1.5 1.5 0 0 0 0 2.121l1.414-1.414a.5.5 0 0 1 0 .707l-1.414-1.414Zm-4.243 4.243a.5.5 0 0 1 .707 0l-1.414 1.414a1.5 1.5 0 0 0 2.121 0l-1.414-1.414Zm4.243-3.536a.499.499 0 0 1 0-.707l1.414 1.414a1.5 1.5 0 0 0 0-2.121l-1.414 1.414Zm-1.061 6.011a3.279 3.279 0 0 1-.046-.322c-.014-.13-.032-.315-.059-.49-.054-.342-.174-.882-.602-1.31l-1.414 1.414c-.038-.037.002-.033.04.207.018.114.029.229.047.394a5.2 5.2 0 0 0 .079.531l1.955-.424Zm-1.061-2.475a1.5 1.5 0 0 0-2.121 0l1.414 1.414a.5.5 0 0 1-.707 0l1.414-1.414Zm-8.376-10.293a1.563 1.563 0 0 0-.943 1.928l1.912-.587a.437.437 0 0 1-.273.534l-.696-1.875Z\" fill=\"#303030\"/><path d=\"M267.247 39.106c4.12-4.12 3.572-2.238 11.31-9.899a1.006 1.006 0 0 1 1.418 0l1.414 1.414c.39.39.388 1.026 0 1.418-7.661 7.738-5.779 7.19-9.9 11.31l-2.828 2.828a2 2 0 0 1-2.828 0l-1.415-1.414a2 2 0 0 1 0-2.828l2.829-2.829Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m336.122 13.717.063.027-.405.203a.502.502 0 0 1-.224.053h-3.566l.472-.135a3.488 3.488 0 0 0 2.038-1.562 3.482 3.482 0 0 0 1.622 1.414Zm-5.583-6.582a3.502 3.502 0 0 1 3.962 1.561 3.5 3.5 0 0 1 4.378-1.413l5.018 2.15c3.522 1.51 3.667 6.448.24 8.162l-4.64 2.32-1.425 5.09.468 1.17c.304.76.46 1.572.46 2.39v.46a5.975 5.975 0 0 1-8.401 5.46L326 32.441V40.5a3.5 3.5 0 1 1-7 0v-5.578l-3.493 2.445a3.5 3.5 0 1 1-4.014-5.734l10-7a3.5 3.5 0 0 1 3.429-.331l1.571.698h.452l.728-5.338a7.66 7.66 0 0 1-.526-.4l-3.435-2.863c-2.776-2.314-1.83-6.79 1.645-7.784l5.182-1.48Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M331.912 11.942a1.5 1.5 0 1 0-.824-2.884l-5.182 1.48c-1.931.552-2.456 3.04-.914 4.325l3.435 2.862a5.5 5.5 0 0 0 1.412.854l-1.089 7.989a.5.5 0 0 1-.496.432h-2.186l-1.959-.87a1.5 1.5 0 0 0-1.469.141l-10 7a1.5 1.5 0 1 0 1.72 2.458L321 31.08v9.42a1.5 1.5 0 0 0 3 0V30h1.432l5.979 2.657A3.974 3.974 0 0 0 337 29.025v-.46c0-.564-.108-1.123-.317-1.647l-.72-1.8 1.849-6.602c.068-.03.136-.063.204-.097l5.226-2.613c1.904-.952 1.824-3.696-.133-4.534l-5.018-2.15a1.5 1.5 0 0 0-1.182 2.757l4.028 1.726-4.263 2.131a2.5 2.5 0 0 1-1.118.264h-3.608a2.498 2.498 0 0 1-1.6-.58l-2.709-2.257 4.273-1.22Z\" fill=\"#EDCB4E\"/><path d=\"m320.002 33 3.774-2.642 1.224.544m8-1.916-8.485-3.77\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M339 10.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M20.7 90c1.23 0 2.369-.273 3.3-.738.931.465 2.07.738 3.3.738 9.588 0 5.7-7-3.3-7s-12.888 7-3.3 7Z\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 82h6v41s-1 1-3 1-3-1-3-1V82Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M27 119s-1 1-3 1-3-1-3-1m6-4s-1 1-3 1-3-1-3-1m-1-9c-4.5 3-5 7-9.5 7-3.081 0-6-4.5 0-8 3.429-2 8.5-3 13.5-3s10.072 1 13.5 3c6 3.5 3.082 8 0 8-4.5 0-5-4-9.5-7\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M16 109.5c-1.5 2-.762 7.5-5 7.5-2.902 0-5.15-3.5.5-7 3.229-2 7.791-3 12.5-3m8 2.5c1.5 2 .762 7.5 5 7.5 2.902 0 5.15-3.5-.5-7-3.229-2-7.791-3-12.5-3M9 94c0 2.21 4.253 4 9.5 4 2.05 0 3.948-.273 5.5-.738 1.552.465 3.45.738 5.5.738 5.247 0 9.5-1.79 9.5-4s-3-4-15-4-15 1.79-15 4Z\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7.5 99c0 2.209 2.426 4 8.735 4 3.883 0 6.058-1.273 7.765-1.738 1.707.465 3.882 1.738 7.765 1.738 6.309 0 8.735-1.791 8.735-4 0-2.21-3.3-5-16.5-5S7.5 96.79 7.5 99Z\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M7 104c0 2.209 2 4 7 4s10-5 10-5 5 5 10 5 7-1.791 7-4-3.4-6-17-6-17 3.791-17 6Zm5-14c0 2.21 3.403 4 7.6 4 1.64 0 3.158-.273 4.4-.738 1.242.465 2.76.738 4.4.738 4.197 0 7.6-1.79 7.6-4s-2.4-4-12-4-12 1.79-12 4Z\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21 88h6v13s1 1 1 3-2 4-2 4h-4s-2-2-2-4 1-3 1-3V88Zm3 24c-1.5 0-2-4-2-4h4s-.5 4-2 4Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M29 87.5c0 1.38-2.239 3.5-5 3.5s-5-2.12-5-3.5 2.239-1.5 5-1.5 5 .12 5 1.5Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M106.102 102.392A4.645 4.645 0 0 0 103.354 94H102a6.002 6.002 0 0 0-5.934 5.11L96 99c-5.119 1.896-27 11-27 11h-7c.107 1.418 1.882 4.376 7 5v2a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-2c4.087 0 8.092-.435 12-1.699V117a2 2 0 0 0 2 2h3a2 2 0 0 0 2-2v-1.135c0-3.54 1.89-6.795 4.782-8.837 2.136-1.508 4.22-3.096 6.32-4.636Z\" fill=\"#ACCF65\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"101.5\" cy=\"98.5\" r=\"1.5\" fill=\"#303030\"/><path d=\"M81.517 91C72.947 91 66 97.78 66 106v1.355c0 2.065 1.572 3.774 3.637 3.753 6.504-.065 20.035-1.43 26.363-11.108 0-3.5-5.913-9-14.483-9Z\" fill=\"#259353\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m91 99 3-3m-3 3-5-3-5 2-5-2m15 3v6m-20-6-2.5-1m2.5 1 5-3m-5 3-1 6m6-9v-4m10 3v-3m-4.566 6.667v5.111M70 105l-4 2.5m4-2.5 5 3m0 0 6-4 6 3.5m-12 .5v2\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#c)\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"m161.283 104.855-.629-.168a1.993 1.993 0 0 0-.686-.076c-2.967.254-4.264 3.716-1.501 5.594.192.131.411.217.636.278l.627.168a2 2 0 0 1 1.414 2.449 2.001 2.001 0 0 0 1.414 2.45l.483.129c1.334.357 2.745-.434 2.865-1.81.334-3.846-1.536-5.081-1.536-5.081s2.236-.134 3.871-3.632c.584-1.251-.242-2.643-1.576-3l-.483-.129a2 2 0 0 0-2.45 1.414 1.999 1.999 0 0 1-2.449 1.414Z\" fill=\"#EFD09F\"/><path d=\"M159.54 107.494C162 94.5 148.5 89 138 89l-3 29c8 0 22.08 2.488 24.54-10.506Z\" fill=\"#C57E0B\"/><path d=\"M147.299 106.295c-2.179 7.857-8.78 12.974-14.744 11.43-5.964-1.544-9.032-9.164-6.853-17.02 2.179-7.857 8.78-12.974 14.744-11.43 5.964 1.543 9.032 9.164 6.853 17.02Z\" fill=\"#E97781\"/><path d=\"M137.584 109.89c-.841 1.774-2.679 2.589-4.107 1.821-1.427-.768-1.902-2.828-1.061-4.601.841-1.774 2.679-2.589 4.107-1.821 1.427.768 1.902 2.828 1.061 4.601Z\" fill=\"#F6C6CA\"/></g><circle cx=\"207\" cy=\"103\" r=\"18\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M198 99s.5-2 3-2 3 2 3 2m6 0s.5-2 3-2 3 2 3 2m-5-7c3 0 5.5 1.5 7 4m-15-4c-3 0-5.5 1.5-7 4\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M207 116c7.593 0 10.682-4.84 10.976-10.999A.964.964 0 0 0 217 104h-20a.964.964 0 0 0-.976 1.001C196.318 111.16 199.407 116 207 116Z\" fill=\"#945D35\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M214.799 113.257C213.045 114.971 210.501 116 207 116c-3.502 0-6.046-1.029-7.799-2.743 1.008-1.376 2.559-2.257 4.299-2.257 1.329 0 2.549.515 3.5 1.371.951-.856 2.17-1.371 3.5-1.371 1.74 0 3.291.881 4.299 2.257Z\" fill=\"#E97781\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M217.578 108h-21.156a17.012 17.012 0 0 1-.398-2.999A.964.964 0 0 1 197 104h20a.966.966 0 0 1 .977 1.001 17.011 17.011 0 0 1-.399 2.999Z\" fill=\"#fff\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M265 83h3v27h-9.515a6 6 0 0 1-4.242-1.757l-.486-.486a6 6 0 0 1-1.757-4.242V96c0-7.18 5.82-13 13-13Z\" fill=\"#D3A771\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M268 94V83h-3a12.948 12.948 0 0 0-8.119 2.846L268 94Z\" fill=\"#DDD\"/><path d=\"M268 83h1a1 1 0 0 0-1-1v1Zm0 11-.591.806A1 1 0 0 0 269 94h-1Zm-11.119-8.154-.625-.78a1.002 1.002 0 0 0 .034 1.587l.591-.807ZM267 83v11h2V83h-2Zm-2 1h3v-2h-3v2Zm-7.494 2.627A11.947 11.947 0 0 1 265 84v-2a13.947 13.947 0 0 0-8.744 3.066l1.25 1.56Zm11.085 6.567-11.118-8.154-1.183 1.613 11.119 8.153 1.182-1.612Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M277.686 100.487c.27-.932.414-1.917.414-2.937 0-5.826-4.723-10.55-10.55-10.55-5.827 0-10.55 4.724-10.55 10.55 0 6.266 2.735 9.264 4.982 11.727.849.93 1.627 1.784 2.163 2.708.729 1.258 1.128 2.378 1.513 3.46.648 1.819 1.257 3.529 3.331 5.603a6.714 6.714 0 0 0 11.461-4.747c0-2.404-.763-4.104-1.542-5.839-1.126-2.508-2.285-5.089-1.222-9.975Z\" fill=\"#B6865C\"/><path d=\"m277.686 100.487-.96-.278c-.007.022-.012.044-.017.066l.977.212Zm-15.704 8.79.739-.674-.739.674Zm2.163 2.708.865-.501-.865.501Zm1.513 3.46-.942.335.942-.335Zm3.331 5.603.707-.707-.707.707Zm9.495 0-.708-.707.708.707Zm.424-10.586-.913.41.913-.41ZM277.1 97.55a9.58 9.58 0 0 1-.374 2.659l1.921.556c.295-1.022.453-2.1.453-3.215h-2ZM267.55 88a9.55 9.55 0 0 1 9.55 9.55h2c0-6.379-5.171-11.55-11.55-11.55v2ZM258 97.55c0-5.274 4.276-9.55 9.55-9.55v-2C261.171 86 256 91.171 256 97.55h2Zm-2 0c0 3.291.721 5.766 1.763 7.754 1.032 1.969 2.362 3.421 3.481 4.647l1.477-1.348c-1.129-1.237-2.29-2.515-3.187-4.227-.887-1.694-1.534-3.85-1.534-6.826h-2Zm5.244 12.401c.866.95 1.565 1.722 2.036 2.535l1.73-1.002c-.6-1.036-1.459-1.971-2.289-2.881l-1.477 1.348Zm2.036 2.535c.678 1.17 1.051 2.212 1.436 3.294l1.884-.67c-.385-1.082-.81-2.281-1.59-3.626l-1.73 1.002Zm1.436 3.294c.661 1.856 1.33 3.74 3.566 5.976l1.414-1.415c-1.912-1.912-2.461-3.449-3.096-5.231l-1.884.67Zm3.566 5.976a7.715 7.715 0 0 0 10.909 0l-1.415-1.415a5.712 5.712 0 0 1-8.08 0l-1.414 1.415Zm10.909 0a7.693 7.693 0 0 0 2.259-5.455h-2a5.692 5.692 0 0 1-1.674 4.04l1.415 1.415Zm2.259-5.455c0-2.638-.851-4.512-1.63-6.249l-1.825.82c.779 1.734 1.455 3.26 1.455 5.429h2Zm-1.63-6.249c-.566-1.26-1.089-2.433-1.362-3.872-.27-1.423-.301-3.154.205-5.48l-1.954-.425c-.557 2.559-.541 4.563-.216 6.278.323 1.7.943 3.072 1.502 4.319l1.825-.82Z\" fill=\"#303030\"/><path d=\"M271 100c2.927-.963 3.851-3.682 1.878-6.25-1.257-1.636-3.154-2.75-5.382-2.75-6.44 0-7.537 6.284-5.689 11\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M271.43 105.112v0c1.06 0 1.919.859 1.919 1.919v.959c0 2.877 2.877 4.412 2.877 6.713 0 3.357-8.226 1.092-8.226-2.703 0-3.836.479-6.714-1.918-8.632-4.479-3.582 0-11.368 7.746-6.888\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M269.215 84H268v3h1.215A5.785 5.785 0 0 1 275 92.785c0 2.187-.549 4.339-1.596 6.258l-2.712 4.973a3 3 0 1 0 2.744 1.233l2.602-4.769A16.076 16.076 0 0 0 278 92.785 8.785 8.785 0 0 0 269.215 84Z\" fill=\"#DDD\"/><path d=\"M268 84v-1a1 1 0 0 0-1 1h1Zm0 3h-1a1 1 0 0 0 1 1v-1Zm5.404 12.043.878.48-.878-.48Zm-2.712 4.973.101.994a.999.999 0 0 0 .777-.516l-.878-.478Zm2.744 1.233-.878-.479a1 1 0 0 0 .067 1.063l.811-.584Zm2.602-4.769.878.479-.878-.479ZM268 85h1.215v-2H268v2Zm1 2v-3h-2v3h2Zm.215-1H268v2h1.215v-2ZM276 92.785A6.785 6.785 0 0 0 269.215 86v2A4.785 4.785 0 0 1 274 92.785h2Zm-1.718 6.737A14.073 14.073 0 0 0 276 92.785h-2c0 2.02-.507 4.007-1.474 5.78l1.756.957Zm-2.712 4.972 2.712-4.972-1.756-.958-2.712 4.973 1.756.957ZM269 107a2 2 0 0 1 1.793-1.99l-.203-1.989A4 4 0 0 0 267 107h2Zm2 2a2 2 0 0 1-2-2h-2a4 4 0 0 0 4 4v-2Zm2-2a2 2 0 0 1-2 2v2a4 4 0 0 0 4-4h-2Zm-.375-1.167c.236.329.375.73.375 1.167h2c0-.87-.279-1.678-.752-2.335l-1.623 1.168Zm2.535-5.832-2.602 4.769 1.756.958 2.602-4.769-1.756-.958Zm1.84-7.216c0 2.521-.633 5.002-1.84 7.216l1.756.958A17.079 17.079 0 0 0 279 92.785h-2ZM269.215 85c4.3 0 7.785 3.485 7.785 7.785h2c0-5.404-4.381-9.785-9.785-9.785v2Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M314.401 117.213a1 1 0 0 0-.598 1.282l1.368 3.758a1 1 0 0 0 1.282.598l4.734-1.723.991 1.227a1 1 0 0 0 1.603-.064l.68-.994a.997.997 0 0 0 .052-1.044l-.153-.28 18.404-6.699a.999.999 0 0 0 .598-1.281l-1.368-3.759a1 1 0 0 0-1.282-.598l-26.311 9.577Z\" fill=\"#E1AB55\"/><path d=\"m313.803 118.495-.939.342.939-.342Zm.598-1.282.342.94-.342-.94Zm.77 5.04-.939.342.939-.342Zm1.282.598.342.94-.342-.94Zm4.734-1.723.779-.628-.449-.556-.672.244.342.94Zm.991 1.227-.779.628.779-.628Zm1.603-.064.825.565-.825-.565Zm.68-.994-.825-.564.825.564Zm.052-1.044.877-.48-.877.48Zm-.153-.28-.342-.94-1.094.399.559 1.021.877-.48Zm18.404-6.699.342.94-.342-.94Zm.598-1.281.94-.342-.94.342Zm-1.368-3.759-.94.342.94-.342Zm-1.282-.598-.342-.939.342.939Zm-25.969 10.517-.684-1.88a2 2 0 0 0-1.195 2.564l1.879-.684Zm1.368 3.758-1.368-3.758-1.879.684 1.368 3.758 1.879-.684Zm0 0-1.879.684a2 2 0 0 0 2.563 1.196l-.684-1.88Zm4.734-1.723-4.734 1.723.684 1.88 4.734-1.724-.684-1.879Zm2.111 1.539-.99-1.227-1.557 1.256.99 1.227 1.557-1.256Zm0 0-1.557 1.256a2 2 0 0 0 3.207-.127l-1.65-1.129Zm.68-.994-.68.994 1.65 1.129.68-.994-1.65-1.129Zm0 0 1.65 1.129a1.996 1.996 0 0 0 .104-2.089l-1.754.96Zm-.153-.28.153.28 1.754-.96-.153-.28-1.754.96Zm18.939-8.118-18.404 6.698.684 1.88 18.404-6.699-.684-1.879Zm0 0 .684 1.879a2 2 0 0 0 1.196-2.563l-1.88.684Zm-1.368-3.759 1.368 3.759 1.88-.684-1.368-3.759-1.88.684Zm0 0 1.88-.684a2 2 0 0 0-2.564-1.195l.684 1.879Zm-26.311 9.577 26.311-9.577-.684-1.879-26.311 9.576.684 1.88Z\" fill=\"#303030\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M342.764 117.213a1 1 0 0 1 .598 1.282l-1.368 3.758a1 1 0 0 1-1.282.598l-26.311-9.576a1 1 0 0 1-.598-1.282l1.368-3.759a1 1 0 0 1 1.282-.598l20.726 7.544.728-1.675a1 1 0 0 1 1.55-.375l1.396 1.141c.266.218.401.557.359.898l-.175 1.415 1.727.629Z\" fill=\"#E1AB55\"/><path d=\"m343.362 118.495.94.342-.94-.342Zm-.598-1.282-.342.94.342-.94Zm-.77 5.04.94.342-.94-.342Zm-1.282.598-.342.94.342-.94Zm-26.311-9.576.342-.94-.342.94Zm-.598-1.282-.939-.342.939.342Zm1.368-3.759.94.342-.94-.342Zm1.282-.598.342-.939-.342.939Zm20.726 7.544-.342.94.884.321.375-.862-.917-.399Zm.728-1.675-.917-.399.917.399Zm1.55-.375.633-.774-.633.774Zm1.396 1.141.633-.774-.633.774Zm.359.898-.992-.123.992.123Zm-.175 1.415-.993-.123-.098.79.749.273.342-.94Zm3.265 2.253a2 2 0 0 0-1.196-2.564l-.684 1.88 1.88.684Zm-1.368 3.758 1.368-3.758-1.88-.684-1.368 3.758 1.88.684Zm-2.564 1.196a2 2 0 0 0 2.564-1.196l-1.88-.684-.684 1.88Zm-26.311-9.577 26.311 9.577.684-1.88-26.311-9.576-.684 1.879Zm-1.195-2.563a2 2 0 0 0 1.195 2.563l.684-1.879-1.879-.684Zm1.368-3.759-1.368 3.759 1.879.684 1.368-3.759-1.879-.684Zm2.563-1.195a1.999 1.999 0 0 0-2.563 1.195l1.879.684.684-1.879Zm20.726 7.543-20.726-7.543-.684 1.879 20.726 7.544.684-1.88Zm-.531-1.134-.729 1.675 1.835.798.728-1.675-1.834-.798Zm3.1-.75a2 2 0 0 0-3.1.75l1.834.798 1.266-1.548Zm1.396 1.141-1.396-1.141-1.266 1.548 1.396 1.142 1.266-1.549Zm.719 1.795a2.002 2.002 0 0 0-.719-1.795l-1.266 1.549 1.985.246Zm-.176 1.415.176-1.415-1.985-.246-.176 1.415 1.985.246Zm1.077-.434-1.727-.629-.684 1.88 1.727.629.684-1.88Z\" fill=\"#303030\"/><path d=\"M330 112c-20.507 0-16.209-24.415-1.349-30.689.829-.35 1.675.626 1.472 1.503-1.342 5.821 1.172 15.403 7.543 7.316.424-.538 1.257-.555 1.623.024C345.224 99.555 341.73 112 330 112Z\" fill=\"#E97781\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M334 106.5c0 4.142-2.015 5.5-4.5 5.5s-4.5-1.358-4.5-5.5c0-4.142 4.5-9.5 4.5-9.5s4.5 5.358 4.5 9.5Z\" fill=\"#F6C6CA\" stroke=\"#303030\" stroke-width=\"2\" stroke-linecap=\"round\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h48v48H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(244)\" d=\"M0 0h48v48H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(122 79)\" d=\"M0 0h48v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kdk9f6\",\"data-framer-name\":\"Bottom Info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ow0q6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-8pkw38\",\"data-styles-preset\":\"lZbFXiRTe\",children:\"Lingraphica\"})}),className:\"framer-4ip30u\",\"data-framer-name\":\"Lingraphica\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w25ns7\",\"data-styles-preset\":\"QCVA72OzD\",children:\"Created a unique icon style and delivered 1500 icons in 4 months\"})}),className:\"framer-jf2jnh\",\"data-framer-name\":\"Created a unique icon style and delivered 1500 icons in 4 months.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined},{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined},{href:{webPageId:\"EjVoO85PE\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 50px) / 2, 1px) - 30px)`},Pj45KAzUa:{width:`calc(${componentViewport?.width||\"100vw\"} - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"605px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1anu79n-container\",nodeId:\"QZ6rDMVi_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks4[1]},Pj45KAzUa:{style:{height:\"100%\",width:\"100%\"},Xt_kqkOhf:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ViewCaseStudy,{height:\"100%\",id:\"QZ6rDMVi_\",layoutId:\"QZ6rDMVi_\",style:{width:\"100%\"},variant:\"l_c6HJExb\",width:\"100%\",Xt_kqkOhf:resolvedLinks4[0]})})})})})})]})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogv4u9 hidden-10xzzdy\",\"data-framer-name\":\"Other Work\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cijvvt\",\"data-styles-preset\":\"TIbPxse0J\",children:\"Other work\"})}),className:\"framer-1e2tb2a\",\"data-framer-name\":\"Other Work\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfri3j\",\"data-framer-name\":\"Other Work Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18h9fpq\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w9lthf\",\"data-framer-name\":\"Twemoji\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:79.5,intrinsicWidth:126,pixelHeight:159,pixelWidth:252,src:\"https://framerusercontent.com/images/wkmw5rniMVhkAhGF9HDjQKOC8.svg\"},className:\"framer-1cnvfxf\",\"data-framer-name\":\"twemoji\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e3hopf\",\"data-framer-name\":\"Lingraphica UI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y551p4\",\"data-framer-name\":\"lingraphica_ui\",fill:\"black\",intrinsicHeight:166,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"166\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m196.188 146.438 12.933-12.288a3 3 0 0 1 4.133 0l12.934 12.288\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M206.688 151.687a1.5 1.5 0 0 1 1.5-1.499h5.999a1.5 1.5 0 0 1 1.501 1.5v9.75h-9v-9.751Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M198.438 144.188v14.249a3 3 0 0 0 2.999 3h19.5a3 3 0 0 0 3.001-3v-14.249\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><g clip-path=\"url(#a)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M225.651 31.688c-3 0-5.807 1.625-7.226-.675-1.001-1.622-.432-2.904.131-3.635.296-.383.314-.977-.052-1.294l-.688-.594c-.321-.278-.343-.775.045-.948.702-.312 1.549-.38 2.778-2.363.295-.477-.068-1.074-.628-1.108-1.961-.121-2.669-.546-3.365-1.037-.45-.318-.487-1.04-.074-1.404.974-.862 2.102-1.982 2.102-1.982s-2.182.495-3.857-.868c-.856-.697-.493-1.96.363-2.655 3.148-2.562 3.953-4.59 4.896-7.688M210.47 25.12a4.499 4.499 0 0 1 0-6.364m-3.712 10.076a9.75 9.75 0 0 1 0-13.789\"/><path d=\"M203.045 11.33c-5.858 5.859-5.858 15.356 0 21.214\"/></g><g clip-path=\"url(#b)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M83.686 141.938c0-5.25-3.354-8.25-7.5-8.25-4.176 0-7.5 3.845-7.5 8.022 0 4.728 1.865 7.13 3.4 8.838.544.605 1.047 1.164 1.413 1.796.523.901.809 1.704 1.085 2.48.464 1.304.9 2.53 2.387 4.016a4.811 4.811 0 0 0 8.216-3.403\"/><path d=\"M78.811 144.188c1.125-.75 1.875-1.5 1.875-3 0-2.626-2.095-4.5-4.5-4.5-1.875 0-3 1.5-3 1.5\"/><path d=\"M80.474 141.03c-4.064-1.68-6.538.518-6.538 2.771 0 1.126.535 1.861 1.5 2.637 1.713 1.375 1.5 3.246 1.5 5.996 0 1.59 1.5 3.003 3 3.004 1.5 0 2.25-1.251 2.25-2.25 0-.757-.381-1.323-.76-1.698-.403-.4-.74-.911-.74-1.48v-.395a1.5 1.5 0 0 1 .83-1.342l.67-.335m9.517-9.235c-4.686 4.686-4.686 12.284 0 16.97\"/><path d=\"M94.356 141.354a8.25 8.25 0 0 0 0 11.667m2.649-9.015a4.5 4.5 0 0 0 0 6.364\"/></g><path d=\"m215.687 71.813-.671.335a.75.75 0 0 0 .671.415v-.75Zm-.879-1.757.671-.335-.671.335Zm-8.121 1.757v.75c.284 0 .543-.16.67-.415l-.67-.335Zm.878-1.757-.671-.335.671.335Zm8.792 1.421-.878-1.756-1.341.67.878 1.757 1.341-.67Zm-.67 1.086h2.25v-1.5h-2.25v1.5Zm2.25 0a2.25 2.25 0 0 1 2.25 2.25h1.5a3.75 3.75 0 0 0-3.75-3.75v1.5Zm2.25 2.25v7.5h1.5v-7.5h-1.5Zm0 7.5a2.25 2.25 0 0 1-2.25 2.25v1.5a3.75 3.75 0 0 0 3.75-3.75h-1.5Zm-2.25 2.25h-13.5v1.5h13.5v-1.5Zm-13.5 0a2.25 2.25 0 0 1-2.25-2.25h-1.5a3.75 3.75 0 0 0 3.75 3.75v-1.5Zm-2.25-2.25v-7.5h-1.5v7.5h1.5Zm0-7.5a2.25 2.25 0 0 1 2.25-2.25v-1.5a3.75 3.75 0 0 0-3.75 3.75h1.5Zm2.25-2.25h2.25v-1.5h-2.25v1.5Zm2.457-2.842-.878 1.756 1.341.671.878-1.756-1.341-.671Zm2.683-1.658a3 3 0 0 0-2.683 1.658l1.341.67a1.503 1.503 0 0 1 1.342-.828v-1.5Zm3.219 0h-3.219v1.5h3.219v-1.5Zm2.683 1.658a3 3 0 0 0-2.683-1.658v1.5a1.5 1.5 0 0 1 1.342.829l1.341-.671Z\" fill=\"#493910\"/><circle cx=\"211.188\" cy=\"77.813\" r=\"3.75\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M214.188 94.912c6.429-.652 11.25-3.36 11.25-6.6 0-1.084-.541-2.11-1.5-3.017m-13.5 9.758c-7.522-.185-13.5-3.132-13.5-6.74 0-1.085.54-2.11 1.5-3.018\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m208.938 92.813 1.719 1.72a.75.75 0 0 1 0 1.06l-1.719 1.72m-135.75-6.559a3.375 3.375 0 1 0 1.416 5.405\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M80.63 68.813c-1.637 0-2.657 1.775-1.832 3.19l2.087 3.577a4.5 4.5 0 0 0 2.885 2.12 4.532 4.532 0 0 0-.082.862v.75c0 1.153.433 2.204 1.145 3h-2.645a9 9 0 0 0-7.526 13.939c.469.713 1.305 1.061 2.158 1.061h15.118c.828 0 1.53-.711 1.133-1.438a3.006 3.006 0 0 0-1.883-1.467v-1.97a5.616 5.616 0 0 0 2.25-4.5 5.61 5.61 0 0 0-1.865-4.183c.18-.036.355-.088.526-.156l3.533-1.413a2.475 2.475 0 0 0 .453-4.357l-4.892-3.262a3 3 0 0 0-1.664-.504h-1.341c-.925 0-1.784.28-2.498.757l-1.036-3.106a4.242 4.242 0 0 0-4.024-2.9Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.17 69.1c.48.188.922.46 1.303.804.236-.21.549-.342.907-.342 1.503 0 2.838.962 3.313 2.388l.704 2.112h1.134a3 3 0 0 1 .46.036l-.875-2.622a4.992 4.992 0 0 0-4.736-3.414c-.92 0-1.697.416-2.21 1.039Z\" fill=\"#493910\"/><path d=\"M86.688 97.313v0a3 3 0 0 0-3-3v0h-.75m0 0a4.5 4.5 0 1 0 0-9\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"90.063\" cy=\"78.938\" r=\"1.125\" fill=\"#493910\"/><path d=\"M85.188 13.688v-6a3 3 0 0 0-3-3h-10.5a3 3 0 0 0-3 3v22.5a3 3 0 0 0 3 3h10.5c.546 0 1.058-.147 1.5-.402m-8.25-1.848h3\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"m86.95 16.465.74.11-.74-.11Zm-.277 1.843.27.7a.75.75 0 0 0 .472-.589l-.742-.111Zm-1.688.975-.274.698a.75.75 0 0 0 .745-.114l-.47-.584Zm-1.733-.681-.275.697.275-.697Zm-1.849.645.65.375-.65-.375Zm-.508.88-.65-.374.65.375Zm.365 1.924-.467.587.467-.587Zm1.455 1.16.742.115a.75.75 0 0 0-.274-.703l-.468.587Zm0 1.952.467.587a.75.75 0 0 0 .274-.702l-.74.115Zm-1.457 1.161.467.587-.467-.587Zm-.365 1.923.65-.375-.65.375Zm.508.88.65-.374-.65.375Zm1.848.647-.274-.698.274.698Zm1.736-.683.47-.583a.75.75 0 0 0-.745-.115l.275.698Zm1.688.976.742-.111a.75.75 0 0 0-.472-.589l-.27.7Zm.276 1.843.742-.112-.742.112Zm3.984 0-.742-.112.742.112Zm.276-1.843-.27-.7a.75.75 0 0 0-.472.588l.742.112Zm1.688-.977.275-.698a.75.75 0 0 0-.746.114l.471.584Zm1.739.684-.275.698.275-.698Zm1.848-.646-.65-.375.65.375Zm.508-.88-.65-.376.65.375Zm-.365-1.924.468-.587-.468.587Zm-1.462-1.164-.74-.115a.75.75 0 0 0 .273.702l.468-.587Zm0-1.947-.467-.586a.75.75 0 0 0-.274.701l.741-.114Zm1.46-1.162-.467-.587.467.587Zm.365-1.923.65-.375-.65.375Zm-.509-.88-.65.374.65-.375Zm-1.848-.646-.274-.698.274.698Zm-1.736.683-.472.583a.75.75 0 0 0 .746.115l-.274-.698Zm-1.688-.977-.742.112a.75.75 0 0 0 .472.588l.27-.7Zm-.276-1.843-.742.11.742-.11Zm-3.242.11a.75.75 0 0 1 .742-.638v-1.5a2.25 2.25 0 0 0-2.226 1.916l1.484.223Zm-.276 1.844.276-1.843-1.484-.223-.276 1.843 1.484.223Zm-1.959 1.448c.445-.36.946-.65 1.487-.86l-.54-1.399a7.042 7.042 0 0 0-1.89 1.092l.943 1.167Zm-2.479-.568 1.734.682.549-1.396-1.734-.681-.549 1.395Zm-.924.323a.75.75 0 0 1 .924-.323l.55-1.395a2.25 2.25 0 0 0-2.773.968l1.3.75Zm-.508.88.508-.88-1.299-.75-.508.88 1.299.75Zm.182.962a.75.75 0 0 1-.182-.961l-1.3-.75a2.25 2.25 0 0 0 .548 2.885l.934-1.174Zm1.456 1.16-1.456-1.16-.934 1.174 1.455 1.159.935-1.174Zm.207 1.563c0-.293.023-.581.067-.861l-1.483-.231a7.088 7.088 0 0 0-.084 1.092h1.5Zm.066.861a5.603 5.603 0 0 1-.066-.86h-1.5c0 .37.029.735.084 1.09l1.482-.23Zm-1.731 1.863 1.457-1.161-.934-1.173-1.458 1.16.935 1.174Zm-.182.961a.75.75 0 0 1 .182-.961l-.935-1.174a2.25 2.25 0 0 0-.547 2.885l1.3-.75Zm.508.88-.508-.88-1.3.75.509.88 1.299-.75Zm.924.324a.75.75 0 0 1-.924-.323l-1.3.75a2.25 2.25 0 0 0 2.773.969l-.55-1.396Zm1.735-.683-1.735.683.549 1.396 1.735-.683-.549-1.396Zm2.233.974a5.541 5.541 0 0 1-1.487-.86l-.943 1.168c.564.455 1.2.826 1.89 1.092l.54-1.4Zm.748 2.431-.276-1.842-1.484.222.276 1.843 1.484-.223Zm.742.64a.75.75 0 0 1-.742-.64l-1.484.223a2.25 2.25 0 0 0 2.226 1.916v-1.5Zm1.016 0h-1.016v1.5h1.016v-1.5Zm.742-.64a.75.75 0 0 1-.742.64v1.5a2.25 2.25 0 0 0 2.225-1.917l-1.483-.223Zm.276-1.843-.276 1.843 1.483.223.277-1.843-1.484-.223Zm1.959-1.448c-.445.359-.946.65-1.487.86l.54 1.4a7.044 7.044 0 0 0 1.89-1.094l-.943-1.166Zm2.484.569-1.738-.684-.55 1.396 1.74.684.548-1.396Zm.924-.323a.75.75 0 0 1-.924.323l-.549 1.396a2.25 2.25 0 0 0 2.772-.97l-1.299-.75Zm.508-.88-.508.88 1.3.75.507-.88-1.299-.75Zm-.182-.962a.75.75 0 0 1 .183.961l1.298.75a2.25 2.25 0 0 0-.546-2.885l-.935 1.174Zm-1.462-1.164 1.462 1.164.935-1.174-1.462-1.164-.935 1.174Zm-.208-1.56a5.5 5.5 0 0 1-.066.858l1.483.23a7.1 7.1 0 0 0 .083-1.088h-1.5Zm-.066-.859c.043.28.066.567.066.86h1.5c0-.37-.028-.734-.084-1.09l-1.482.23Zm1.734-1.864-1.46 1.163.934 1.173 1.46-1.162-.934-1.174Zm.182-.961a.75.75 0 0 1-.182.961l.934 1.174a2.25 2.25 0 0 0 .547-2.885l-1.299.75Zm-.508-.88.508.88 1.3-.75-.51-.88-1.298.75Zm-.924-.324a.75.75 0 0 1 .924.323l1.299-.75a2.25 2.25 0 0 0-2.772-.968l.549 1.395Zm-1.737.684 1.737-.684-.55-1.395-1.736.683.55 1.396Zm-2.232-.975c.541.209 1.042.5 1.486.86l.943-1.167a7.044 7.044 0 0 0-1.889-1.092l-.54 1.399Zm-.748-2.432.276 1.844 1.484-.223-.277-1.844-1.483.223Zm-.742-.639a.75.75 0 0 1 .742.639l1.483-.223a2.25 2.25 0 0 0-2.225-1.916v1.5Zm-1.016 0h1.016v-1.5h-1.016v1.5Z\" fill=\"#493910\"/><circle cx=\"88.888\" cy=\"24.187\" r=\"3\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#c)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"6.811\" y=\"79.313\" width=\"24\" height=\"18\" rx=\"3\"/><path d=\"M24.811 79.313v-6.75a6 6 0 0 0-6-6v0a6 6 0 0 0-6 6v1.5m5.25 11.25h1.5v3l-1.5 1.5 1.5 1.5v1.5\"/></g><path d=\"M153.812 142.687c0-5.798-4.701-10.499-10.5-10.499-5.798 0-10.5 4.701-10.5 10.499 0 5.651 4.464 10.26 10.058 10.491\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M147.812 142.688c0-5.799-2.014-10.5-4.5-10.5-2.485 0-4.5 4.701-4.5 10.5 0 5.441 1.774 9.915 4.046 10.447m-9.296-14.197h19.5m-19.5 7.5h10.335\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"150.812\" cy=\"150.938\" r=\"5.25\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m154.562 154.688 6.001 6\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.313 159.562v-25.125a1.5 1.5 0 0 1 1.5-1.499h22.5a3 3 0 0 1 3 3v18.749a3 3 0 0 1-3 3.001v0\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M29.313 157.688H7.188a1.874 1.874 0 0 0-1.875 1.874v0c0 1.036.839 1.876 1.875 1.876h22.875a2.25 2.25 0 0 0 2.25-2.25v0\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"12.063\" y=\"138.938\" width=\"13.5\" height=\"13.5\" rx=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.563\" cy=\"144.187\" r=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m13.938 152.437 7.564-7.236a1.5 1.5 0 0 1 2.098.024l1.962 1.962\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"132.812\" y=\"19.688\" width=\"28.5\" height=\"13.5\" rx=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M136.563 26.437h3m3 0h3m3 0h3m2.25 0 3 .005m-20.25 2.996h1.5m18 0h1.5m-21-6h1.5m3 0h1.5m3 0h3m3 0h1.5m3 0h1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m145.188 14.438.67-.336a.749.749 0 0 0-.67-.415v.75Zm1.204 2.408-.671.335.671-.335Zm2.545-2.409v-.75a.749.749 0 0 0-.67.415l.67.335Zm-7.875-9h11.25v-1.5h-11.25v1.5Zm-2.25 2.25a2.25 2.25 0 0 1 2.25-2.25v-1.5a3.75 3.75 0 0 0-3.75 3.75h1.5Zm0 3.75v-3.75h-1.5v3.75h1.5Zm2.25 2.25a2.25 2.25 0 0 1-2.25-2.25h-1.5a3.75 3.75 0 0 0 3.75 3.75v-1.5Zm4.126 0h-4.126v1.5h4.126v-1.5Zm1.875 2.823-1.205-2.408-1.341.67 1.204 2.41 1.342-.672Zm-.001 0-1.341.671c.553 1.106 2.13 1.106 2.683 0l-1.342-.67Zm1.205-2.408-1.205 2.408 1.342.671 1.204-2.408-1.341-.67Zm4.045-.415h-3.375v1.5h3.375v-1.5Zm2.25-2.25a2.25 2.25 0 0 1-2.25 2.25v1.5a3.75 3.75 0 0 0 3.75-3.75h-1.5Zm0-3.75v3.75h1.5v-3.75h-1.5Zm-2.25-2.25a2.25 2.25 0 0 1 2.25 2.25h1.5a3.75 3.75 0 0 0-3.75-3.75v1.5Z\" fill=\"#493910\"/><path d=\"M141.062 29.438h12\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#d)\"><path d=\"M157.411 78.563c1.263 0 1.961 1.465 1.164 2.445l-14.617 17.99c-.742.914-2.211.219-1.975-.934l2.455-12.001h-7.9a1.5 1.5 0 0 1-1.468-1.81l3.491-16.5a1.5 1.5 0 0 1 1.467-1.19h8.863a1.5 1.5 0 0 1 1.456 1.863l-2.535 10.136h9.599Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path d=\"m14.441 32.309 17.625-17.625a3 3 0 0 0 0-4.243L27.31 5.684a3 3 0 0 0-4.243 0L5.441 23.309a3 3 0 0 0-.878 2.121v6.257a1.5 1.5 0 0 0 1.5 1.5h6.257a3 3 0 0 0 2.121-.878Zm5.872-23.871 9 9\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 .938)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(64.938 129.188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(.813 65.063)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(129.062 65.063)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfgrx1\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mngid2\",\"data-framer-name\":\"Industries\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jsxxs1\",\"data-framer-name\":\"industries\",fill:\"black\",intrinsicHeight:178,intrinsicWidth:235,svg:'<svg width=\"235\" height=\"178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M212.901 161.781c1.207 0 2.239.057 3.16.154v-1.616c-.092-.01-.179-.02-.273-.028l-.002-.003c-8.523-.757-8.573 2.315-18.165 1.557l.059 1.632c8.599.607 10.101-1.696 15.221-1.696Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M199.158 160.322c.463.019.911.029 1.34.029 2.891 0 4.593-.433 6.398-.892h.001c1.751-.446 3.563-.907 6.337-.907a29.805 29.805 0 0 1 2.781.139l.023.002.023.003v-.283l-.702-.737a1.67 1.67 0 0 1 0-2.283l1.152-1.211a1.5 1.5 0 0 1 1.086-.473h10.757c0-.428.162-.838.45-1.141l.768-.807c.06-.063.126-.117.194-.167l-1.412-1.114v-4.843h1.537l-9.989-7.264-9.988 7.264v-3.228h-3.073v4.843h-3.073l-1.23 3.228h-1.844l-3.073 2.422h1.537v7.42Zm6.915-5.806h-2.305v2.422h2.305v-2.422Zm3.841 0h-2.305v2.422h2.305v-2.422Zm7.683-7.264h-2.305v2.421h2.305v-2.421Zm3.842 0h-2.305v2.421h2.305v-2.421Zm3.842 0h-2.305v2.421h2.305v-2.421Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M232.196 155.324h1.153l1.152 1.21-1.152 1.211h-1.153v19.372h-2.305v-19.372h-3.073v1.614h1.537v8.879h-10.757v-8.879h1.537v-1.614h-1.537l-1.152-1.211 1.152-1.21h12.293v-1.615l.769-.807h.768l.768.807v1.615Zm-5.378 8.071h-7.683v-2.421h7.683v2.421Zm-1.536-5.65h-4.61v1.614h4.61v-1.614Zm9.216-138.713-2.527-2.61c-2.355 2.365-5.311.682-6.326-.403-1.014 1.085-3.97 2.768-6.325.403l-2.528 2.61c2.243 2.378 1.644 4.242.904 6.548-.428 1.335-.904 2.817-.904 4.631 0 1.857 1.181 4.952 5.313 6.807 1.304.587 2.95 1.858 3.54 2.476.591-.618 2.237-1.889 3.541-2.476 4.132-1.855 5.312-4.95 5.312-6.807 0-1.814-.475-3.296-.904-4.63-.74-2.307-1.338-4.171.904-6.55Zm-11.483 15.76c.868.392 1.82 1 2.63 1.6v-17.38c-.998.586-2.24 1.03-3.584 1.03a5.85 5.85 0 0 1-1.998-.348c1.147 2.533.403 4.853-.178 6.66-.403 1.255-.783 2.44-.783 3.858 0 .29.11 2.873 3.913 4.582Z\" fill=\"#FFDF6B\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M215.253 19.022c.003-.429.168-.84.459-1.14l2.529-2.61a1.5 1.5 0 0 1 1.08-.464 1.5 1.5 0 0 1 1.065.448c.462.465.968.7 1.534.735 1.21-.674 2.703-1.506 4.56-2.536l1.692.782c1.77.817 3.843.131 4.844-1.603l1.437-2.487-2.23-2.751.028-6.646-2.26.581a1.558 1.558 0 0 0-1.037.909l-3.276 7.673-8.224 2.118-2.567-1.63c-2.183-1.386-5.023-.654-6.344 1.634l-.991 1.716c-2.72.7-5.049 3.225-5.251 4.765-1.65 1.063-3.376 2.397-3.18 3.235.183.783 1.859 1.17 3.355.787l3.74-.952 9.057-2.334c-.01-.076-.021-.152-.02-.23Zm16.773-9.082c-.305-1.299-1.555-2.093-2.794-1.773-.975.25-1.642 1.118-1.738 2.11l2.106-.543c.412-.106.83.16.93.591.102.433-.15.871-.563.977l-2.105.542c.522.832 1.498 1.276 2.473 1.025 1.238-.319 1.995-1.63 1.691-2.929Zm-22.059 7.355 2.244-.578.196-2.544-2.243.578-.197 2.544Zm-6.174 1.59 4.679-1.205.197-2.534-.978.242c-2.041.63-3.788 2.538-3.898 3.497Z\" fill=\"#fff\"/><path d=\"m210.371 8.869-12.264 3.158a.385.385 0 0 1-.409-.146c-.172-.231-.044-.562.211-.643l12.105-3.893c-.254-1.097 1.239-1.478 1.495-.385L224.07 4.5a.408.408 0 0 1 .172.796l-12.375 3.188.002.009-1.495.385-.003-.01Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m76.813 162.168 2.6-1.115c.6-.258.742-.257 3.727-.244.84.003 1.904.008 3.266.008 0-1.365-1.032-2.472-2.305-2.472H80.26v-.823c0-.455-.344-.824-.769-.824h-.768v-4.287l1.653-1.023c.212.394.682.529 1.05.301l1.33-.823c.367-.228.493-.732.281-1.126l1.331-.823-.384-.714.665-.412c1.663-1.029 3.5-2.968 4.317-3.874a.214.214 0 0 0 .027-.241.182.182 0 0 0-.208-.095c-1.14.304-3.626 1.041-5.288 2.07l-.666.411-.384-.712-1.33.824-.769-1.427 1.386-.859-.384-.713.666-.412c1.662-1.029 3.5-2.968 4.316-3.875a.212.212 0 0 0 .027-.24.183.183 0 0 0-.207-.095c-1.14.304-3.626 1.04-5.289 2.07l-.665.412-.385-.713-1.386.858c-.212-.395-.682-.529-1.05-.302l-1.33.824c-.367.227-.493.731-.281 1.126l-2.662 1.647c-.212-.395-.682-.529-1.05-.301l-1.33.823c-.367.227-.494.731-.281 1.126l-3.328 2.059c-.367.227-.493.731-.28 1.124l1.152 2.141c.211.394.682.529 1.049.302l3.328-2.06.768 1.427-3.328 2.06c-.367.227-.493.73-.28 1.125l.925 1.718c.338.627 1.085.842 1.67.48l2.762-1.71v1.909h-.768c-.425 0-.768.369-.768.824v.823h-4.61c-1.273 0-2.305 1.107-2.305 2.472v3.295h8.637c.292-.87.91-1.586 1.746-1.944Zm1.642-14.347-.768-1.427-2.662 1.648.768 1.427 2.662-1.648Z\" fill=\"#fff\"/><path d=\"M72.576 174.82h26.457c0 1.365-1.03 2.472-2.305 2.472H74.881c-1.272 0-2.305-1.107-2.305-2.472Zm-1.536-1.647v-2.471l2.305-1.648H97.93l2.305 1.648v2.471H71.04Zm19.505-5.766c.848 0 1.536-.738 1.536-1.648h11.229v-1.647H92.081l-3.567-1.53c-.181-.078-.571-.118-.571-.118h-6.915s-.837.03-1.043.118l-2.6 1.115c-.584.251-.967.856-.967 1.53v.532c0 .91.688 1.648 1.537 1.648h12.59Z\" fill=\"#FFDF6B\"/><path d=\"m208.343 92.28-1.537 2.442a1.672 1.672 0 0 0-.251.87h-8.454v-16.95h1.536v-1.614h3.842v9.686h1.536V72.992h1.537v-3.229h1.537l1.536 3.229v8.072h1.537v7.264h1.537V79.45h5.378v1.248c-1.849 1.748-2.228 5 0 6.372v4.488h-8.452a1.52 1.52 0 0 0-1.282.724Z\" fill=\"#fff\"/><path d=\"M223.454 88.328h9.989l1.536 2.401-1.536 2.442h-9.989v15.336h-3.836V98.014h-9.993l-1.537-2.401 1.537-2.442h9.993v-7.265c-.849 0-1.537-.722-1.537-1.614 0-1.783 1.377-3.229 3.074-3.229h.768c1.697 0 3.073 1.446 3.073 3.23 0 .891-.693 1.613-1.542 1.613v2.422Z\" fill=\"#FFDF6B\"/><path d=\"M101.772 93.575h-7.57l1.537 1.614h6.033v-1.614Zm-32.184-.184c3.953 0 5.772 1.371 10.343 1.718l.174-.25.919-1.32c-6.339-.285-7.2-2.273-14.32-1.642l-.002.004c-.093.008-.18.019-.272.029v1.616c.92-.097 1.952-.155 3.158-.155Zm23.499-3.107a1.669 1.669 0 0 1-.255 1.676H98.7l-3.607-4.63-2.247 2.36.242.594Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m74.113 69.36 7.683 8.878 3.073-4.035 6.826 8.765-4.188 3.225a1.872 1.872 0 0 0-.228.213 3.479 3.479 0 0 1-.02.021l-.022.024a2.224 2.224 0 0 0-2.625.473l-1.463 1.538c-.708.744-.859 1.856-.45 2.756a3.94 3.94 0 0 0-.444.566l-.12.176h-.459c-2.888-.03-4.69-.49-6.444-.936-2.22-.565-4.362-1.11-8.527-.74l-.003.003-.252.025-.02.003V78.238l7.683-8.879Zm4.61 8.878-3.073-.807-3.074.807-2.356-1.98 3.893-4.499 5.132 5.93-.522.55Zm6.146 1.615 3.32 1.163-3.306-4.247-1.887 2.478a1.46 1.46 0 0 1-.171.18l.892 1.031 1.152-.605Z\" fill=\"#fff\"/><path d=\"m100.535 107.867-11.41-11.986 2.55-2.679 11.41 11.986c.3.316.3.827 0 1.142l-1.463 1.537a.742.742 0 0 1-1.087 0Zm-15.103-12.67 1.52.684 4.724-4.961-.652-1.599 6.423-6.747a1.777 1.777 0 0 0-2.35-.222c-7.695 5.924-6.36 4.807-7.767 6.285l-.544-.57a.742.742 0 0 0-1.086 0l-1.463 1.536c-.3.316-.3.827 0 1.142l.543.57c-1.407 1.479-.342.074-5.982 8.16a2.007 2.007 0 0 0 .211 2.468l6.423-6.746Z\" fill=\"#FFDF6B\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.351 19.712c0-3.08 5.577-4.842 10-4.842s9.999 1.764 9.999 4.842v15.331c0 .446-.344.807-.769.807h-.769v2.42c0 .447-.344.807-.769.807h-1.539c-.424 0-.769-.36-.769-.806V35.85H87.966v2.42c0 .447-.344.807-.769.807H85.66c-.425 0-.77-.36-.77-.806V35.85h-.769c-.424 0-.769-.36-.769-.807V19.712Zm18.461 9.683H84.89v-6.456c0-.89.689-1.614 1.538-1.614h13.845c.85 0 1.539.723 1.539 1.614v6.456Zm-14.615 4.841c.425 0 .77-.36.77-.807v-1.614c0-.445-.345-.807-.77-.807H85.66c-.425 0-.77.362-.77.807v1.614c0 .446.345.807.77.807h1.538Zm14.615-.807c0 .446-.344.807-.769.807h-1.539c-.424 0-.769-.36-.769-.807v-1.614c0-.445.345-.807.77-.807h1.538c.425 0 .769.362.769.807v1.614Zm-3.077-15.331H87.966v1.614h10.77v-1.614Z\" fill=\"#FFDF6B\"/><path d=\"M101.023 1.153c-1.346-1.055-4.727-1.13-7.692 0C90.32 2.3 76.868 7.148 74.844 7.878L68.32 3.753l-1.849.542 2.9 5.57.982.32-.566.98a.883.883 0 0 0-.012.854.8.8 0 0 0 .702.43h.323l-2.497 4.78 2.074-.59c.262-.075.504-.218.7-.414l3.79-3.775h.38c1.657 0 3.304-.26 4.887-.774l2.577-.835-4.763 11.292 2.983-.789c.317-.084.612-.228.883-.41v-1.222c0-2.429 1.892-4.065 4.332-5.085l4.252-6.666L96.6 5.393c4.419-1.828 5.312-3.543 4.422-4.24Zm-23.01 3.852-5.02-3.942C74.21.719 75.512-.14 77.46.689l5.745 2.444c-1.745.63-3.532 1.273-5.194 1.872ZM22.845 88.822a1.604 1.604 0 0 0-1.059 1.525c0 4.343-.07 4.575.238 5.65H8.334s2.414-9.248 2.414-14.294c0-2.355-.253-3.92-.475-4.839-.128-.531.256-1.047.78-1.047h10.652c.525 0 .91.516.781 1.047-.919 3.807-.354 8.088.359 11.958Z\" fill=\"#fff\"/><path d=\"M23.983 77.261c.378-1.552-.746-3.058-2.278-3.058h-9.888c-.28-.817.317-1.615 1.087-1.615h1.71c.939-3.467 5.241-4.379 7.4-1.558a2.997 2.997 0 0 1 2.09-.863c2.339 0 3.882 2.648 2.66 4.843h3.132c.637 0 1.159.545 1.159 1.21 0 .667-.522 1.212-1.159 1.212h-5.95l.037-.17ZM7.517 92.769c.698-3.07 1.686-7.964 1.686-11.066 0-2.208-.232-3.635-.428-4.444a2.528 2.528 0 0 1-.065-.635H2.528c-.419 0-.726.413-.624.838.178.736.38 1.987.38 3.872 0 4.036-1.93 11.435-1.93 11.435h7.163Z\" fill=\"#fff\"/><path d=\"M33.756 81.468c.64 0 1.159.542 1.159 1.21v6.054h-2.317v-6.054c0-.668.519-1.21 1.158-1.21Zm-6.951 0c.64 0 1.159.542 1.159 1.21v6.054h-2.317v-6.054c0-.668.519-1.21 1.158-1.21Zm10.427 12.915v-4.036H23.33v4.036c0 2.23 1.729 4.036 3.861 4.036v2.422c0 .446.346.807.773.807h.772c0 3.464-2.039 3.229-5.406 3.229v3.229h1.544c1.72 0 6.952 0 6.952-6.458h.772c.427 0 .772-.361.772-.807v-2.422c2.134 0 3.862-1.806 3.862-4.036Z\" fill=\"#FFDF6B\"/><path d=\"M132.121 161.781h17.4l.004-.01-.726-1.604h-16.678v1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m150.363 155.832-1.623 1.705a1.632 1.632 0 0 0-.43 1.015h-16.189v-8.879c0-.891.688-1.614 1.537-1.614l.699-8.814c.039-.495.37-.872.764-.872h.915c.395 0 .725.377.764.872l.7 8.814h1.536l.699-8.814c.04-.495.37-.872.764-.872h.915c.395 0 .726.377.765.872l.699 8.814 6.159-4.444c.509-.368 1.203.016 1.203.665v3.688l6.032-4.353a.736.736 0 0 1 .794-.049c.252.139.41.414.41.714v3.779c.849 0 1.537.723 1.537 1.614v3.229h-1.915c-.651 0-1.231.43-1.449 1.074l-.847 2.503-.409.177-2.284-1.14a1.482 1.482 0 0 0-1.746.316Zm-12.863-3.737h-2.306v-1.614h2.306v1.614Zm-2.306 3.229h2.306v-1.615h-2.306v1.615Zm6.147 0h-2.305v-1.615h2.305v1.615Zm-2.305-3.229h2.305v-1.614h-2.305v1.614Zm6.147 0h-2.305v-1.614h2.305v1.614Zm-2.305 3.229h2.305v-1.615h-2.305v1.615Zm3.842-1.615h2.305v1.615h-2.305v-1.615Zm2.305-3.228h-2.305v1.614h2.305v-1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m165.973 168.153 3.026-1.131v-2.41l-3.026-1.131-.692-1.755 1.38-3.047-1.623-1.705-2.901 1.449-1.671-.727-1.075-3.179h-2.295l-1.077 3.179-1.67.727-2.9-1.449-1.623 1.705 1.379 3.047-.692 1.755-3.027 1.131v2.41l3.027 1.131.692 1.755-1.379 3.048 1.623 1.704 2.9-1.448 1.67.726 1.077 3.179h2.295l1.075-3.179 1.671-.726 2.901 1.448 1.623-1.704-1.38-3.048.692-1.755Zm-11.495-2.336c0 2.184 1.686 3.955 3.765 3.955s3.765-1.771 3.765-3.955-1.686-3.955-3.765-3.955-3.765 1.771-3.765 3.955Z\" fill=\"#FFDF6B\"/><path d=\"M8.228 162.588c.849 0 1.537-.722 1.537-1.614 0-.891-.688-1.615-1.537-1.615s-1.536.724-1.536 1.615c0 .892.687 1.614 1.536 1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.1 158.552c-.828 0-1.596-.47-2.005-1.227a2.53 2.53 0 0 1 .03-2.441l.758-1.327-2.18-12.219-2.734-1.436c-.38-.199-.533-.684-.343-1.083.19-.398.651-.561 1.03-.361l3.074 1.615a.021.021 0 0 1 .01.006l.002.002.002.002.004.003.003.003a.084.084 0 0 0 .018.015.79.79 0 0 1 .132.108l.01.011c.03.028.059.056.083.089.025.036.044.076.064.117l.006.014c.023.05.046.1.059.154.003.012.009.022.013.033a.07.07 0 0 1 .005.016l.33 1.845 20.569 1.601-1.138 6.579c-.6.139-1.177.387-1.703.81l.034-.193H20.52v1.614h1.549a6.362 6.362 0 0 0-.518 1.614H7.126l-.684 1.2a.838.838 0 0 0-.01.812c.137.253.393.41.668.41h11.33a1.64 1.64 0 0 0-.211.726l-.042.888H7.1Zm2.665-12.107H6.177l-.413-2.313 4.001.312v2.001Zm4.61 6.457h-3.073v-1.614h3.073v1.614Zm0-3.229h-3.073v-1.614h3.073v1.614Zm0-3.228h-3.073v-1.881l3.073.239v1.642Zm4.61 6.457h-3.073v-1.614h3.073v1.614Zm0-3.229h-3.073v-1.614h3.073v1.614Zm0-3.228h-3.073v-1.523l3.073.239v1.284Zm-12.52 1.614h3.3v1.614H6.753l-.288-1.614Zm.576 3.229h2.724v1.614H7.329l-.288-1.614Zm16.47-1.615h-2.99v-1.614h3.27l-.28 1.614Zm.56-3.228h-3.55v-1.164l3.701.288-.15.876Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.437 152.093c-1.644-.002-2.752.048-3.543.877-.816.855-1.026 2.317-1.06 4.775h-3.08l-.769 16.143-1.536 3.229h19.976l-1.537-3.229-.768-16.143h-3.08c-.033-2.458-.244-3.92-1.06-4.775-.791-.829-1.899-.879-3.543-.877Zm-.327 1.616c-1.076.007-1.802.06-2.13.404-.467.489-.586 1.971-.61 3.632h6.135c-.025-1.661-.144-3.143-.61-3.632-.329-.344-1.05-.397-2.129-.404h-.656Z\" fill=\"#FFDF6B\"/><path d=\"M148.32 20.368h-3.525l.3 12.265 2.31 1.615h-8.471l2.311-1.615.237-9.686h-8.633c.455-2.582 5.045-4.09 8.699-2.713l.075-3.023-5.106-1.528h-4.513c.517-2.939 6.216-4.317 9.71-2.23l.056-2.308-3.713-1.113h-4.513c0-1.337 1.724-2.421 3.85-2.421 1.684 0 3.099.683 3.622 1.629l.795.238.066-2.674h-6.928c.365-2.078 4.25-3.182 6.972-1.83l.055-2.206h-3.947c.239-1.362 2.074-2.422 4.303-2.422 1.629 0 3.039.57 3.778 1.405 1.487.254 2.69.935 3.262 1.824h-4.987l.095 3.905c3.613-1.623 8.606-.17 9.085 2.552h-9.022l.094 3.837 1.868-.327c.69-.655 1.868-1.088 3.21-1.088 2.127 0 3.85 1.084 3.85 2.421h-5.327l-3.562.623.046 1.877c2.494-1.19 6.026-1.203 8.562.099-.158.417-.306.839-.437 1.266l-.008.024a34.37 34.37 0 0 0-2.038-.532c-1.278-.297-2.508.719-2.481 2.136Z\" fill=\"#fff\"/><path d=\"M151.446 25.866c-.838-2.117-1.352-4.292-1.586-5.424-.079-.38.246-.716.605-.634 1.189.27 3.581.898 5.781 1.941-1.702 1.236-3.052 3.066-3.63 4.55-.393-.156-.784-.3-1.17-.433Zm13.399 10.837c-.708.742-2.278 2.388-4.12 2.388-.851 0-1.761-.352-2.669-1.304-2.879-3.017 0-6.034 1.034-7.118 2.361-2.476 7.29-3.791 9.176-4.22.361-.081.683.256.605.635-.409 1.978-1.663 7.143-4.025 9.618l-.001.001Zm-8.833-12.677c2.071-2.172 6.307-3.567 9.177-4.218.361-.082.682.256.604.634-.237 1.148-.763 3.369-1.622 5.515-2.203.78-4.59 1.911-6.232 3.637-1.097-1.155-2.472-2-3.912-2.684.48-1.288 1.461-2.336 1.985-2.884Zm-1.699-4.792c.822-2.685 2.327-5.331 3.067-6.535a.497.497 0 0 1 .855 0c.741 1.205 2.249 3.857 3.072 6.546-1.142.397-2.35.901-3.48 1.518a23.29 23.29 0 0 0-3.514-1.529Z\" fill=\"#FFDF6B\"/><path d=\"M147.007 27.084c.409 1.978 1.663 7.143 4.024 9.618.708.742 2.277 2.385 4.12 2.386l1.984.001c-2.294-2.263-2.577-5.255-.234-8.3-2.17-2.3-6.277-3.655-9.289-4.34-.362-.082-.683.258-.605.635Z\" fill=\"#FFDF6B\"/><path d=\"M137.115 95.951c1.04 0 1.883-.887 1.883-1.982s-.843-1.973-1.883-1.973c-1.039 0-1.882.878-1.882 1.973 0 1.095.843 1.982 1.882 1.982Zm8.068-1.982c0 1.269 1.114 2.255 2.341 1.965.085-1.242.349-2.43.766-3.54a1.82 1.82 0 0 0-1.199-.434c-.987.008-1.908.821-1.908 2.009Z\" fill=\"#fff\"/><path d=\"M140.533 93.565h3.151c.287-2.675 3.135-4.105 5.273-2.65.424-.791 1.027-1.514 1.604-2.183h-2.305l-1.537-3.23h-6.915l-3.073 3.22-3.326.583c-.741.129-1.284.803-1.284 1.591v1.862c0 .446.344.807.768.807h.807c.194-1.811 1.644-3.229 3.419-3.229 1.775 0 3.225 1.418 3.418 3.229Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m136.731 86.44 1.987-2.088a1.498 1.498 0 0 1 1.086-.473v-5.65h4.61v5.65h2.305c.582 0 1.114.346 1.375.893l1.111 2.336h.211c.665 0 2.451-.002 2.734.005.468-.365.965-.69 1.484-.978v-9.52h2.305v-.339a.817.817 0 0 0-.388-.701l-10.368-6.216-10.37 6.216a.818.818 0 0 0-.387.701v.338h2.305v9.825Zm13.83-7.404h-3.073v3.238h3.073v-3.238Z\" fill=\"#fff\"/><path d=\"M159.78 86.351v-.848c0-.446-.343-.807-.768-.807-.424 0-.768.361-.768.807v.848c-5.155.414-9.218 4.928-9.22 10.45 1.786-2.146 4.875-2.145 6.659 0a4.4 4.4 0 0 1 2.561-1.531v9.202c0 2.006 1.548 3.632 3.457 3.632 1.91 0 3.458-1.626 3.458-3.632 0-1.615-1.537-1.615-1.537 0 0 1.113-.861 2.018-1.921 2.018-1.059 0-1.921-.905-1.921-2.018V95.27a4.399 4.399 0 0 1 2.562 1.53c1.785-2.144 4.874-2.144 6.658 0-.001-5.52-4.064-10.035-9.22-10.449Z\" fill=\"#FFDF6B\"/><path d=\"M2.275 14.421C.805 12.903.754 10.858.754 10.858s1.946-.263 3.393 1.28c1.205 1.287 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm7.349-2.282c1.446-1.544 3.393-1.28 3.393-1.28s-.049 2.044-1.518 3.563c-1.225 1.266-3.075 1.27-3.075 1.27s-.006-2.267 1.2-3.553Zm0-5.652c1.446-1.543 3.397-1.28 3.397-1.28S12.968 7.252 11.5 8.77c-1.225 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.2-3.553ZM6.125 9.228c0-1.078 1.53-1.078 1.53 0v29.869h-1.53V9.228Zm-3.85-.458C.805 7.252.754 5.207.754 5.207s1.946-.263 3.393 1.28C5.352 7.774 5.35 10.04 5.35 10.04s-1.85-.003-3.075-1.27Zm4.612-1.972c.769-.006 1.531-1.667 1.531-3.223 0-1.555-.762-3.229-1.53-3.222-.77.006-1.532 1.667-1.532 3.222 0 1.556.762 3.23 1.531 3.223ZM11.5 20.066c1.468-1.518 1.52-3.574 1.52-3.574s-2.29 0-3.393 1.291c-1.148 1.343-1.203 3.553-1.203 3.553s1.85-.003 3.075-1.27Zm-9.225 0C.805 18.548.754 16.492.754 16.492s2.29 0 3.393 1.291c1.147 1.343 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm13.82-1.608c-1.47-1.518-1.521-3.563-1.521-3.563s1.946-.264 3.393 1.28c1.205 1.287 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm7.38-2.283c1.447-1.544 3.393-1.28 3.393-1.28s-.048 2.044-1.517 3.563c-1.226 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.199-3.553Zm0-5.651c1.447-1.544 3.397-1.28 3.397-1.28s-.052 2.044-1.521 3.563c-1.226 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.199-3.553Zm-3.521 2.741c0-1.079 1.532-1.079 1.532 0v13.722h-1.532V13.265Zm-3.859-.458c-1.47-1.519-1.521-3.564-1.521-3.564s1.946-.263 3.393 1.28c1.205 1.288 1.203 3.554 1.203 3.554s-1.85-.003-3.075-1.27Zm4.622-1.972c.768-.007 1.531-1.667 1.531-3.223 0-1.556-.762-3.23-1.531-3.223-.769.007-1.531 1.667-1.531 3.223 0 1.556.762 3.23 1.531 3.223Zm4.633 13.268c1.47-1.519 1.522-3.574 1.522-3.574s-2.29 0-3.393 1.29c-1.148 1.344-1.203 3.554-1.203 3.554s1.85-.004 3.075-1.27Zm-9.255 0c-1.47-1.519-1.521-3.574-1.521-3.574s2.29 0 3.393 1.29c1.147 1.344 1.203 3.554 1.203 3.554s-1.85-.004-3.075-1.27Z\" fill=\"#fff\"/><path d=\"M31.207 28.621c3.592.174 6.426 2.258 6.426 6.064v1.99c0 1.332-1.038 2.422-2.306 2.422h-23.83c-1.267 0-2.305-1.09-2.305-2.422V35.06c0-3.996 3.113-6.456 6.918-6.456h1.619l-3.653 3.836a.42.42 0 0 0 0 .571l.543.57c.15.158.394.158.544 0l4.701-4.937-.04-.04 3.567-.002-3.654 3.838a.42.42 0 0 0 0 .571l.543.57a.37.37 0 0 0 .543 0l4.702-4.937-.04-.042c1.68 0 2.78 0 3.563.004l-3.651 3.834a.42.42 0 0 0 0 .571l.543.57c.15.158.394.158.544 0l4.701-4.937.022-.023Z\" fill=\"#FFDF6B\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yk5ock\",\"data-framer-name\":\"Calcite Color\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15lch8m\",\"data-framer-name\":\"calcite_color\",fill:\"black\",intrinsicHeight:167,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"167\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M223.765 137.158v-3.536h-7.071v-3.535h-15.32v17.677h9.428v15.32h8.249v-4.714h9.428v-21.212h-4.714Z\" fill=\"#C7552E\"/><path d=\"M211.982 161.906v-15.32h-9.428v-15.321h12.963v3.536h7.071v3.535h4.714v18.856h-9.428v4.714h-5.892Z\" fill=\"#F4DFD8\"/><path d=\"M208.446 148.943h-4.714v1.178h4.13l-6.487 6.49v-4.133h-1.179v5.892h5.893v-1.178h-4.127l6.484-6.488v4.131h1.178v-5.892h-1.178Z\" fill=\"#57A6D9\"/><path d=\"M197.247 164.263a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M197.251 163.114a1.77 1.77 0 0 1 0-3.536 1.769 1.769 0 0 1 0 3.536Z\" fill=\"#C5BDDD\"/><path d=\"M211.224.932c-9.747 0-17.677 7.93-17.677 17.677s7.93 17.677 17.677 17.677c9.748 0 17.678-7.93 17.678-17.677S220.972.932 211.224.932Z\" fill=\"#F2FAFF\"/><path d=\"M223.459 18.133a12.186 12.186 0 0 0-3.253-7.839l3.497-3.499a17.111 17.111 0 0 1 4.706 11.338h-4.95Zm-3.25 8.786a12.185 12.185 0 0 0 3.25-7.842h4.951a17.127 17.127 0 0 1-4.702 11.341l-3.499-3.499Zm-8.51 3.922a12.182 12.182 0 0 0 7.844-3.255l3.498 3.5a17.117 17.117 0 0 1-11.342 4.704v-4.948Zm-8.788-3.255a12.185 12.185 0 0 0 7.845 3.256v4.948a17.124 17.124 0 0 1-11.343-4.705l3.498-3.498Zm-3.916-8.51a12.19 12.19 0 0 0 3.25 7.843l-3.499 3.5a17.131 17.131 0 0 1-4.701-11.342h4.95Zm3.254-8.782a12.187 12.187 0 0 0-3.254 7.839h-4.95a17.126 17.126 0 0 1 4.706-11.338l3.498 3.5Zm8.507-3.918a12.193 12.193 0 0 0-7.839 3.25l-3.499-3.498a17.127 17.127 0 0 1 11.338-4.7v4.948Zm8.781 3.25a12.186 12.186 0 0 0-7.838-3.25V1.427a17.125 17.125 0 0 1 11.337 4.701l-3.499 3.498Zm-1.97 8.507a6.33 6.33 0 0 0-1.526-3.675l3.498-3.498a11.25 11.25 0 0 1 2.978 7.173h-4.95Zm-1.523 4.623a6.315 6.315 0 0 0 1.523-3.68h4.951a11.252 11.252 0 0 1-2.975 7.178l-3.499-3.498Zm-4.345 2.193a6.329 6.329 0 0 0 3.68-1.527l3.497 3.499a11.246 11.246 0 0 1-7.177 2.977v-4.949Zm-4.623-1.527a6.323 6.323 0 0 0 3.68 1.527v4.948a11.251 11.251 0 0 1-7.178-2.976l3.498-3.5Zm-2.188-4.345a6.326 6.326 0 0 0 1.522 3.679l-3.499 3.498a11.25 11.25 0 0 1-2.973-7.177h4.95Zm1.527-4.619a6.325 6.325 0 0 0-1.527 3.675h-4.95a11.245 11.245 0 0 1 2.978-7.173l3.499 3.498Zm4.341-2.19a6.329 6.329 0 0 0-3.674 1.523l-3.499-3.498a11.249 11.249 0 0 1 7.173-2.973v4.948Zm4.618 1.523a6.329 6.329 0 0 0-3.675-1.523V7.32a11.25 11.25 0 0 1 7.173 2.973l-3.498 3.498Zm-3.008 4.342 2.992-2.993a5.367 5.367 0 0 1 1.243 2.993h-4.235Zm0 .944h4.236a5.371 5.371 0 0 1-1.24 2.996l-2.996-2.996Zm-.667.665 2.997 2.997a5.362 5.362 0 0 1-2.997 1.244v-4.24Zm-.943 0v4.24a5.368 5.368 0 0 1-2.998-1.243l2.998-2.997Zm-.668-.665-2.995 2.996a5.356 5.356 0 0 1-1.239-2.996h4.234Zm0-.944h-4.233a5.358 5.358 0 0 1 1.241-2.993l2.992 2.993Zm.668-.666-2.992-2.992a5.364 5.364 0 0 1 2.992-1.239v4.23Zm.943-4.231a5.36 5.36 0 0 1 2.992 1.239l-2.992 2.992v-4.231ZM211.228.46c-10.008 0-18.149 8.142-18.149 18.149 0 10.007 8.141 18.15 18.149 18.15 10.006 0 18.149-8.143 18.149-18.15 0-10.007-8.143-18.15-18.149-18.15\" fill=\"#C96B4B\"/><path d=\"M64.926 156.067H94.83l-23.998-24-5.906 5.915v18.085Z\" fill=\"#F4F4F4\"/><path d=\"M77.89 139.125v16.942h16.94l-16.94-16.942Z\" fill=\"#E0E0E0\"/><path d=\"m94.83 156.067-16.94-16.942v.86l16.081 16.082h.86Z\" fill=\"#6E6E6E\"/><path d=\"M74.355 156.067h3.535v-16.942l-3.535-3.537v20.479Z\" fill=\"#F4F4F4\"/><path d=\"m70.832 132.067-5.906 5.916v.86l5.906-5.916 7.057 7.058v-.86l-7.057-7.058Z\" fill=\"#CCC\"/><path d=\"M80.019 156.067H94.83l-7.412-7.413-7.4 7.413Z\" fill=\"#F2FAFF\"/><path d=\"m102.638 161.047-12.973-12.974-11.775 11.792v2.094h24.748v-.912Z\" fill=\"#E0E0E0\"/><path d=\"M75.798 161.959h2.09v-2.094l-2.09 2.094Z\" fill=\"#F4F4F4\"/><path d=\"M89.666 148.073 77.89 159.865v1.021l11.776-11.793 12.866 12.865h.106v-.912l-12.972-12.973Z\" fill=\"#6E6E6E\"/><path d=\"M75.798 161.958h1.02l1.07-1.072v-1.021l-2.09 2.093Z\" fill=\"#CCC\"/><path d=\"M76.121 128.962v35.354\" stroke=\"#DE2900\" stroke-width=\"1.178\" stroke-miterlimit=\"10\" stroke-dasharray=\"2.36 2.36\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.28 140.745H90.023l4.005 4.007-1.483 1.482-6.664-6.666 6.664-6.664 1.483 1.482-4.005 4.003h10.257v2.356Z\" fill=\"#E8912E\"/><path d=\"M77.89 143.104h3.979l-5.157-5.158v3.979c0 .652.528 1.179 1.178 1.179Z\" fill=\"#F4F4F4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.014 141.336h-3.535V137.8h3.535v3.536Z\" fill=\"#FFDAB6\"/><path d=\"M79.066 140.747h2.357v-2.357h-2.357v2.357Zm3.536 1.178h-4.714v-4.714h4.714v4.714Z\" fill=\"#E89D48\"/><path d=\"M200.014 100.279a5.398 5.398 0 0 1-5.392-5.391 5.398 5.398 0 0 1 5.392-5.392 5.398 5.398 0 0 1 5.391 5.392 5.397 5.397 0 0 1-5.391 5.391Zm0-11.667a6.283 6.283 0 0 0-6.276 6.276 6.283 6.283 0 0 0 6.276 6.275 6.282 6.282 0 0 0 6.275-6.275 6.283 6.283 0 0 0-6.275-6.276Z\" fill=\"#828282\"/><path d=\"M201.778 88.897v.921a5.376 5.376 0 0 1 3.302 3.301h.921a6.258 6.258 0 0 0-4.223-4.222Z\" fill=\"#F2FAFF\"/><path d=\"M213.566 80.156h-4.714v1.179h4.131l-8.845 8.848v-4.134h-1.178v5.892h5.892v-1.178h-4.127l8.841-8.845v4.13h1.179v-5.892h-1.179Z\" fill=\"#57A6D9\"/><path d=\"M200.011 97.834a2.949 2.949 0 0 1-2.946-2.947 2.949 2.949 0 0 1 2.946-2.946 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M200.013 96.655a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#C5BDDD\"/><path d=\"m228.363 90.21-2.851-5.474-10.671-4.743-2.31-8.086h-12.824l-4.374-6.2.965-.68 4.021 5.701h13.101l2.404 8.412 10.543 4.686 3.041 5.84-1.045.544Z\" fill=\"#6E6E6E\"/><path d=\"M93.833 76.674a5.31 5.31 0 0 1-5.303-5.303 5.31 5.31 0 0 1 5.303-5.303 5.31 5.31 0 0 1 5.303 5.303 5.31 5.31 0 0 1-5.303 5.303Zm0-11.785a6.49 6.49 0 0 0-6.482 6.482 6.49 6.49 0 0 0 6.482 6.482 6.489 6.489 0 0 0 6.481-6.482 6.489 6.489 0 0 0-6.481-6.481Z\" fill=\"#828282\"/><path d=\"M92.063 77.601V76.35a5.295 5.295 0 0 1-3.21-3.21H87.6a6.5 6.5 0 0 0 4.463 4.462Z\" fill=\"#F2FAFF\"/><path d=\"M71.438 99.066a5.31 5.31 0 0 1-5.303-5.303 5.31 5.31 0 0 1 5.303-5.304 5.31 5.31 0 0 1 5.303 5.304 5.31 5.31 0 0 1-5.303 5.303Zm0-11.785a6.49 6.49 0 0 0-6.481 6.482 6.49 6.49 0 0 0 6.481 6.481 6.49 6.49 0 0 0 6.482-6.481 6.49 6.49 0 0 0-6.482-6.482Z\" fill=\"#828282\"/><path d=\"M71.438 96.709a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.947 2.947 2.949 2.949 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M71.44 95.56a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M93.833 74.317a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.946 2.949 2.949 0 0 1 2.946 2.946 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M93.83 73.168a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.767 1.77 1.77 0 0 1 1.767 1.767 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M71.438 96.709a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.947 2.947 2.949 2.949 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M71.44 95.56a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M73.207 87.532v1.253a5.295 5.295 0 0 1 3.21 3.21h1.253a6.5 6.5 0 0 0-4.463-4.463Z\" fill=\"#F2FAFF\"/><path d=\"M89.708 74.317h-4.714v1.179h4.214L75.566 89.138v-4.214h-1.179v5.892h5.893v-1.178h-4.204l13.632-13.55v4.122h1.178v-5.893h-1.178Z\" fill=\"#57A6D9\"/><path d=\"M77.65 31.028a6.136 6.136 0 0 1-6.128-6.128c0-1.42.494-2.764 1.427-3.89L83.936 5.203c1.855-2.556 4.79-4.078 7.856-4.078 5.296 0 9.605 4.308 9.605 9.604 0 3.354-1.797 6.512-4.688 8.242L81.265 29.825a6.038 6.038 0 0 1-3.615 1.203Z\" fill=\"#F2FAFF\"/><path d=\"M90.938 24.87c0 7.338-5.949 13.287-13.287 13.287-7.339 0-13.288-5.949-13.288-13.287 0-7.338 5.95-13.288 13.288-13.288s13.287 5.95 13.287 13.288Z\" fill=\"#828282\"/><path d=\"M77.65 37.244c-6.824 0-12.375-5.55-12.375-12.374 0-6.823 5.551-12.374 12.375-12.374 6.823 0 12.374 5.55 12.374 12.374 0 6.824-5.551 12.374-12.374 12.374Z\" fill=\"#F2FAFF\"/><path d=\"m81.03 29.487 15.468-10.872c2.769-1.654 4.488-4.677 4.488-7.886 0-5.069-4.123-9.193-9.192-9.193-2.936 0-5.722 1.426-7.517 3.902L73.268 21.274c-.87 1.051-1.332 2.305-1.332 3.625a5.722 5.722 0 0 0 5.716 5.717 5.624 5.624 0 0 0 3.377-1.13m-3.377 1.955a6.549 6.549 0 0 1-6.54-6.542c0-1.515.525-2.95 1.52-4.152L83.6 4.967a1.24 1.24 0 0 1 .076-.099A10.034 10.034 0 0 1 91.794.711c5.523 0 10.017 4.494 10.017 10.018 0 3.497-1.874 6.791-4.89 8.594L81.504 30.162a6.45 6.45 0 0 1-3.851 1.279\" fill=\"#57A6D9\"/><path d=\"M81.541 20.981h.834L93.99 9.366l-.833-.833L81.54 20.148v.833Z\" fill=\"#57A6D9\"/><path d=\"M93.559 7.782h1.178v5.892H93.56V7.782Z\" fill=\"#57A6D9\"/><path d=\"M88.845 7.782h5.893V8.96h-5.893V7.782Z\" fill=\"#57A6D9\"/><path d=\"M77.65 27.905a3.009 3.009 0 0 1-3.006-3.005 3.008 3.008 0 0 1 3.006-3.005 3.008 3.008 0 0 1 3.005 3.005 3.009 3.009 0 0 1-3.005 3.005Z\" fill=\"#7C6DA8\"/><path d=\"M77.65 26.667a1.77 1.77 0 0 1-1.77-1.767 1.77 1.77 0 0 1 1.768-1.767 1.77 1.77 0 0 1 1.768 1.767 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M35.894 82.7a.59.59 0 0 0 .59-.588v-8.25a.59.59 0 0 0-.59-.59H21.752a.59.59 0 0 0-.589.59v8.25a.59.59 0 0 0 .59.589h14.141ZM21.752 95.665a.59.59 0 0 1-.589-.59v-8.248a.59.59 0 0 1 .59-.59h14.141a.59.59 0 0 1 .59.59v8.249a.59.59 0 0 1-.59.59H21.752Z\" fill=\"#F2FAFF\"/><path d=\"M13.211 86.236c0 2.434 1.302 4.553 3.237 5.744v-2.798h1.768v5.893h-5.892v-1.768h2.799c-2.256-1.546-3.742-4.128-3.742-7.07 0-4.546 3.542-8.268 8.014-8.573v1.83c-3.412.302-6.184 3.176-6.184 6.742Z\" fill=\"#57A6D9\"/><path d=\"M7.609 95.075H6.43V76.219h1.18v18.856Z\" fill=\"#6E6E6E\"/><path d=\"M13.234 70.916A6.217 6.217 0 1 1 .8 70.915a6.217 6.217 0 0 1 12.434 0Z\" fill=\"#C96B4B\"/><path d=\"M35.892 86.825H21.75v8.25h14.142v-8.25Zm1.179 9.428h-16.5V85.647h16.5v10.606Zm-1.179-22.391H21.75v8.25h14.142v-8.25Zm1.179 9.428h-16.5V72.683h16.5V83.29Zm-3.536-4.714h-9.428v1.178h9.428v-1.178Zm-9.428-2.357h9.428v1.178h-9.428V76.22Zm9.428 15.32h-9.428v1.179h9.428v-1.179Zm-9.428-2.357h9.428v1.179h-9.428v-1.179Z\" fill=\"#6E6E6E\"/><path d=\"M135.935 158.933a2.95 2.95 0 0 1-2.947-2.946 2.95 2.95 0 0 1 2.947-2.946 2.95 2.95 0 0 1 2.946 2.946 2.95 2.95 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M135.936 157.784a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 1.768-1.768c.974 0 1.767.792 1.767 1.768a1.77 1.77 0 0 1-1.767 1.767Z\" fill=\"#C5BDDD\"/><path d=\"M156.559 137.72v-3.535h-7.071v-3.536h-15.32v17.677h9.428v15.321h8.249v-4.714h9.428V137.72h-4.714Z\" fill=\"#C7552E\"/><path d=\"M144.772 162.469v-15.321h-9.428v-15.32h12.963v3.535h7.071v3.536h4.714v18.856h-9.428v4.714h-5.892Z\" fill=\"#F4DFD8\"/><path d=\"M36.58 158.547c0-3.904-7.915-7.071-17.678-7.071-9.763 0-17.677 3.167-17.677 7.071s7.914 7.071 17.677 7.071 17.677-3.167 17.677-7.071Z\" fill=\"#F2FAFF\"/><path d=\"M13.6 160.315h3.536v-3.536H13.6v3.536Zm9.428-2.357h-4.714v3.535h4.714v-3.535Zm-11.785 3.535H8.886v3.536h7.071v-3.536H13.6v-1.178h-2.357v1.178Zm12.963 2.357h-3.535v1.179h6.177c3.588-.696 6.478-1.959 8.11-3.536H24.206v2.357Zm0-7.071h2.357v1.179h9.943c-.173-.836-.711-1.629-1.548-2.357-2.4-2.088-7.263-3.625-13.108-4.019v4.019h2.356v1.178ZM6.53 157.958v-2.357H2.85c2.07-1.802 5.964-3.199 10.751-3.801v.265h2.357v2.357H13.6v1.179h-3.535v2.357H6.529Z\" fill=\"#9BC29C\"/><path d=\"M18.9 152.065c-9.263 0-17.088 2.969-17.088 6.482 0 3.513 7.825 6.482 17.088 6.482 9.263 0 17.089-2.969 17.089-6.482 0-3.513-7.826-6.482-17.089-6.482Zm0 14.142c-10.242 0-18.266-3.364-18.266-7.66s8.024-7.66 18.266-7.66c10.243 0 18.267 3.364 18.267 7.66s-8.024 7.66-18.267 7.66Z\" fill=\"#6E6E6E\"/><path d=\"M18.903 150.887c-.598 0-1.187.014-1.768.036v8.213c0 .652.528 1.179 1.179 1.179h1.178a1.18 1.18 0 0 0 1.179-1.179v-8.213a46.664 46.664 0 0 0-1.768-.036Z\" fill=\"#F2FAFF\"/><path d=\"M19.489 159.136h-1.178V140.28h1.178v18.856Z\" fill=\"#6E6E6E\"/><path d=\"M25.117 134.977a6.217 6.217 0 1 1-12.435 0 6.217 6.217 0 0 1 12.435 0Z\" fill=\"#C96B4B\"/><path d=\"M132.586 30.507V19.901h23.57l-23.57 10.606Z\" fill=\"#BDDBEE\"/><path d=\"M166.762 12.829 154.646.712l-12.1 12.117h24.216Z\" fill=\"#E5A894\"/><path d=\"M143.566 12.829 154.645 1.73l11.098 11.098h1.019L154.645.712l-12.099 12.117h1.02Z\" fill=\"#6E6E6E\"/><path d=\"m151.93 12.829-4.694-4.695-4.69 4.695h9.384Z\" fill=\"#F2FAFF\"/><path d=\"M156.156 18.721 144.04 6.604l-12.1 12.117h24.216Z\" fill=\"#DDEEDB\"/><path d=\"m132.96 18.721 11.079-11.098 11.098 11.098h1.019L144.039 6.604 131.94 18.72h1.02Z\" fill=\"#6E6E6E\"/><path d=\"M136.122 30.507a3.536 3.536 0 1 1-7.071 0 3.536 3.536 0 0 1 7.071 0Z\" fill=\"#57A6D9\"/><path d=\"M132.584 32.864a2.36 2.36 0 0 1-2.357-2.357 2.36 2.36 0 0 1 2.357-2.357 2.36 2.36 0 0 1 2.357 2.357 2.36 2.36 0 0 1-2.357 2.357Z\" fill=\"#BDDBEE\"/><path d=\"m151.93 12.829-4.694-4.695-4.69 4.695h9.384Z\" fill=\"#F2FAFF\"/><path d=\"M156.156 18.721 144.04 6.604l-12.1 12.117h24.216Z\" fill=\"#DDEEDB\"/><path d=\"m132.96 18.721 11.079-11.098 11.098 11.098h1.019L144.039 6.604 131.94 18.72h1.02Z\" fill=\"#6E6E6E\"/><path d=\"M156.156 19.901h-23.57v-1.178h23.57V19.9Z\" fill=\"#F2FAFF\"/><path d=\"M134.381 72.014a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M134.38 70.865a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M160.307 94.405a2.949 2.949 0 0 1-2.947-2.946 2.949 2.949 0 0 1 2.947-2.946 2.949 2.949 0 0 1 2.946 2.946 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M160.308 93.256a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#C5BDDD\"/><path d=\"M161.486 70.835a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.946 2.95 2.95 0 0 1 2.947 2.946 2.95 2.95 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M161.488 69.686a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M146.755 90.87h-8.25v-8.25h-1.178v8.25h-8.25v1.178h8.25v8.25h1.178v-8.25h8.25V90.87Z\" fill=\"#6E6E6E\"/><path d=\"M136.148 93.227v-3.535h3.534l.001 3.535h-3.535Z\" fill=\"#C7552E\"/><path d=\"M138.507 92.073h-1.179v-1.178h1.179v1.178Z\" fill=\"#E5A894\"/><path d=\"M152.65 70.836v1.178h4.213l-14.819 14.82v-4.213h-1.179v5.892h5.893v-1.178h-4.205l14.811-14.73v4.123h1.179v-5.892h-5.893Z\" fill=\"#57A6D9\"/><path d=\"M36.804 18.978c0 9.941-8.06 18.001-18.002 18.001C8.86 36.98.801 28.92.801 18.978.8 9.036 8.86.976 18.802.976c9.942 0 18.002 8.06 18.002 18.002Z\" fill=\"#828282\"/><path d=\"M18.806 2.155a16.71 16.71 0 0 0-5.642.993 4.289 4.289 0 0 0-.648-1.02 17.963 17.963 0 0 0-6.868 4.593c.183.366.42.7.697.995-2.702 2.986-4.362 6.928-4.362 11.262 0 4.585 1.849 8.744 4.835 11.781a4.135 4.135 0 0 0-2.113-.612 18.066 18.066 0 0 0 4.104 3.799 4.173 4.173 0 0 0-.78-2.066 16.742 16.742 0 0 0 10.777 3.92c5.397 0 10.195-2.564 13.276-6.528a4.17 4.17 0 0 0 1.296-1.925 16.694 16.694 0 0 0 2.25-8.37c0-9.275-7.546-16.822-16.822-16.822Z\" fill=\"#F2FAFF\"/><path d=\"m5.668 34.125-.833-.833L17.798 20.33l.834.833L5.668 34.125Z\" fill=\"#E5A894\"/><path d=\"M18.299 20.465 8.871 5.145l1.004-.618 9.428 15.32-1.004.618Z\" fill=\"#68AA67\"/><path d=\"M29.124 26.564 18.518 20.67l.571-1.03 10.607 5.893-.572 1.03Z\" fill=\"#68AA67\"/><path d=\"M18.804 24.104a3.953 3.953 0 0 1-3.948-3.948 3.953 3.953 0 0 1 3.948-3.948 3.953 3.953 0 0 1 3.948 3.948 3.953 3.953 0 0 1-3.948 3.948Z\" fill=\"#F2FAFF\"/><path d=\"M18.805 23.19a3.009 3.009 0 0 1-3.006-3.004 3.008 3.008 0 0 1 3.006-3.006 3.008 3.008 0 0 1 3.005 3.006 3.009 3.009 0 0 1-3.005 3.005Z\" fill=\"#3B8FC4\"/><path d=\"M18.804 21.953a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.768 1.768 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#E2F1FB\"/><path d=\"M4.66 37.333a3.009 3.009 0 0 1-3.005-3.005 3.008 3.008 0 0 1 3.005-3.005 3.008 3.008 0 0 1 3.006 3.005 3.009 3.009 0 0 1-3.006 3.005Z\" fill=\"#E04F1D\"/><path d=\"M4.66 36.095a1.77 1.77 0 0 1-1.767-1.768A1.77 1.77 0 0 1 4.66 32.56a1.77 1.77 0 0 1 1.768 1.767 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M29.41 29.084a3.009 3.009 0 0 1-3.005-3.006 3.008 3.008 0 0 1 3.005-3.005 3.008 3.008 0 0 1 3.006 3.005 3.009 3.009 0 0 1-3.006 3.006Z\" fill=\"#E04F1D\"/><path d=\"M29.41 27.846a1.77 1.77 0 0 1-1.767-1.768 1.77 1.77 0 0 1 1.767-1.768 1.77 1.77 0 0 1 1.768 1.768 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M9.374 7.87a3.009 3.009 0 0 1-3.005-3.005A3.008 3.008 0 0 1 9.374 1.86a3.008 3.008 0 0 1 3.005 3.005 3.009 3.009 0 0 1-3.005 3.006Z\" fill=\"#E04F1D\"/><path d=\"M9.376 6.633a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M5.298 8.993c-2.073 2.796-3.315 6.245-3.315 9.985 0 1.75.271 3.439.768 5.026 14.013-11.616 7.261-8.485 2.547-15.011Z\" fill=\"#9BC29C\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dlr1qh\",\"data-framer-name\":\"QuickCapture\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:102.5,intrinsicWidth:137.5,pixelHeight:205,pixelWidth:275,src:\"https://framerusercontent.com/images/EqPLrdle5MJtAsme10Mu9VpCghs.svg\"},className:\"framer-1v2kfyg\",\"data-framer-name\":\"quick_capture\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:240,intrinsicWidth:1340,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg\",srcSet:\"https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg 1340w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fit\",intrinsicHeight:240,intrinsicWidth:1340,positionX:\"center\",positionY:\"center\",sizes:\"1340px\",src:\"https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg\",srcSet:\"https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vuyiwGLFGdQMSI98UaTnfcIsZ3Y.svg 1340w\"},className:\"framer-mpd3cp\",\"data-framer-name\":\"Row 3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1cloe\",\"data-framer-name\":\"Meridian\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:83,intrinsicWidth:115,pixelHeight:166,pixelWidth:230,src:\"https://framerusercontent.com/images/oqTXnkjhy0CwL55Mr6RiHTxj0U.svg\"},className:\"framer-11gclai\",\"data-framer-name\":\"meridian\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i9i58f\",\"data-framer-name\":\"Realtor\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2td9bw\",\"data-framer-name\":\"realtor\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#F8F8F8\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M194.859 143.085a2.983 2.983 0 0 1 0-4.219l1.356-1.356a3 3 0 0 1 .777-2.898l2.122-2.121a3 3 0 0 1 2.898-.777l1.356-1.357a2.983 2.983 0 0 1 4.219 0l3.206 3.206a2.983 2.983 0 0 1 0 4.219l-1.073 1.073 16.971 16.97a3.001 3.001 0 0 1 0 4.243l-2.122 2.121a2.998 2.998 0 0 1-4.242 0l-16.971-16.97-1.072 1.072a2.983 2.983 0 0 1-4.219 0l-3.206-3.206Zm10.618.012 16.971 16.971 2.121-2.121-16.97-16.971-2.122 2.121Zm-8.485-2.121 3.182 3.182 8.486-8.485-3.182-3.182-8.486 8.485Z\"/><path d=\"m206.672 150.656-7.158 7.158-1.591.53-2.372 2.372 3.182 3.182 2.372-2.372.53-1.591 7.158-7.158-2.121-2.121Zm13.805-3.198-.016.016-2.122-2.121.016-.017a1.501 1.501 0 0 1 0-2.121l1.061-1.061a1.501 1.501 0 0 1 2.121 0l4.243-4.242-4.243-4.243-4.242 4.243a1.5 1.5 0 0 1 0 2.121l-1.061 1.061a1.5 1.5 0 0 1-2.121 0l-.016.016-2.122-2.121.017-.017a2.992 2.992 0 0 1 2.309-.872 2.992 2.992 0 0 1 .872-2.309l4.243-4.243a3 3 0 0 1 4.243 0l4.242 4.243a2.998 2.998 0 0 1 0 4.242l-4.242 4.243a2.998 2.998 0 0 1-2.309.873 2.998 2.998 0 0 1-.873 2.309Z\"/></g><path d=\"M217.187 4.938a1.5 1.5 0 0 1 1.5-1.5h4.5a3 3 0 0 1 3 3v4.5a1.5 1.5 0 0 1-3 0v-2.38l-5.729 5.73a3.001 3.001 0 0 1-3.276.648l-7.188-2.995-8.294 7.602a1.5 1.5 0 1 1-2.027-2.211l8.294-7.603a3 3 0 0 1 3.181-.558l7.188 2.995 5.729-5.729h-2.378a1.5 1.5 0 0 1-1.5-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M224.687 16.938a1.5 1.5 0 0 0-3 0v.888a4.5 4.5 0 0 0-6.182.172l-3.879 3.879a1.5 1.5 0 0 0 1.061 2.56v6a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-6a1.5 1.5 0 0 0 1.06-2.56l-1.06-1.06v-3.88Zm-3 5.12-1.94-1.939a1.5 1.5 0 0 0-2.121 0l-1.939 1.94v8.378h6V22.06Zm-12-.62a1.5 1.5 0 0 0-3 0v.888a4.5 4.5 0 0 0-6.182.172l-3.879 3.879a1.5 1.5 0 0 0 1.061 2.56v1.5a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-1.5a1.5 1.5 0 0 0 1.06-2.56l-1.06-1.06v-3.88Zm-4.94 3.181 1.94 1.94v3.878h-6V26.56l1.939-1.94a1.5 1.5 0 0 1 2.121 0Z\" fill=\"#F8F8F8\"/><path d=\"M84.436 132.438a1.5 1.5 0 1 0-2.999 0 1.5 1.5 0 0 0 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.771 154.197a1.5 1.5 0 0 0 .165 2.991h.284l.1.667a4.5 4.5 0 0 0 4.45 3.833h2.333a4.5 4.5 0 0 0 4.45-3.833l.1-.667h.283a1.5 1.5 0 0 0 .166-2.991l.12-.806a9.733 9.733 0 0 0 3.465-7.453c0-5.385-4.366-9.75-9.75-9.75a9.75 9.75 0 0 0-9.75 9.75 9.733 9.733 0 0 0 3.463 7.453l.121.806Zm-.585-8.259a6.75 6.75 0 1 1 10.751 5.437 1.5 1.5 0 0 0-.593.985l-.274 1.828h-6.267l-.274-1.828a1.5 1.5 0 0 0-.593-.985 6.738 6.738 0 0 1-2.75-5.437Zm9.434 11.25-.034.222a1.5 1.5 0 0 1-1.483 1.278H81.77a1.5 1.5 0 0 1-1.483-1.278l-.034-.222h5.367Z\" fill=\"#F8F8F8\"/><path d=\"M96.436 147.438a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm-6-14.491a1.5 1.5 0 1 1-1.5 2.598 1.5 1.5 0 0 1 1.5-2.598Zm-15 0a1.5 1.5 0 1 0 1.5 2.598 1.5 1.5 0 0 0-1.5-2.598Zm-5.49 5.491a1.5 1.5 0 1 0 2.598 1.5 1.5 1.5 0 0 0-2.598-1.5Zm25.981 0a1.5 1.5 0 1 1-2.598 1.5 1.5 1.5 0 0 1 2.598-1.5Zm-24.991 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm22.393 6a1.5 1.5 0 1 0 2.598 1.5 1.5 1.5 0 0 0-2.598-1.5Zm-20.785 0a1.5 1.5 0 1 1-2.598 1.5 1.5 1.5 0 0 1 2.598-1.5Zm134.145-82.876a1.5 1.5 0 0 0-3 0v1.5a7.5 7.5 0 0 0-7.5 7.5v12a7.5 7.5 0 0 0 7.5 7.5h6.749a11.297 11.297 0 0 1-2.767-3h-3.982a4.5 4.5 0 0 1-4.5-4.5v-12a4.5 4.5 0 0 1 4.5-4.5v1.5a1.5 1.5 0 0 0 3 0v-1.5h9v1.5a1.5 1.5 0 0 0 3 0v-1.5a4.5 4.5 0 0 1 4.5 4.5v.982a11.302 11.302 0 0 1 3 2.767v-3.749a7.5 7.5 0 0 0-7.5-7.5v-1.5a1.5 1.5 0 0 0-3 0v1.5h-9v-1.5Z\" fill=\"#F8F8F8\"/><path d=\"M218.314 85.187a1.125 1.125 0 0 0-2.25 0v3.375c0 .622.504 1.125 1.125 1.125h2.25a1.125 1.125 0 0 0 0-2.25h-1.125v-2.25Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M217.189 79.562a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm-6 9a6 6 0 1 1 12 0 6 6 0 0 1-12 0Z\" fill=\"#F8F8F8\"/><path d=\"M77.976 82.937a7.466 7.466 0 0 1 4.96-1.875c1.904 0 3.638.707 4.961 1.875a1.5 1.5 0 1 0 1.985-2.25 10.466 10.466 0 0 0-6.945-2.625c-2.662 0-5.096.993-6.946 2.626a1.5 1.5 0 1 0 1.985 2.249Z\" fill=\"#F8F8F8\"/><path d=\"M80.7 86.563a2.99 2.99 0 0 1 2.237-1c.888 0 1.685.384 2.236 1a1.5 1.5 0 0 0 2.235-2.001 5.989 5.989 0 0 0-4.471-2 5.989 5.989 0 0 0-4.472 2 1.5 1.5 0 0 0 2.235 2Z\" fill=\"#F8F8F8\"/><path d=\"M84.437 88.562a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.937 70.562a1.5 1.5 0 0 0-3 0v3.6l-4.626-3.598a7.125 7.125 0 0 0-8.749 0l-10.046 7.814a1.5 1.5 0 0 0 1.841 2.368l.58-.45v11.266a4.5 4.5 0 0 0 4.5 4.5h15a4.5 4.5 0 0 0 4.5-4.5V80.296l.579.45a1.5 1.5 0 0 0 1.841-2.368l-2.42-1.883v-5.933Zm-3 7.4-6.468-5.03a4.125 4.125 0 0 0-5.065 0l-6.47 5.033c.002.032.003.065.003.097v13.5a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5v-13.6Z\" fill=\"#F8F8F8\"/><path d=\"M84.439 22.938a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.939 3.438a6 6 0 0 0-6 6v13.5a6.002 6.002 0 0 0 4.78 5.875l-1.529 2.293a1.5 1.5 0 1 0 2.497 1.664l2.554-3.833h7.395l2.554 3.833a1.5 1.5 0 0 0 2.497-1.665l-1.528-2.292a6.002 6.002 0 0 0 4.78-5.875v-13.5a6 6 0 0 0-6-6h-12Zm10.476 22.5h1.524a3 3 0 0 0 3-3v-3h-18v3a3 3 0 0 0 3 3h10.476Zm4.523-16.5a3 3 0 0 0-3-3h-12a3 3 0 0 0-3 3h18Zm-18 3v4.5h7.5v-4.5h-7.5Zm18 4.5v-4.5h-7.5v4.5h7.5Z\" fill=\"#F8F8F8\"/><path d=\"M22.739 97.043a15.01 15.01 0 0 1-3.928.52c-8.284 0-15-6.716-15-15 0-8.285 6.716-15 15-15 1.862 0 3.645.339 5.29.959a3.77 3.77 0 0 0-.04.54v2.707a11.952 11.952 0 0 0-5.25-1.207c-6.627 0-12 5.373-12 12 0 6.628 5.373 12 12 12 .487 0 .966-.028 1.438-.085.12.171.258.334.41.487l2.08 2.08Z\" fill=\"#F8F8F8\"/><path d=\"m31.25 91.252-1.939 1.94v-24.13a1.5 1.5 0 1 0-3 0v24.13l-1.939-1.94a1.5 1.5 0 0 0-2.121 2.121l3.44 3.44a3 3 0 0 0 4.242 0l3.44-3.44a1.5 1.5 0 0 0-2.122-2.121Z\" fill=\"#F8F8F8\"/><path d=\"M20.311 76.563a1.5 1.5 0 1 0-3 0v.075a3.751 3.751 0 0 0 .75 7.424h1.5a.75.75 0 0 1 0 1.5h-3.75a1.5 1.5 0 0 0 0 3h1.5a1.5 1.5 0 0 0 3 0v-.075a3.751 3.751 0 0 0-.75-7.424h-1.5a.75.75 0 0 1 0-1.5h3.75a1.5 1.5 0 1 0 0-3h-1.5Zm119.251 66.375c0-.415.335-.75.75-.75h1.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75v-3Zm6.75-.75a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm6 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm-6 6a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm-6 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm12 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M135.062 131.688a3 3 0 0 0-3 3v3c0 1.11.603 2.079 1.5 2.598v16.902a4.5 4.5 0 0 0 4.5 4.5h18a4.5 4.5 0 0 0 4.5-4.5v-16.902a3 3 0 0 0 1.5-2.598v-3a3 3 0 0 0-3-3h-24Zm15 22.5a1.5 1.5 0 0 1 1.5 1.5v3h4.5a1.5 1.5 0 0 0 1.5-1.5v-16.5h-21v16.5a1.5 1.5 0 0 0 1.5 1.5h4.5v-3a1.5 1.5 0 0 1 1.5-1.5h6Zm-1.5 4.5h-3v-1.5h3v1.5Zm10.5-21v-3h-24v3h24Z\" fill=\"#F8F8F8\"/><path d=\"M26.312 137.688a6 6 0 0 0-6-6h-10.5a6 6 0 0 0-6 6v22.5a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 0-3h-1.5v-21a3 3 0 0 1 3-3h10.5a3 3 0 0 1 3 3v1.5a1.5 1.5 0 0 0 1.5 1.5h4.5a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 0 3 0v-3a4.5 4.5 0 0 0-4.5-4.5h-3Z\" fill=\"#F8F8F8\"/><path d=\"M10.562 137.688a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm0 4.5a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm6-4.5a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm4.81 9.439a1.5 1.5 0 0 1 0 2.121l-4.5 4.5a1.5 1.5 0 0 1-2.121 0l-1.5-1.5a1.5 1.5 0 1 1 2.121-2.121l.44.439 3.439-3.439a1.5 1.5 0 0 1 2.121 0Zm0 7.5a1.5 1.5 0 0 1 0 2.121l-4.5 4.5a1.5 1.5 0 0 1-2.121 0l-1.5-1.5a1.5 1.5 0 1 1 2.121-2.121l.44.439 3.439-3.439a1.5 1.5 0 0 1 2.121 0Zm1.939-3.439a1.5 1.5 0 0 1 1.5-1.5h7.5a1.5 1.5 0 1 1 0 3h-7.5a1.5 1.5 0 0 1-1.5-1.5Zm10.5 7.5a1.5 1.5 0 0 1-1.5 1.5h-7.5a1.5 1.5 0 0 1 0-3h7.5a1.5 1.5 0 0 1 1.5 1.5ZM152.622 15.877a1.5 1.5 0 0 1 0 2.121l-6 6a1.5 1.5 0 0 1-2.121 0l-3-3a1.5 1.5 0 1 1 2.121-2.121l1.94 1.94 4.939-4.94a1.5 1.5 0 0 1 2.121 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M159.062 6.438a1.5 1.5 0 0 0-3 0v3.6l-4.626-3.598a7.126 7.126 0 0 0-8.749 0l-10.046 7.814a1.5 1.5 0 1 0 1.842 2.368l.579-.45v11.266a4.5 4.5 0 0 0 4.5 4.5h15a4.5 4.5 0 0 0 4.5-4.5V16.17l.579.45a1.5 1.5 0 0 0 1.842-2.367l-2.421-1.883V6.438Zm-3 7.4-6.468-5.03a4.125 4.125 0 0 0-5.065 0l-6.471 5.032c.003.033.004.065.004.098v13.5a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5v-13.6Z\" fill=\"#F8F8F8\"/><path d=\"M151.562 78.813a1.5 1.5 0 0 1 1.5 1.5h1.5a1.5 1.5 0 0 1 0 3h-3.75a.75.75 0 1 0 0 1.5h1.5a3.75 3.75 0 0 1 .75 7.424v.076a1.5 1.5 0 0 1-3 0h-1.5a1.5 1.5 0 1 1 0-3h3.75a.75.75 0 0 0 0-1.5h-1.5a3.75 3.75 0 0 1-.75-7.425v-.076a1.5 1.5 0 0 1 1.5-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M136.562 67.563a1.5 1.5 0 0 1 1.5 1.5v1.5h7.5v-1.5a1.5 1.5 0 1 1 3 0v1.5h6v-1.5a1.5 1.5 0 1 1 3 0v1.5h3a1.5 1.5 0 0 1 0 3h-3v1.688a6.003 6.003 0 0 1 4.5 5.811v10.5a6 6 0 0 1-6 6h-9a6 6 0 0 1-6-6v-10.5a6.002 6.002 0 0 1 4.5-5.81v-1.69h-7.5v22.5a1.5 1.5 0 0 1-3 0v-22.5h-1.5a1.5 1.5 0 1 1 0-3h1.5v-1.5a1.5 1.5 0 0 1 1.5-1.5Zm18 6h-6v1.5h6v-1.5Zm-10.5 7.5a3 3 0 0 1 3-3h9a3 3 0 0 1 3 3v10.5a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-10.5Z\" fill=\"#F8F8F8\"/><path d=\"M3.812 9.438a6 6 0 0 1 6-6h15a6 6 0 0 1 6 6v1.045l2.748 4.123a1.5 1.5 0 1 1-2.497 1.664l-2.988-4.483a1.492 1.492 0 0 1-.264-.87v-1.48a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v7.5h10.5a1.5 1.5 0 0 1 1.5 1.5v4.5a1.5 1.5 0 1 1-3 0v-3h-9v7.5a3 3 0 0 0 3 3h6v-1.5a1.5 1.5 0 0 1 3 0v1.5h6a3 3 0 0 0 3-3v-4.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1-6 6h-15a6 6 0 0 1-6-6v-18Z\" fill=\"#F8F8F8\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 128.688)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nckqxh\",\"data-framer-name\":\"Row 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwyqam\",\"data-framer-name\":\"Avatar Systems\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-s4lkh8\",\"data-framer-name\":\"avatar_systems\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:229,svg:'<svg width=\"229\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M197.354 132.375a2.812 2.812 0 1 1 5.625 0v3.994a2.808 2.808 0 0 1 2.939 1.251 2.803 2.803 0 0 1 3.249.942h.344a3.38 3.38 0 0 1 3.329 2.821l.234 1.403c.02.122.03.246.03.37V147h-2.25v-3.844l-.234-1.403a1.125 1.125 0 0 0-.891-.919v1.104a1.125 1.125 0 0 1-2.25 0v-1.798c-.012-.027-.024-.054-.034-.081a.561.561 0 0 0-1.004-.109 1.497 1.497 0 0 1-.087.118v.744a1.125 1.125 0 0 1-2.25 0v-1.687a.56.56 0 0 0-.532-.561.562.562 0 0 0-.59.5l-.003.027v1.721a1.125 1.125 0 0 1-2.25 0v-8.437a.562.562 0 1 0-1.125 0v11.813a1.125 1.125 0 0 1-2.25 0v-4.405a1.69 1.69 0 0 0-1.125 1.592v4.484c0 1.222.362 2.416 1.04 3.433l.76 1.14a6.192 6.192 0 0 0 5.148 2.756h1.49v.056c0 .877.405 1.674 1.051 2.194h-2.542a8.434 8.434 0 0 1-7.02-3.758l-.759-1.141a8.429 8.429 0 0 1-1.418-4.68v-4.484a3.938 3.938 0 0 1 3.375-3.898v-5.102Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M206.354 149.812a1.125 1.125 0 0 1 1.125-1.124h19.125a1.122 1.122 0 0 1 1.125 1.124v3.432a1.128 1.128 0 0 1-.901 1.102 1.69 1.69 0 0 0-1.352 1.654 1.69 1.69 0 0 0 1.352 1.654 1.12 1.12 0 0 1 .901 1.102v3.432a1.125 1.125 0 0 1-1.125 1.124h-19.125a1.122 1.122 0 0 1-1.125-1.124v-3.432a1.128 1.128 0 0 1 .901-1.102 1.69 1.69 0 0 0 1.352-1.654 1.69 1.69 0 0 0-1.352-1.654 1.12 1.12 0 0 1-.901-1.102v-3.432Zm2.25 1.126v1.504a3.938 3.938 0 0 1 0 7.116v1.504h16.875v-1.504a3.93 3.93 0 0 1-1.641-1.453 3.932 3.932 0 0 1 0-4.21 3.93 3.93 0 0 1 1.641-1.453v-1.504h-16.875Zm-3.602-66.375a24.84 24.84 0 0 0 2.008-1.885 4.501 4.501 0 0 1-1.779 8.635h-5.007a2.812 2.812 0 1 0 0 5.625h14.139a24.284 24.284 0 0 0 2.348 2.25h-16.487a5.062 5.062 0 1 1 0-10.125h5.007a2.25 2.25 0 1 0 0-4.5h-.229Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M201.854 67.688c-3.125 0-5.625 2.483-5.625 5.504 0 2.299 1.294 4.475 2.819 6.22a20.48 20.48 0 0 0 2.806 2.63 20.46 20.46 0 0 0 2.806-2.632c1.525-1.742 2.819-3.918 2.819-6.217 0-3.022-2.5-5.505-5.625-5.505Zm-7.875 5.504c0-4.302 3.545-7.754 7.875-7.754s7.875 3.453 7.875 7.754c0 3.112-1.721 5.809-3.375 7.7a22.32 22.32 0 0 1-3.799 3.43 1.223 1.223 0 0 1-1.402 0 22.322 22.322 0 0 1-3.798-3.43c-1.656-1.891-3.376-4.587-3.376-7.7Zm20.25 14.625c0-3.022 2.499-5.504 5.625-5.504s5.625 2.482 5.625 5.504c0 2.299-1.294 4.475-2.819 6.218a20.493 20.493 0 0 1-2.806 2.633 20.493 20.493 0 0 1-2.806-2.633c-1.525-1.742-2.819-3.918-2.819-6.218Zm5.625-7.754c-4.33 0-7.875 3.453-7.875 7.754 0 3.112 1.721 5.809 3.375 7.7a22.32 22.32 0 0 0 3.799 3.43 1.23 1.23 0 0 0 1.402 0 22.322 22.322 0 0 0 3.798-3.43c1.656-1.891 3.376-4.587 3.376-7.7 0-4.302-3.545-7.754-7.875-7.754Zm-1.125 7.874a1.125 1.125 0 1 1 2.25.002 1.125 1.125 0 0 1-2.25-.001Zm1.125-3.374a3.373 3.373 0 0 0-3.375 3.374 3.375 3.375 0 1 0 3.375-3.374Zm-19.125-11.25a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm1.125-3.376a3.373 3.373 0 0 0-3.375 3.376 3.375 3.375 0 1 0 3.375-3.376ZM14.902 134.49c-.417.466-.727 1.197-.891 1.822h1.717a2.252 2.252 0 0 1 2.23 1.949l.574 4.239h-1.178c-.363 0-.724.05-1.073.148l-.553-4.086H9.98l-2.588 19.125h10.924l-.685-5.062h1.973c.1 0 .2-.003.296-.011l.686 5.073h1.268v2.25H1.604v-2.25h3.517l2.629-19.426a2.249 2.249 0 0 1 2.23-1.949h1.717c-.164-.625-.475-1.356-.89-1.822-.222-.25-.422-.367-.59-.407-.149-.036-.392-.044-.782.158a1.123 1.123 0 0 1-1.667-.894 1.125 1.125 0 0 1 .63-1.101c.79-.412 1.59-.535 2.35-.349.74.179 1.315.619 1.74 1.098a4.7 4.7 0 0 1 .366.466 4.82 4.82 0 0 1 .366-.466c.425-.479 1-.919 1.74-1.099.76-.185 1.56-.062 2.351.348a1.126 1.126 0 0 1-1.038 1.997c-.39-.202-.633-.194-.782-.158-.169.04-.368.157-.59.407Zm2.452 9.697a2.25 2.25 0 0 0-2.25 2.25v2.25a2.25 2.25 0 0 0 2.25 2.25h2.25a2.25 2.25 0 0 0 2.25-2.25v-2.25a2.251 2.251 0 0 0-2.25-2.25h-2.25Zm0 2.25h2.25v2.25h-2.25v-2.25Zm14.625.563a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm.563-2.813a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Zm0 6.75a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Zm-.563 2.813a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm0 6.75a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm.563-2.813a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m18.04 155.647.277 2.041h-1.42l-4.043-4.062-4.044 4.062H7.392l.275-2.041 3.6-3.616-2.738-2.751.584-4.314 2.234-2.509-1.645-1.847.277-2.048h.911l1.963 2.204 1.963-2.204h.91l.279 2.048-1.645 1.847.697.782a3.951 3.951 0 0 0-1.393 1.82l-.81-.911-2.956 3.319 2.956 2.97.702-.707a3.94 3.94 0 0 0 1.237 1.948l-.352.353 3.6 3.616h-.001Zm6.064-6.959h-2.25v-2.25h7.93a2.823 2.823 0 0 0 .507 2.25h-3.938v3.374h3.938a2.804 2.804 0 0 0-.506 2.25h-3.431v4.5h3.937a2.804 2.804 0 0 0-.506 2.25h-3.431a2.25 2.25 0 0 1-2.25-2.25v-10.124ZM214.558 1.642a1.125 1.125 0 0 1 1.591 0l11.25 11.25a1.124 1.124 0 0 1 0 1.59l-2.461 2.462c-2.114 2.115-5.664 1.617-7.116-.997l-1.827-3.29a4.442 4.442 0 0 1-5.655-6.796l4.218-4.22Zm.796 2.386-3.424 3.423a2.193 2.193 0 0 0 .711 3.572 2.185 2.185 0 0 0 2.386-.474l.468-.47a1.12 1.12 0 0 1 .952-.318 1.127 1.127 0 0 1 .827.567l2.516 4.527a2.248 2.248 0 0 0 3.557.498l1.665-1.665-9.658-9.661v.001Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m210.317 5.883-6.056 6.057-.014.015-1.83 1.83a3.376 3.376 0 0 0-.815 3.453l.865 2.593a1.124 1.124 0 0 1-.488 1.32l-5.158 3.095a5.814 5.814 0 1 0 7.976 7.976l3.094-5.158a1.121 1.121 0 0 1 1.32-.489l2.593.866a3.376 3.376 0 0 0 3.454-.816l1.815-1.815.016-.014 7.844-7.845a4.48 4.48 0 0 1-4.34 1.159l-4.301 4.3-9.658-9.66 2.566-2.567a4.44 4.44 0 0 1 1.117-4.3Zm1.896 1.287-.297.298.016-.016.281-.282Zm-7.171 7.171-1.034 1.034a1.13 1.13 0 0 0-.271 1.15l.864 2.595a3.374 3.374 0 0 1-1.465 3.96l-5.158 3.096a3.563 3.563 0 1 0 4.888 4.888l3.095-5.158a3.374 3.374 0 0 1 3.961-1.465l2.595.864a1.121 1.121 0 0 0 1.15-.27l1.034-1.036-9.659-9.658Z\" fill=\"#000\"/><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M72.479 65.438a2.25 2.25 0 0 0-2.25 2.25v6.75h-2.25a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25h6.75c.395 0 .783-.104 1.125-.302.33.191.716.302 1.125.302h6.236a4.541 4.541 0 0 1-1.11-2.25H76.98v-6.75h5.484a4.969 4.969 0 0 1 1.552-1.852 5.27 5.27 0 0 1 .427-.284 2.246 2.246 0 0 0-.713-.115h-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25h-6.75Zm2.25 11.25v6.75h-6.75v-6.75h6.75Zm4.5-2.25h-6.75v-6.75h6.75v6.75Zm-2.25 15.75h-3.375v2.25h2.25v5.624h-2.25v2.25h2.25a2.252 2.252 0 0 0 2.25-2.25v-7.874h-1.125Z\" fill=\"#000\"/><path d=\"M87.102 86.813v-.97a4.378 4.378 0 0 1-2.092-.79c-.72-.529-1.283-1.351-1.283-2.366h2.25c0 .125.068.334.365.551.19.141.45.26.76.328v-1.892c-.594-.1-1.312-.248-1.907-.57a2.757 2.757 0 0 1-1.06-.983c-.282-.459-.408-.987-.408-1.558 0-1.015.563-1.837 1.283-2.366a4.38 4.38 0 0 1 2.092-.79v-.97h1.125v.97c.781.09 1.508.362 2.093.79.72.529 1.282 1.351 1.282 2.366h-2.25c0-.125-.067-.334-.364-.551-.19-.141-.45-.26-.76-.328v1.892c.593.1 1.311.248 1.906.57a2.74 2.74 0 0 1 1.061.983c.281.458.407.987.407 1.558 0 1.015-.562 1.837-1.282 2.366a4.379 4.379 0 0 1-2.093.79v.97h-1.125Zm1.886-3.575c-.19.141-.45.26-.76.328v-1.702c.362.073.63.15.834.26.086.039.16.1.214.178.027.045.076.15.076.385 0 .125-.067.334-.364.551Zm-1.886-5.554v1.702c-.362-.073-.63-.15-.835-.26a.523.523 0 0 1-.213-.18c-.027-.042-.077-.148-.077-.383 0-.125.068-.334.365-.551.19-.141.45-.26.76-.328Zm9.304 11.278a.843.843 0 0 1 1.19 1.182l-4.224 5.148a4.499 4.499 0 0 1-3.479 1.645h-11.79v1.126c0 .409-.11.794-.302 1.124h12.092a6.75 6.75 0 0 0 5.218-2.468l4.224-5.148a3.096 3.096 0 0 0-2.258-5.045 3.094 3.094 0 0 0-2.112.707l-4.497 3.748a2.81 2.81 0 0 0-2.803-3.043h-4.203a6.75 6.75 0 0 0-4.368 1.603l-.762.647h-.23v2.25h.643c.266 0 .524-.096.727-.268l1.078-.914a4.5 4.5 0 0 1 2.912-1.069h4.203a.562.562 0 0 1 0 1.126h-4.11v2.25h6.107c.789 0 1.553-.277 2.16-.782l4.582-3.819h.002Z\" fill=\"#FF323D\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.354 136.312c-2.033 0-3.968-1.782-4.41-4.5h8.82c-.442 2.718-2.377 4.5-4.41 4.5Zm3.895.815c1.474-1.22 2.48-3.097 2.767-5.163.195-1.397-.97-2.402-2.162-2.402h-9c-1.192 0-2.357 1.005-2.162 2.402.288 2.066 1.294 3.943 2.766 5.163-2.252.954-4.213 2.654-5.74 4.607-2.359 3.015-3.864 6.852-3.864 10.108 0 1.658.392 3.06 1.164 4.208.77 1.144 1.862 1.95 3.124 2.517 2.478 1.112 5.785 1.371 9.212 1.371a1.125 1.125 0 0 0 1.125-1.126v-10.124h10.448a1.136 1.136 0 0 0 .918-.475 1.128 1.128 0 0 0 .143-1.024c-.942-2.674-2.607-5.362-4.757-7.395-1.173-1.11-2.514-2.046-3.982-2.666v-.001Zm-3.895 1.435c-2.939 0-5.74 1.842-7.864 4.557-2.121 2.714-3.386 6.078-3.386 8.724 0 1.294.302 2.239.78 2.951.483.717 1.204 1.283 2.18 1.721 1.777.799 4.248 1.104 7.165 1.162v-8.989a2.248 2.248 0 0 1 2.25-2.25h8.773c-.862-1.845-2.093-3.615-3.566-5.009-1.874-1.772-4.062-2.867-6.332-2.867Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.729 153.188a2.248 2.248 0 0 1 2.25-2.25h9.8a1.122 1.122 0 0 1 1.099.882c.227 1.03.351 2.053.351 3.03 0 1.628-.344 3.017-1.027 4.174-.684 1.159-1.665 2.014-2.827 2.634-2.275 1.215-5.32 1.578-8.499 1.643a1.128 1.128 0 0 1-1.06-.689 1.126 1.126 0 0 1-.087-.436v-8.988Zm11.117 0H85.98v7.825c2.613-.126 4.784-.51 6.335-1.339.863-.461 1.51-1.048 1.95-1.793.442-.747.715-1.723.715-3.031 0-.527-.045-1.084-.133-1.662Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.604 1.313a7.872 7.872 0 0 0-7.875 7.875v3.953a12.353 12.353 0 0 0-4.5 9.546c0 6.835 5.541 12.375 12.375 12.375s12.375-5.54 12.375-12.374c0-3.843-1.752-7.277-4.5-9.547V9.187a7.875 7.875 0 0 0-7.875-7.874Zm5.625 10.35V9.186a5.625 5.625 0 0 0-11.25 0v2.476c1.688-.863 3.6-1.35 5.625-1.35s3.938.487 5.625 1.35Zm-15.75 11.024a10.125 10.125 0 1 1 20.25.001 10.125 10.125 0 0 1-20.25 0Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.602 13.768a1.127 1.127 0 0 1 1.125 1.125v1.3a1.124 1.124 0 1 1-2.25 0v-1.3a1.125 1.125 0 0 1 1.125-1.125Zm0 14.289a1.127 1.127 0 0 1 1.125 1.125v1.3a1.124 1.124 0 1 1-2.25 0v-1.3a1.126 1.126 0 0 1 1.125-1.125Zm7.313-8.292a1.126 1.126 0 0 0-1.125-1.949l-1.125.65a1.112 1.112 0 0 0-.53.682 1.125 1.125 0 0 0 1.655 1.266l1.125-.65Zm-11.964 5.608a1.122 1.122 0 0 1-.411 1.536l-1.125.65a1.128 1.128 0 0 1-1.544-.408 1.126 1.126 0 0 1 .419-1.54l1.125-.65a1.123 1.123 0 0 1 1.536.412Zm-1.536-7.557a1.126 1.126 0 0 0-1.125 1.949l1.125.649a1.123 1.123 0 0 0 1.654-1.266 1.123 1.123 0 0 0-.529-.683l-1.125-.649Zm10.838 7.557a1.125 1.125 0 0 1 1.537-.412l1.125.65a1.125 1.125 0 0 1-1.125 1.948l-1.125-.65a1.127 1.127 0 0 1-.412-1.536Zm-7.574-9.998a1.121 1.121 0 0 0-1.54-.418 1.116 1.116 0 0 0-.525.686 1.126 1.126 0 0 0 .117.857l.649 1.125a1.123 1.123 0 0 0 1.872.127 1.127 1.127 0 0 0 .076-1.252l-.649-1.125Zm5.608 11.963a1.126 1.126 0 0 1 1.537.412l.649 1.125A1.124 1.124 0 0 1 148.525 30l-.649-1.125a1.127 1.127 0 0 1 .411-1.537Zm2.186-10.838a1.124 1.124 0 1 0-1.948-1.125l-.649 1.125a1.124 1.124 0 0 0 1.948 1.125l.649-1.125Zm-7.556 10.838a1.125 1.125 0 0 1 .411 1.537L142.679 30a1.122 1.122 0 0 1-1.533.405 1.126 1.126 0 0 1-.415-1.53l.649-1.125a1.125 1.125 0 0 1 1.537-.412Zm-5.109-5.776a1.124 1.124 0 0 0 0 2.25h1.298a1.125 1.125 0 1 0 0-2.25h-1.298Zm13.165 1.125a1.124 1.124 0 0 1 1.125-1.125h1.298a1.127 1.127 0 0 1 .796 1.92c-.211.212-.498.33-.796.33h-1.298a1.125 1.125 0 0 1-1.125-1.125Zm-7.621 0a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-4.5a4.501 4.501 0 1 0 0 9.002 4.501 4.501 0 0 0 0-9.002Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M139.979 138.562a6.751 6.751 0 0 1 13.5 0v3.376h-2.25v-3.376a4.502 4.502 0 0 0-7.682-3.181 4.497 4.497 0 0 0-1.318 3.181v3.376h-2.25v-3.376Zm-2.25 3.376v-3.376a9 9 0 0 1 18 0v3.376h3.375a2.25 2.25 0 0 1 2.25 2.25v16.874a2.248 2.248 0 0 1-2.25 2.25h-24.75a2.25 2.25 0 0 1-2.25-2.25v-16.874a2.248 2.248 0 0 1 2.25-2.25h3.375Zm9-5.626a2.25 2.25 0 0 0-2.25 2.25v3.376h4.5v-3.376a2.25 2.25 0 0 0-2.25-2.25Zm-12.375 7.876v16.874h24.75v-16.874h-24.75Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.605 150.938a1.125 1.125 0 1 1 2.25-.002 1.125 1.125 0 0 1-2.25.002Zm1.125-3.375a3.372 3.372 0 0 0-1.125 6.558v3.567h2.25v-3.567a3.376 3.376 0 0 0-1.125-6.558ZM71.243 10.025l.642.37c.212.123.379.312.474.537l.515 1.219a4.5 4.5 0 0 0 1.895 2.146l6.453 3.726.018.01 1.005.58a.812.812 0 1 0 .812-1.407l-6.293-3.634 1.125-1.949 5.674 3.277.157-.546a1.126 1.126 0 0 0-.122-.896l-1.583-2.595a4.5 4.5 0 0 0-2.4-1.92l-5.798-1.96a1.125 1.125 0 0 1-.238-.112l-.278-.174.596-.964.587-.95.18.112 5.67 1.918a6.75 6.75 0 0 1 3.602 2.879l1.582 2.594a3.375 3.375 0 0 1 .365 2.686l-.279.975 2.99.854a2.25 2.25 0 0 1 1.553 2.756l-2.082 7.63h-2.332l2.244-8.223-2.29-.654a3.06 3.06 0 0 1-3.004 2.662l-1.51.59-1.466 5.626H77.38l1.237-4.739a3.07 3.07 0 0 1-2.768-4.929l-2.205-1.274a6.75 6.75 0 0 1-2.844-3.22l-.368-.87-.564-.327a2.25 2.25 0 0 0 .7-.713l.675-1.091Zm2.338-5.81-.043-.026.043.026Zm4.995 15.946a.818.818 0 0 1-.702-1.473l1.499.867-.086.33-.71.276Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.572 11.116a2.249 2.249 0 0 1-3.13.708l-1.757-1.127 1.216-1.892 1.757 1.128 2.734-4.422-3.438-2.114 1.178-1.917 4.399 2.704.96.591-.592.959-3.327 5.383v-.001Zm-.34 16.071a2.25 2.25 0 0 0-2.25 2.25v5.625h2.25v-5.625h24.75v5.625h2.25v-5.625a2.25 2.25 0 0 0-2.25-2.25h-24.75Z\" fill=\"#000\"/><g clip-path=\"url(#b)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M18.58.188a1.125 1.125 0 0 1 1.074.79l.978 3.134c.287.106.568.223.845.35l2.91-1.525a1.125 1.125 0 0 1 1.317.203l3.324 3.323a1.125 1.125 0 0 1 .202 1.317l-1.526 2.91c.127.276.243.557.35.843l3.134.98a1.125 1.125 0 0 1 .79 1.074v4.7a1.125 1.125 0 0 1-.79 1.075l-2.956.924-1.85-1.645c.128-.128.286-.224.46-.278l2.887-.902v-3.047l-2.887-.902a1.124 1.124 0 0 1-.735-.731 10.286 10.286 0 0 0-.66-1.594 1.126 1.126 0 0 1 .001-1.039l1.404-2.68-2.154-2.154-2.68 1.404a1.125 1.125 0 0 1-1.038.003 10.293 10.293 0 0 0-1.594-.661 1.124 1.124 0 0 1-.732-.736l-.902-2.886h-3.046l-.902 2.886a1.125 1.125 0 0 1-.732.737c-.548.175-1.081.396-1.593.66a1.125 1.125 0 0 1-1.038-.003L7.76 5.314 5.606 7.468 7.01 10.15a1.125 1.125 0 0 1 .003 1.039 10.293 10.293 0 0 0-.66 1.593 1.125 1.125 0 0 1-.736.731l-2.888.902v3.047l2.888.902a1.125 1.125 0 0 1 .736.731c.176.553.398 1.085.66 1.593a1.125 1.125 0 0 1-.003 1.039l-1.404 2.68 2.154 2.155 2.68-1.404a1.124 1.124 0 0 1 1.04-.003c.507.262 1.04.483 1.592.66a1.125 1.125 0 0 1 .732.736l.902 2.887h3.046l.902-2.886c.064-.203.184-.384.346-.522l1.61 1.809-.956 3.06a1.125 1.125 0 0 1-1.075.79h-4.7a1.126 1.126 0 0 1-1.074-.79l-.98-3.134a12.464 12.464 0 0 1-.843-.35l-2.91 1.524a1.125 1.125 0 0 1-1.318-.203L3.43 25.412a1.125 1.125 0 0 1-.202-1.317l1.526-2.91a12.525 12.525 0 0 1-.349-.844l-3.135-.979a1.125 1.125 0 0 1-.791-1.074v-4.7a1.125 1.125 0 0 1 .79-1.075l3.135-.979c.106-.287.223-.568.349-.844L3.23 7.78a1.125 1.125 0 0 1 .2-1.317l3.324-3.325a1.125 1.125 0 0 1 1.318-.2l2.909 1.523c.277-.126.558-.243.844-.348l.98-3.136a1.125 1.125 0 0 1 1.074-.79h4.701Z\" fill=\"#000\"/><path d=\"M12.8 10.039a1.125 1.125 0 0 0 .308 1.016l3.476 3.476-1.694 1.692-3.476-3.475a1.125 1.125 0 0 0-1.835.368 7.165 7.165 0 0 0 8.718 9.58l9.356 10.516a4.19 4.19 0 1 0 5.919-5.918l-10.517-9.358a7.165 7.165 0 0 0-9.58-8.717 1.125 1.125 0 0 0-.675.82Zm3.366.892a4.916 4.916 0 0 1 4.54 6.886 1.125 1.125 0 0 0 .282 1.292l11.089 9.866a1.944 1.944 0 0 1-.58 3.247 1.94 1.94 0 0 1-2.163-.505l-9.866-11.088a1.125 1.125 0 0 0-1.292-.284 4.918 4.918 0 0 1-6.885-4.54l2.804 2.805a1.125 1.125 0 0 0 1.59 0l3.286-3.285a1.125 1.125 0 0 0 0-1.59l-2.806-2.804Z\" fill=\"#FF323D\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.729 78.938v13.5h2.25v-13.5h-2.25Zm5.625 13.5v-13.5h2.25v13.5h-2.25Zm5.625 0v-13.5h2.25v13.5h-2.25Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.473 65.809a2.25 2.25 0 0 1 2.012 0L34.11 73.12a2.25 2.25 0 0 1 1.244 2.01v1.557a2.25 2.25 0 0 1-2.25 2.25h-2.25v13.5h2.25a2.25 2.25 0 0 1 2.25 2.25v2.25a2.25 2.25 0 0 1-2.25 2.25H3.854a2.25 2.25 0 0 1-2.25-2.25v-2.25a2.25 2.25 0 0 1 2.25-2.25h2.25v-13.5h-2.25a2.25 2.25 0 0 1-2.25-2.25v-1.555a2.25 2.25 0 0 1 1.244-2.013l14.625-7.312ZM8.354 92.438v-13.5h20.25v13.5H8.354Zm24.75-17.305L18.479 67.82 3.854 75.133v1.555h29.25v-1.555ZM3.854 94.688v2.25h29.25v-2.25H3.854Zm14.625-23.625a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm135 9h9v16.874a2.25 2.25 0 0 1-2.25 2.25h-4.5a2.25 2.25 0 0 1-2.25-2.25V80.064Zm2.25 2.25v14.624h4.5V82.314h-4.5Zm-13.5 3.374h9v11.25a2.25 2.25 0 0 1-2.25 2.25h-4.5a2.25 2.25 0 0 1-2.25-2.25v-11.25Zm2.25 2.25v9h4.5v-9h-4.5Zm-12.375 2.25h-1.125v6.75a2.25 2.25 0 0 0 2.25 2.25h4.5a2.25 2.25 0 0 0 2.25-2.25v-6.75h-7.875Zm1.125 6.75v-4.5h4.5v4.5h-4.5Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M153.479 68.813a2.25 2.25 0 0 1 2.25-2.25h4.5a2.25 2.25 0 0 1 2.25 2.25v11.25h-2.25v-11.25h-4.5v11.25h-2.25v-11.25Zm-9 6.75a2.25 2.25 0 0 0-2.25 2.25v7.874h2.25v-7.874h4.5v7.874h2.25v-7.874a2.25 2.25 0 0 0-2.25-2.25h-4.5Zm-11.25 9a2.25 2.25 0 0 0-2.25 2.25v3.374h2.25v-3.374h4.5v3.374h2.25v-3.374a2.25 2.25 0 0 0-2.25-2.25h-4.5Z\" fill=\"#FF323D\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(64.604 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(.479 .188)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ol1207\",\"data-framer-name\":\"Spring Health\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9mt6b4\",\"data-framer-name\":\"spring_health\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M205.913 130.206a1.5 1.5 0 1 0-2.952-.537l-6 33a1.5 1.5 0 0 0 2.952.537l.596-3.279c.059.007.118.011.178.011h8.069c.034 1.078.392 2.274 1.09 3.67a1.499 1.499 0 1 0 2.683-1.341c-.552-1.104-.736-1.838-.77-2.329h9.928c.061 0 .12-.004.178-.011l.596 3.279a1.5 1.5 0 0 0 2.952-.537l-6-33a1.5 1.5 0 0 0-2.952.537l.224 1.232h-3.349c-.59-1.379-1.388-2.296-2.067-2.749a1.5 1.5 0 0 0-1.664 2.497c.05.033.144.115.262.252h-4.178l.224-1.232Zm5.168 4.232h-5.894l-.043-.001-1.637 9.001h4.061a6.942 6.942 0 0 1 1.005-2.531 3.907 3.907 0 0 1-.343-.19 5.713 5.713 0 0 1-1.01-.813 5.71 5.71 0 0 1-.812-1.009c-.195-.315-.471-.844-.471-1.457a1.5 1.5 0 0 1 1.5-1.5c.614 0 1.143.275 1.458.47.364.226.711.514 1.009.813.272.271.536.584.751.913.333-.587.532-1.247.532-2.196 0-.554-.039-1.053-.106-1.5Zm-3.531 12h-4.588l-1.909 10.5h8.599c.08-.119.161-.231.242-.338.199-.266.364-.47.507-.646.26-.321.443-.548.614-.878.19-.366.327-.834.193-1.642-.158-.945-.422-1.559-.703-2.019a4.753 4.753 0 0 0-.241-.358 3.588 3.588 0 0 1-.297.588 5.76 5.76 0 0 1-.813 1.009 5.67 5.67 0 0 1-1.009.813c-.315.195-.844.471-1.458.471a1.5 1.5 0 0 1-1.5-1.5c0-.614.276-1.143.471-1.458a5.71 5.71 0 0 1 .812-1.009 5.758 5.758 0 0 1 1.01-.813c.218-.135.538-.308.918-.402a5.909 5.909 0 0 1-.341-.634 6.41 6.41 0 0 1-.507-1.684Zm5.848 10.5c.101-.158.197-.32.281-.483.236-.454.413-.95.507-1.502.111.036.214.063.304.084.416.098.866.139 1.288.139.422 0 .871-.041 1.288-.139.361-.085.93-.264 1.364-.698a1.501 1.501 0 0 0 0-2.121c-.434-.434-1.003-.613-1.364-.698a5.728 5.728 0 0 0-1.288-.139c-.422 0-.872.041-1.288.139a3.57 3.57 0 0 0-.603.195 7.808 7.808 0 0 0-.822-1.864c-.426-.696-.915-1.236-1.292-1.652l-.001-.001a12.361 12.361 0 0 1-.126-.139c-.409-.455-.675-.782-.867-1.197a3.135 3.135 0 0 1-.159-.424h8.793l1.909 10.5h-7.924Zm-2.742-13.5c.259-.775.728-1.344 1.309-2.04l.015-.019.219-.263c.088.1.179.197.271.288.299.299.646.588 1.01.813.315.195.844.471 1.457.471a1.5 1.5 0 0 0 1.5-1.5c0-.614-.275-1.143-.47-1.458a5.76 5.76 0 0 0-.813-1.009 5.715 5.715 0 0 0-1.009-.813 6.344 6.344 0 0 0-.167-.098 8.012 8.012 0 0 0 .209-1.872c0-.528-.029-1.028-.082-1.5h3.082l.044-.001 1.636 9.001h-8.211Z\" fill=\"#136338\"/></g><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M220.938 3.188a8.253 8.253 0 0 0-8.113 6.74l3.302-3.301a1.5 1.5 0 1 1 2.121 2.121l-3.439 3.44h.129a8.25 8.25 0 0 0 8.25-8.25v-.75h-2.25Zm-8.25 12v15.705c1.613-.82 3.859-1.456 6.75-1.456 2.89 0 5.136.635 6.75 1.456v-18.15c-.427-.406-1.302-1.025-2.714-1.478a11.223 11.223 0 0 1-8.536 3.922h-2.25Zm12.456-6.511a11.222 11.222 0 0 0 1.044-4.74v-2.25a1.5 1.5 0 0 0-1.5-1.5h-3.75c-5.467 0-10.022 3.899-11.039 9.067-1.627-.874-3.942-1.566-6.961-1.566-5.319 0-8.455 2.15-9.487 3.65-.171.25-.263.546-.263.85v21.75a1.5 1.5 0 0 0 2.736.85c.343-.5 2.432-2.35 7.014-2.35 4.581 0 6.67 1.85 7.013 2.35a1.502 1.502 0 0 0 2.473 0c.343-.5 2.432-2.35 7.014-2.35 4.581 0 6.67 1.85 7.013 2.35a1.5 1.5 0 0 0 2.737-.85v-21.75c0-.304-.093-.6-.264-.85-.583-.848-1.839-1.904-3.78-2.661Zm-15.456 4.066c-.742-.706-2.837-2.056-6.75-2.056-3.914 0-6.009 1.35-6.75 2.056v18.15c1.613-.82 3.859-1.456 6.75-1.456 2.89 0 5.136.635 6.75 1.456v-18.15Z\" fill=\"#136338\"/></g><g clip-path=\"url(#c)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.498 130.998a1.5 1.5 0 1 0-2.121-2.121l-4.33 4.329-.105.054a28.085 28.085 0 0 0-7.286-.157c-4.028.446-8.907 1.928-12.962 5.927-3.69 3.639-5.514 8.449-6.41 12.707-.899 4.273-.892 8.131-.813 10.019a2.774 2.774 0 0 0 2.727 2.675 28.871 28.871 0 0 0 6.433-.61c1.239-.257 1.709-1.513 1.41-2.452a2.25 2.25 0 0 1 2.38-2.92 1.935 1.935 0 0 0 2.094-1.527 3.752 3.752 0 0 1 6.346-1.863c.71.722 2.02.836 2.802-.097a27.786 27.786 0 0 0 1.711-2.273c2.3-3.402 3.312-7.411 3.748-10.699.438-3.3.312-5.995.252-6.868l4.124-4.124Zm-11.082 4.941c-5.439 3.677-9.676 8.29-11.57 12.078a1.5 1.5 0 1 0 2.683 1.341c1.862-3.724 6.672-8.777 12.908-12.405a34.02 34.02 0 0 1-.289 4.642c-.405 3.054-1.322 6.549-3.259 9.414-.27.399-.546.783-.826 1.151a6.752 6.752 0 0 0-10.245 3.29 5.25 5.25 0 0 0-4.866 5.633 25.743 25.743 0 0 1-4.491.353c-.065-1.811-.04-5.282.759-9.081.831-3.954 2.472-8.123 5.58-11.189 3.434-3.386 7.6-4.684 11.187-5.082.854-.094 1.67-.137 2.429-.145Z\" fill=\"#136338\"/></g><g clip-path=\"url(#d)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M197.831 76.347a7.51 7.51 0 0 1 4.41-5.433 7.501 7.501 0 0 1 7.447-6.602h3a7.501 7.501 0 0 1 7.446 6.602 7.51 7.51 0 0 1 4.41 5.433 5.251 5.251 0 0 1 1.644 9.96v.505a7.503 7.503 0 0 1-4.554 6.9 7.5 7.5 0 0 1-7.446 6.6h-6a7.5 7.5 0 0 1-7.447-6.6 7.502 7.502 0 0 1-4.553-6.9v-.505a5.25 5.25 0 0 1 1.643-9.96Zm.607 2.966a2.25 2.25 0 1 0 0 4.5h7.552a6 6 0 0 1 5.198-3 5.999 5.999 0 0 1 5.197 3h7.553a2.25 2.25 0 0 0 0-4.5h-25.5Zm22.993-3h-20.487a4.5 4.5 0 0 1 4.244-3h12a4.5 4.5 0 0 1 4.243 3Zm-4.243 10.5v4.5h1.5a4.5 4.5 0 0 0 4.5-4.5h-6Zm-12 0h-6a4.5 4.5 0 0 0 4.5 4.5h1.5v-4.5Zm11.743-16.5h-11.487a4.5 4.5 0 0 1 4.244-3h3a4.5 4.5 0 0 1 4.243 3Zm-12.987 24a4.5 4.5 0 0 0 4.244 3h6a4.5 4.5 0 0 0 4.243-3h-14.487Zm10.244-7.5v4.5h-6v-4.5a3 3 0 1 1 6 0Z\" fill=\"#136338\"/></g><g clip-path=\"url(#e)\" fill=\"#136338\"><path d=\"M82.526 64.37a1.5 1.5 0 0 1 1.854 1.03l.902 3.156.023.085c1.518-.69 3.91-.856 6.867.488a1.5 1.5 0 0 1 .298 2.551c-2.606 2.02-5.395 1.472-7.1.658a7.493 7.493 0 0 1-.446 1.324l-1.033 2.323a4.5 4.5 0 0 0 0 3.655l1.166 2.623a7.5 7.5 0 0 1 .526 4.388l-1.073 5.897a4.5 4.5 0 0 0-.072.805v5.46a1.5 1.5 0 0 1-3 0v-5.46c0-.45.04-.898.12-1.341l1.073-5.898a4.5 4.5 0 0 0-.315-2.633l-1.166-2.623a7.498 7.498 0 0 1-.642-3.3c-3.71-1.528-5.07-4.077-5.07-5.746a1.5 1.5 0 0 1 1.709-1.485c1.18.166 3.355.951 4.693 2.887l.342-.77a4.5 4.5 0 0 0 .215-3.064l-.902-3.155a1.5 1.5 0 0 1 1.03-1.855Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M78.438 83.812a5.984 5.984 0 0 1-1.932 4.41 6.564 6.564 0 0 1 2.426 4.135l.987 6.22a1.5 1.5 0 0 1-2.963.47l-.987-6.22a3.575 3.575 0 0 0-7.063 0l-.987 6.22a1.5 1.5 0 1 1-2.963-.47l.988-6.22a6.564 6.564 0 0 1 2.425-4.135 6 6 0 1 1 10.069-4.41Zm-6-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm25.068 7.41a6 6 0 1 0-8.137 0 6.564 6.564 0 0 0-2.425 4.135l-.988 6.22a1.5 1.5 0 0 0 2.963.47l.987-6.22a3.576 3.576 0 0 1 7.063 0l.987 6.22a1.5 1.5 0 1 0 2.963-.47l-.987-6.22a6.564 6.564 0 0 0-2.426-4.135Zm-7.068-4.41a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"/></g><g clip-path=\"url(#f)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M69.438 7.688a4.5 4.5 0 0 1 4.5-4.5h6c1.152 0 2.204.433 3 1.145a4.483 4.483 0 0 1 3-1.146h6a4.5 4.5 0 0 1 4.5 4.5v1.554a5.251 5.251 0 0 1 4.5 5.197v13.37c0 4.22-5.294 6.11-7.967 2.844a1.49 1.49 0 0 0-1.759-.418l-2.218.986a7.673 7.673 0 0 1-6.107.055l-17.003-7.194a1.504 1.504 0 0 1-.946-1.42v-8.224a5.251 5.251 0 0 1 4.5-5.197V7.688Zm-1.5 13.5h4.5v-6.75a2.25 2.25 0 1 0-4.5 0v6.75Zm7.5 0h15v-4.5h-15v4.5Zm18 0h4.5v-6.75a2.25 2.25 0 1 0-4.5 0v6.75Zm0-13.5v2.005a5.256 5.256 0 0 0-2.947 3.995h-6.053v-6a1.5 1.5 0 0 1 1.5-1.5h6a1.5 1.5 0 0 1 1.5 1.5Zm-12 6v-6a1.5 1.5 0 0 0-1.5-1.5h-6a1.5 1.5 0 0 0-1.5 1.5v2.005a5.256 5.256 0 0 1 2.947 3.995h6.053Z\" fill=\"#136338\"/></g><g clip-path=\"url(#g)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m18.142 65.97-5.594 2.798c-2.597-2.381-6.556-2.263-9.018.356l-1.217 1.294a2.308 2.308 0 0 0 0 3.148l.312.332c.425.451.896.83 1.4 1.135-.086.43-.131.876-.131 1.33v.675a2.25 2.25 0 0 0 2.25 2.25h.74c.35 0 .694-.027 1.03-.079a6.89 6.89 0 0 0 1.016 1.397l.312.333a2.196 2.196 0 0 0 3.213 0l1.217-1.295c2.187-2.325 2.483-5.872.89-8.529l2.75-1.375v14.073h-10.5a1.5 1.5 0 0 0-1.5 1.5v6a1.5 1.5 0 0 0 1.5 1.5h1.77l1.26 6.294a1.5 1.5 0 0 0 1.47 1.206h15a1.5 1.5 0 0 0 1.471-1.206l1.26-6.294h1.77a1.5 1.5 0 0 0 1.5-1.5v-6a1.5 1.5 0 0 0-1.5-1.5H20.312v-2.151l6.772-4.063-1.543-2.573-5.229 3.137V67.688H19l-.858-1.717Zm4.243 20.843-1.5 3H8.312v-3h14.073Zm-4.588 6h-6.155l.9 4.5h12.54l.9-4.5h-4.954l.677 1.692a1.5 1.5 0 1 1-2.785 1.115l-1.123-2.807Zm7.943-6-1.5 3h5.073v-3H25.74ZM10.723 71.179c-1.394-1.483-3.614-1.483-5.008 0l-.76.809c.408.39.87.656 1.349.809l1.596.51-.683 1.53a3.728 3.728 0 0 0-.322 1.45c.477 0 .93-.09 1.345-.252l1.505-.584.473 1.543c.138.453.354.88.645 1.26l.624-.665c1.443-1.535 1.443-4.06 0-5.594l-.28-.298-.122-.1-.087-.125-.275-.293Z\" fill=\"#136338\"/></g><g clip-path=\"url(#h)\" fill=\"#136338\"><path d=\"m148.307 130.601-1.245.836-1.246-.836 1.246-1.853 1.245 1.853Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m160.555 143.104-.137-1.494-.004.001h-.006l-.02.002-.039.004-.028.003a20.433 20.433 0 0 0-1.077.153c-.704.118-1.68.315-2.78.631-.747.214-1.57.489-2.413.84-.601-2.562-1.644-5.079-2.64-7.133a53.039 53.039 0 0 0-2.826-5.082l-.201-.312-.055-.083-.016-.023-.004-.007-.002-.002-1.245.835-1.246-.836-.002.003-.004.007-.016.023-.055.083-.201.312a53.039 53.039 0 0 0-2.826 5.082c-.996 2.054-2.038 4.571-2.64 7.133a22.228 22.228 0 0 0-2.413-.84 25.384 25.384 0 0 0-3.62-.756 11.123 11.123 0 0 0-.237-.028l-.067-.007-.02-.002h-.009c0-.001-.002-.001-.138 1.493l.136-1.494-1.559-.142-.075 1.564 1.498.072-1.498-.072v.002l-.001.003v.007l-.001.021-.002.069a16.81 16.81 0 0 0 .012 1.094c.028.641.098 1.505.263 2.483a15.26 15.26 0 0 0-1.779-.107 1.5 1.5 0 0 0-1.5 1.5c0 3.901 1.239 9.386 2.25 12.252a2.634 2.634 0 0 0 1.972 1.734c.841.172 1.705-.06 2.38-.567 3.148-2.369 7.247-3.586 11.398-3.586 4.15 0 8.249 1.217 11.397 3.586.675.507 1.539.739 2.38.567a2.634 2.634 0 0 0 1.972-1.734c1.011-2.866 2.251-8.351 2.251-12.252a1.5 1.5 0 0 0-1.5-1.5c-.581 0-1.176.036-1.78.107a20.42 20.42 0 0 0 .263-2.483 16.81 16.81 0 0 0 .012-1.094l-.002-.069-.001-.021-.001-.01v-.001l-1.498.071Zm-5.993 4.167c0-.317-.012-.636-.033-.958a18.59 18.59 0 0 1 2.763-1.026 22.802 22.802 0 0 1 1.704-.417 16.947 16.947 0 0 1-.221 1.616c-.358 1.922-1.119 4.064-2.637 5.54-1.061 1.031-2.436 1.71-3.828 2.152 1.245-1.628 2.252-3.881 2.252-6.907Zm-15 0c0 3.026 1.006 5.279 2.251 6.907-1.392-.442-2.767-1.121-3.828-2.152-1.518-1.476-2.279-3.618-2.637-5.54a16.947 16.947 0 0 1-.221-1.616c.499.102 1.079.238 1.704.417a18.59 18.59 0 0 1 2.763 1.026c-.021.322-.032.641-.032.958Zm7.5-12.963a49.951 49.951 0 0 0-1.651 3.111c-1.48 3.055-2.849 6.757-2.849 9.852 0 3.289 1.593 5.336 3 6.502v-5.669a1.5 1.5 0 1 1 3 0v5.669c1.406-1.166 3-3.213 3-6.502 0-3.095-1.37-6.797-2.85-9.852a50.533 50.533 0 0 0-1.65-3.111Zm-7.995 22.016c-1.118-.522-2.217-1.218-3.173-2.147-1.3-1.263-2.153-2.799-2.715-4.297a15.152 15.152 0 0 0-1.049-.172c.247 3.139 1.12 6.982 1.891 9.298a20.17 20.17 0 0 1 5.046-2.682Zm15.989 0c1.118-.522 2.217-1.218 3.173-2.147 1.3-1.263 2.153-2.799 2.715-4.297.355-.071.705-.128 1.049-.172-.247 3.139-1.12 6.982-1.891 9.298a20.17 20.17 0 0 0-5.046-2.682Z\"/><path d=\"m160.555 143.104-.137-1.494 1.56-.142.075 1.565-1.498.071Zm-2.661-11.368a1.5 1.5 0 0 1 .303 2.1l-1.684 2.25a1.499 1.499 0 1 1-2.402-1.797l1.684-2.25a1.499 1.499 0 0 1 2.099-.303Zm-19.334.369a1.5 1.5 0 0 0-2.496 1.664l1.5 2.25a1.499 1.499 0 1 0 2.496-1.664l-1.5-2.25Zm-6.339 3.912a1.499 1.499 0 0 1 2.012-.671l1.5.75a1.5 1.5 0 1 1-1.342 2.683l-1.5-.75a1.499 1.499 0 0 1-.67-2.012Zm27.67-.671a1.5 1.5 0 0 1 1.342 2.683l-1.5.75a1.499 1.499 0 1 1-1.342-2.683l1.5-.75Z\"/></g><g clip-path=\"url(#i)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.313 135.188a5.25 5.25 0 1 1 9.946 2.348 7.686 7.686 0 0 1 2.896 4.833l.284 1.705a5.03 5.03 0 0 1-1.943 4.851l-.476.357a1.498 1.498 0 0 0-.542.788l-1.22 4.271-.016.052a1.496 1.496 0 0 1-.794.903l-18.708 8.98a1.478 1.478 0 0 1-.703.162h-1.475a3.422 3.422 0 0 1-3.319-2.592l-1.647-6.59a.641.641 0 0 0-.334-.417 4.709 4.709 0 0 1-2.54-4.986l.248-1.484a7.692 7.692 0 0 1 3.576-5.301 5.25 5.25 0 1 1 8.033 0 7.692 7.692 0 0 1 3.576 5.301l.247 1.484a4.709 4.709 0 0 1-2.539 4.986.641.641 0 0 0-.334.417l-1.073 4.292c1.095-.703 2.14-1.355 3.18-2.003l.008-.005c1.825-1.138 3.628-2.263 5.669-3.645v-3.879c0-.364-.172-.707-.463-.925l-.22-.166a5.03 5.03 0 0 1-1.944-4.851l.284-1.705a7.687 7.687 0 0 1 2.896-4.833 5.224 5.224 0 0 1-.553-2.348Zm-12.75 2.25a2.25 2.25 0 1 0-.001 4.5 2.25 2.25 0 0 0 0-4.5Zm-4.634 11.425a4.697 4.697 0 0 1 9.267 0l.247 1.483a1.71 1.71 0 0 1-.921 1.81 3.64 3.64 0 0 0-1.903 2.372l-1.648 6.59a.422.422 0 0 1-.817 0l-1.648-6.59a3.64 3.64 0 0 0-1.903-2.372 1.71 1.71 0 0 1-.921-1.81l.247-1.483Z\" fill=\"#136338\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.063 18.145c.011-1.62.663-2.965 1.767-4.006 1.071-1.009 2.524-1.697 4.132-2.182 1.098-.332 2.325-.585 3.649-.775a19.703 19.703 0 0 1 1.844-4.501c.736-1.294 1.648-2.508 2.718-3.416 1.071-.907 2.389-1.578 3.889-1.578 1.501 0 2.819.671 3.89 1.578 1.07.908 1.982 2.122 2.718 3.416a19.703 19.703 0 0 1 1.844 4.5c1.324.19 2.551.444 3.649.776 1.608.485 3.061 1.173 4.132 2.182 1.114 1.05 1.767 2.41 1.767 4.049 0 8.564-7.679 15-18 15-10.305 0-17.978-6.417-18-14.964l.001-.08Zm14-9.981c-1.256 2.209-2.001 4.88-2.001 6.723 0 1.24.34 2.39.924 3.36a73.56 73.56 0 0 0 7.03-.114c.461-.03.906-.065 1.332-.103.74-.066 1.423-.143 2.035-.227a6.52 6.52 0 0 0 .679-2.916c0-1.843-.744-4.514-2-6.723-.622-1.093-1.326-1.996-2.05-2.61-.723-.613-1.379-.867-1.95-.867-.57 0-1.226.254-1.949.867-.724.614-1.428 1.517-2.05 2.61Zm10.527 12.49c.489-.08.93-.166 1.316-.256a53.706 53.706 0 0 0 1.543-.386 1.5 1.5 0 0 0-.639-2.928 9.637 9.637 0 0 0 .236-2.78c.816.145 1.569.319 2.25.524 1.379.417 2.342.93 2.941 1.494.552.52.822 1.103.825 1.852v.014c0 .184-.179.731-1.281 1.55-1.023.76-2.54 1.52-4.39 2.197-3.694 1.352-8.395 2.253-12.329 2.253a1.5 1.5 0 0 0 0 3c4.317 0 9.366-.974 13.36-2.435a25.95 25.95 0 0 0 3.325-1.466c-2.209 4.017-7.076 6.9-13.685 6.9-8.221 0-13.748-4.463-14.812-10.019 3.561.78 7.718 1.087 11.521 1.113a71.896 71.896 0 0 0 7.634-.34 38.103 38.103 0 0 0 2.185-.286Zm-14.992-2.599a9.565 9.565 0 0 1-.519-3.75c-.816.144-1.569.318-2.25.524-1.379.416-2.342.928-2.941 1.493a2.674 2.674 0 0 0-.59.78c1.903.458 4.066.767 6.3.953Z\" fill=\"#136338\"/><path d=\"M153.062 73.312a1.5 1.5 0 1 0 0-2.999 1.5 1.5 0 0 0 0 3Z\" fill=\"#136338\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M159.06 76.05v-.613l5.436-5.396a1.5 1.5 0 0 0-.875-2.554l-5.463-.665a8.028 8.028 0 0 0-9.537-1.388 8.752 8.752 0 0 0-4.561 7.683v.466a41.64 41.64 0 0 0-5.95 1.8c-1.133.18-2.19.41-3.148.699-1.608.485-3.061 1.173-4.132 2.182-1.114 1.05-1.768 2.41-1.768 4.048h.012a1.58 1.58 0 0 0-.01.208c.126 8.465 7.763 14.792 17.998 14.792 10.236 0 17.873-6.327 17.999-14.792a1.58 1.58 0 0 0-.01-.208h.011c0-1.638-.653-2.998-1.767-4.048-1.071-1.009-2.524-1.697-4.132-2.182l-.103-.031Zm-2.9-6.978a5.027 5.027 0 0 0-6.102-1.005 5.752 5.752 0 0 0-2.998 5.05v1.695a1.5 1.5 0 0 1-1.232 1.476c-5.249.954-9.902 3.188-12.453 4.596-.363.2-.6.58-.624 1.017a29.094 29.094 0 0 0 7.486 3.068c1.945.204 3.98.297 6.046.271a5.982 5.982 0 0 0 2.76-3.727l.26-1.058a1.5 1.5 0 1 1 2.914.715l-.26 1.058a8.997 8.997 0 0 1-1.2 2.772 51.284 51.284 0 0 0 3.321-.425 7.447 7.447 0 0 0 1.982-5.081v-4.682c0-.4.159-.783.443-1.064l3.684-3.657-2.931-.357a1.5 1.5 0 0 1-.921-.472l-.175-.19Zm2.127 14.393a29.92 29.92 0 0 0 3.669-1.911c-.126-.413-.364-.773-.719-1.107-.482-.454-1.198-.874-2.177-1.238v.285c0 1.414-.276 2.753-.773 3.97Zm3.148 2.43a43.554 43.554 0 0 1-3.696 1.02c-5.841 2.142-12.068 2.48-18.031 1.014-2.385-.26-4.649-.681-6.699-1.252 1.999 4.393 7.048 7.635 14.053 7.635 7.415 0 12.639-3.632 14.373-8.418Z\" fill=\"#136338\"/><g clip-path=\"url(#j)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#136338\"><path d=\"M26.793 1.337a1.5 1.5 0 0 1 1.134-.395c4.49.345 8.886 4.59 8.886 9.745 0 2.102-.429 3.586-.817 4.848l-.05.16c-.36 1.171-.633 2.058-.633 3.242 0 1.2.28 1.915.642 2.818l.008.02c.387.967.85 2.123.85 3.913a1.5 1.5 0 0 1-.974 1.405l.534.534a1.5 1.5 0 0 1 .44 1.06v3a1.5 1.5 0 0 1-1.5 1.5h-13.5a1.5 1.5 0 0 1-1.5-1.5v-3c0-.398.158-.78.439-1.06l.534-.534a1.5 1.5 0 0 1-.974-1.405c0-3.537 1.785-6.132 3.33-8.063.197-.247.385-.477.564-.693l-1.224.544a3 3 0 0 1-3.902-1.4l-.46-.919a3 3 0 0 1 .226-3.062l3.13-4.472a9 9 0 0 1 4.337-3.311V2.437a1.5 1.5 0 0 1 .48-1.1Zm6.839 22.85c-.116-.449-.279-.859-.462-1.317l-.008-.02c-.387-.967-.85-2.123-.85-3.913 0-1.649.397-2.927.746-4.056l.001-.002.07-.226c.362-1.176.684-2.317.684-3.966 0-2.887-2.097-5.423-4.5-6.371v2.293l-1.418.354a6 6 0 0 0-3.46 2.38l-3.131 4.473.46.919 5.44-2.418a1.5 1.5 0 0 1 2.108 1.37c0 1.236-.61 2.31-1.212 3.162-.401.57-.92 1.195-1.421 1.802-.24.29-.477.576-.695.849-1.146 1.432-2.144 2.918-2.516 4.688h10.164Zm-8.198 3-2.122 2.122v.878h10.5v-.878l-2.12-2.122h-6.258ZM5.313 4.688a1.5 1.5 0 0 0-3 0v4.5c0 .296.087.585.251.832l2.632 3.947-2.83 11.324c-.035.126-.054.26-.054.396v6a1.5 1.5 0 0 0 1.5 1.5h12a1.5 1.5 0 0 0 1.5-1.5v-6c0-.137-.018-.27-.052-.396l-2.831-11.324 2.632-3.947a1.5 1.5 0 0 0 .252-.832v-4.5a1.5 1.5 0 0 0-3 0v1.5h-3v-1.5a1.5 1.5 0 0 0-3 0v1.5h-3v-1.5Zm.302 4.5h8.395l-2 3H7.615l-2-3Zm8.276 15-2.25-9H7.984l-2.25 9h8.157Zm-8.579 3v3h9v-3h-9Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(193.188 .188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(64.938 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(193.188 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"e\"><path fill=\"#fff\" transform=\"translate(64.938 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"f\"><path fill=\"#fff\" transform=\"translate(64.938 .188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"g\"><path fill=\"#fff\" transform=\"translate(.813 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"h\"><path fill=\"#fff\" transform=\"translate(129.062 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"i\"><path fill=\"#fff\" transform=\"translate(.813 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"j\"><path fill=\"#fff\" transform=\"translate(.813 .188)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1okvfkl\",\"data-framer-name\":\"Lingraphica\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-fol3y4\",\"data-framer-name\":\"lingraphica\",fill:\"black\",intrinsicHeight:159,intrinsicWidth:253,svg:'<svg width=\"253\" height=\"159\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m225.665 122.312 9.306-12.042a2.662 2.662 0 0 1 4.151-.077c.724.87.823 2.099.25 3.075-2.225 3.796-7.747 13.408-10.373 19.711l4-3.333 3.676 5.777a2.668 2.668 0 0 1-.116 3.032l-6.894 9.191-9.314 3.493a6.668 6.668 0 0 0-2.374 1.528l-4.312 4.312-.666.667-16-8 .666-.667 4.923-6.153c.272-.34.486-.723.635-1.132l3.832-10.538a5.335 5.335 0 0 1 5.012-3.51h.265l1.104-1.105a5.336 5.336 0 0 1 3.772-1.562h1.791l1.104-1.105c1-1 2.357-1.562 3.771-1.562h1.791Z\" fill=\"#B6865C\"/><path d=\"m213.667 156.979 4.312-4.312a6.664 6.664 0 0 1 2.373-1.528l9.315-3.493 6.893-9.191a2.667 2.667 0 0 0 .116-3.032L233 129.646l-4 3.333c2.626-6.303 8.148-15.915 10.374-19.711a2.682 2.682 0 0 0-.251-3.075 2.662 2.662 0 0 0-4.151.077l-9.305 12.042h-1.791a5.336 5.336 0 0 0-3.772 1.562L219 124.979h-1.791a5.332 5.332 0 0 0-3.771 1.562l-1.105 1.105h-.264a5.333 5.333 0 0 0-5.012 3.51l-3.832 10.538a4.011 4.011 0 0 1-.636 1.132l-4.922 6.153m30.666-13.333 2.667 1.333m-2-4-.667 2.667\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M224.334 110.312a2.667 2.667 0 0 1-2.666 2.667h-8a2.667 2.667 0 0 1-1.886-4.552l2.114-2.115-4.781-4.781a2.667 2.667 0 0 1 3.771-3.77l4.782 4.78 2.114-2.114a2.667 2.667 0 0 1 4.552 1.885v8Z\" fill=\"#ACCF65\"/><path d=\"M221.668 112.979v-1.333 1.333Zm2.666-2.667h-1.333 1.333Zm-10.666 2.667v-1.333 1.333Zm-2.464-1.646-1.232.51 1.232-.51Zm.578-2.906.943.943-.943-.943Zm2.114-2.115.943-.942.943.942-.943.943-.943-.943Zm-4.781-4.781.943-.942-.943.942Zm3.771-3.77-.942.942.942-.943Zm4.782 4.78.942.943-.942.943-.943-.943.943-.943Zm2.114-2.114.943.943-.943-.943Zm2.906-.578-.51 1.232.51-1.232Zm1.646 2.463h1.334-1.334Zm-2.666 9.334c.736 0 1.333-.597 1.333-1.334h2.667a4 4 0 0 1-4 4v-2.666Zm-8 0h8v2.666l-8 .001v-2.667Zm-1.232-.823c.206.498.692.823 1.232.823v2.667a4 4 0 0 1-3.696-2.47l2.464-1.02Zm.289-1.453a1.33 1.33 0 0 0-.289 1.453l-2.464 1.02a4 4 0 0 1 .867-4.359l1.886 1.886Zm2.114-2.115-2.114 2.115-1.886-1.886 2.115-2.114 1.885 1.885Zm-4.781-6.666 4.781 4.781-1.885 1.885-4.782-4.781 1.886-1.885Zm0-1.886a1.333 1.333 0 0 0 0 1.886l-1.886 1.885a4 4 0 0 1 0-5.657l1.886 1.886Zm1.886 0a1.334 1.334 0 0 0-1.886 0l-1.886-1.886a4 4 0 0 1 5.657 0l-1.885 1.886Zm4.781 4.781-4.781-4.781 1.885-1.886 4.781 4.781-1.885 1.886Zm4-2.114-2.115 2.114-1.885-1.886 2.114-2.114 1.886 1.886Zm1.453-.289a1.33 1.33 0 0 0-1.453.289l-1.886-1.886a4 4 0 0 1 4.359-.867l-1.02 2.464Zm.823 1.231c0-.539-.325-1.025-.823-1.231l1.02-2.464a4 4 0 0 1 2.47 3.695h-2.667Zm0 8v-8h2.667v8h-2.667Z\" fill=\"#303030\"/></g><g clip-path=\"url(#b)\"><path d=\"M95.669 146.313h40c-3.781-7.373-11.738-12-20-12s-16.22 4.627-20 12Z\" fill=\"#6BB6E1\"/><path d=\"M135.669 146.313v1.333a1.335 1.335 0 0 0 1.186-1.942l-1.186.609Zm-40 0-1.186-.609a1.334 1.334 0 0 0 1.186 1.942v-1.333Zm40-1.334h-40v2.667h40v-2.667Zm-20-9.333c7.787 0 15.272 4.37 18.814 11.275l2.372-1.217c-4.02-7.839-12.449-12.725-21.186-12.725v2.667Zm-18.814 11.275c3.542-6.905 11.027-11.275 18.814-11.275v-2.667c-8.737 0-17.166 4.886-21.186 12.725l2.372 1.217Z\" fill=\"#303030\"/><path d=\"M122.334 134.313h-13.333l-4 2.666 6.667 5.334 4-2.667 4 2.667 6.666-5.334-4-2.666Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M109.001 128.979h13.333v5.334l-6.666 4-6.667-4v-5.334Z\" fill=\"#F6E0C5\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m99.334 116.894-1.026 5.878c-7.345 9.563 1.335 15.54 17.359 15.54 16.025 0 24.705-5.977 17.36-15.54l-1.026-5.878a15.999 15.999 0 0 0-15.761-13.248h-1.145a16 16 0 0 0-15.761 13.248Z\" fill=\"#C1E2F5\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"12\" transform=\"matrix(-1 0 0 1 127.667 107.646)\" fill=\"#F4CEAB\" stroke=\"#303030\" stroke-width=\"2.667\"/><path d=\"M127.676 113.307c-1.547.713-5.762 2.339-12.009 2.339-6.247 0-10.461-1.626-12.008-2.339a.601.601 0 0 1-.217-.917 5.195 5.195 0 0 1 4.156-2.078h16.138c1.636 0 3.175.77 4.157 2.078a.601.601 0 0 1-.217.917Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\"/><path d=\"M104.853 110.264c-3.797-1.266-5.032-5.866-1.841-8.281 3.373-2.553 7.86-5.004 12.654-5.004s9.281 2.451 12.654 5.004c3.192 2.415 1.956 7.015-1.84 8.281a.97.97 0 0 1-.302.049h-21.024a.963.963 0 0 1-.301-.049Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M101.262 106.312c.312 1.704 1.599 3.287 3.592 3.952a.964.964 0 0 0 .302.048h21.023a.964.964 0 0 0 .302-.048c1.993-.665 3.28-2.248 3.592-3.952h-28.811Z\" fill=\"#148ACC\"/><path d=\"m104.854 110.264.422-1.265-.422 1.265Zm-3.592-3.952v-1.333a1.334 1.334 0 0 0-1.311 1.573l1.311-.24Zm25.219 3.952-.422-1.265.422 1.265Zm3.592-3.952 1.311.24a1.33 1.33 0 0 0-1.311-1.573v1.333Zm-24.797 2.687c-1.547-.516-2.481-1.716-2.702-2.926l-2.623.479c.402 2.198 2.042 4.163 4.481 4.976l.844-2.529Zm-.12-.02c.04 0 .081.007.12.02l-.844 2.529c.234.078.478.118.724.118v-2.667Zm10.512 0h-10.512v2.667h10.512v-2.667Zm10.511 0h-10.511v2.667h10.511v-2.667Zm-.12.02a.382.382 0 0 1 .12-.02v2.667c.246 0 .49-.04.724-.118l-.844-2.529Zm2.702-2.926c-.221 1.21-1.155 2.41-2.702 2.926l.844 2.529c2.439-.813 4.079-2.778 4.481-4.976l-2.623-.479Zm-27.499 1.573h28.811v-2.667h-28.811v2.667Z\" fill=\"#303030\"/><path d=\"M130.333 136.979H157v17.334a2.667 2.667 0 0 1-2.667 2.666H133a2.667 2.667 0 0 1-2.667-2.666v-17.334Zm0 0H157l-4.533-5.666a2.667 2.667 0 0 0-2.082-1h-13.437c-.81 0-1.576.368-2.082 1l-4.533 5.666Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m139.667 136.979 1.333-6.667h5.333l1.334 6.667v8L145 143.646l-5.333 1.333v-8Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M139.667 136.979h8m5.333 12h-5.333m5.333 4h-2.667\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><g clip-path=\"url(#c)\"><path d=\"M60.469 125.502a6.194 6.194 0 0 0-3.664-11.19H55a8.002 8.002 0 0 0-7.913 6.813l-.087-.146c-6.825 2.528-36 14.667-36 14.667H1.666c.143 1.891 2.51 5.834 9.334 6.666v2.667a2.667 2.667 0 0 0 2.667 2.667h4a2.667 2.667 0 0 0 2.666-2.667v-2.667c5.449 0 10.79-.58 16-2.265v4.932A2.667 2.667 0 0 0 39 147.646h4a2.667 2.667 0 0 0 2.666-2.667v-1.513c0-4.72 2.52-9.06 6.376-11.783 2.848-2.011 5.627-4.128 8.427-6.181Z\" fill=\"#ACCF65\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"54.333\" cy=\"120.312\" r=\"2\" fill=\"#303030\"/><path d=\"M27.688 110.312c-11.426 0-20.69 9.04-20.69 20v1.807c0 2.754 2.096 5.032 4.85 5.004 8.671-.087 26.714-1.907 35.15-14.811 0-4.666-7.883-12-19.31-12Z\" fill=\"#259353\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m44.332 116.979-4 4-6.667-4L27 119.645l-6.667-2.666-6.667 4-3.333-1.334m23.332-3.999v-4m-13.333 5.333v-5.333m7.245 8.889v6.815m-15.245 1.629 1.333-8m26.667 8v-8M6.999 132.312l5.333-3.333 6.666 4 8-5.333 8 4.666m-16 .667v2.666\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M209.667 17.646c0-5.89 4.776-10.667 10.667-10.667s10.667 4.776 10.667 10.667c0 2.252-1.786 4.242-4.521 5.45l.522 5.217h-13.333l.521-5.216c-2.736-1.207-4.523-3.199-4.523-5.45Z\" fill=\"#F6E8D0\"/><path d=\"m226.48 23.096-.538-1.22a1.332 1.332 0 0 0-.788 1.352l1.326-.133Zm.522 5.217v1.333a1.334 1.334 0 0 0 1.327-1.466l-1.327.133Zm-13.333 0-1.327-.133a1.334 1.334 0 0 0 1.327 1.466v-1.333Zm.521-5.216 1.327.132a1.334 1.334 0 0 0-.789-1.352l-.538 1.22Zm6.144-17.45c-6.627 0-12 5.372-12 12h2.667a9.333 9.333 0 0 1 9.333-9.334V5.646Zm12 12c0-6.628-5.372-12-12-12v2.666a9.333 9.333 0 0 1 9.333 9.333h2.667Zm-5.315 6.668c2.951-1.302 5.315-3.65 5.315-6.669h-2.667c0 1.483-1.207 3.118-3.725 4.23l1.077 2.44Zm-1.865-1.087.521 5.217 2.654-.265-.522-5.217-2.653.265Zm1.848 3.751h-13.333v2.667h13.333v-2.667Zm-12.007 1.466.522-5.216-2.653-.265-.522 5.216 2.653.265Zm-6.661-10.799c0 3.02 2.366 5.368 5.318 6.67l1.076-2.44c-2.519-1.11-3.727-2.746-3.727-4.23h-2.667Z\" fill=\"#303030\"/><ellipse cx=\"216.333\" cy=\"16.979\" rx=\"2.667\" ry=\"3.333\" fill=\"#303030\"/><ellipse cx=\"224.333\" cy=\"16.979\" rx=\"2.667\" ry=\"3.333\" fill=\"#303030\"/><path d=\"m218.357 21.943 1.421-2.132a.667.667 0 0 1 1.11 0l1.421 2.132a.667.667 0 0 1-.555 1.036h-2.842a.667.667 0 0 1-.555-1.036Z\" fill=\"#303030\"/><path d=\"m217.667 28.312.333-2.666m5 2.666-.334-2.666\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M211 38.313c0-6 9.333-6 9.333-6s9.333 0 9.333 6c0 2.323-.4 3.946-.89 5.064-.732 1.67-2.723 1.7-4.287.762l-4.156-2.493-4.156 2.493c-1.564.939-3.555.908-4.288-.762-.49-1.118-.889-2.741-.889-5.065Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M220.333 49.646V36.312\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m214.421 48.464 5.128 1.025a3.994 3.994 0 0 0 1.568 0l5.128-1.025a1.777 1.777 0 0 1 1.605 2.998l-2.934 2.934a1.334 1.334 0 0 1-1.365.323l-3.218-1.073-3.218 1.073a1.334 1.334 0 0 1-1.365-.322l-2.934-2.935a1.777 1.777 0 0 1 1.605-2.998Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M215 33.646s2 2.666 5.333 2.666 5.333-2.666 5.333-2.666m-14.666 4s3.5 2.666 9.333 2.666 9.333-2.666 9.333-2.666m2.667-5.333 5.333 5.333M239 40.313c0 1.333.533 4.533 2.666 6.666 0-1.333-.533-4.533-2.666-6.666Zm-30.667-8L203 37.645m-1.333 2.668c0 1.333-.534 4.533-2.667 6.666 0-1.333.533-4.533 2.667-6.666Zm38.666 12L243 50.979l1.41.94c.387.258.699.612.906 1.027l1.017 2.033M243 50.98v5.333m-42.667-4-2.667-1.334-1.41.94a2.655 2.655 0 0 0-.906 1.027l-1.017 2.033m3.334-3.999v5.333\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#d)\"><path d=\"m103.187 57.692 9.814-50.713 9.814 50.713m7.039-.001 9.814-50.712 9.814 50.712\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.999 6.98h26.666l7.484 38.666h-26.667L112.999 6.98Z\" fill=\"#945D35\"/><path d=\"m139.665 6.98 1.309-.254a1.333 1.333 0 0 0-1.309-1.08V6.98Zm-26.666 0V5.645a1.334 1.334 0 0 0-1.31 1.587l1.31-.254Zm34.15 38.666v1.334a1.335 1.335 0 0 0 1.309-1.587l-1.309.253Zm-26.667 0-1.309.254c.122.627.671 1.08 1.309 1.08v-1.334Zm19.183-40h-26.666v2.667h26.666V5.646Zm8.793 39.747-7.484-38.667-2.618.507L145.84 45.9l2.618-.507Zm-27.976 1.587h26.667v-2.667h-26.667v2.666Zm-8.793-39.747 7.484 38.667 2.618-.507-7.483-38.667-2.619.507Z\" fill=\"#303030\"/><path d=\"M113 6.98h26.666l-8 41.333H105l8-41.334Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linejoin=\"round\"/><path d=\"m144.711 10.816 2.451-2.866m2.49 8.357 3.109-2.134m.239 8.715 3.556-1.257m-48.609-10.815-2.451-2.866m-2.484 8.357-3.11-2.134m-.238 8.715-3.556-1.257m19.559-7.066c2.666-2.627 5.333-3.152 6.666-.525.889-.876 2.934-2.207 4-.526 1.334 2.102 4.667 2.102 8-1.05m-24 30.516h17.333\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path d=\"M7.075 44.05c-.708-2.549 1.209-5.07 3.854-5.07h42.808c2.646 0 4.562 2.521 3.854 5.07l-.323 1.165a13.333 13.333 0 0 1-12.847 9.764H20.245A13.333 13.333 0 0 1 7.4 45.215l-.324-1.165Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.666 49.646 11 38.979H8.333A1.333 1.333 0 0 1 7 37.646v-1.333c0-.737.596-1.334 1.333-1.334h46.666c.737 0 1.334.597 1.334 1.334v1.333c0 .736-.597 1.333-1.334 1.333H32.414L21.666 49.646Z\" fill=\"#E3AA00\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"7\" y=\"29.646\" width=\"49.333\" height=\"5.333\" rx=\"2.667\" fill=\"#D64853\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M51.513 29.646h-38.36c-2.07-9.897 3.053-19.284 13.149-19.84 1.834-.102 3.841-.16 6.031-.16 2.19 0 4.197.058 6.032.16 10.095.556 15.218 9.943 13.148 19.84Z\" fill=\"#F8F8F8\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M36.593 18.698 35 14.979l-2.302 3.07a4 4 0 0 0-.128 4.618l.425.638a4 4 0 0 1 .672 2.219v4.122a2.667 2.667 0 1 0 0 5.333h4v8a2.667 2.667 0 1 0 5.334 0v-8h1.333a2.667 2.667 0 1 0 0-5.333H43v-3.377a4 4 0 0 0-1.544-3.157l-3.641-2.833a4 4 0 0 1-1.22-1.581Z\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M31 29.646h16\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"27.666\" cy=\"14.313\" r=\"1\" fill=\"#303030\"/><circle cx=\"25\" cy=\"18.313\" r=\"1\" fill=\"#303030\"/><circle cx=\"22.333\" cy=\"15.646\" r=\"1\" fill=\"#303030\"/><circle cx=\"42.333\" cy=\"16.979\" r=\"1\" fill=\"#303030\"/><circle cx=\"39.666\" cy=\"14.313\" r=\"1\" fill=\"#303030\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(188.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(94.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(94.333 .313)\" d=\"M0 0h64v64H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tyxle8 hidden-72rtr7 hidden-1bvv02q\",\"data-framer-name\":\"Extra Work\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn7zku\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pbgipi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VhcfG2jfe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"VhcfG2jfe\",intervalControl:1.5,itemAmount:1,layoutId:\"VhcfG2jfe\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wc25sq\",\"data-framer-name\":\"Twemoji\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:79.5,intrinsicWidth:126,pixelHeight:159,pixelWidth:252,src:\"https://framerusercontent.com/images/wkmw5rniMVhkAhGF9HDjQKOC8.svg\"},className:\"framer-ox6a7d\",\"data-framer-name\":\"twemoji\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3gzgn6\",\"data-framer-name\":\"Lingraphica UI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wlfbnp\",\"data-framer-name\":\"lingraphica_ui\",fill:\"black\",intrinsicHeight:166,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"166\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m196.188 146.438 12.933-12.288a3 3 0 0 1 4.133 0l12.934 12.288\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M206.688 151.687a1.5 1.5 0 0 1 1.5-1.499h5.999a1.5 1.5 0 0 1 1.501 1.5v9.75h-9v-9.751Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><path d=\"M198.438 144.188v14.249a3 3 0 0 0 2.999 3h19.5a3 3 0 0 0 3.001-3v-14.249\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linejoin=\"round\"/><g clip-path=\"url(#a)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M225.651 31.688c-3 0-5.807 1.625-7.226-.675-1.001-1.622-.432-2.904.131-3.635.296-.383.314-.977-.052-1.294l-.688-.594c-.321-.278-.343-.775.045-.948.702-.312 1.549-.38 2.778-2.363.295-.477-.068-1.074-.628-1.108-1.961-.121-2.669-.546-3.365-1.037-.45-.318-.487-1.04-.074-1.404.974-.862 2.102-1.982 2.102-1.982s-2.182.495-3.857-.868c-.856-.697-.493-1.96.363-2.655 3.148-2.562 3.953-4.59 4.896-7.688M210.47 25.12a4.499 4.499 0 0 1 0-6.364m-3.712 10.076a9.75 9.75 0 0 1 0-13.789\"/><path d=\"M203.045 11.33c-5.858 5.859-5.858 15.356 0 21.214\"/></g><g clip-path=\"url(#b)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M83.686 141.938c0-5.25-3.354-8.25-7.5-8.25-4.176 0-7.5 3.845-7.5 8.022 0 4.728 1.865 7.13 3.4 8.838.544.605 1.047 1.164 1.413 1.796.523.901.809 1.704 1.085 2.48.464 1.304.9 2.53 2.387 4.016a4.811 4.811 0 0 0 8.216-3.403\"/><path d=\"M78.811 144.188c1.125-.75 1.875-1.5 1.875-3 0-2.626-2.095-4.5-4.5-4.5-1.875 0-3 1.5-3 1.5\"/><path d=\"M80.474 141.03c-4.064-1.68-6.538.518-6.538 2.771 0 1.126.535 1.861 1.5 2.637 1.713 1.375 1.5 3.246 1.5 5.996 0 1.59 1.5 3.003 3 3.004 1.5 0 2.25-1.251 2.25-2.25 0-.757-.381-1.323-.76-1.698-.403-.4-.74-.911-.74-1.48v-.395a1.5 1.5 0 0 1 .83-1.342l.67-.335m9.517-9.235c-4.686 4.686-4.686 12.284 0 16.97\"/><path d=\"M94.356 141.354a8.25 8.25 0 0 0 0 11.667m2.649-9.015a4.5 4.5 0 0 0 0 6.364\"/></g><path d=\"m215.687 71.813-.671.335a.75.75 0 0 0 .671.415v-.75Zm-.879-1.757.671-.335-.671.335Zm-8.121 1.757v.75c.284 0 .543-.16.67-.415l-.67-.335Zm.878-1.757-.671-.335.671.335Zm8.792 1.421-.878-1.756-1.341.67.878 1.757 1.341-.67Zm-.67 1.086h2.25v-1.5h-2.25v1.5Zm2.25 0a2.25 2.25 0 0 1 2.25 2.25h1.5a3.75 3.75 0 0 0-3.75-3.75v1.5Zm2.25 2.25v7.5h1.5v-7.5h-1.5Zm0 7.5a2.25 2.25 0 0 1-2.25 2.25v1.5a3.75 3.75 0 0 0 3.75-3.75h-1.5Zm-2.25 2.25h-13.5v1.5h13.5v-1.5Zm-13.5 0a2.25 2.25 0 0 1-2.25-2.25h-1.5a3.75 3.75 0 0 0 3.75 3.75v-1.5Zm-2.25-2.25v-7.5h-1.5v7.5h1.5Zm0-7.5a2.25 2.25 0 0 1 2.25-2.25v-1.5a3.75 3.75 0 0 0-3.75 3.75h1.5Zm2.25-2.25h2.25v-1.5h-2.25v1.5Zm2.457-2.842-.878 1.756 1.341.671.878-1.756-1.341-.671Zm2.683-1.658a3 3 0 0 0-2.683 1.658l1.341.67a1.503 1.503 0 0 1 1.342-.828v-1.5Zm3.219 0h-3.219v1.5h3.219v-1.5Zm2.683 1.658a3 3 0 0 0-2.683-1.658v1.5a1.5 1.5 0 0 1 1.342.829l1.341-.671Z\" fill=\"#493910\"/><circle cx=\"211.188\" cy=\"77.813\" r=\"3.75\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M214.188 94.912c6.429-.652 11.25-3.36 11.25-6.6 0-1.084-.541-2.11-1.5-3.017m-13.5 9.758c-7.522-.185-13.5-3.132-13.5-6.74 0-1.085.54-2.11 1.5-3.018\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m208.938 92.813 1.719 1.72a.75.75 0 0 1 0 1.06l-1.719 1.72m-135.75-6.559a3.375 3.375 0 1 0 1.416 5.405\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M80.63 68.813c-1.637 0-2.657 1.775-1.832 3.19l2.087 3.577a4.5 4.5 0 0 0 2.885 2.12 4.532 4.532 0 0 0-.082.862v.75c0 1.153.433 2.204 1.145 3h-2.645a9 9 0 0 0-7.526 13.939c.469.713 1.305 1.061 2.158 1.061h15.118c.828 0 1.53-.711 1.133-1.438a3.006 3.006 0 0 0-1.883-1.467v-1.97a5.616 5.616 0 0 0 2.25-4.5 5.61 5.61 0 0 0-1.865-4.183c.18-.036.355-.088.526-.156l3.533-1.413a2.475 2.475 0 0 0 .453-4.357l-4.892-3.262a3 3 0 0 0-1.664-.504h-1.341c-.925 0-1.784.28-2.498.757l-1.036-3.106a4.242 4.242 0 0 0-4.024-2.9Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.17 69.1c.48.188.922.46 1.303.804.236-.21.549-.342.907-.342 1.503 0 2.838.962 3.313 2.388l.704 2.112h1.134a3 3 0 0 1 .46.036l-.875-2.622a4.992 4.992 0 0 0-4.736-3.414c-.92 0-1.697.416-2.21 1.039Z\" fill=\"#493910\"/><path d=\"M86.688 97.313v0a3 3 0 0 0-3-3v0h-.75m0 0a4.5 4.5 0 1 0 0-9\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"90.063\" cy=\"78.938\" r=\"1.125\" fill=\"#493910\"/><path d=\"M85.188 13.688v-6a3 3 0 0 0-3-3h-10.5a3 3 0 0 0-3 3v22.5a3 3 0 0 0 3 3h10.5c.546 0 1.058-.147 1.5-.402m-8.25-1.848h3\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"m86.95 16.465.74.11-.74-.11Zm-.277 1.843.27.7a.75.75 0 0 0 .472-.589l-.742-.111Zm-1.688.975-.274.698a.75.75 0 0 0 .745-.114l-.47-.584Zm-1.733-.681-.275.697.275-.697Zm-1.849.645.65.375-.65-.375Zm-.508.88-.65-.374.65.375Zm.365 1.924-.467.587.467-.587Zm1.455 1.16.742.115a.75.75 0 0 0-.274-.703l-.468.587Zm0 1.952.467.587a.75.75 0 0 0 .274-.702l-.74.115Zm-1.457 1.161.467.587-.467-.587Zm-.365 1.923.65-.375-.65.375Zm.508.88.65-.374-.65.375Zm1.848.647-.274-.698.274.698Zm1.736-.683.47-.583a.75.75 0 0 0-.745-.115l.275.698Zm1.688.976.742-.111a.75.75 0 0 0-.472-.589l-.27.7Zm.276 1.843.742-.112-.742.112Zm3.984 0-.742-.112.742.112Zm.276-1.843-.27-.7a.75.75 0 0 0-.472.588l.742.112Zm1.688-.977.275-.698a.75.75 0 0 0-.746.114l.471.584Zm1.739.684-.275.698.275-.698Zm1.848-.646-.65-.375.65.375Zm.508-.88-.65-.376.65.375Zm-.365-1.924.468-.587-.468.587Zm-1.462-1.164-.74-.115a.75.75 0 0 0 .273.702l.468-.587Zm0-1.947-.467-.586a.75.75 0 0 0-.274.701l.741-.114Zm1.46-1.162-.467-.587.467.587Zm.365-1.923.65-.375-.65.375Zm-.509-.88-.65.374.65-.375Zm-1.848-.646-.274-.698.274.698Zm-1.736.683-.472.583a.75.75 0 0 0 .746.115l-.274-.698Zm-1.688-.977-.742.112a.75.75 0 0 0 .472.588l.27-.7Zm-.276-1.843-.742.11.742-.11Zm-3.242.11a.75.75 0 0 1 .742-.638v-1.5a2.25 2.25 0 0 0-2.226 1.916l1.484.223Zm-.276 1.844.276-1.843-1.484-.223-.276 1.843 1.484.223Zm-1.959 1.448c.445-.36.946-.65 1.487-.86l-.54-1.399a7.042 7.042 0 0 0-1.89 1.092l.943 1.167Zm-2.479-.568 1.734.682.549-1.396-1.734-.681-.549 1.395Zm-.924.323a.75.75 0 0 1 .924-.323l.55-1.395a2.25 2.25 0 0 0-2.773.968l1.3.75Zm-.508.88.508-.88-1.299-.75-.508.88 1.299.75Zm.182.962a.75.75 0 0 1-.182-.961l-1.3-.75a2.25 2.25 0 0 0 .548 2.885l.934-1.174Zm1.456 1.16-1.456-1.16-.934 1.174 1.455 1.159.935-1.174Zm.207 1.563c0-.293.023-.581.067-.861l-1.483-.231a7.088 7.088 0 0 0-.084 1.092h1.5Zm.066.861a5.603 5.603 0 0 1-.066-.86h-1.5c0 .37.029.735.084 1.09l1.482-.23Zm-1.731 1.863 1.457-1.161-.934-1.173-1.458 1.16.935 1.174Zm-.182.961a.75.75 0 0 1 .182-.961l-.935-1.174a2.25 2.25 0 0 0-.547 2.885l1.3-.75Zm.508.88-.508-.88-1.3.75.509.88 1.299-.75Zm.924.324a.75.75 0 0 1-.924-.323l-1.3.75a2.25 2.25 0 0 0 2.773.969l-.55-1.396Zm1.735-.683-1.735.683.549 1.396 1.735-.683-.549-1.396Zm2.233.974a5.541 5.541 0 0 1-1.487-.86l-.943 1.168c.564.455 1.2.826 1.89 1.092l.54-1.4Zm.748 2.431-.276-1.842-1.484.222.276 1.843 1.484-.223Zm.742.64a.75.75 0 0 1-.742-.64l-1.484.223a2.25 2.25 0 0 0 2.226 1.916v-1.5Zm1.016 0h-1.016v1.5h1.016v-1.5Zm.742-.64a.75.75 0 0 1-.742.64v1.5a2.25 2.25 0 0 0 2.225-1.917l-1.483-.223Zm.276-1.843-.276 1.843 1.483.223.277-1.843-1.484-.223Zm1.959-1.448c-.445.359-.946.65-1.487.86l.54 1.4a7.044 7.044 0 0 0 1.89-1.094l-.943-1.166Zm2.484.569-1.738-.684-.55 1.396 1.74.684.548-1.396Zm.924-.323a.75.75 0 0 1-.924.323l-.549 1.396a2.25 2.25 0 0 0 2.772-.97l-1.299-.75Zm.508-.88-.508.88 1.3.75.507-.88-1.299-.75Zm-.182-.962a.75.75 0 0 1 .183.961l1.298.75a2.25 2.25 0 0 0-.546-2.885l-.935 1.174Zm-1.462-1.164 1.462 1.164.935-1.174-1.462-1.164-.935 1.174Zm-.208-1.56a5.5 5.5 0 0 1-.066.858l1.483.23a7.1 7.1 0 0 0 .083-1.088h-1.5Zm-.066-.859c.043.28.066.567.066.86h1.5c0-.37-.028-.734-.084-1.09l-1.482.23Zm1.734-1.864-1.46 1.163.934 1.173 1.46-1.162-.934-1.174Zm.182-.961a.75.75 0 0 1-.182.961l.934 1.174a2.25 2.25 0 0 0 .547-2.885l-1.299.75Zm-.508-.88.508.88 1.3-.75-.51-.88-1.298.75Zm-.924-.324a.75.75 0 0 1 .924.323l1.299-.75a2.25 2.25 0 0 0-2.772-.968l.549 1.395Zm-1.737.684 1.737-.684-.55-1.395-1.736.683.55 1.396Zm-2.232-.975c.541.209 1.042.5 1.486.86l.943-1.167a7.044 7.044 0 0 0-1.889-1.092l-.54 1.399Zm-.748-2.432.276 1.844 1.484-.223-.277-1.844-1.483.223Zm-.742-.639a.75.75 0 0 1 .742.639l1.483-.223a2.25 2.25 0 0 0-2.225-1.916v1.5Zm-1.016 0h1.016v-1.5h-1.016v1.5Z\" fill=\"#493910\"/><circle cx=\"88.888\" cy=\"24.187\" r=\"3\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#c)\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"6.811\" y=\"79.313\" width=\"24\" height=\"18\" rx=\"3\"/><path d=\"M24.811 79.313v-6.75a6 6 0 0 0-6-6v0a6 6 0 0 0-6 6v1.5m5.25 11.25h1.5v3l-1.5 1.5 1.5 1.5v1.5\"/></g><path d=\"M153.812 142.687c0-5.798-4.701-10.499-10.5-10.499-5.798 0-10.5 4.701-10.5 10.499 0 5.651 4.464 10.26 10.058 10.491\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M147.812 142.688c0-5.799-2.014-10.5-4.5-10.5-2.485 0-4.5 4.701-4.5 10.5 0 5.441 1.774 9.915 4.046 10.447m-9.296-14.197h19.5m-19.5 7.5h10.335\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"150.812\" cy=\"150.938\" r=\"5.25\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m154.562 154.688 6.001 6\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5.313 159.562v-25.125a1.5 1.5 0 0 1 1.5-1.499h22.5a3 3 0 0 1 3 3v18.749a3 3 0 0 1-3 3.001v0\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\"/><path d=\"M29.313 157.688H7.188a1.874 1.874 0 0 0-1.875 1.874v0c0 1.036.839 1.876 1.875 1.876h22.875a2.25 2.25 0 0 0 2.25-2.25v0\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"12.063\" y=\"138.938\" width=\"13.5\" height=\"13.5\" rx=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"16.563\" cy=\"144.187\" r=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m13.938 152.437 7.564-7.236a1.5 1.5 0 0 1 2.098.024l1.962 1.962\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"132.812\" y=\"19.688\" width=\"28.5\" height=\"13.5\" rx=\"1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M136.563 26.437h3m3 0h3m3 0h3m2.25 0 3 .005m-20.25 2.996h1.5m18 0h1.5m-21-6h1.5m3 0h1.5m3 0h3m3 0h1.5m3 0h1.5\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m145.188 14.438.67-.336a.749.749 0 0 0-.67-.415v.75Zm1.204 2.408-.671.335.671-.335Zm2.545-2.409v-.75a.749.749 0 0 0-.67.415l.67.335Zm-7.875-9h11.25v-1.5h-11.25v1.5Zm-2.25 2.25a2.25 2.25 0 0 1 2.25-2.25v-1.5a3.75 3.75 0 0 0-3.75 3.75h1.5Zm0 3.75v-3.75h-1.5v3.75h1.5Zm2.25 2.25a2.25 2.25 0 0 1-2.25-2.25h-1.5a3.75 3.75 0 0 0 3.75 3.75v-1.5Zm4.126 0h-4.126v1.5h4.126v-1.5Zm1.875 2.823-1.205-2.408-1.341.67 1.204 2.41 1.342-.672Zm-.001 0-1.341.671c.553 1.106 2.13 1.106 2.683 0l-1.342-.67Zm1.205-2.408-1.205 2.408 1.342.671 1.204-2.408-1.341-.67Zm4.045-.415h-3.375v1.5h3.375v-1.5Zm2.25-2.25a2.25 2.25 0 0 1-2.25 2.25v1.5a3.75 3.75 0 0 0 3.75-3.75h-1.5Zm0-3.75v3.75h1.5v-3.75h-1.5Zm-2.25-2.25a2.25 2.25 0 0 1 2.25 2.25h1.5a3.75 3.75 0 0 0-3.75-3.75v1.5Z\" fill=\"#493910\"/><path d=\"M141.062 29.438h12\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#d)\"><path d=\"M157.411 78.563c1.263 0 1.961 1.465 1.164 2.445l-14.617 17.99c-.742.914-2.211.219-1.975-.934l2.455-12.001h-7.9a1.5 1.5 0 0 1-1.468-1.81l3.491-16.5a1.5 1.5 0 0 1 1.467-1.19h8.863a1.5 1.5 0 0 1 1.456 1.863l-2.535 10.136h9.599Z\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path d=\"m14.441 32.309 17.625-17.625a3 3 0 0 0 0-4.243L27.31 5.684a3 3 0 0 0-4.243 0L5.441 23.309a3 3 0 0 0-.878 2.121v6.257a1.5 1.5 0 0 0 1.5 1.5h6.257a3 3 0 0 0 2.121-.878Zm5.872-23.871 9 9\" stroke=\"#493910\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 .938)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(64.938 129.188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(.813 65.063)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(129.062 65.063)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-147b2p3\",\"data-framer-name\":\"Industries\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16r5puu\",\"data-framer-name\":\"industries\",fill:\"black\",intrinsicHeight:178,intrinsicWidth:235,svg:'<svg width=\"235\" height=\"178\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M212.901 161.781c1.207 0 2.239.057 3.16.154v-1.616c-.092-.01-.179-.02-.273-.028l-.002-.003c-8.523-.757-8.573 2.315-18.165 1.557l.059 1.632c8.599.607 10.101-1.696 15.221-1.696Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M199.158 160.322c.463.019.911.029 1.34.029 2.891 0 4.593-.433 6.398-.892h.001c1.751-.446 3.563-.907 6.337-.907a29.805 29.805 0 0 1 2.781.139l.023.002.023.003v-.283l-.702-.737a1.67 1.67 0 0 1 0-2.283l1.152-1.211a1.5 1.5 0 0 1 1.086-.473h10.757c0-.428.162-.838.45-1.141l.768-.807c.06-.063.126-.117.194-.167l-1.412-1.114v-4.843h1.537l-9.989-7.264-9.988 7.264v-3.228h-3.073v4.843h-3.073l-1.23 3.228h-1.844l-3.073 2.422h1.537v7.42Zm6.915-5.806h-2.305v2.422h2.305v-2.422Zm3.841 0h-2.305v2.422h2.305v-2.422Zm7.683-7.264h-2.305v2.421h2.305v-2.421Zm3.842 0h-2.305v2.421h2.305v-2.421Zm3.842 0h-2.305v2.421h2.305v-2.421Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M232.196 155.324h1.153l1.152 1.21-1.152 1.211h-1.153v19.372h-2.305v-19.372h-3.073v1.614h1.537v8.879h-10.757v-8.879h1.537v-1.614h-1.537l-1.152-1.211 1.152-1.21h12.293v-1.615l.769-.807h.768l.768.807v1.615Zm-5.378 8.071h-7.683v-2.421h7.683v2.421Zm-1.536-5.65h-4.61v1.614h4.61v-1.614Zm9.216-138.713-2.527-2.61c-2.355 2.365-5.311.682-6.326-.403-1.014 1.085-3.97 2.768-6.325.403l-2.528 2.61c2.243 2.378 1.644 4.242.904 6.548-.428 1.335-.904 2.817-.904 4.631 0 1.857 1.181 4.952 5.313 6.807 1.304.587 2.95 1.858 3.54 2.476.591-.618 2.237-1.889 3.541-2.476 4.132-1.855 5.312-4.95 5.312-6.807 0-1.814-.475-3.296-.904-4.63-.74-2.307-1.338-4.171.904-6.55Zm-11.483 15.76c.868.392 1.82 1 2.63 1.6v-17.38c-.998.586-2.24 1.03-3.584 1.03a5.85 5.85 0 0 1-1.998-.348c1.147 2.533.403 4.853-.178 6.66-.403 1.255-.783 2.44-.783 3.858 0 .29.11 2.873 3.913 4.582Z\" fill=\"#FFDF6B\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M215.253 19.022c.003-.429.168-.84.459-1.14l2.529-2.61a1.5 1.5 0 0 1 1.08-.464 1.5 1.5 0 0 1 1.065.448c.462.465.968.7 1.534.735 1.21-.674 2.703-1.506 4.56-2.536l1.692.782c1.77.817 3.843.131 4.844-1.603l1.437-2.487-2.23-2.751.028-6.646-2.26.581a1.558 1.558 0 0 0-1.037.909l-3.276 7.673-8.224 2.118-2.567-1.63c-2.183-1.386-5.023-.654-6.344 1.634l-.991 1.716c-2.72.7-5.049 3.225-5.251 4.765-1.65 1.063-3.376 2.397-3.18 3.235.183.783 1.859 1.17 3.355.787l3.74-.952 9.057-2.334c-.01-.076-.021-.152-.02-.23Zm16.773-9.082c-.305-1.299-1.555-2.093-2.794-1.773-.975.25-1.642 1.118-1.738 2.11l2.106-.543c.412-.106.83.16.93.591.102.433-.15.871-.563.977l-2.105.542c.522.832 1.498 1.276 2.473 1.025 1.238-.319 1.995-1.63 1.691-2.929Zm-22.059 7.355 2.244-.578.196-2.544-2.243.578-.197 2.544Zm-6.174 1.59 4.679-1.205.197-2.534-.978.242c-2.041.63-3.788 2.538-3.898 3.497Z\" fill=\"#fff\"/><path d=\"m210.371 8.869-12.264 3.158a.385.385 0 0 1-.409-.146c-.172-.231-.044-.562.211-.643l12.105-3.893c-.254-1.097 1.239-1.478 1.495-.385L224.07 4.5a.408.408 0 0 1 .172.796l-12.375 3.188.002.009-1.495.385-.003-.01Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m76.813 162.168 2.6-1.115c.6-.258.742-.257 3.727-.244.84.003 1.904.008 3.266.008 0-1.365-1.032-2.472-2.305-2.472H80.26v-.823c0-.455-.344-.824-.769-.824h-.768v-4.287l1.653-1.023c.212.394.682.529 1.05.301l1.33-.823c.367-.228.493-.732.281-1.126l1.331-.823-.384-.714.665-.412c1.663-1.029 3.5-2.968 4.317-3.874a.214.214 0 0 0 .027-.241.182.182 0 0 0-.208-.095c-1.14.304-3.626 1.041-5.288 2.07l-.666.411-.384-.712-1.33.824-.769-1.427 1.386-.859-.384-.713.666-.412c1.662-1.029 3.5-2.968 4.316-3.875a.212.212 0 0 0 .027-.24.183.183 0 0 0-.207-.095c-1.14.304-3.626 1.04-5.289 2.07l-.665.412-.385-.713-1.386.858c-.212-.395-.682-.529-1.05-.302l-1.33.824c-.367.227-.493.731-.281 1.126l-2.662 1.647c-.212-.395-.682-.529-1.05-.301l-1.33.823c-.367.227-.494.731-.281 1.126l-3.328 2.059c-.367.227-.493.731-.28 1.124l1.152 2.141c.211.394.682.529 1.049.302l3.328-2.06.768 1.427-3.328 2.06c-.367.227-.493.73-.28 1.125l.925 1.718c.338.627 1.085.842 1.67.48l2.762-1.71v1.909h-.768c-.425 0-.768.369-.768.824v.823h-4.61c-1.273 0-2.305 1.107-2.305 2.472v3.295h8.637c.292-.87.91-1.586 1.746-1.944Zm1.642-14.347-.768-1.427-2.662 1.648.768 1.427 2.662-1.648Z\" fill=\"#fff\"/><path d=\"M72.576 174.82h26.457c0 1.365-1.03 2.472-2.305 2.472H74.881c-1.272 0-2.305-1.107-2.305-2.472Zm-1.536-1.647v-2.471l2.305-1.648H97.93l2.305 1.648v2.471H71.04Zm19.505-5.766c.848 0 1.536-.738 1.536-1.648h11.229v-1.647H92.081l-3.567-1.53c-.181-.078-.571-.118-.571-.118h-6.915s-.837.03-1.043.118l-2.6 1.115c-.584.251-.967.856-.967 1.53v.532c0 .91.688 1.648 1.537 1.648h12.59Z\" fill=\"#FFDF6B\"/><path d=\"m208.343 92.28-1.537 2.442a1.672 1.672 0 0 0-.251.87h-8.454v-16.95h1.536v-1.614h3.842v9.686h1.536V72.992h1.537v-3.229h1.537l1.536 3.229v8.072h1.537v7.264h1.537V79.45h5.378v1.248c-1.849 1.748-2.228 5 0 6.372v4.488h-8.452a1.52 1.52 0 0 0-1.282.724Z\" fill=\"#fff\"/><path d=\"M223.454 88.328h9.989l1.536 2.401-1.536 2.442h-9.989v15.336h-3.836V98.014h-9.993l-1.537-2.401 1.537-2.442h9.993v-7.265c-.849 0-1.537-.722-1.537-1.614 0-1.783 1.377-3.229 3.074-3.229h.768c1.697 0 3.073 1.446 3.073 3.23 0 .891-.693 1.613-1.542 1.613v2.422Z\" fill=\"#FFDF6B\"/><path d=\"M101.772 93.575h-7.57l1.537 1.614h6.033v-1.614Zm-32.184-.184c3.953 0 5.772 1.371 10.343 1.718l.174-.25.919-1.32c-6.339-.285-7.2-2.273-14.32-1.642l-.002.004c-.093.008-.18.019-.272.029v1.616c.92-.097 1.952-.155 3.158-.155Zm23.499-3.107a1.669 1.669 0 0 1-.255 1.676H98.7l-3.607-4.63-2.247 2.36.242.594Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m74.113 69.36 7.683 8.878 3.073-4.035 6.826 8.765-4.188 3.225a1.872 1.872 0 0 0-.228.213 3.479 3.479 0 0 1-.02.021l-.022.024a2.224 2.224 0 0 0-2.625.473l-1.463 1.538c-.708.744-.859 1.856-.45 2.756a3.94 3.94 0 0 0-.444.566l-.12.176h-.459c-2.888-.03-4.69-.49-6.444-.936-2.22-.565-4.362-1.11-8.527-.74l-.003.003-.252.025-.02.003V78.238l7.683-8.879Zm4.61 8.878-3.073-.807-3.074.807-2.356-1.98 3.893-4.499 5.132 5.93-.522.55Zm6.146 1.615 3.32 1.163-3.306-4.247-1.887 2.478a1.46 1.46 0 0 1-.171.18l.892 1.031 1.152-.605Z\" fill=\"#fff\"/><path d=\"m100.535 107.867-11.41-11.986 2.55-2.679 11.41 11.986c.3.316.3.827 0 1.142l-1.463 1.537a.742.742 0 0 1-1.087 0Zm-15.103-12.67 1.52.684 4.724-4.961-.652-1.599 6.423-6.747a1.777 1.777 0 0 0-2.35-.222c-7.695 5.924-6.36 4.807-7.767 6.285l-.544-.57a.742.742 0 0 0-1.086 0l-1.463 1.536c-.3.316-.3.827 0 1.142l.543.57c-1.407 1.479-.342.074-5.982 8.16a2.007 2.007 0 0 0 .211 2.468l6.423-6.746Z\" fill=\"#FFDF6B\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.351 19.712c0-3.08 5.577-4.842 10-4.842s9.999 1.764 9.999 4.842v15.331c0 .446-.344.807-.769.807h-.769v2.42c0 .447-.344.807-.769.807h-1.539c-.424 0-.769-.36-.769-.806V35.85H87.966v2.42c0 .447-.344.807-.769.807H85.66c-.425 0-.77-.36-.77-.806V35.85h-.769c-.424 0-.769-.36-.769-.807V19.712Zm18.461 9.683H84.89v-6.456c0-.89.689-1.614 1.538-1.614h13.845c.85 0 1.539.723 1.539 1.614v6.456Zm-14.615 4.841c.425 0 .77-.36.77-.807v-1.614c0-.445-.345-.807-.77-.807H85.66c-.425 0-.77.362-.77.807v1.614c0 .446.345.807.77.807h1.538Zm14.615-.807c0 .446-.344.807-.769.807h-1.539c-.424 0-.769-.36-.769-.807v-1.614c0-.445.345-.807.77-.807h1.538c.425 0 .769.362.769.807v1.614Zm-3.077-15.331H87.966v1.614h10.77v-1.614Z\" fill=\"#FFDF6B\"/><path d=\"M101.023 1.153c-1.346-1.055-4.727-1.13-7.692 0C90.32 2.3 76.868 7.148 74.844 7.878L68.32 3.753l-1.849.542 2.9 5.57.982.32-.566.98a.883.883 0 0 0-.012.854.8.8 0 0 0 .702.43h.323l-2.497 4.78 2.074-.59c.262-.075.504-.218.7-.414l3.79-3.775h.38c1.657 0 3.304-.26 4.887-.774l2.577-.835-4.763 11.292 2.983-.789c.317-.084.612-.228.883-.41v-1.222c0-2.429 1.892-4.065 4.332-5.085l4.252-6.666L96.6 5.393c4.419-1.828 5.312-3.543 4.422-4.24Zm-23.01 3.852-5.02-3.942C74.21.719 75.512-.14 77.46.689l5.745 2.444c-1.745.63-3.532 1.273-5.194 1.872ZM22.845 88.822a1.604 1.604 0 0 0-1.059 1.525c0 4.343-.07 4.575.238 5.65H8.334s2.414-9.248 2.414-14.294c0-2.355-.253-3.92-.475-4.839-.128-.531.256-1.047.78-1.047h10.652c.525 0 .91.516.781 1.047-.919 3.807-.354 8.088.359 11.958Z\" fill=\"#fff\"/><path d=\"M23.983 77.261c.378-1.552-.746-3.058-2.278-3.058h-9.888c-.28-.817.317-1.615 1.087-1.615h1.71c.939-3.467 5.241-4.379 7.4-1.558a2.997 2.997 0 0 1 2.09-.863c2.339 0 3.882 2.648 2.66 4.843h3.132c.637 0 1.159.545 1.159 1.21 0 .667-.522 1.212-1.159 1.212h-5.95l.037-.17ZM7.517 92.769c.698-3.07 1.686-7.964 1.686-11.066 0-2.208-.232-3.635-.428-4.444a2.528 2.528 0 0 1-.065-.635H2.528c-.419 0-.726.413-.624.838.178.736.38 1.987.38 3.872 0 4.036-1.93 11.435-1.93 11.435h7.163Z\" fill=\"#fff\"/><path d=\"M33.756 81.468c.64 0 1.159.542 1.159 1.21v6.054h-2.317v-6.054c0-.668.519-1.21 1.158-1.21Zm-6.951 0c.64 0 1.159.542 1.159 1.21v6.054h-2.317v-6.054c0-.668.519-1.21 1.158-1.21Zm10.427 12.915v-4.036H23.33v4.036c0 2.23 1.729 4.036 3.861 4.036v2.422c0 .446.346.807.773.807h.772c0 3.464-2.039 3.229-5.406 3.229v3.229h1.544c1.72 0 6.952 0 6.952-6.458h.772c.427 0 .772-.361.772-.807v-2.422c2.134 0 3.862-1.806 3.862-4.036Z\" fill=\"#FFDF6B\"/><path d=\"M132.121 161.781h17.4l.004-.01-.726-1.604h-16.678v1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m150.363 155.832-1.623 1.705a1.632 1.632 0 0 0-.43 1.015h-16.189v-8.879c0-.891.688-1.614 1.537-1.614l.699-8.814c.039-.495.37-.872.764-.872h.915c.395 0 .725.377.764.872l.7 8.814h1.536l.699-8.814c.04-.495.37-.872.764-.872h.915c.395 0 .726.377.765.872l.699 8.814 6.159-4.444c.509-.368 1.203.016 1.203.665v3.688l6.032-4.353a.736.736 0 0 1 .794-.049c.252.139.41.414.41.714v3.779c.849 0 1.537.723 1.537 1.614v3.229h-1.915c-.651 0-1.231.43-1.449 1.074l-.847 2.503-.409.177-2.284-1.14a1.482 1.482 0 0 0-1.746.316Zm-12.863-3.737h-2.306v-1.614h2.306v1.614Zm-2.306 3.229h2.306v-1.615h-2.306v1.615Zm6.147 0h-2.305v-1.615h2.305v1.615Zm-2.305-3.229h2.305v-1.614h-2.305v1.614Zm6.147 0h-2.305v-1.614h2.305v1.614Zm-2.305 3.229h2.305v-1.615h-2.305v1.615Zm3.842-1.615h2.305v1.615h-2.305v-1.615Zm2.305-3.228h-2.305v1.614h2.305v-1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m165.973 168.153 3.026-1.131v-2.41l-3.026-1.131-.692-1.755 1.38-3.047-1.623-1.705-2.901 1.449-1.671-.727-1.075-3.179h-2.295l-1.077 3.179-1.67.727-2.9-1.449-1.623 1.705 1.379 3.047-.692 1.755-3.027 1.131v2.41l3.027 1.131.692 1.755-1.379 3.048 1.623 1.704 2.9-1.448 1.67.726 1.077 3.179h2.295l1.075-3.179 1.671-.726 2.901 1.448 1.623-1.704-1.38-3.048.692-1.755Zm-11.495-2.336c0 2.184 1.686 3.955 3.765 3.955s3.765-1.771 3.765-3.955-1.686-3.955-3.765-3.955-3.765 1.771-3.765 3.955Z\" fill=\"#FFDF6B\"/><path d=\"M8.228 162.588c.849 0 1.537-.722 1.537-1.614 0-.891-.688-1.615-1.537-1.615s-1.536.724-1.536 1.615c0 .892.687 1.614 1.536 1.614Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.1 158.552c-.828 0-1.596-.47-2.005-1.227a2.53 2.53 0 0 1 .03-2.441l.758-1.327-2.18-12.219-2.734-1.436c-.38-.199-.533-.684-.343-1.083.19-.398.651-.561 1.03-.361l3.074 1.615a.021.021 0 0 1 .01.006l.002.002.002.002.004.003.003.003a.084.084 0 0 0 .018.015.79.79 0 0 1 .132.108l.01.011c.03.028.059.056.083.089.025.036.044.076.064.117l.006.014c.023.05.046.1.059.154.003.012.009.022.013.033a.07.07 0 0 1 .005.016l.33 1.845 20.569 1.601-1.138 6.579c-.6.139-1.177.387-1.703.81l.034-.193H20.52v1.614h1.549a6.362 6.362 0 0 0-.518 1.614H7.126l-.684 1.2a.838.838 0 0 0-.01.812c.137.253.393.41.668.41h11.33a1.64 1.64 0 0 0-.211.726l-.042.888H7.1Zm2.665-12.107H6.177l-.413-2.313 4.001.312v2.001Zm4.61 6.457h-3.073v-1.614h3.073v1.614Zm0-3.229h-3.073v-1.614h3.073v1.614Zm0-3.228h-3.073v-1.881l3.073.239v1.642Zm4.61 6.457h-3.073v-1.614h3.073v1.614Zm0-3.229h-3.073v-1.614h3.073v1.614Zm0-3.228h-3.073v-1.523l3.073.239v1.284Zm-12.52 1.614h3.3v1.614H6.753l-.288-1.614Zm.576 3.229h2.724v1.614H7.329l-.288-1.614Zm16.47-1.615h-2.99v-1.614h3.27l-.28 1.614Zm.56-3.228h-3.55v-1.164l3.701.288-.15.876Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.437 152.093c-1.644-.002-2.752.048-3.543.877-.816.855-1.026 2.317-1.06 4.775h-3.08l-.769 16.143-1.536 3.229h19.976l-1.537-3.229-.768-16.143h-3.08c-.033-2.458-.244-3.92-1.06-4.775-.791-.829-1.899-.879-3.543-.877Zm-.327 1.616c-1.076.007-1.802.06-2.13.404-.467.489-.586 1.971-.61 3.632h6.135c-.025-1.661-.144-3.143-.61-3.632-.329-.344-1.05-.397-2.129-.404h-.656Z\" fill=\"#FFDF6B\"/><path d=\"M148.32 20.368h-3.525l.3 12.265 2.31 1.615h-8.471l2.311-1.615.237-9.686h-8.633c.455-2.582 5.045-4.09 8.699-2.713l.075-3.023-5.106-1.528h-4.513c.517-2.939 6.216-4.317 9.71-2.23l.056-2.308-3.713-1.113h-4.513c0-1.337 1.724-2.421 3.85-2.421 1.684 0 3.099.683 3.622 1.629l.795.238.066-2.674h-6.928c.365-2.078 4.25-3.182 6.972-1.83l.055-2.206h-3.947c.239-1.362 2.074-2.422 4.303-2.422 1.629 0 3.039.57 3.778 1.405 1.487.254 2.69.935 3.262 1.824h-4.987l.095 3.905c3.613-1.623 8.606-.17 9.085 2.552h-9.022l.094 3.837 1.868-.327c.69-.655 1.868-1.088 3.21-1.088 2.127 0 3.85 1.084 3.85 2.421h-5.327l-3.562.623.046 1.877c2.494-1.19 6.026-1.203 8.562.099-.158.417-.306.839-.437 1.266l-.008.024a34.37 34.37 0 0 0-2.038-.532c-1.278-.297-2.508.719-2.481 2.136Z\" fill=\"#fff\"/><path d=\"M151.446 25.866c-.838-2.117-1.352-4.292-1.586-5.424-.079-.38.246-.716.605-.634 1.189.27 3.581.898 5.781 1.941-1.702 1.236-3.052 3.066-3.63 4.55-.393-.156-.784-.3-1.17-.433Zm13.399 10.837c-.708.742-2.278 2.388-4.12 2.388-.851 0-1.761-.352-2.669-1.304-2.879-3.017 0-6.034 1.034-7.118 2.361-2.476 7.29-3.791 9.176-4.22.361-.081.683.256.605.635-.409 1.978-1.663 7.143-4.025 9.618l-.001.001Zm-8.833-12.677c2.071-2.172 6.307-3.567 9.177-4.218.361-.082.682.256.604.634-.237 1.148-.763 3.369-1.622 5.515-2.203.78-4.59 1.911-6.232 3.637-1.097-1.155-2.472-2-3.912-2.684.48-1.288 1.461-2.336 1.985-2.884Zm-1.699-4.792c.822-2.685 2.327-5.331 3.067-6.535a.497.497 0 0 1 .855 0c.741 1.205 2.249 3.857 3.072 6.546-1.142.397-2.35.901-3.48 1.518a23.29 23.29 0 0 0-3.514-1.529Z\" fill=\"#FFDF6B\"/><path d=\"M147.007 27.084c.409 1.978 1.663 7.143 4.024 9.618.708.742 2.277 2.385 4.12 2.386l1.984.001c-2.294-2.263-2.577-5.255-.234-8.3-2.17-2.3-6.277-3.655-9.289-4.34-.362-.082-.683.258-.605.635Z\" fill=\"#FFDF6B\"/><path d=\"M137.115 95.951c1.04 0 1.883-.887 1.883-1.982s-.843-1.973-1.883-1.973c-1.039 0-1.882.878-1.882 1.973 0 1.095.843 1.982 1.882 1.982Zm8.068-1.982c0 1.269 1.114 2.255 2.341 1.965.085-1.242.349-2.43.766-3.54a1.82 1.82 0 0 0-1.199-.434c-.987.008-1.908.821-1.908 2.009Z\" fill=\"#fff\"/><path d=\"M140.533 93.565h3.151c.287-2.675 3.135-4.105 5.273-2.65.424-.791 1.027-1.514 1.604-2.183h-2.305l-1.537-3.23h-6.915l-3.073 3.22-3.326.583c-.741.129-1.284.803-1.284 1.591v1.862c0 .446.344.807.768.807h.807c.194-1.811 1.644-3.229 3.419-3.229 1.775 0 3.225 1.418 3.418 3.229Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m136.731 86.44 1.987-2.088a1.498 1.498 0 0 1 1.086-.473v-5.65h4.61v5.65h2.305c.582 0 1.114.346 1.375.893l1.111 2.336h.211c.665 0 2.451-.002 2.734.005.468-.365.965-.69 1.484-.978v-9.52h2.305v-.339a.817.817 0 0 0-.388-.701l-10.368-6.216-10.37 6.216a.818.818 0 0 0-.387.701v.338h2.305v9.825Zm13.83-7.404h-3.073v3.238h3.073v-3.238Z\" fill=\"#fff\"/><path d=\"M159.78 86.351v-.848c0-.446-.343-.807-.768-.807-.424 0-.768.361-.768.807v.848c-5.155.414-9.218 4.928-9.22 10.45 1.786-2.146 4.875-2.145 6.659 0a4.4 4.4 0 0 1 2.561-1.531v9.202c0 2.006 1.548 3.632 3.457 3.632 1.91 0 3.458-1.626 3.458-3.632 0-1.615-1.537-1.615-1.537 0 0 1.113-.861 2.018-1.921 2.018-1.059 0-1.921-.905-1.921-2.018V95.27a4.399 4.399 0 0 1 2.562 1.53c1.785-2.144 4.874-2.144 6.658 0-.001-5.52-4.064-10.035-9.22-10.449Z\" fill=\"#FFDF6B\"/><path d=\"M2.275 14.421C.805 12.903.754 10.858.754 10.858s1.946-.263 3.393 1.28c1.205 1.287 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm7.349-2.282c1.446-1.544 3.393-1.28 3.393-1.28s-.049 2.044-1.518 3.563c-1.225 1.266-3.075 1.27-3.075 1.27s-.006-2.267 1.2-3.553Zm0-5.652c1.446-1.543 3.397-1.28 3.397-1.28S12.968 7.252 11.5 8.77c-1.225 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.2-3.553ZM6.125 9.228c0-1.078 1.53-1.078 1.53 0v29.869h-1.53V9.228Zm-3.85-.458C.805 7.252.754 5.207.754 5.207s1.946-.263 3.393 1.28C5.352 7.774 5.35 10.04 5.35 10.04s-1.85-.003-3.075-1.27Zm4.612-1.972c.769-.006 1.531-1.667 1.531-3.223 0-1.555-.762-3.229-1.53-3.222-.77.006-1.532 1.667-1.532 3.222 0 1.556.762 3.23 1.531 3.223ZM11.5 20.066c1.468-1.518 1.52-3.574 1.52-3.574s-2.29 0-3.393 1.291c-1.148 1.343-1.203 3.553-1.203 3.553s1.85-.003 3.075-1.27Zm-9.225 0C.805 18.548.754 16.492.754 16.492s2.29 0 3.393 1.291c1.147 1.343 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm13.82-1.608c-1.47-1.518-1.521-3.563-1.521-3.563s1.946-.264 3.393 1.28c1.205 1.287 1.203 3.553 1.203 3.553s-1.85-.003-3.075-1.27Zm7.38-2.283c1.447-1.544 3.393-1.28 3.393-1.28s-.048 2.044-1.517 3.563c-1.226 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.199-3.553Zm0-5.651c1.447-1.544 3.397-1.28 3.397-1.28s-.052 2.044-1.521 3.563c-1.226 1.267-3.075 1.27-3.075 1.27s-.006-2.266 1.199-3.553Zm-3.521 2.741c0-1.079 1.532-1.079 1.532 0v13.722h-1.532V13.265Zm-3.859-.458c-1.47-1.519-1.521-3.564-1.521-3.564s1.946-.263 3.393 1.28c1.205 1.288 1.203 3.554 1.203 3.554s-1.85-.003-3.075-1.27Zm4.622-1.972c.768-.007 1.531-1.667 1.531-3.223 0-1.556-.762-3.23-1.531-3.223-.769.007-1.531 1.667-1.531 3.223 0 1.556.762 3.23 1.531 3.223Zm4.633 13.268c1.47-1.519 1.522-3.574 1.522-3.574s-2.29 0-3.393 1.29c-1.148 1.344-1.203 3.554-1.203 3.554s1.85-.004 3.075-1.27Zm-9.255 0c-1.47-1.519-1.521-3.574-1.521-3.574s2.29 0 3.393 1.29c1.147 1.344 1.203 3.554 1.203 3.554s-1.85-.004-3.075-1.27Z\" fill=\"#fff\"/><path d=\"M31.207 28.621c3.592.174 6.426 2.258 6.426 6.064v1.99c0 1.332-1.038 2.422-2.306 2.422h-23.83c-1.267 0-2.305-1.09-2.305-2.422V35.06c0-3.996 3.113-6.456 6.918-6.456h1.619l-3.653 3.836a.42.42 0 0 0 0 .571l.543.57c.15.158.394.158.544 0l4.701-4.937-.04-.04 3.567-.002-3.654 3.838a.42.42 0 0 0 0 .571l.543.57a.37.37 0 0 0 .543 0l4.702-4.937-.04-.042c1.68 0 2.78 0 3.563.004l-3.651 3.834a.42.42 0 0 0 0 .571l.543.57c.15.158.394.158.544 0l4.701-4.937.022-.023Z\" fill=\"#FFDF6B\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9lfgt\",\"data-framer-name\":\"Calcite Color\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14dnce3\",\"data-framer-name\":\"calcite_color\",fill:\"black\",intrinsicHeight:167,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"167\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M223.765 137.158v-3.536h-7.071v-3.535h-15.32v17.677h9.428v15.32h8.249v-4.714h9.428v-21.212h-4.714Z\" fill=\"#C7552E\"/><path d=\"M211.982 161.906v-15.32h-9.428v-15.321h12.963v3.536h7.071v3.535h4.714v18.856h-9.428v4.714h-5.892Z\" fill=\"#F4DFD8\"/><path d=\"M208.446 148.943h-4.714v1.178h4.13l-6.487 6.49v-4.133h-1.179v5.892h5.893v-1.178h-4.127l6.484-6.488v4.131h1.178v-5.892h-1.178Z\" fill=\"#57A6D9\"/><path d=\"M197.247 164.263a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M197.251 163.114a1.77 1.77 0 0 1 0-3.536 1.769 1.769 0 0 1 0 3.536Z\" fill=\"#C5BDDD\"/><path d=\"M211.224.932c-9.747 0-17.677 7.93-17.677 17.677s7.93 17.677 17.677 17.677c9.748 0 17.678-7.93 17.678-17.677S220.972.932 211.224.932Z\" fill=\"#F2FAFF\"/><path d=\"M223.459 18.133a12.186 12.186 0 0 0-3.253-7.839l3.497-3.499a17.111 17.111 0 0 1 4.706 11.338h-4.95Zm-3.25 8.786a12.185 12.185 0 0 0 3.25-7.842h4.951a17.127 17.127 0 0 1-4.702 11.341l-3.499-3.499Zm-8.51 3.922a12.182 12.182 0 0 0 7.844-3.255l3.498 3.5a17.117 17.117 0 0 1-11.342 4.704v-4.948Zm-8.788-3.255a12.185 12.185 0 0 0 7.845 3.256v4.948a17.124 17.124 0 0 1-11.343-4.705l3.498-3.498Zm-3.916-8.51a12.19 12.19 0 0 0 3.25 7.843l-3.499 3.5a17.131 17.131 0 0 1-4.701-11.342h4.95Zm3.254-8.782a12.187 12.187 0 0 0-3.254 7.839h-4.95a17.126 17.126 0 0 1 4.706-11.338l3.498 3.5Zm8.507-3.918a12.193 12.193 0 0 0-7.839 3.25l-3.499-3.498a17.127 17.127 0 0 1 11.338-4.7v4.948Zm8.781 3.25a12.186 12.186 0 0 0-7.838-3.25V1.427a17.125 17.125 0 0 1 11.337 4.701l-3.499 3.498Zm-1.97 8.507a6.33 6.33 0 0 0-1.526-3.675l3.498-3.498a11.25 11.25 0 0 1 2.978 7.173h-4.95Zm-1.523 4.623a6.315 6.315 0 0 0 1.523-3.68h4.951a11.252 11.252 0 0 1-2.975 7.178l-3.499-3.498Zm-4.345 2.193a6.329 6.329 0 0 0 3.68-1.527l3.497 3.499a11.246 11.246 0 0 1-7.177 2.977v-4.949Zm-4.623-1.527a6.323 6.323 0 0 0 3.68 1.527v4.948a11.251 11.251 0 0 1-7.178-2.976l3.498-3.5Zm-2.188-4.345a6.326 6.326 0 0 0 1.522 3.679l-3.499 3.498a11.25 11.25 0 0 1-2.973-7.177h4.95Zm1.527-4.619a6.325 6.325 0 0 0-1.527 3.675h-4.95a11.245 11.245 0 0 1 2.978-7.173l3.499 3.498Zm4.341-2.19a6.329 6.329 0 0 0-3.674 1.523l-3.499-3.498a11.249 11.249 0 0 1 7.173-2.973v4.948Zm4.618 1.523a6.329 6.329 0 0 0-3.675-1.523V7.32a11.25 11.25 0 0 1 7.173 2.973l-3.498 3.498Zm-3.008 4.342 2.992-2.993a5.367 5.367 0 0 1 1.243 2.993h-4.235Zm0 .944h4.236a5.371 5.371 0 0 1-1.24 2.996l-2.996-2.996Zm-.667.665 2.997 2.997a5.362 5.362 0 0 1-2.997 1.244v-4.24Zm-.943 0v4.24a5.368 5.368 0 0 1-2.998-1.243l2.998-2.997Zm-.668-.665-2.995 2.996a5.356 5.356 0 0 1-1.239-2.996h4.234Zm0-.944h-4.233a5.358 5.358 0 0 1 1.241-2.993l2.992 2.993Zm.668-.666-2.992-2.992a5.364 5.364 0 0 1 2.992-1.239v4.23Zm.943-4.231a5.36 5.36 0 0 1 2.992 1.239l-2.992 2.992v-4.231ZM211.228.46c-10.008 0-18.149 8.142-18.149 18.149 0 10.007 8.141 18.15 18.149 18.15 10.006 0 18.149-8.143 18.149-18.15 0-10.007-8.143-18.15-18.149-18.15\" fill=\"#C96B4B\"/><path d=\"M64.926 156.067H94.83l-23.998-24-5.906 5.915v18.085Z\" fill=\"#F4F4F4\"/><path d=\"M77.89 139.125v16.942h16.94l-16.94-16.942Z\" fill=\"#E0E0E0\"/><path d=\"m94.83 156.067-16.94-16.942v.86l16.081 16.082h.86Z\" fill=\"#6E6E6E\"/><path d=\"M74.355 156.067h3.535v-16.942l-3.535-3.537v20.479Z\" fill=\"#F4F4F4\"/><path d=\"m70.832 132.067-5.906 5.916v.86l5.906-5.916 7.057 7.058v-.86l-7.057-7.058Z\" fill=\"#CCC\"/><path d=\"M80.019 156.067H94.83l-7.412-7.413-7.4 7.413Z\" fill=\"#F2FAFF\"/><path d=\"m102.638 161.047-12.973-12.974-11.775 11.792v2.094h24.748v-.912Z\" fill=\"#E0E0E0\"/><path d=\"M75.798 161.959h2.09v-2.094l-2.09 2.094Z\" fill=\"#F4F4F4\"/><path d=\"M89.666 148.073 77.89 159.865v1.021l11.776-11.793 12.866 12.865h.106v-.912l-12.972-12.973Z\" fill=\"#6E6E6E\"/><path d=\"M75.798 161.958h1.02l1.07-1.072v-1.021l-2.09 2.093Z\" fill=\"#CCC\"/><path d=\"M76.121 128.962v35.354\" stroke=\"#DE2900\" stroke-width=\"1.178\" stroke-miterlimit=\"10\" stroke-dasharray=\"2.36 2.36\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.28 140.745H90.023l4.005 4.007-1.483 1.482-6.664-6.666 6.664-6.664 1.483 1.482-4.005 4.003h10.257v2.356Z\" fill=\"#E8912E\"/><path d=\"M77.89 143.104h3.979l-5.157-5.158v3.979c0 .652.528 1.179 1.178 1.179Z\" fill=\"#F4F4F4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M82.014 141.336h-3.535V137.8h3.535v3.536Z\" fill=\"#FFDAB6\"/><path d=\"M79.066 140.747h2.357v-2.357h-2.357v2.357Zm3.536 1.178h-4.714v-4.714h4.714v4.714Z\" fill=\"#E89D48\"/><path d=\"M200.014 100.279a5.398 5.398 0 0 1-5.392-5.391 5.398 5.398 0 0 1 5.392-5.392 5.398 5.398 0 0 1 5.391 5.392 5.397 5.397 0 0 1-5.391 5.391Zm0-11.667a6.283 6.283 0 0 0-6.276 6.276 6.283 6.283 0 0 0 6.276 6.275 6.282 6.282 0 0 0 6.275-6.275 6.283 6.283 0 0 0-6.275-6.276Z\" fill=\"#828282\"/><path d=\"M201.778 88.897v.921a5.376 5.376 0 0 1 3.302 3.301h.921a6.258 6.258 0 0 0-4.223-4.222Z\" fill=\"#F2FAFF\"/><path d=\"M213.566 80.156h-4.714v1.179h4.131l-8.845 8.848v-4.134h-1.178v5.892h5.892v-1.178h-4.127l8.841-8.845v4.13h1.179v-5.892h-1.179Z\" fill=\"#57A6D9\"/><path d=\"M200.011 97.834a2.949 2.949 0 0 1-2.946-2.947 2.949 2.949 0 0 1 2.946-2.946 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M200.013 96.655a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#C5BDDD\"/><path d=\"m228.363 90.21-2.851-5.474-10.671-4.743-2.31-8.086h-12.824l-4.374-6.2.965-.68 4.021 5.701h13.101l2.404 8.412 10.543 4.686 3.041 5.84-1.045.544Z\" fill=\"#6E6E6E\"/><path d=\"M93.833 76.674a5.31 5.31 0 0 1-5.303-5.303 5.31 5.31 0 0 1 5.303-5.303 5.31 5.31 0 0 1 5.303 5.303 5.31 5.31 0 0 1-5.303 5.303Zm0-11.785a6.49 6.49 0 0 0-6.482 6.482 6.49 6.49 0 0 0 6.482 6.482 6.489 6.489 0 0 0 6.481-6.482 6.489 6.489 0 0 0-6.481-6.481Z\" fill=\"#828282\"/><path d=\"M92.063 77.601V76.35a5.295 5.295 0 0 1-3.21-3.21H87.6a6.5 6.5 0 0 0 4.463 4.462Z\" fill=\"#F2FAFF\"/><path d=\"M71.438 99.066a5.31 5.31 0 0 1-5.303-5.303 5.31 5.31 0 0 1 5.303-5.304 5.31 5.31 0 0 1 5.303 5.304 5.31 5.31 0 0 1-5.303 5.303Zm0-11.785a6.49 6.49 0 0 0-6.481 6.482 6.49 6.49 0 0 0 6.481 6.481 6.49 6.49 0 0 0 6.482-6.481 6.49 6.49 0 0 0-6.482-6.482Z\" fill=\"#828282\"/><path d=\"M71.438 96.709a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.947 2.947 2.949 2.949 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M71.44 95.56a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M93.833 74.317a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.946 2.949 2.949 0 0 1 2.946 2.946 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M93.83 73.168a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.767 1.77 1.77 0 0 1 1.767 1.767 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M71.438 96.709a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.947 2.947 2.949 2.949 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M71.44 95.56a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M73.207 87.532v1.253a5.295 5.295 0 0 1 3.21 3.21h1.253a6.5 6.5 0 0 0-4.463-4.463Z\" fill=\"#F2FAFF\"/><path d=\"M89.708 74.317h-4.714v1.179h4.214L75.566 89.138v-4.214h-1.179v5.892h5.893v-1.178h-4.204l13.632-13.55v4.122h1.178v-5.893h-1.178Z\" fill=\"#57A6D9\"/><path d=\"M77.65 31.028a6.136 6.136 0 0 1-6.128-6.128c0-1.42.494-2.764 1.427-3.89L83.936 5.203c1.855-2.556 4.79-4.078 7.856-4.078 5.296 0 9.605 4.308 9.605 9.604 0 3.354-1.797 6.512-4.688 8.242L81.265 29.825a6.038 6.038 0 0 1-3.615 1.203Z\" fill=\"#F2FAFF\"/><path d=\"M90.938 24.87c0 7.338-5.949 13.287-13.287 13.287-7.339 0-13.288-5.949-13.288-13.287 0-7.338 5.95-13.288 13.288-13.288s13.287 5.95 13.287 13.288Z\" fill=\"#828282\"/><path d=\"M77.65 37.244c-6.824 0-12.375-5.55-12.375-12.374 0-6.823 5.551-12.374 12.375-12.374 6.823 0 12.374 5.55 12.374 12.374 0 6.824-5.551 12.374-12.374 12.374Z\" fill=\"#F2FAFF\"/><path d=\"m81.03 29.487 15.468-10.872c2.769-1.654 4.488-4.677 4.488-7.886 0-5.069-4.123-9.193-9.192-9.193-2.936 0-5.722 1.426-7.517 3.902L73.268 21.274c-.87 1.051-1.332 2.305-1.332 3.625a5.722 5.722 0 0 0 5.716 5.717 5.624 5.624 0 0 0 3.377-1.13m-3.377 1.955a6.549 6.549 0 0 1-6.54-6.542c0-1.515.525-2.95 1.52-4.152L83.6 4.967a1.24 1.24 0 0 1 .076-.099A10.034 10.034 0 0 1 91.794.711c5.523 0 10.017 4.494 10.017 10.018 0 3.497-1.874 6.791-4.89 8.594L81.504 30.162a6.45 6.45 0 0 1-3.851 1.279\" fill=\"#57A6D9\"/><path d=\"M81.541 20.981h.834L93.99 9.366l-.833-.833L81.54 20.148v.833Z\" fill=\"#57A6D9\"/><path d=\"M93.559 7.782h1.178v5.892H93.56V7.782Z\" fill=\"#57A6D9\"/><path d=\"M88.845 7.782h5.893V8.96h-5.893V7.782Z\" fill=\"#57A6D9\"/><path d=\"M77.65 27.905a3.009 3.009 0 0 1-3.006-3.005 3.008 3.008 0 0 1 3.006-3.005 3.008 3.008 0 0 1 3.005 3.005 3.009 3.009 0 0 1-3.005 3.005Z\" fill=\"#7C6DA8\"/><path d=\"M77.65 26.667a1.77 1.77 0 0 1-1.77-1.767 1.77 1.77 0 0 1 1.768-1.767 1.77 1.77 0 0 1 1.768 1.767 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M35.894 82.7a.59.59 0 0 0 .59-.588v-8.25a.59.59 0 0 0-.59-.59H21.752a.59.59 0 0 0-.589.59v8.25a.59.59 0 0 0 .59.589h14.141ZM21.752 95.665a.59.59 0 0 1-.589-.59v-8.248a.59.59 0 0 1 .59-.59h14.141a.59.59 0 0 1 .59.59v8.249a.59.59 0 0 1-.59.59H21.752Z\" fill=\"#F2FAFF\"/><path d=\"M13.211 86.236c0 2.434 1.302 4.553 3.237 5.744v-2.798h1.768v5.893h-5.892v-1.768h2.799c-2.256-1.546-3.742-4.128-3.742-7.07 0-4.546 3.542-8.268 8.014-8.573v1.83c-3.412.302-6.184 3.176-6.184 6.742Z\" fill=\"#57A6D9\"/><path d=\"M7.609 95.075H6.43V76.219h1.18v18.856Z\" fill=\"#6E6E6E\"/><path d=\"M13.234 70.916A6.217 6.217 0 1 1 .8 70.915a6.217 6.217 0 0 1 12.434 0Z\" fill=\"#C96B4B\"/><path d=\"M35.892 86.825H21.75v8.25h14.142v-8.25Zm1.179 9.428h-16.5V85.647h16.5v10.606Zm-1.179-22.391H21.75v8.25h14.142v-8.25Zm1.179 9.428h-16.5V72.683h16.5V83.29Zm-3.536-4.714h-9.428v1.178h9.428v-1.178Zm-9.428-2.357h9.428v1.178h-9.428V76.22Zm9.428 15.32h-9.428v1.179h9.428v-1.179Zm-9.428-2.357h9.428v1.179h-9.428v-1.179Z\" fill=\"#6E6E6E\"/><path d=\"M135.935 158.933a2.95 2.95 0 0 1-2.947-2.946 2.95 2.95 0 0 1 2.947-2.946 2.95 2.95 0 0 1 2.946 2.946 2.95 2.95 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M135.936 157.784a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 1.768-1.768c.974 0 1.767.792 1.767 1.768a1.77 1.77 0 0 1-1.767 1.767Z\" fill=\"#C5BDDD\"/><path d=\"M156.559 137.72v-3.535h-7.071v-3.536h-15.32v17.677h9.428v15.321h8.249v-4.714h9.428V137.72h-4.714Z\" fill=\"#C7552E\"/><path d=\"M144.772 162.469v-15.321h-9.428v-15.32h12.963v3.535h7.071v3.536h4.714v18.856h-9.428v4.714h-5.892Z\" fill=\"#F4DFD8\"/><path d=\"M36.58 158.547c0-3.904-7.915-7.071-17.678-7.071-9.763 0-17.677 3.167-17.677 7.071s7.914 7.071 17.677 7.071 17.677-3.167 17.677-7.071Z\" fill=\"#F2FAFF\"/><path d=\"M13.6 160.315h3.536v-3.536H13.6v3.536Zm9.428-2.357h-4.714v3.535h4.714v-3.535Zm-11.785 3.535H8.886v3.536h7.071v-3.536H13.6v-1.178h-2.357v1.178Zm12.963 2.357h-3.535v1.179h6.177c3.588-.696 6.478-1.959 8.11-3.536H24.206v2.357Zm0-7.071h2.357v1.179h9.943c-.173-.836-.711-1.629-1.548-2.357-2.4-2.088-7.263-3.625-13.108-4.019v4.019h2.356v1.178ZM6.53 157.958v-2.357H2.85c2.07-1.802 5.964-3.199 10.751-3.801v.265h2.357v2.357H13.6v1.179h-3.535v2.357H6.529Z\" fill=\"#9BC29C\"/><path d=\"M18.9 152.065c-9.263 0-17.088 2.969-17.088 6.482 0 3.513 7.825 6.482 17.088 6.482 9.263 0 17.089-2.969 17.089-6.482 0-3.513-7.826-6.482-17.089-6.482Zm0 14.142c-10.242 0-18.266-3.364-18.266-7.66s8.024-7.66 18.266-7.66c10.243 0 18.267 3.364 18.267 7.66s-8.024 7.66-18.267 7.66Z\" fill=\"#6E6E6E\"/><path d=\"M18.903 150.887c-.598 0-1.187.014-1.768.036v8.213c0 .652.528 1.179 1.179 1.179h1.178a1.18 1.18 0 0 0 1.179-1.179v-8.213a46.664 46.664 0 0 0-1.768-.036Z\" fill=\"#F2FAFF\"/><path d=\"M19.489 159.136h-1.178V140.28h1.178v18.856Z\" fill=\"#6E6E6E\"/><path d=\"M25.117 134.977a6.217 6.217 0 1 1-12.435 0 6.217 6.217 0 0 1 12.435 0Z\" fill=\"#C96B4B\"/><path d=\"M132.586 30.507V19.901h23.57l-23.57 10.606Z\" fill=\"#BDDBEE\"/><path d=\"M166.762 12.829 154.646.712l-12.1 12.117h24.216Z\" fill=\"#E5A894\"/><path d=\"M143.566 12.829 154.645 1.73l11.098 11.098h1.019L154.645.712l-12.099 12.117h1.02Z\" fill=\"#6E6E6E\"/><path d=\"m151.93 12.829-4.694-4.695-4.69 4.695h9.384Z\" fill=\"#F2FAFF\"/><path d=\"M156.156 18.721 144.04 6.604l-12.1 12.117h24.216Z\" fill=\"#DDEEDB\"/><path d=\"m132.96 18.721 11.079-11.098 11.098 11.098h1.019L144.039 6.604 131.94 18.72h1.02Z\" fill=\"#6E6E6E\"/><path d=\"M136.122 30.507a3.536 3.536 0 1 1-7.071 0 3.536 3.536 0 0 1 7.071 0Z\" fill=\"#57A6D9\"/><path d=\"M132.584 32.864a2.36 2.36 0 0 1-2.357-2.357 2.36 2.36 0 0 1 2.357-2.357 2.36 2.36 0 0 1 2.357 2.357 2.36 2.36 0 0 1-2.357 2.357Z\" fill=\"#BDDBEE\"/><path d=\"m151.93 12.829-4.694-4.695-4.69 4.695h9.384Z\" fill=\"#F2FAFF\"/><path d=\"M156.156 18.721 144.04 6.604l-12.1 12.117h24.216Z\" fill=\"#DDEEDB\"/><path d=\"m132.96 18.721 11.079-11.098 11.098 11.098h1.019L144.039 6.604 131.94 18.72h1.02Z\" fill=\"#6E6E6E\"/><path d=\"M156.156 19.901h-23.57v-1.178h23.57V19.9Z\" fill=\"#F2FAFF\"/><path d=\"M134.381 72.014a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.947 2.949 2.949 0 0 1 2.946 2.947 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M134.38 70.865a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M160.307 94.405a2.949 2.949 0 0 1-2.947-2.946 2.949 2.949 0 0 1 2.947-2.946 2.949 2.949 0 0 1 2.946 2.946 2.949 2.949 0 0 1-2.946 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M160.308 93.256a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#C5BDDD\"/><path d=\"M161.486 70.835a2.949 2.949 0 0 1-2.946-2.946 2.949 2.949 0 0 1 2.946-2.946 2.95 2.95 0 0 1 2.947 2.946 2.95 2.95 0 0 1-2.947 2.946Z\" fill=\"#7C6DA8\"/><path d=\"M161.488 69.686a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 3.536 0 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#C5BDDD\"/><path d=\"M146.755 90.87h-8.25v-8.25h-1.178v8.25h-8.25v1.178h8.25v8.25h1.178v-8.25h8.25V90.87Z\" fill=\"#6E6E6E\"/><path d=\"M136.148 93.227v-3.535h3.534l.001 3.535h-3.535Z\" fill=\"#C7552E\"/><path d=\"M138.507 92.073h-1.179v-1.178h1.179v1.178Z\" fill=\"#E5A894\"/><path d=\"M152.65 70.836v1.178h4.213l-14.819 14.82v-4.213h-1.179v5.892h5.893v-1.178h-4.205l14.811-14.73v4.123h1.179v-5.892h-5.893Z\" fill=\"#57A6D9\"/><path d=\"M36.804 18.978c0 9.941-8.06 18.001-18.002 18.001C8.86 36.98.801 28.92.801 18.978.8 9.036 8.86.976 18.802.976c9.942 0 18.002 8.06 18.002 18.002Z\" fill=\"#828282\"/><path d=\"M18.806 2.155a16.71 16.71 0 0 0-5.642.993 4.289 4.289 0 0 0-.648-1.02 17.963 17.963 0 0 0-6.868 4.593c.183.366.42.7.697.995-2.702 2.986-4.362 6.928-4.362 11.262 0 4.585 1.849 8.744 4.835 11.781a4.135 4.135 0 0 0-2.113-.612 18.066 18.066 0 0 0 4.104 3.799 4.173 4.173 0 0 0-.78-2.066 16.742 16.742 0 0 0 10.777 3.92c5.397 0 10.195-2.564 13.276-6.528a4.17 4.17 0 0 0 1.296-1.925 16.694 16.694 0 0 0 2.25-8.37c0-9.275-7.546-16.822-16.822-16.822Z\" fill=\"#F2FAFF\"/><path d=\"m5.668 34.125-.833-.833L17.798 20.33l.834.833L5.668 34.125Z\" fill=\"#E5A894\"/><path d=\"M18.299 20.465 8.871 5.145l1.004-.618 9.428 15.32-1.004.618Z\" fill=\"#68AA67\"/><path d=\"M29.124 26.564 18.518 20.67l.571-1.03 10.607 5.893-.572 1.03Z\" fill=\"#68AA67\"/><path d=\"M18.804 24.104a3.953 3.953 0 0 1-3.948-3.948 3.953 3.953 0 0 1 3.948-3.948 3.953 3.953 0 0 1 3.948 3.948 3.953 3.953 0 0 1-3.948 3.948Z\" fill=\"#F2FAFF\"/><path d=\"M18.805 23.19a3.009 3.009 0 0 1-3.006-3.004 3.008 3.008 0 0 1 3.006-3.006 3.008 3.008 0 0 1 3.005 3.006 3.009 3.009 0 0 1-3.005 3.005Z\" fill=\"#3B8FC4\"/><path d=\"M18.804 21.953a1.77 1.77 0 0 1-1.768-1.767 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.768 1.768 1.77 1.77 0 0 1-1.768 1.767Z\" fill=\"#E2F1FB\"/><path d=\"M4.66 37.333a3.009 3.009 0 0 1-3.005-3.005 3.008 3.008 0 0 1 3.005-3.005 3.008 3.008 0 0 1 3.006 3.005 3.009 3.009 0 0 1-3.006 3.005Z\" fill=\"#E04F1D\"/><path d=\"M4.66 36.095a1.77 1.77 0 0 1-1.767-1.768A1.77 1.77 0 0 1 4.66 32.56a1.77 1.77 0 0 1 1.768 1.767 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M29.41 29.084a3.009 3.009 0 0 1-3.005-3.006 3.008 3.008 0 0 1 3.005-3.005 3.008 3.008 0 0 1 3.006 3.005 3.009 3.009 0 0 1-3.006 3.006Z\" fill=\"#E04F1D\"/><path d=\"M29.41 27.846a1.77 1.77 0 0 1-1.767-1.768 1.77 1.77 0 0 1 1.767-1.768 1.77 1.77 0 0 1 1.768 1.768 1.77 1.77 0 0 1-1.768 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M9.374 7.87a3.009 3.009 0 0 1-3.005-3.005A3.008 3.008 0 0 1 9.374 1.86a3.008 3.008 0 0 1 3.005 3.005 3.009 3.009 0 0 1-3.005 3.006Z\" fill=\"#E04F1D\"/><path d=\"M9.376 6.633a1.77 1.77 0 0 1-1.768-1.768 1.77 1.77 0 0 1 1.768-1.768 1.77 1.77 0 0 1 1.767 1.768 1.77 1.77 0 0 1-1.767 1.768Z\" fill=\"#F4DFD8\"/><path d=\"M5.298 8.993c-2.073 2.796-3.315 6.245-3.315 9.985 0 1.75.271 3.439.768 5.026 14.013-11.616 7.261-8.485 2.547-15.011Z\" fill=\"#9BC29C\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h16hlv\",\"data-framer-name\":\"QuickCapture\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:102.5,intrinsicWidth:137.5,pixelHeight:205,pixelWidth:275,src:\"https://framerusercontent.com/images/EqPLrdle5MJtAsme10Mu9VpCghs.svg\"},className:\"framer-mohb8k\",\"data-framer-name\":\"quick_capture\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dvk3bj\",\"data-framer-name\":\"Meridian\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:83,intrinsicWidth:115,pixelHeight:166,pixelWidth:230,src:\"https://framerusercontent.com/images/oqTXnkjhy0CwL55Mr6RiHTxj0U.svg\"},className:\"framer-1or1466\",\"data-framer-name\":\"meridian\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pq0gs3\",\"data-framer-name\":\"Realtor\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e3k5y5\",\"data-framer-name\":\"realtor\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#F8F8F8\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M194.859 143.085a2.983 2.983 0 0 1 0-4.219l1.356-1.356a3 3 0 0 1 .777-2.898l2.122-2.121a3 3 0 0 1 2.898-.777l1.356-1.357a2.983 2.983 0 0 1 4.219 0l3.206 3.206a2.983 2.983 0 0 1 0 4.219l-1.073 1.073 16.971 16.97a3.001 3.001 0 0 1 0 4.243l-2.122 2.121a2.998 2.998 0 0 1-4.242 0l-16.971-16.97-1.072 1.072a2.983 2.983 0 0 1-4.219 0l-3.206-3.206Zm10.618.012 16.971 16.971 2.121-2.121-16.97-16.971-2.122 2.121Zm-8.485-2.121 3.182 3.182 8.486-8.485-3.182-3.182-8.486 8.485Z\"/><path d=\"m206.672 150.656-7.158 7.158-1.591.53-2.372 2.372 3.182 3.182 2.372-2.372.53-1.591 7.158-7.158-2.121-2.121Zm13.805-3.198-.016.016-2.122-2.121.016-.017a1.501 1.501 0 0 1 0-2.121l1.061-1.061a1.501 1.501 0 0 1 2.121 0l4.243-4.242-4.243-4.243-4.242 4.243a1.5 1.5 0 0 1 0 2.121l-1.061 1.061a1.5 1.5 0 0 1-2.121 0l-.016.016-2.122-2.121.017-.017a2.992 2.992 0 0 1 2.309-.872 2.992 2.992 0 0 1 .872-2.309l4.243-4.243a3 3 0 0 1 4.243 0l4.242 4.243a2.998 2.998 0 0 1 0 4.242l-4.242 4.243a2.998 2.998 0 0 1-2.309.873 2.998 2.998 0 0 1-.873 2.309Z\"/></g><path d=\"M217.187 4.938a1.5 1.5 0 0 1 1.5-1.5h4.5a3 3 0 0 1 3 3v4.5a1.5 1.5 0 0 1-3 0v-2.38l-5.729 5.73a3.001 3.001 0 0 1-3.276.648l-7.188-2.995-8.294 7.602a1.5 1.5 0 1 1-2.027-2.211l8.294-7.603a3 3 0 0 1 3.181-.558l7.188 2.995 5.729-5.729h-2.378a1.5 1.5 0 0 1-1.5-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M224.687 16.938a1.5 1.5 0 0 0-3 0v.888a4.5 4.5 0 0 0-6.182.172l-3.879 3.879a1.5 1.5 0 0 0 1.061 2.56v6a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-6a1.5 1.5 0 0 0 1.06-2.56l-1.06-1.06v-3.88Zm-3 5.12-1.94-1.939a1.5 1.5 0 0 0-2.121 0l-1.939 1.94v8.378h6V22.06Zm-12-.62a1.5 1.5 0 0 0-3 0v.888a4.5 4.5 0 0 0-6.182.172l-3.879 3.879a1.5 1.5 0 0 0 1.061 2.56v1.5a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-1.5a1.5 1.5 0 0 0 1.06-2.56l-1.06-1.06v-3.88Zm-4.94 3.181 1.94 1.94v3.878h-6V26.56l1.939-1.94a1.5 1.5 0 0 1 2.121 0Z\" fill=\"#F8F8F8\"/><path d=\"M84.436 132.438a1.5 1.5 0 1 0-2.999 0 1.5 1.5 0 0 0 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.771 154.197a1.5 1.5 0 0 0 .165 2.991h.284l.1.667a4.5 4.5 0 0 0 4.45 3.833h2.333a4.5 4.5 0 0 0 4.45-3.833l.1-.667h.283a1.5 1.5 0 0 0 .166-2.991l.12-.806a9.733 9.733 0 0 0 3.465-7.453c0-5.385-4.366-9.75-9.75-9.75a9.75 9.75 0 0 0-9.75 9.75 9.733 9.733 0 0 0 3.463 7.453l.121.806Zm-.585-8.259a6.75 6.75 0 1 1 10.751 5.437 1.5 1.5 0 0 0-.593.985l-.274 1.828h-6.267l-.274-1.828a1.5 1.5 0 0 0-.593-.985 6.738 6.738 0 0 1-2.75-5.437Zm9.434 11.25-.034.222a1.5 1.5 0 0 1-1.483 1.278H81.77a1.5 1.5 0 0 1-1.483-1.278l-.034-.222h5.367Z\" fill=\"#F8F8F8\"/><path d=\"M96.436 147.438a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm-6-14.491a1.5 1.5 0 1 1-1.5 2.598 1.5 1.5 0 0 1 1.5-2.598Zm-15 0a1.5 1.5 0 1 0 1.5 2.598 1.5 1.5 0 0 0-1.5-2.598Zm-5.49 5.491a1.5 1.5 0 1 0 2.598 1.5 1.5 1.5 0 0 0-2.598-1.5Zm25.981 0a1.5 1.5 0 1 1-2.598 1.5 1.5 1.5 0 0 1 2.598-1.5Zm-24.991 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm22.393 6a1.5 1.5 0 1 0 2.598 1.5 1.5 1.5 0 0 0-2.598-1.5Zm-20.785 0a1.5 1.5 0 1 1-2.598 1.5 1.5 1.5 0 0 1 2.598-1.5Zm134.145-82.876a1.5 1.5 0 0 0-3 0v1.5a7.5 7.5 0 0 0-7.5 7.5v12a7.5 7.5 0 0 0 7.5 7.5h6.749a11.297 11.297 0 0 1-2.767-3h-3.982a4.5 4.5 0 0 1-4.5-4.5v-12a4.5 4.5 0 0 1 4.5-4.5v1.5a1.5 1.5 0 0 0 3 0v-1.5h9v1.5a1.5 1.5 0 0 0 3 0v-1.5a4.5 4.5 0 0 1 4.5 4.5v.982a11.302 11.302 0 0 1 3 2.767v-3.749a7.5 7.5 0 0 0-7.5-7.5v-1.5a1.5 1.5 0 0 0-3 0v1.5h-9v-1.5Z\" fill=\"#F8F8F8\"/><path d=\"M218.314 85.187a1.125 1.125 0 0 0-2.25 0v3.375c0 .622.504 1.125 1.125 1.125h2.25a1.125 1.125 0 0 0 0-2.25h-1.125v-2.25Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M217.189 79.562a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Zm-6 9a6 6 0 1 1 12 0 6 6 0 0 1-12 0Z\" fill=\"#F8F8F8\"/><path d=\"M77.976 82.937a7.466 7.466 0 0 1 4.96-1.875c1.904 0 3.638.707 4.961 1.875a1.5 1.5 0 1 0 1.985-2.25 10.466 10.466 0 0 0-6.945-2.625c-2.662 0-5.096.993-6.946 2.626a1.5 1.5 0 1 0 1.985 2.249Z\" fill=\"#F8F8F8\"/><path d=\"M80.7 86.563a2.99 2.99 0 0 1 2.237-1c.888 0 1.685.384 2.236 1a1.5 1.5 0 0 0 2.235-2.001 5.989 5.989 0 0 0-4.471-2 5.989 5.989 0 0 0-4.472 2 1.5 1.5 0 0 0 2.235 2Z\" fill=\"#F8F8F8\"/><path d=\"M84.437 88.562a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.937 70.562a1.5 1.5 0 0 0-3 0v3.6l-4.626-3.598a7.125 7.125 0 0 0-8.749 0l-10.046 7.814a1.5 1.5 0 0 0 1.841 2.368l.58-.45v11.266a4.5 4.5 0 0 0 4.5 4.5h15a4.5 4.5 0 0 0 4.5-4.5V80.296l.579.45a1.5 1.5 0 0 0 1.841-2.368l-2.42-1.883v-5.933Zm-3 7.4-6.468-5.03a4.125 4.125 0 0 0-5.065 0l-6.47 5.033c.002.032.003.065.003.097v13.5a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5v-13.6Z\" fill=\"#F8F8F8\"/><path d=\"M84.439 22.938a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.939 3.438a6 6 0 0 0-6 6v13.5a6.002 6.002 0 0 0 4.78 5.875l-1.529 2.293a1.5 1.5 0 1 0 2.497 1.664l2.554-3.833h7.395l2.554 3.833a1.5 1.5 0 0 0 2.497-1.665l-1.528-2.292a6.002 6.002 0 0 0 4.78-5.875v-13.5a6 6 0 0 0-6-6h-12Zm10.476 22.5h1.524a3 3 0 0 0 3-3v-3h-18v3a3 3 0 0 0 3 3h10.476Zm4.523-16.5a3 3 0 0 0-3-3h-12a3 3 0 0 0-3 3h18Zm-18 3v4.5h7.5v-4.5h-7.5Zm18 4.5v-4.5h-7.5v4.5h7.5Z\" fill=\"#F8F8F8\"/><path d=\"M22.739 97.043a15.01 15.01 0 0 1-3.928.52c-8.284 0-15-6.716-15-15 0-8.285 6.716-15 15-15 1.862 0 3.645.339 5.29.959a3.77 3.77 0 0 0-.04.54v2.707a11.952 11.952 0 0 0-5.25-1.207c-6.627 0-12 5.373-12 12 0 6.628 5.373 12 12 12 .487 0 .966-.028 1.438-.085.12.171.258.334.41.487l2.08 2.08Z\" fill=\"#F8F8F8\"/><path d=\"m31.25 91.252-1.939 1.94v-24.13a1.5 1.5 0 1 0-3 0v24.13l-1.939-1.94a1.5 1.5 0 0 0-2.121 2.121l3.44 3.44a3 3 0 0 0 4.242 0l3.44-3.44a1.5 1.5 0 0 0-2.122-2.121Z\" fill=\"#F8F8F8\"/><path d=\"M20.311 76.563a1.5 1.5 0 1 0-3 0v.075a3.751 3.751 0 0 0 .75 7.424h1.5a.75.75 0 0 1 0 1.5h-3.75a1.5 1.5 0 0 0 0 3h1.5a1.5 1.5 0 0 0 3 0v-.075a3.751 3.751 0 0 0-.75-7.424h-1.5a.75.75 0 0 1 0-1.5h3.75a1.5 1.5 0 1 0 0-3h-1.5Zm119.251 66.375c0-.415.335-.75.75-.75h1.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1-.75-.75v-3Zm6.75-.75a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm6 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm-6 6a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm-6 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Zm12 0a.749.749 0 0 0-.75.75v3c0 .414.335.75.75.75h1.5a.75.75 0 0 0 .75-.75v-3a.75.75 0 0 0-.75-.75h-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M135.062 131.688a3 3 0 0 0-3 3v3c0 1.11.603 2.079 1.5 2.598v16.902a4.5 4.5 0 0 0 4.5 4.5h18a4.5 4.5 0 0 0 4.5-4.5v-16.902a3 3 0 0 0 1.5-2.598v-3a3 3 0 0 0-3-3h-24Zm15 22.5a1.5 1.5 0 0 1 1.5 1.5v3h4.5a1.5 1.5 0 0 0 1.5-1.5v-16.5h-21v16.5a1.5 1.5 0 0 0 1.5 1.5h4.5v-3a1.5 1.5 0 0 1 1.5-1.5h6Zm-1.5 4.5h-3v-1.5h3v1.5Zm10.5-21v-3h-24v3h24Z\" fill=\"#F8F8F8\"/><path d=\"M26.312 137.688a6 6 0 0 0-6-6h-10.5a6 6 0 0 0-6 6v22.5a1.5 1.5 0 0 0 1.5 1.5h3a1.5 1.5 0 0 0 0-3h-1.5v-21a3 3 0 0 1 3-3h10.5a3 3 0 0 1 3 3v1.5a1.5 1.5 0 0 0 1.5 1.5h4.5a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 0 3 0v-3a4.5 4.5 0 0 0-4.5-4.5h-3Z\" fill=\"#F8F8F8\"/><path d=\"M10.562 137.688a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm0 4.5a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm6-4.5a.75.75 0 0 0-.75.75v1.5c0 .414.335.75.75.75h3a.75.75 0 0 0 .75-.75v-1.5a.75.75 0 0 0-.75-.75h-3Zm4.81 9.439a1.5 1.5 0 0 1 0 2.121l-4.5 4.5a1.5 1.5 0 0 1-2.121 0l-1.5-1.5a1.5 1.5 0 1 1 2.121-2.121l.44.439 3.439-3.439a1.5 1.5 0 0 1 2.121 0Zm0 7.5a1.5 1.5 0 0 1 0 2.121l-4.5 4.5a1.5 1.5 0 0 1-2.121 0l-1.5-1.5a1.5 1.5 0 1 1 2.121-2.121l.44.439 3.439-3.439a1.5 1.5 0 0 1 2.121 0Zm1.939-3.439a1.5 1.5 0 0 1 1.5-1.5h7.5a1.5 1.5 0 1 1 0 3h-7.5a1.5 1.5 0 0 1-1.5-1.5Zm10.5 7.5a1.5 1.5 0 0 1-1.5 1.5h-7.5a1.5 1.5 0 0 1 0-3h7.5a1.5 1.5 0 0 1 1.5 1.5ZM152.622 15.877a1.5 1.5 0 0 1 0 2.121l-6 6a1.5 1.5 0 0 1-2.121 0l-3-3a1.5 1.5 0 1 1 2.121-2.121l1.94 1.94 4.939-4.94a1.5 1.5 0 0 1 2.121 0Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M159.062 6.438a1.5 1.5 0 0 0-3 0v3.6l-4.626-3.598a7.126 7.126 0 0 0-8.749 0l-10.046 7.814a1.5 1.5 0 1 0 1.842 2.368l.579-.45v11.266a4.5 4.5 0 0 0 4.5 4.5h15a4.5 4.5 0 0 0 4.5-4.5V16.17l.579.45a1.5 1.5 0 0 0 1.842-2.367l-2.421-1.883V6.438Zm-3 7.4-6.468-5.03a4.125 4.125 0 0 0-5.065 0l-6.471 5.032c.003.033.004.065.004.098v13.5a1.5 1.5 0 0 0 1.5 1.5h15a1.5 1.5 0 0 0 1.5-1.5v-13.6Z\" fill=\"#F8F8F8\"/><path d=\"M151.562 78.813a1.5 1.5 0 0 1 1.5 1.5h1.5a1.5 1.5 0 0 1 0 3h-3.75a.75.75 0 1 0 0 1.5h1.5a3.75 3.75 0 0 1 .75 7.424v.076a1.5 1.5 0 0 1-3 0h-1.5a1.5 1.5 0 1 1 0-3h3.75a.75.75 0 0 0 0-1.5h-1.5a3.75 3.75 0 0 1-.75-7.425v-.076a1.5 1.5 0 0 1 1.5-1.5Z\" fill=\"#F8F8F8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M136.562 67.563a1.5 1.5 0 0 1 1.5 1.5v1.5h7.5v-1.5a1.5 1.5 0 1 1 3 0v1.5h6v-1.5a1.5 1.5 0 1 1 3 0v1.5h3a1.5 1.5 0 0 1 0 3h-3v1.688a6.003 6.003 0 0 1 4.5 5.811v10.5a6 6 0 0 1-6 6h-9a6 6 0 0 1-6-6v-10.5a6.002 6.002 0 0 1 4.5-5.81v-1.69h-7.5v22.5a1.5 1.5 0 0 1-3 0v-22.5h-1.5a1.5 1.5 0 1 1 0-3h1.5v-1.5a1.5 1.5 0 0 1 1.5-1.5Zm18 6h-6v1.5h6v-1.5Zm-10.5 7.5a3 3 0 0 1 3-3h9a3 3 0 0 1 3 3v10.5a3 3 0 0 1-3 3h-9a3 3 0 0 1-3-3v-10.5Z\" fill=\"#F8F8F8\"/><path d=\"M3.812 9.438a6 6 0 0 1 6-6h15a6 6 0 0 1 6 6v1.045l2.748 4.123a1.5 1.5 0 1 1-2.497 1.664l-2.988-4.483a1.492 1.492 0 0 1-.264-.87v-1.48a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v7.5h10.5a1.5 1.5 0 0 1 1.5 1.5v4.5a1.5 1.5 0 1 1-3 0v-3h-9v7.5a3 3 0 0 0 3 3h6v-1.5a1.5 1.5 0 0 1 3 0v1.5h6a3 3 0 0 0 3-3v-4.5a1.5 1.5 0 0 1 3 0v4.5a6 6 0 0 1-6 6h-15a6 6 0 0 1-6-6v-18Z\" fill=\"#F8F8F8\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 128.688)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lf7cjv\",\"data-framer-name\":\"Avatar Systems\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1s0j3v9\",\"data-framer-name\":\"avatar_systems\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:229,svg:'<svg width=\"229\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M197.354 132.375a2.812 2.812 0 1 1 5.625 0v3.994a2.808 2.808 0 0 1 2.939 1.251 2.803 2.803 0 0 1 3.249.942h.344a3.38 3.38 0 0 1 3.329 2.821l.234 1.403c.02.122.03.246.03.37V147h-2.25v-3.844l-.234-1.403a1.125 1.125 0 0 0-.891-.919v1.104a1.125 1.125 0 0 1-2.25 0v-1.798c-.012-.027-.024-.054-.034-.081a.561.561 0 0 0-1.004-.109 1.497 1.497 0 0 1-.087.118v.744a1.125 1.125 0 0 1-2.25 0v-1.687a.56.56 0 0 0-.532-.561.562.562 0 0 0-.59.5l-.003.027v1.721a1.125 1.125 0 0 1-2.25 0v-8.437a.562.562 0 1 0-1.125 0v11.813a1.125 1.125 0 0 1-2.25 0v-4.405a1.69 1.69 0 0 0-1.125 1.592v4.484c0 1.222.362 2.416 1.04 3.433l.76 1.14a6.192 6.192 0 0 0 5.148 2.756h1.49v.056c0 .877.405 1.674 1.051 2.194h-2.542a8.434 8.434 0 0 1-7.02-3.758l-.759-1.141a8.429 8.429 0 0 1-1.418-4.68v-4.484a3.938 3.938 0 0 1 3.375-3.898v-5.102Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M206.354 149.812a1.125 1.125 0 0 1 1.125-1.124h19.125a1.122 1.122 0 0 1 1.125 1.124v3.432a1.128 1.128 0 0 1-.901 1.102 1.69 1.69 0 0 0-1.352 1.654 1.69 1.69 0 0 0 1.352 1.654 1.12 1.12 0 0 1 .901 1.102v3.432a1.125 1.125 0 0 1-1.125 1.124h-19.125a1.122 1.122 0 0 1-1.125-1.124v-3.432a1.128 1.128 0 0 1 .901-1.102 1.69 1.69 0 0 0 1.352-1.654 1.69 1.69 0 0 0-1.352-1.654 1.12 1.12 0 0 1-.901-1.102v-3.432Zm2.25 1.126v1.504a3.938 3.938 0 0 1 0 7.116v1.504h16.875v-1.504a3.93 3.93 0 0 1-1.641-1.453 3.932 3.932 0 0 1 0-4.21 3.93 3.93 0 0 1 1.641-1.453v-1.504h-16.875Zm-3.602-66.375a24.84 24.84 0 0 0 2.008-1.885 4.501 4.501 0 0 1-1.779 8.635h-5.007a2.812 2.812 0 1 0 0 5.625h14.139a24.284 24.284 0 0 0 2.348 2.25h-16.487a5.062 5.062 0 1 1 0-10.125h5.007a2.25 2.25 0 1 0 0-4.5h-.229Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M201.854 67.688c-3.125 0-5.625 2.483-5.625 5.504 0 2.299 1.294 4.475 2.819 6.22a20.48 20.48 0 0 0 2.806 2.63 20.46 20.46 0 0 0 2.806-2.632c1.525-1.742 2.819-3.918 2.819-6.217 0-3.022-2.5-5.505-5.625-5.505Zm-7.875 5.504c0-4.302 3.545-7.754 7.875-7.754s7.875 3.453 7.875 7.754c0 3.112-1.721 5.809-3.375 7.7a22.32 22.32 0 0 1-3.799 3.43 1.223 1.223 0 0 1-1.402 0 22.322 22.322 0 0 1-3.798-3.43c-1.656-1.891-3.376-4.587-3.376-7.7Zm20.25 14.625c0-3.022 2.499-5.504 5.625-5.504s5.625 2.482 5.625 5.504c0 2.299-1.294 4.475-2.819 6.218a20.493 20.493 0 0 1-2.806 2.633 20.493 20.493 0 0 1-2.806-2.633c-1.525-1.742-2.819-3.918-2.819-6.218Zm5.625-7.754c-4.33 0-7.875 3.453-7.875 7.754 0 3.112 1.721 5.809 3.375 7.7a22.32 22.32 0 0 0 3.799 3.43 1.23 1.23 0 0 0 1.402 0 22.322 22.322 0 0 0 3.798-3.43c1.656-1.891 3.376-4.587 3.376-7.7 0-4.302-3.545-7.754-7.875-7.754Zm-1.125 7.874a1.125 1.125 0 1 1 2.25.002 1.125 1.125 0 0 1-2.25-.001Zm1.125-3.374a3.373 3.373 0 0 0-3.375 3.374 3.375 3.375 0 1 0 3.375-3.374Zm-19.125-11.25a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Zm1.125-3.376a3.373 3.373 0 0 0-3.375 3.376 3.375 3.375 0 1 0 3.375-3.376ZM14.902 134.49c-.417.466-.727 1.197-.891 1.822h1.717a2.252 2.252 0 0 1 2.23 1.949l.574 4.239h-1.178c-.363 0-.724.05-1.073.148l-.553-4.086H9.98l-2.588 19.125h10.924l-.685-5.062h1.973c.1 0 .2-.003.296-.011l.686 5.073h1.268v2.25H1.604v-2.25h3.517l2.629-19.426a2.249 2.249 0 0 1 2.23-1.949h1.717c-.164-.625-.475-1.356-.89-1.822-.222-.25-.422-.367-.59-.407-.149-.036-.392-.044-.782.158a1.123 1.123 0 0 1-1.667-.894 1.125 1.125 0 0 1 .63-1.101c.79-.412 1.59-.535 2.35-.349.74.179 1.315.619 1.74 1.098a4.7 4.7 0 0 1 .366.466 4.82 4.82 0 0 1 .366-.466c.425-.479 1-.919 1.74-1.099.76-.185 1.56-.062 2.351.348a1.126 1.126 0 0 1-1.038 1.997c-.39-.202-.633-.194-.782-.158-.169.04-.368.157-.59.407Zm2.452 9.697a2.25 2.25 0 0 0-2.25 2.25v2.25a2.25 2.25 0 0 0 2.25 2.25h2.25a2.25 2.25 0 0 0 2.25-2.25v-2.25a2.251 2.251 0 0 0-2.25-2.25h-2.25Zm0 2.25h2.25v2.25h-2.25v-2.25Zm14.625.563a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm.563-2.813a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Zm0 6.75a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Zm-.563 2.813a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm0 6.75a.564.564 0 0 1 .96-.398.565.565 0 0 1 0 .796.564.564 0 0 1-.96-.398Zm.563-2.813a2.814 2.814 0 0 0-1.99 4.802 2.814 2.814 0 1 0 1.99-4.802Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m18.04 155.647.277 2.041h-1.42l-4.043-4.062-4.044 4.062H7.392l.275-2.041 3.6-3.616-2.738-2.751.584-4.314 2.234-2.509-1.645-1.847.277-2.048h.911l1.963 2.204 1.963-2.204h.91l.279 2.048-1.645 1.847.697.782a3.951 3.951 0 0 0-1.393 1.82l-.81-.911-2.956 3.319 2.956 2.97.702-.707a3.94 3.94 0 0 0 1.237 1.948l-.352.353 3.6 3.616h-.001Zm6.064-6.959h-2.25v-2.25h7.93a2.823 2.823 0 0 0 .507 2.25h-3.938v3.374h3.938a2.804 2.804 0 0 0-.506 2.25h-3.431v4.5h3.937a2.804 2.804 0 0 0-.506 2.25h-3.431a2.25 2.25 0 0 1-2.25-2.25v-10.124ZM214.558 1.642a1.125 1.125 0 0 1 1.591 0l11.25 11.25a1.124 1.124 0 0 1 0 1.59l-2.461 2.462c-2.114 2.115-5.664 1.617-7.116-.997l-1.827-3.29a4.442 4.442 0 0 1-5.655-6.796l4.218-4.22Zm.796 2.386-3.424 3.423a2.193 2.193 0 0 0 .711 3.572 2.185 2.185 0 0 0 2.386-.474l.468-.47a1.12 1.12 0 0 1 .952-.318 1.127 1.127 0 0 1 .827.567l2.516 4.527a2.248 2.248 0 0 0 3.557.498l1.665-1.665-9.658-9.661v.001Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m210.317 5.883-6.056 6.057-.014.015-1.83 1.83a3.376 3.376 0 0 0-.815 3.453l.865 2.593a1.124 1.124 0 0 1-.488 1.32l-5.158 3.095a5.814 5.814 0 1 0 7.976 7.976l3.094-5.158a1.121 1.121 0 0 1 1.32-.489l2.593.866a3.376 3.376 0 0 0 3.454-.816l1.815-1.815.016-.014 7.844-7.845a4.48 4.48 0 0 1-4.34 1.159l-4.301 4.3-9.658-9.66 2.566-2.567a4.44 4.44 0 0 1 1.117-4.3Zm1.896 1.287-.297.298.016-.016.281-.282Zm-7.171 7.171-1.034 1.034a1.13 1.13 0 0 0-.271 1.15l.864 2.595a3.374 3.374 0 0 1-1.465 3.96l-5.158 3.096a3.563 3.563 0 1 0 4.888 4.888l3.095-5.158a3.374 3.374 0 0 1 3.961-1.465l2.595.864a1.121 1.121 0 0 0 1.15-.27l1.034-1.036-9.659-9.658Z\" fill=\"#000\"/><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M72.479 65.438a2.25 2.25 0 0 0-2.25 2.25v6.75h-2.25a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25h6.75c.395 0 .783-.104 1.125-.302.33.191.716.302 1.125.302h6.236a4.541 4.541 0 0 1-1.11-2.25H76.98v-6.75h5.484a4.969 4.969 0 0 1 1.552-1.852 5.27 5.27 0 0 1 .427-.284 2.246 2.246 0 0 0-.713-.115h-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25h-6.75Zm2.25 11.25v6.75h-6.75v-6.75h6.75Zm4.5-2.25h-6.75v-6.75h6.75v6.75Zm-2.25 15.75h-3.375v2.25h2.25v5.624h-2.25v2.25h2.25a2.252 2.252 0 0 0 2.25-2.25v-7.874h-1.125Z\" fill=\"#000\"/><path d=\"M87.102 86.813v-.97a4.378 4.378 0 0 1-2.092-.79c-.72-.529-1.283-1.351-1.283-2.366h2.25c0 .125.068.334.365.551.19.141.45.26.76.328v-1.892c-.594-.1-1.312-.248-1.907-.57a2.757 2.757 0 0 1-1.06-.983c-.282-.459-.408-.987-.408-1.558 0-1.015.563-1.837 1.283-2.366a4.38 4.38 0 0 1 2.092-.79v-.97h1.125v.97c.781.09 1.508.362 2.093.79.72.529 1.282 1.351 1.282 2.366h-2.25c0-.125-.067-.334-.364-.551-.19-.141-.45-.26-.76-.328v1.892c.593.1 1.311.248 1.906.57a2.74 2.74 0 0 1 1.061.983c.281.458.407.987.407 1.558 0 1.015-.562 1.837-1.282 2.366a4.379 4.379 0 0 1-2.093.79v.97h-1.125Zm1.886-3.575c-.19.141-.45.26-.76.328v-1.702c.362.073.63.15.834.26.086.039.16.1.214.178.027.045.076.15.076.385 0 .125-.067.334-.364.551Zm-1.886-5.554v1.702c-.362-.073-.63-.15-.835-.26a.523.523 0 0 1-.213-.18c-.027-.042-.077-.148-.077-.383 0-.125.068-.334.365-.551.19-.141.45-.26.76-.328Zm9.304 11.278a.843.843 0 0 1 1.19 1.182l-4.224 5.148a4.499 4.499 0 0 1-3.479 1.645h-11.79v1.126c0 .409-.11.794-.302 1.124h12.092a6.75 6.75 0 0 0 5.218-2.468l4.224-5.148a3.096 3.096 0 0 0-2.258-5.045 3.094 3.094 0 0 0-2.112.707l-4.497 3.748a2.81 2.81 0 0 0-2.803-3.043h-4.203a6.75 6.75 0 0 0-4.368 1.603l-.762.647h-.23v2.25h.643c.266 0 .524-.096.727-.268l1.078-.914a4.5 4.5 0 0 1 2.912-1.069h4.203a.562.562 0 0 1 0 1.126h-4.11v2.25h6.107c.789 0 1.553-.277 2.16-.782l4.582-3.819h.002Z\" fill=\"#FF323D\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.354 136.312c-2.033 0-3.968-1.782-4.41-4.5h8.82c-.442 2.718-2.377 4.5-4.41 4.5Zm3.895.815c1.474-1.22 2.48-3.097 2.767-5.163.195-1.397-.97-2.402-2.162-2.402h-9c-1.192 0-2.357 1.005-2.162 2.402.288 2.066 1.294 3.943 2.766 5.163-2.252.954-4.213 2.654-5.74 4.607-2.359 3.015-3.864 6.852-3.864 10.108 0 1.658.392 3.06 1.164 4.208.77 1.144 1.862 1.95 3.124 2.517 2.478 1.112 5.785 1.371 9.212 1.371a1.125 1.125 0 0 0 1.125-1.126v-10.124h10.448a1.136 1.136 0 0 0 .918-.475 1.128 1.128 0 0 0 .143-1.024c-.942-2.674-2.607-5.362-4.757-7.395-1.173-1.11-2.514-2.046-3.982-2.666v-.001Zm-3.895 1.435c-2.939 0-5.74 1.842-7.864 4.557-2.121 2.714-3.386 6.078-3.386 8.724 0 1.294.302 2.239.78 2.951.483.717 1.204 1.283 2.18 1.721 1.777.799 4.248 1.104 7.165 1.162v-8.989a2.248 2.248 0 0 1 2.25-2.25h8.773c-.862-1.845-2.093-3.615-3.566-5.009-1.874-1.772-4.062-2.867-6.332-2.867Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M83.729 153.188a2.248 2.248 0 0 1 2.25-2.25h9.8a1.122 1.122 0 0 1 1.099.882c.227 1.03.351 2.053.351 3.03 0 1.628-.344 3.017-1.027 4.174-.684 1.159-1.665 2.014-2.827 2.634-2.275 1.215-5.32 1.578-8.499 1.643a1.128 1.128 0 0 1-1.06-.689 1.126 1.126 0 0 1-.087-.436v-8.988Zm11.117 0H85.98v7.825c2.613-.126 4.784-.51 6.335-1.339.863-.461 1.51-1.048 1.95-1.793.442-.747.715-1.723.715-3.031 0-.527-.045-1.084-.133-1.662Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.604 1.313a7.872 7.872 0 0 0-7.875 7.875v3.953a12.353 12.353 0 0 0-4.5 9.546c0 6.835 5.541 12.375 12.375 12.375s12.375-5.54 12.375-12.374c0-3.843-1.752-7.277-4.5-9.547V9.187a7.875 7.875 0 0 0-7.875-7.874Zm5.625 10.35V9.186a5.625 5.625 0 0 0-11.25 0v2.476c1.688-.863 3.6-1.35 5.625-1.35s3.938.487 5.625 1.35Zm-15.75 11.024a10.125 10.125 0 1 1 20.25.001 10.125 10.125 0 0 1-20.25 0Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.602 13.768a1.127 1.127 0 0 1 1.125 1.125v1.3a1.124 1.124 0 1 1-2.25 0v-1.3a1.125 1.125 0 0 1 1.125-1.125Zm0 14.289a1.127 1.127 0 0 1 1.125 1.125v1.3a1.124 1.124 0 1 1-2.25 0v-1.3a1.126 1.126 0 0 1 1.125-1.125Zm7.313-8.292a1.126 1.126 0 0 0-1.125-1.949l-1.125.65a1.112 1.112 0 0 0-.53.682 1.125 1.125 0 0 0 1.655 1.266l1.125-.65Zm-11.964 5.608a1.122 1.122 0 0 1-.411 1.536l-1.125.65a1.128 1.128 0 0 1-1.544-.408 1.126 1.126 0 0 1 .419-1.54l1.125-.65a1.123 1.123 0 0 1 1.536.412Zm-1.536-7.557a1.126 1.126 0 0 0-1.125 1.949l1.125.649a1.123 1.123 0 0 0 1.654-1.266 1.123 1.123 0 0 0-.529-.683l-1.125-.649Zm10.838 7.557a1.125 1.125 0 0 1 1.537-.412l1.125.65a1.125 1.125 0 0 1-1.125 1.948l-1.125-.65a1.127 1.127 0 0 1-.412-1.536Zm-7.574-9.998a1.121 1.121 0 0 0-1.54-.418 1.116 1.116 0 0 0-.525.686 1.126 1.126 0 0 0 .117.857l.649 1.125a1.123 1.123 0 0 0 1.872.127 1.127 1.127 0 0 0 .076-1.252l-.649-1.125Zm5.608 11.963a1.126 1.126 0 0 1 1.537.412l.649 1.125A1.124 1.124 0 0 1 148.525 30l-.649-1.125a1.127 1.127 0 0 1 .411-1.537Zm2.186-10.838a1.124 1.124 0 1 0-1.948-1.125l-.649 1.125a1.124 1.124 0 0 0 1.948 1.125l.649-1.125Zm-7.556 10.838a1.125 1.125 0 0 1 .411 1.537L142.679 30a1.122 1.122 0 0 1-1.533.405 1.126 1.126 0 0 1-.415-1.53l.649-1.125a1.125 1.125 0 0 1 1.537-.412Zm-5.109-5.776a1.124 1.124 0 0 0 0 2.25h1.298a1.125 1.125 0 1 0 0-2.25h-1.298Zm13.165 1.125a1.124 1.124 0 0 1 1.125-1.125h1.298a1.127 1.127 0 0 1 .796 1.92c-.211.212-.498.33-.796.33h-1.298a1.125 1.125 0 0 1-1.125-1.125Zm-7.621 0a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-4.5a4.501 4.501 0 1 0 0 9.002 4.501 4.501 0 0 0 0-9.002Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M139.979 138.562a6.751 6.751 0 0 1 13.5 0v3.376h-2.25v-3.376a4.502 4.502 0 0 0-7.682-3.181 4.497 4.497 0 0 0-1.318 3.181v3.376h-2.25v-3.376Zm-2.25 3.376v-3.376a9 9 0 0 1 18 0v3.376h3.375a2.25 2.25 0 0 1 2.25 2.25v16.874a2.248 2.248 0 0 1-2.25 2.25h-24.75a2.25 2.25 0 0 1-2.25-2.25v-16.874a2.248 2.248 0 0 1 2.25-2.25h3.375Zm9-5.626a2.25 2.25 0 0 0-2.25 2.25v3.376h4.5v-3.376a2.25 2.25 0 0 0-2.25-2.25Zm-12.375 7.876v16.874h24.75v-16.874h-24.75Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M145.605 150.938a1.125 1.125 0 1 1 2.25-.002 1.125 1.125 0 0 1-2.25.002Zm1.125-3.375a3.372 3.372 0 0 0-1.125 6.558v3.567h2.25v-3.567a3.376 3.376 0 0 0-1.125-6.558ZM71.243 10.025l.642.37c.212.123.379.312.474.537l.515 1.219a4.5 4.5 0 0 0 1.895 2.146l6.453 3.726.018.01 1.005.58a.812.812 0 1 0 .812-1.407l-6.293-3.634 1.125-1.949 5.674 3.277.157-.546a1.126 1.126 0 0 0-.122-.896l-1.583-2.595a4.5 4.5 0 0 0-2.4-1.92l-5.798-1.96a1.125 1.125 0 0 1-.238-.112l-.278-.174.596-.964.587-.95.18.112 5.67 1.918a6.75 6.75 0 0 1 3.602 2.879l1.582 2.594a3.375 3.375 0 0 1 .365 2.686l-.279.975 2.99.854a2.25 2.25 0 0 1 1.553 2.756l-2.082 7.63h-2.332l2.244-8.223-2.29-.654a3.06 3.06 0 0 1-3.004 2.662l-1.51.59-1.466 5.626H77.38l1.237-4.739a3.07 3.07 0 0 1-2.768-4.929l-2.205-1.274a6.75 6.75 0 0 1-2.844-3.22l-.368-.87-.564-.327a2.25 2.25 0 0 0 .7-.713l.675-1.091Zm2.338-5.81-.043-.026.043.026Zm4.995 15.946a.818.818 0 0 1-.702-1.473l1.499.867-.086.33-.71.276Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M70.572 11.116a2.249 2.249 0 0 1-3.13.708l-1.757-1.127 1.216-1.892 1.757 1.128 2.734-4.422-3.438-2.114 1.178-1.917 4.399 2.704.96.591-.592.959-3.327 5.383v-.001Zm-.34 16.071a2.25 2.25 0 0 0-2.25 2.25v5.625h2.25v-5.625h24.75v5.625h2.25v-5.625a2.25 2.25 0 0 0-2.25-2.25h-24.75Z\" fill=\"#000\"/><g clip-path=\"url(#b)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M18.58.188a1.125 1.125 0 0 1 1.074.79l.978 3.134c.287.106.568.223.845.35l2.91-1.525a1.125 1.125 0 0 1 1.317.203l3.324 3.323a1.125 1.125 0 0 1 .202 1.317l-1.526 2.91c.127.276.243.557.35.843l3.134.98a1.125 1.125 0 0 1 .79 1.074v4.7a1.125 1.125 0 0 1-.79 1.075l-2.956.924-1.85-1.645c.128-.128.286-.224.46-.278l2.887-.902v-3.047l-2.887-.902a1.124 1.124 0 0 1-.735-.731 10.286 10.286 0 0 0-.66-1.594 1.126 1.126 0 0 1 .001-1.039l1.404-2.68-2.154-2.154-2.68 1.404a1.125 1.125 0 0 1-1.038.003 10.293 10.293 0 0 0-1.594-.661 1.124 1.124 0 0 1-.732-.736l-.902-2.886h-3.046l-.902 2.886a1.125 1.125 0 0 1-.732.737c-.548.175-1.081.396-1.593.66a1.125 1.125 0 0 1-1.038-.003L7.76 5.314 5.606 7.468 7.01 10.15a1.125 1.125 0 0 1 .003 1.039 10.293 10.293 0 0 0-.66 1.593 1.125 1.125 0 0 1-.736.731l-2.888.902v3.047l2.888.902a1.125 1.125 0 0 1 .736.731c.176.553.398 1.085.66 1.593a1.125 1.125 0 0 1-.003 1.039l-1.404 2.68 2.154 2.155 2.68-1.404a1.124 1.124 0 0 1 1.04-.003c.507.262 1.04.483 1.592.66a1.125 1.125 0 0 1 .732.736l.902 2.887h3.046l.902-2.886c.064-.203.184-.384.346-.522l1.61 1.809-.956 3.06a1.125 1.125 0 0 1-1.075.79h-4.7a1.126 1.126 0 0 1-1.074-.79l-.98-3.134a12.464 12.464 0 0 1-.843-.35l-2.91 1.524a1.125 1.125 0 0 1-1.318-.203L3.43 25.412a1.125 1.125 0 0 1-.202-1.317l1.526-2.91a12.525 12.525 0 0 1-.349-.844l-3.135-.979a1.125 1.125 0 0 1-.791-1.074v-4.7a1.125 1.125 0 0 1 .79-1.075l3.135-.979c.106-.287.223-.568.349-.844L3.23 7.78a1.125 1.125 0 0 1 .2-1.317l3.324-3.325a1.125 1.125 0 0 1 1.318-.2l2.909 1.523c.277-.126.558-.243.844-.348l.98-3.136a1.125 1.125 0 0 1 1.074-.79h4.701Z\" fill=\"#000\"/><path d=\"M12.8 10.039a1.125 1.125 0 0 0 .308 1.016l3.476 3.476-1.694 1.692-3.476-3.475a1.125 1.125 0 0 0-1.835.368 7.165 7.165 0 0 0 8.718 9.58l9.356 10.516a4.19 4.19 0 1 0 5.919-5.918l-10.517-9.358a7.165 7.165 0 0 0-9.58-8.717 1.125 1.125 0 0 0-.675.82Zm3.366.892a4.916 4.916 0 0 1 4.54 6.886 1.125 1.125 0 0 0 .282 1.292l11.089 9.866a1.944 1.944 0 0 1-.58 3.247 1.94 1.94 0 0 1-2.163-.505l-9.866-11.088a1.125 1.125 0 0 0-1.292-.284 4.918 4.918 0 0 1-6.885-4.54l2.804 2.805a1.125 1.125 0 0 0 1.59 0l3.286-3.285a1.125 1.125 0 0 0 0-1.59l-2.806-2.804Z\" fill=\"#FF323D\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.729 78.938v13.5h2.25v-13.5h-2.25Zm5.625 13.5v-13.5h2.25v13.5h-2.25Zm5.625 0v-13.5h2.25v13.5h-2.25Z\" fill=\"#FF323D\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.473 65.809a2.25 2.25 0 0 1 2.012 0L34.11 73.12a2.25 2.25 0 0 1 1.244 2.01v1.557a2.25 2.25 0 0 1-2.25 2.25h-2.25v13.5h2.25a2.25 2.25 0 0 1 2.25 2.25v2.25a2.25 2.25 0 0 1-2.25 2.25H3.854a2.25 2.25 0 0 1-2.25-2.25v-2.25a2.25 2.25 0 0 1 2.25-2.25h2.25v-13.5h-2.25a2.25 2.25 0 0 1-2.25-2.25v-1.555a2.25 2.25 0 0 1 1.244-2.013l14.625-7.312ZM8.354 92.438v-13.5h20.25v13.5H8.354Zm24.75-17.305L18.479 67.82 3.854 75.133v1.555h29.25v-1.555ZM3.854 94.688v2.25h29.25v-2.25H3.854Zm14.625-23.625a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm135 9h9v16.874a2.25 2.25 0 0 1-2.25 2.25h-4.5a2.25 2.25 0 0 1-2.25-2.25V80.064Zm2.25 2.25v14.624h4.5V82.314h-4.5Zm-13.5 3.374h9v11.25a2.25 2.25 0 0 1-2.25 2.25h-4.5a2.25 2.25 0 0 1-2.25-2.25v-11.25Zm2.25 2.25v9h4.5v-9h-4.5Zm-12.375 2.25h-1.125v6.75a2.25 2.25 0 0 0 2.25 2.25h4.5a2.25 2.25 0 0 0 2.25-2.25v-6.75h-7.875Zm1.125 6.75v-4.5h4.5v4.5h-4.5Z\" fill=\"#000\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M153.479 68.813a2.25 2.25 0 0 1 2.25-2.25h4.5a2.25 2.25 0 0 1 2.25 2.25v11.25h-2.25v-11.25h-4.5v11.25h-2.25v-11.25Zm-9 6.75a2.25 2.25 0 0 0-2.25 2.25v7.874h2.25v-7.874h4.5v7.874h2.25v-7.874a2.25 2.25 0 0 0-2.25-2.25h-4.5Zm-11.25 9a2.25 2.25 0 0 0-2.25 2.25v3.374h2.25v-3.374h4.5v3.374h2.25v-3.374a2.25 2.25 0 0 0-2.25-2.25h-4.5Z\" fill=\"#FF323D\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(64.604 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(.479 .188)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ukndx\",\"data-framer-name\":\"Spring Health\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c5isgh\",\"data-framer-name\":\"spring_health\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:230,svg:'<svg width=\"230\" height=\"165\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M205.913 130.206a1.5 1.5 0 1 0-2.952-.537l-6 33a1.5 1.5 0 0 0 2.952.537l.596-3.279c.059.007.118.011.178.011h8.069c.034 1.078.392 2.274 1.09 3.67a1.499 1.499 0 1 0 2.683-1.341c-.552-1.104-.736-1.838-.77-2.329h9.928c.061 0 .12-.004.178-.011l.596 3.279a1.5 1.5 0 0 0 2.952-.537l-6-33a1.5 1.5 0 0 0-2.952.537l.224 1.232h-3.349c-.59-1.379-1.388-2.296-2.067-2.749a1.5 1.5 0 0 0-1.664 2.497c.05.033.144.115.262.252h-4.178l.224-1.232Zm5.168 4.232h-5.894l-.043-.001-1.637 9.001h4.061a6.942 6.942 0 0 1 1.005-2.531 3.907 3.907 0 0 1-.343-.19 5.713 5.713 0 0 1-1.01-.813 5.71 5.71 0 0 1-.812-1.009c-.195-.315-.471-.844-.471-1.457a1.5 1.5 0 0 1 1.5-1.5c.614 0 1.143.275 1.458.47.364.226.711.514 1.009.813.272.271.536.584.751.913.333-.587.532-1.247.532-2.196 0-.554-.039-1.053-.106-1.5Zm-3.531 12h-4.588l-1.909 10.5h8.599c.08-.119.161-.231.242-.338.199-.266.364-.47.507-.646.26-.321.443-.548.614-.878.19-.366.327-.834.193-1.642-.158-.945-.422-1.559-.703-2.019a4.753 4.753 0 0 0-.241-.358 3.588 3.588 0 0 1-.297.588 5.76 5.76 0 0 1-.813 1.009 5.67 5.67 0 0 1-1.009.813c-.315.195-.844.471-1.458.471a1.5 1.5 0 0 1-1.5-1.5c0-.614.276-1.143.471-1.458a5.71 5.71 0 0 1 .812-1.009 5.758 5.758 0 0 1 1.01-.813c.218-.135.538-.308.918-.402a5.909 5.909 0 0 1-.341-.634 6.41 6.41 0 0 1-.507-1.684Zm5.848 10.5c.101-.158.197-.32.281-.483.236-.454.413-.95.507-1.502.111.036.214.063.304.084.416.098.866.139 1.288.139.422 0 .871-.041 1.288-.139.361-.085.93-.264 1.364-.698a1.501 1.501 0 0 0 0-2.121c-.434-.434-1.003-.613-1.364-.698a5.728 5.728 0 0 0-1.288-.139c-.422 0-.872.041-1.288.139a3.57 3.57 0 0 0-.603.195 7.808 7.808 0 0 0-.822-1.864c-.426-.696-.915-1.236-1.292-1.652l-.001-.001a12.361 12.361 0 0 1-.126-.139c-.409-.455-.675-.782-.867-1.197a3.135 3.135 0 0 1-.159-.424h8.793l1.909 10.5h-7.924Zm-2.742-13.5c.259-.775.728-1.344 1.309-2.04l.015-.019.219-.263c.088.1.179.197.271.288.299.299.646.588 1.01.813.315.195.844.471 1.457.471a1.5 1.5 0 0 0 1.5-1.5c0-.614-.275-1.143-.47-1.458a5.76 5.76 0 0 0-.813-1.009 5.715 5.715 0 0 0-1.009-.813 6.344 6.344 0 0 0-.167-.098 8.012 8.012 0 0 0 .209-1.872c0-.528-.029-1.028-.082-1.5h3.082l.044-.001 1.636 9.001h-8.211Z\" fill=\"#136338\"/></g><g clip-path=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M220.938 3.188a8.253 8.253 0 0 0-8.113 6.74l3.302-3.301a1.5 1.5 0 1 1 2.121 2.121l-3.439 3.44h.129a8.25 8.25 0 0 0 8.25-8.25v-.75h-2.25Zm-8.25 12v15.705c1.613-.82 3.859-1.456 6.75-1.456 2.89 0 5.136.635 6.75 1.456v-18.15c-.427-.406-1.302-1.025-2.714-1.478a11.223 11.223 0 0 1-8.536 3.922h-2.25Zm12.456-6.511a11.222 11.222 0 0 0 1.044-4.74v-2.25a1.5 1.5 0 0 0-1.5-1.5h-3.75c-5.467 0-10.022 3.899-11.039 9.067-1.627-.874-3.942-1.566-6.961-1.566-5.319 0-8.455 2.15-9.487 3.65-.171.25-.263.546-.263.85v21.75a1.5 1.5 0 0 0 2.736.85c.343-.5 2.432-2.35 7.014-2.35 4.581 0 6.67 1.85 7.013 2.35a1.502 1.502 0 0 0 2.473 0c.343-.5 2.432-2.35 7.014-2.35 4.581 0 6.67 1.85 7.013 2.35a1.5 1.5 0 0 0 2.737-.85v-21.75c0-.304-.093-.6-.264-.85-.583-.848-1.839-1.904-3.78-2.661Zm-15.456 4.066c-.742-.706-2.837-2.056-6.75-2.056-3.914 0-6.009 1.35-6.75 2.056v18.15c1.613-.82 3.859-1.456 6.75-1.456 2.89 0 5.136.635 6.75 1.456v-18.15Z\" fill=\"#136338\"/></g><g clip-path=\"url(#c)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M100.498 130.998a1.5 1.5 0 1 0-2.121-2.121l-4.33 4.329-.105.054a28.085 28.085 0 0 0-7.286-.157c-4.028.446-8.907 1.928-12.962 5.927-3.69 3.639-5.514 8.449-6.41 12.707-.899 4.273-.892 8.131-.813 10.019a2.774 2.774 0 0 0 2.727 2.675 28.871 28.871 0 0 0 6.433-.61c1.239-.257 1.709-1.513 1.41-2.452a2.25 2.25 0 0 1 2.38-2.92 1.935 1.935 0 0 0 2.094-1.527 3.752 3.752 0 0 1 6.346-1.863c.71.722 2.02.836 2.802-.097a27.786 27.786 0 0 0 1.711-2.273c2.3-3.402 3.312-7.411 3.748-10.699.438-3.3.312-5.995.252-6.868l4.124-4.124Zm-11.082 4.941c-5.439 3.677-9.676 8.29-11.57 12.078a1.5 1.5 0 1 0 2.683 1.341c1.862-3.724 6.672-8.777 12.908-12.405a34.02 34.02 0 0 1-.289 4.642c-.405 3.054-1.322 6.549-3.259 9.414-.27.399-.546.783-.826 1.151a6.752 6.752 0 0 0-10.245 3.29 5.25 5.25 0 0 0-4.866 5.633 25.743 25.743 0 0 1-4.491.353c-.065-1.811-.04-5.282.759-9.081.831-3.954 2.472-8.123 5.58-11.189 3.434-3.386 7.6-4.684 11.187-5.082.854-.094 1.67-.137 2.429-.145Z\" fill=\"#136338\"/></g><g clip-path=\"url(#d)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M197.831 76.347a7.51 7.51 0 0 1 4.41-5.433 7.501 7.501 0 0 1 7.447-6.602h3a7.501 7.501 0 0 1 7.446 6.602 7.51 7.51 0 0 1 4.41 5.433 5.251 5.251 0 0 1 1.644 9.96v.505a7.503 7.503 0 0 1-4.554 6.9 7.5 7.5 0 0 1-7.446 6.6h-6a7.5 7.5 0 0 1-7.447-6.6 7.502 7.502 0 0 1-4.553-6.9v-.505a5.25 5.25 0 0 1 1.643-9.96Zm.607 2.966a2.25 2.25 0 1 0 0 4.5h7.552a6 6 0 0 1 5.198-3 5.999 5.999 0 0 1 5.197 3h7.553a2.25 2.25 0 0 0 0-4.5h-25.5Zm22.993-3h-20.487a4.5 4.5 0 0 1 4.244-3h12a4.5 4.5 0 0 1 4.243 3Zm-4.243 10.5v4.5h1.5a4.5 4.5 0 0 0 4.5-4.5h-6Zm-12 0h-6a4.5 4.5 0 0 0 4.5 4.5h1.5v-4.5Zm11.743-16.5h-11.487a4.5 4.5 0 0 1 4.244-3h3a4.5 4.5 0 0 1 4.243 3Zm-12.987 24a4.5 4.5 0 0 0 4.244 3h6a4.5 4.5 0 0 0 4.243-3h-14.487Zm10.244-7.5v4.5h-6v-4.5a3 3 0 1 1 6 0Z\" fill=\"#136338\"/></g><g clip-path=\"url(#e)\" fill=\"#136338\"><path d=\"M82.526 64.37a1.5 1.5 0 0 1 1.854 1.03l.902 3.156.023.085c1.518-.69 3.91-.856 6.867.488a1.5 1.5 0 0 1 .298 2.551c-2.606 2.02-5.395 1.472-7.1.658a7.493 7.493 0 0 1-.446 1.324l-1.033 2.323a4.5 4.5 0 0 0 0 3.655l1.166 2.623a7.5 7.5 0 0 1 .526 4.388l-1.073 5.897a4.5 4.5 0 0 0-.072.805v5.46a1.5 1.5 0 0 1-3 0v-5.46c0-.45.04-.898.12-1.341l1.073-5.898a4.5 4.5 0 0 0-.315-2.633l-1.166-2.623a7.498 7.498 0 0 1-.642-3.3c-3.71-1.528-5.07-4.077-5.07-5.746a1.5 1.5 0 0 1 1.709-1.485c1.18.166 3.355.951 4.693 2.887l.342-.77a4.5 4.5 0 0 0 .215-3.064l-.902-3.155a1.5 1.5 0 0 1 1.03-1.855Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M78.438 83.812a5.984 5.984 0 0 1-1.932 4.41 6.564 6.564 0 0 1 2.426 4.135l.987 6.22a1.5 1.5 0 0 1-2.963.47l-.987-6.22a3.575 3.575 0 0 0-7.063 0l-.987 6.22a1.5 1.5 0 1 1-2.963-.47l.988-6.22a6.564 6.564 0 0 1 2.425-4.135 6 6 0 1 1 10.069-4.41Zm-6-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm25.068 7.41a6 6 0 1 0-8.137 0 6.564 6.564 0 0 0-2.425 4.135l-.988 6.22a1.5 1.5 0 0 0 2.963.47l.987-6.22a3.576 3.576 0 0 1 7.063 0l.987 6.22a1.5 1.5 0 1 0 2.963-.47l-.987-6.22a6.564 6.564 0 0 0-2.426-4.135Zm-7.068-4.41a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"/></g><g clip-path=\"url(#f)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M69.438 7.688a4.5 4.5 0 0 1 4.5-4.5h6c1.152 0 2.204.433 3 1.145a4.483 4.483 0 0 1 3-1.146h6a4.5 4.5 0 0 1 4.5 4.5v1.554a5.251 5.251 0 0 1 4.5 5.197v13.37c0 4.22-5.294 6.11-7.967 2.844a1.49 1.49 0 0 0-1.759-.418l-2.218.986a7.673 7.673 0 0 1-6.107.055l-17.003-7.194a1.504 1.504 0 0 1-.946-1.42v-8.224a5.251 5.251 0 0 1 4.5-5.197V7.688Zm-1.5 13.5h4.5v-6.75a2.25 2.25 0 1 0-4.5 0v6.75Zm7.5 0h15v-4.5h-15v4.5Zm18 0h4.5v-6.75a2.25 2.25 0 1 0-4.5 0v6.75Zm0-13.5v2.005a5.256 5.256 0 0 0-2.947 3.995h-6.053v-6a1.5 1.5 0 0 1 1.5-1.5h6a1.5 1.5 0 0 1 1.5 1.5Zm-12 6v-6a1.5 1.5 0 0 0-1.5-1.5h-6a1.5 1.5 0 0 0-1.5 1.5v2.005a5.256 5.256 0 0 1 2.947 3.995h6.053Z\" fill=\"#136338\"/></g><g clip-path=\"url(#g)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m18.142 65.97-5.594 2.798c-2.597-2.381-6.556-2.263-9.018.356l-1.217 1.294a2.308 2.308 0 0 0 0 3.148l.312.332c.425.451.896.83 1.4 1.135-.086.43-.131.876-.131 1.33v.675a2.25 2.25 0 0 0 2.25 2.25h.74c.35 0 .694-.027 1.03-.079a6.89 6.89 0 0 0 1.016 1.397l.312.333a2.196 2.196 0 0 0 3.213 0l1.217-1.295c2.187-2.325 2.483-5.872.89-8.529l2.75-1.375v14.073h-10.5a1.5 1.5 0 0 0-1.5 1.5v6a1.5 1.5 0 0 0 1.5 1.5h1.77l1.26 6.294a1.5 1.5 0 0 0 1.47 1.206h15a1.5 1.5 0 0 0 1.471-1.206l1.26-6.294h1.77a1.5 1.5 0 0 0 1.5-1.5v-6a1.5 1.5 0 0 0-1.5-1.5H20.312v-2.151l6.772-4.063-1.543-2.573-5.229 3.137V67.688H19l-.858-1.717Zm4.243 20.843-1.5 3H8.312v-3h14.073Zm-4.588 6h-6.155l.9 4.5h12.54l.9-4.5h-4.954l.677 1.692a1.5 1.5 0 1 1-2.785 1.115l-1.123-2.807Zm7.943-6-1.5 3h5.073v-3H25.74ZM10.723 71.179c-1.394-1.483-3.614-1.483-5.008 0l-.76.809c.408.39.87.656 1.349.809l1.596.51-.683 1.53a3.728 3.728 0 0 0-.322 1.45c.477 0 .93-.09 1.345-.252l1.505-.584.473 1.543c.138.453.354.88.645 1.26l.624-.665c1.443-1.535 1.443-4.06 0-5.594l-.28-.298-.122-.1-.087-.125-.275-.293Z\" fill=\"#136338\"/></g><g clip-path=\"url(#h)\" fill=\"#136338\"><path d=\"m148.307 130.601-1.245.836-1.246-.836 1.246-1.853 1.245 1.853Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m160.555 143.104-.137-1.494-.004.001h-.006l-.02.002-.039.004-.028.003a20.433 20.433 0 0 0-1.077.153c-.704.118-1.68.315-2.78.631-.747.214-1.57.489-2.413.84-.601-2.562-1.644-5.079-2.64-7.133a53.039 53.039 0 0 0-2.826-5.082l-.201-.312-.055-.083-.016-.023-.004-.007-.002-.002-1.245.835-1.246-.836-.002.003-.004.007-.016.023-.055.083-.201.312a53.039 53.039 0 0 0-2.826 5.082c-.996 2.054-2.038 4.571-2.64 7.133a22.228 22.228 0 0 0-2.413-.84 25.384 25.384 0 0 0-3.62-.756 11.123 11.123 0 0 0-.237-.028l-.067-.007-.02-.002h-.009c0-.001-.002-.001-.138 1.493l.136-1.494-1.559-.142-.075 1.564 1.498.072-1.498-.072v.002l-.001.003v.007l-.001.021-.002.069a16.81 16.81 0 0 0 .012 1.094c.028.641.098 1.505.263 2.483a15.26 15.26 0 0 0-1.779-.107 1.5 1.5 0 0 0-1.5 1.5c0 3.901 1.239 9.386 2.25 12.252a2.634 2.634 0 0 0 1.972 1.734c.841.172 1.705-.06 2.38-.567 3.148-2.369 7.247-3.586 11.398-3.586 4.15 0 8.249 1.217 11.397 3.586.675.507 1.539.739 2.38.567a2.634 2.634 0 0 0 1.972-1.734c1.011-2.866 2.251-8.351 2.251-12.252a1.5 1.5 0 0 0-1.5-1.5c-.581 0-1.176.036-1.78.107a20.42 20.42 0 0 0 .263-2.483 16.81 16.81 0 0 0 .012-1.094l-.002-.069-.001-.021-.001-.01v-.001l-1.498.071Zm-5.993 4.167c0-.317-.012-.636-.033-.958a18.59 18.59 0 0 1 2.763-1.026 22.802 22.802 0 0 1 1.704-.417 16.947 16.947 0 0 1-.221 1.616c-.358 1.922-1.119 4.064-2.637 5.54-1.061 1.031-2.436 1.71-3.828 2.152 1.245-1.628 2.252-3.881 2.252-6.907Zm-15 0c0 3.026 1.006 5.279 2.251 6.907-1.392-.442-2.767-1.121-3.828-2.152-1.518-1.476-2.279-3.618-2.637-5.54a16.947 16.947 0 0 1-.221-1.616c.499.102 1.079.238 1.704.417a18.59 18.59 0 0 1 2.763 1.026c-.021.322-.032.641-.032.958Zm7.5-12.963a49.951 49.951 0 0 0-1.651 3.111c-1.48 3.055-2.849 6.757-2.849 9.852 0 3.289 1.593 5.336 3 6.502v-5.669a1.5 1.5 0 1 1 3 0v5.669c1.406-1.166 3-3.213 3-6.502 0-3.095-1.37-6.797-2.85-9.852a50.533 50.533 0 0 0-1.65-3.111Zm-7.995 22.016c-1.118-.522-2.217-1.218-3.173-2.147-1.3-1.263-2.153-2.799-2.715-4.297a15.152 15.152 0 0 0-1.049-.172c.247 3.139 1.12 6.982 1.891 9.298a20.17 20.17 0 0 1 5.046-2.682Zm15.989 0c1.118-.522 2.217-1.218 3.173-2.147 1.3-1.263 2.153-2.799 2.715-4.297.355-.071.705-.128 1.049-.172-.247 3.139-1.12 6.982-1.891 9.298a20.17 20.17 0 0 0-5.046-2.682Z\"/><path d=\"m160.555 143.104-.137-1.494 1.56-.142.075 1.565-1.498.071Zm-2.661-11.368a1.5 1.5 0 0 1 .303 2.1l-1.684 2.25a1.499 1.499 0 1 1-2.402-1.797l1.684-2.25a1.499 1.499 0 0 1 2.099-.303Zm-19.334.369a1.5 1.5 0 0 0-2.496 1.664l1.5 2.25a1.499 1.499 0 1 0 2.496-1.664l-1.5-2.25Zm-6.339 3.912a1.499 1.499 0 0 1 2.012-.671l1.5.75a1.5 1.5 0 1 1-1.342 2.683l-1.5-.75a1.499 1.499 0 0 1-.67-2.012Zm27.67-.671a1.5 1.5 0 0 1 1.342 2.683l-1.5.75a1.499 1.499 0 1 1-1.342-2.683l1.5-.75Z\"/></g><g clip-path=\"url(#i)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.313 135.188a5.25 5.25 0 1 1 9.946 2.348 7.686 7.686 0 0 1 2.896 4.833l.284 1.705a5.03 5.03 0 0 1-1.943 4.851l-.476.357a1.498 1.498 0 0 0-.542.788l-1.22 4.271-.016.052a1.496 1.496 0 0 1-.794.903l-18.708 8.98a1.478 1.478 0 0 1-.703.162h-1.475a3.422 3.422 0 0 1-3.319-2.592l-1.647-6.59a.641.641 0 0 0-.334-.417 4.709 4.709 0 0 1-2.54-4.986l.248-1.484a7.692 7.692 0 0 1 3.576-5.301 5.25 5.25 0 1 1 8.033 0 7.692 7.692 0 0 1 3.576 5.301l.247 1.484a4.709 4.709 0 0 1-2.539 4.986.641.641 0 0 0-.334.417l-1.073 4.292c1.095-.703 2.14-1.355 3.18-2.003l.008-.005c1.825-1.138 3.628-2.263 5.669-3.645v-3.879c0-.364-.172-.707-.463-.925l-.22-.166a5.03 5.03 0 0 1-1.944-4.851l.284-1.705a7.687 7.687 0 0 1 2.896-4.833 5.224 5.224 0 0 1-.553-2.348Zm-12.75 2.25a2.25 2.25 0 1 0-.001 4.5 2.25 2.25 0 0 0 0-4.5Zm-4.634 11.425a4.697 4.697 0 0 1 9.267 0l.247 1.483a1.71 1.71 0 0 1-.921 1.81 3.64 3.64 0 0 0-1.903 2.372l-1.648 6.59a.422.422 0 0 1-.817 0l-1.648-6.59a3.64 3.64 0 0 0-1.903-2.372 1.71 1.71 0 0 1-.921-1.81l.247-1.483Z\" fill=\"#136338\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M129.063 18.145c.011-1.62.663-2.965 1.767-4.006 1.071-1.009 2.524-1.697 4.132-2.182 1.098-.332 2.325-.585 3.649-.775a19.703 19.703 0 0 1 1.844-4.501c.736-1.294 1.648-2.508 2.718-3.416 1.071-.907 2.389-1.578 3.889-1.578 1.501 0 2.819.671 3.89 1.578 1.07.908 1.982 2.122 2.718 3.416a19.703 19.703 0 0 1 1.844 4.5c1.324.19 2.551.444 3.649.776 1.608.485 3.061 1.173 4.132 2.182 1.114 1.05 1.767 2.41 1.767 4.049 0 8.564-7.679 15-18 15-10.305 0-17.978-6.417-18-14.964l.001-.08Zm14-9.981c-1.256 2.209-2.001 4.88-2.001 6.723 0 1.24.34 2.39.924 3.36a73.56 73.56 0 0 0 7.03-.114c.461-.03.906-.065 1.332-.103.74-.066 1.423-.143 2.035-.227a6.52 6.52 0 0 0 .679-2.916c0-1.843-.744-4.514-2-6.723-.622-1.093-1.326-1.996-2.05-2.61-.723-.613-1.379-.867-1.95-.867-.57 0-1.226.254-1.949.867-.724.614-1.428 1.517-2.05 2.61Zm10.527 12.49c.489-.08.93-.166 1.316-.256a53.706 53.706 0 0 0 1.543-.386 1.5 1.5 0 0 0-.639-2.928 9.637 9.637 0 0 0 .236-2.78c.816.145 1.569.319 2.25.524 1.379.417 2.342.93 2.941 1.494.552.52.822 1.103.825 1.852v.014c0 .184-.179.731-1.281 1.55-1.023.76-2.54 1.52-4.39 2.197-3.694 1.352-8.395 2.253-12.329 2.253a1.5 1.5 0 0 0 0 3c4.317 0 9.366-.974 13.36-2.435a25.95 25.95 0 0 0 3.325-1.466c-2.209 4.017-7.076 6.9-13.685 6.9-8.221 0-13.748-4.463-14.812-10.019 3.561.78 7.718 1.087 11.521 1.113a71.896 71.896 0 0 0 7.634-.34 38.103 38.103 0 0 0 2.185-.286Zm-14.992-2.599a9.565 9.565 0 0 1-.519-3.75c-.816.144-1.569.318-2.25.524-1.379.416-2.342.928-2.941 1.493a2.674 2.674 0 0 0-.59.78c1.903.458 4.066.767 6.3.953Z\" fill=\"#136338\"/><path d=\"M153.062 73.312a1.5 1.5 0 1 0 0-2.999 1.5 1.5 0 0 0 0 3Z\" fill=\"#136338\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M159.06 76.05v-.613l5.436-5.396a1.5 1.5 0 0 0-.875-2.554l-5.463-.665a8.028 8.028 0 0 0-9.537-1.388 8.752 8.752 0 0 0-4.561 7.683v.466a41.64 41.64 0 0 0-5.95 1.8c-1.133.18-2.19.41-3.148.699-1.608.485-3.061 1.173-4.132 2.182-1.114 1.05-1.768 2.41-1.768 4.048h.012a1.58 1.58 0 0 0-.01.208c.126 8.465 7.763 14.792 17.998 14.792 10.236 0 17.873-6.327 17.999-14.792a1.58 1.58 0 0 0-.01-.208h.011c0-1.638-.653-2.998-1.767-4.048-1.071-1.009-2.524-1.697-4.132-2.182l-.103-.031Zm-2.9-6.978a5.027 5.027 0 0 0-6.102-1.005 5.752 5.752 0 0 0-2.998 5.05v1.695a1.5 1.5 0 0 1-1.232 1.476c-5.249.954-9.902 3.188-12.453 4.596-.363.2-.6.58-.624 1.017a29.094 29.094 0 0 0 7.486 3.068c1.945.204 3.98.297 6.046.271a5.982 5.982 0 0 0 2.76-3.727l.26-1.058a1.5 1.5 0 1 1 2.914.715l-.26 1.058a8.997 8.997 0 0 1-1.2 2.772 51.284 51.284 0 0 0 3.321-.425 7.447 7.447 0 0 0 1.982-5.081v-4.682c0-.4.159-.783.443-1.064l3.684-3.657-2.931-.357a1.5 1.5 0 0 1-.921-.472l-.175-.19Zm2.127 14.393a29.92 29.92 0 0 0 3.669-1.911c-.126-.413-.364-.773-.719-1.107-.482-.454-1.198-.874-2.177-1.238v.285c0 1.414-.276 2.753-.773 3.97Zm3.148 2.43a43.554 43.554 0 0 1-3.696 1.02c-5.841 2.142-12.068 2.48-18.031 1.014-2.385-.26-4.649-.681-6.699-1.252 1.999 4.393 7.048 7.635 14.053 7.635 7.415 0 12.639-3.632 14.373-8.418Z\" fill=\"#136338\"/><g clip-path=\"url(#j)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#136338\"><path d=\"M26.793 1.337a1.5 1.5 0 0 1 1.134-.395c4.49.345 8.886 4.59 8.886 9.745 0 2.102-.429 3.586-.817 4.848l-.05.16c-.36 1.171-.633 2.058-.633 3.242 0 1.2.28 1.915.642 2.818l.008.02c.387.967.85 2.123.85 3.913a1.5 1.5 0 0 1-.974 1.405l.534.534a1.5 1.5 0 0 1 .44 1.06v3a1.5 1.5 0 0 1-1.5 1.5h-13.5a1.5 1.5 0 0 1-1.5-1.5v-3c0-.398.158-.78.439-1.06l.534-.534a1.5 1.5 0 0 1-.974-1.405c0-3.537 1.785-6.132 3.33-8.063.197-.247.385-.477.564-.693l-1.224.544a3 3 0 0 1-3.902-1.4l-.46-.919a3 3 0 0 1 .226-3.062l3.13-4.472a9 9 0 0 1 4.337-3.311V2.437a1.5 1.5 0 0 1 .48-1.1Zm6.839 22.85c-.116-.449-.279-.859-.462-1.317l-.008-.02c-.387-.967-.85-2.123-.85-3.913 0-1.649.397-2.927.746-4.056l.001-.002.07-.226c.362-1.176.684-2.317.684-3.966 0-2.887-2.097-5.423-4.5-6.371v2.293l-1.418.354a6 6 0 0 0-3.46 2.38l-3.131 4.473.46.919 5.44-2.418a1.5 1.5 0 0 1 2.108 1.37c0 1.236-.61 2.31-1.212 3.162-.401.57-.92 1.195-1.421 1.802-.24.29-.477.576-.695.849-1.146 1.432-2.144 2.918-2.516 4.688h10.164Zm-8.198 3-2.122 2.122v.878h10.5v-.878l-2.12-2.122h-6.258ZM5.313 4.688a1.5 1.5 0 0 0-3 0v4.5c0 .296.087.585.251.832l2.632 3.947-2.83 11.324c-.035.126-.054.26-.054.396v6a1.5 1.5 0 0 0 1.5 1.5h12a1.5 1.5 0 0 0 1.5-1.5v-6c0-.137-.018-.27-.052-.396l-2.831-11.324 2.632-3.947a1.5 1.5 0 0 0 .252-.832v-4.5a1.5 1.5 0 0 0-3 0v1.5h-3v-1.5a1.5 1.5 0 0 0-3 0v1.5h-3v-1.5Zm.302 4.5h8.395l-2 3H7.615l-2-3Zm8.276 15-2.25-9H7.984l-2.25 9h8.157Zm-8.579 3v3h9v-3h-9Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(193.188 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(193.188 .188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(64.938 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(193.188 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"e\"><path fill=\"#fff\" transform=\"translate(64.938 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"f\"><path fill=\"#fff\" transform=\"translate(64.938 .188)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"g\"><path fill=\"#fff\" transform=\"translate(.813 64.313)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"h\"><path fill=\"#fff\" transform=\"translate(129.062 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"i\"><path fill=\"#fff\" transform=\"translate(.813 128.438)\" d=\"M0 0h36v36H0z\"/></clipPath><clipPath id=\"j\"><path fill=\"#fff\" transform=\"translate(.813 .188)\" d=\"M0 0h36v36H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wdz2xj\",\"data-framer-name\":\"Lingraphica\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sg7997\",\"data-framer-name\":\"lingraphica\",fill:\"black\",intrinsicHeight:159,intrinsicWidth:253,svg:'<svg width=\"253\" height=\"159\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m225.665 122.312 9.306-12.042a2.662 2.662 0 0 1 4.151-.077c.724.87.823 2.099.25 3.075-2.225 3.796-7.747 13.408-10.373 19.711l4-3.333 3.676 5.777a2.668 2.668 0 0 1-.116 3.032l-6.894 9.191-9.314 3.493a6.668 6.668 0 0 0-2.374 1.528l-4.312 4.312-.666.667-16-8 .666-.667 4.923-6.153c.272-.34.486-.723.635-1.132l3.832-10.538a5.335 5.335 0 0 1 5.012-3.51h.265l1.104-1.105a5.336 5.336 0 0 1 3.772-1.562h1.791l1.104-1.105c1-1 2.357-1.562 3.771-1.562h1.791Z\" fill=\"#B6865C\"/><path d=\"m213.667 156.979 4.312-4.312a6.664 6.664 0 0 1 2.373-1.528l9.315-3.493 6.893-9.191a2.667 2.667 0 0 0 .116-3.032L233 129.646l-4 3.333c2.626-6.303 8.148-15.915 10.374-19.711a2.682 2.682 0 0 0-.251-3.075 2.662 2.662 0 0 0-4.151.077l-9.305 12.042h-1.791a5.336 5.336 0 0 0-3.772 1.562L219 124.979h-1.791a5.332 5.332 0 0 0-3.771 1.562l-1.105 1.105h-.264a5.333 5.333 0 0 0-5.012 3.51l-3.832 10.538a4.011 4.011 0 0 1-.636 1.132l-4.922 6.153m30.666-13.333 2.667 1.333m-2-4-.667 2.667\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M224.334 110.312a2.667 2.667 0 0 1-2.666 2.667h-8a2.667 2.667 0 0 1-1.886-4.552l2.114-2.115-4.781-4.781a2.667 2.667 0 0 1 3.771-3.77l4.782 4.78 2.114-2.114a2.667 2.667 0 0 1 4.552 1.885v8Z\" fill=\"#ACCF65\"/><path d=\"M221.668 112.979v-1.333 1.333Zm2.666-2.667h-1.333 1.333Zm-10.666 2.667v-1.333 1.333Zm-2.464-1.646-1.232.51 1.232-.51Zm.578-2.906.943.943-.943-.943Zm2.114-2.115.943-.942.943.942-.943.943-.943-.943Zm-4.781-4.781.943-.942-.943.942Zm3.771-3.77-.942.942.942-.943Zm4.782 4.78.942.943-.942.943-.943-.943.943-.943Zm2.114-2.114.943.943-.943-.943Zm2.906-.578-.51 1.232.51-1.232Zm1.646 2.463h1.334-1.334Zm-2.666 9.334c.736 0 1.333-.597 1.333-1.334h2.667a4 4 0 0 1-4 4v-2.666Zm-8 0h8v2.666l-8 .001v-2.667Zm-1.232-.823c.206.498.692.823 1.232.823v2.667a4 4 0 0 1-3.696-2.47l2.464-1.02Zm.289-1.453a1.33 1.33 0 0 0-.289 1.453l-2.464 1.02a4 4 0 0 1 .867-4.359l1.886 1.886Zm2.114-2.115-2.114 2.115-1.886-1.886 2.115-2.114 1.885 1.885Zm-4.781-6.666 4.781 4.781-1.885 1.885-4.782-4.781 1.886-1.885Zm0-1.886a1.333 1.333 0 0 0 0 1.886l-1.886 1.885a4 4 0 0 1 0-5.657l1.886 1.886Zm1.886 0a1.334 1.334 0 0 0-1.886 0l-1.886-1.886a4 4 0 0 1 5.657 0l-1.885 1.886Zm4.781 4.781-4.781-4.781 1.885-1.886 4.781 4.781-1.885 1.886Zm4-2.114-2.115 2.114-1.885-1.886 2.114-2.114 1.886 1.886Zm1.453-.289a1.33 1.33 0 0 0-1.453.289l-1.886-1.886a4 4 0 0 1 4.359-.867l-1.02 2.464Zm.823 1.231c0-.539-.325-1.025-.823-1.231l1.02-2.464a4 4 0 0 1 2.47 3.695h-2.667Zm0 8v-8h2.667v8h-2.667Z\" fill=\"#303030\"/></g><g clip-path=\"url(#b)\"><path d=\"M95.669 146.313h40c-3.781-7.373-11.738-12-20-12s-16.22 4.627-20 12Z\" fill=\"#6BB6E1\"/><path d=\"M135.669 146.313v1.333a1.335 1.335 0 0 0 1.186-1.942l-1.186.609Zm-40 0-1.186-.609a1.334 1.334 0 0 0 1.186 1.942v-1.333Zm40-1.334h-40v2.667h40v-2.667Zm-20-9.333c7.787 0 15.272 4.37 18.814 11.275l2.372-1.217c-4.02-7.839-12.449-12.725-21.186-12.725v2.667Zm-18.814 11.275c3.542-6.905 11.027-11.275 18.814-11.275v-2.667c-8.737 0-17.166 4.886-21.186 12.725l2.372 1.217Z\" fill=\"#303030\"/><path d=\"M122.334 134.313h-13.333l-4 2.666 6.667 5.334 4-2.667 4 2.667 6.666-5.334-4-2.666Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M109.001 128.979h13.333v5.334l-6.666 4-6.667-4v-5.334Z\" fill=\"#F6E0C5\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m99.334 116.894-1.026 5.878c-7.345 9.563 1.335 15.54 17.359 15.54 16.025 0 24.705-5.977 17.36-15.54l-1.026-5.878a15.999 15.999 0 0 0-15.761-13.248h-1.145a16 16 0 0 0-15.761 13.248Z\" fill=\"#C1E2F5\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"12\" cy=\"12\" r=\"12\" transform=\"matrix(-1 0 0 1 127.667 107.646)\" fill=\"#F4CEAB\" stroke=\"#303030\" stroke-width=\"2.667\"/><path d=\"M127.676 113.307c-1.547.713-5.762 2.339-12.009 2.339-6.247 0-10.461-1.626-12.008-2.339a.601.601 0 0 1-.217-.917 5.195 5.195 0 0 1 4.156-2.078h16.138c1.636 0 3.175.77 4.157 2.078a.601.601 0 0 1-.217.917Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\"/><path d=\"M104.853 110.264c-3.797-1.266-5.032-5.866-1.841-8.281 3.373-2.553 7.86-5.004 12.654-5.004s9.281 2.451 12.654 5.004c3.192 2.415 1.956 7.015-1.84 8.281a.97.97 0 0 1-.302.049h-21.024a.963.963 0 0 1-.301-.049Z\" fill=\"#6BB6E1\" stroke=\"#303030\" stroke-width=\"2.667\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M101.262 106.312c.312 1.704 1.599 3.287 3.592 3.952a.964.964 0 0 0 .302.048h21.023a.964.964 0 0 0 .302-.048c1.993-.665 3.28-2.248 3.592-3.952h-28.811Z\" fill=\"#148ACC\"/><path d=\"m104.854 110.264.422-1.265-.422 1.265Zm-3.592-3.952v-1.333a1.334 1.334 0 0 0-1.311 1.573l1.311-.24Zm25.219 3.952-.422-1.265.422 1.265Zm3.592-3.952 1.311.24a1.33 1.33 0 0 0-1.311-1.573v1.333Zm-24.797 2.687c-1.547-.516-2.481-1.716-2.702-2.926l-2.623.479c.402 2.198 2.042 4.163 4.481 4.976l.844-2.529Zm-.12-.02c.04 0 .081.007.12.02l-.844 2.529c.234.078.478.118.724.118v-2.667Zm10.512 0h-10.512v2.667h10.512v-2.667Zm10.511 0h-10.511v2.667h10.511v-2.667Zm-.12.02a.382.382 0 0 1 .12-.02v2.667c.246 0 .49-.04.724-.118l-.844-2.529Zm2.702-2.926c-.221 1.21-1.155 2.41-2.702 2.926l.844 2.529c2.439-.813 4.079-2.778 4.481-4.976l-2.623-.479Zm-27.499 1.573h28.811v-2.667h-28.811v2.667Z\" fill=\"#303030\"/><path d=\"M130.333 136.979H157v17.334a2.667 2.667 0 0 1-2.667 2.666H133a2.667 2.667 0 0 1-2.667-2.666v-17.334Zm0 0H157l-4.533-5.666a2.667 2.667 0 0 0-2.082-1h-13.437c-.81 0-1.576.368-2.082 1l-4.533 5.666Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m139.667 136.979 1.333-6.667h5.333l1.334 6.667v8L145 143.646l-5.333 1.333v-8Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M139.667 136.979h8m5.333 12h-5.333m5.333 4h-2.667\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><g clip-path=\"url(#c)\"><path d=\"M60.469 125.502a6.194 6.194 0 0 0-3.664-11.19H55a8.002 8.002 0 0 0-7.913 6.813l-.087-.146c-6.825 2.528-36 14.667-36 14.667H1.666c.143 1.891 2.51 5.834 9.334 6.666v2.667a2.667 2.667 0 0 0 2.667 2.667h4a2.667 2.667 0 0 0 2.666-2.667v-2.667c5.449 0 10.79-.58 16-2.265v4.932A2.667 2.667 0 0 0 39 147.646h4a2.667 2.667 0 0 0 2.666-2.667v-1.513c0-4.72 2.52-9.06 6.376-11.783 2.848-2.011 5.627-4.128 8.427-6.181Z\" fill=\"#ACCF65\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"54.333\" cy=\"120.312\" r=\"2\" fill=\"#303030\"/><path d=\"M27.688 110.312c-11.426 0-20.69 9.04-20.69 20v1.807c0 2.754 2.096 5.032 4.85 5.004 8.671-.087 26.714-1.907 35.15-14.811 0-4.666-7.883-12-19.31-12Z\" fill=\"#259353\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m44.332 116.979-4 4-6.667-4L27 119.645l-6.667-2.666-6.667 4-3.333-1.334m23.332-3.999v-4m-13.333 5.333v-5.333m7.245 8.889v6.815m-15.245 1.629 1.333-8m26.667 8v-8M6.999 132.312l5.333-3.333 6.666 4 8-5.333 8 4.666m-16 .667v2.666\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M209.667 17.646c0-5.89 4.776-10.667 10.667-10.667s10.667 4.776 10.667 10.667c0 2.252-1.786 4.242-4.521 5.45l.522 5.217h-13.333l.521-5.216c-2.736-1.207-4.523-3.199-4.523-5.45Z\" fill=\"#F6E8D0\"/><path d=\"m226.48 23.096-.538-1.22a1.332 1.332 0 0 0-.788 1.352l1.326-.133Zm.522 5.217v1.333a1.334 1.334 0 0 0 1.327-1.466l-1.327.133Zm-13.333 0-1.327-.133a1.334 1.334 0 0 0 1.327 1.466v-1.333Zm.521-5.216 1.327.132a1.334 1.334 0 0 0-.789-1.352l-.538 1.22Zm6.144-17.45c-6.627 0-12 5.372-12 12h2.667a9.333 9.333 0 0 1 9.333-9.334V5.646Zm12 12c0-6.628-5.372-12-12-12v2.666a9.333 9.333 0 0 1 9.333 9.333h2.667Zm-5.315 6.668c2.951-1.302 5.315-3.65 5.315-6.669h-2.667c0 1.483-1.207 3.118-3.725 4.23l1.077 2.44Zm-1.865-1.087.521 5.217 2.654-.265-.522-5.217-2.653.265Zm1.848 3.751h-13.333v2.667h13.333v-2.667Zm-12.007 1.466.522-5.216-2.653-.265-.522 5.216 2.653.265Zm-6.661-10.799c0 3.02 2.366 5.368 5.318 6.67l1.076-2.44c-2.519-1.11-3.727-2.746-3.727-4.23h-2.667Z\" fill=\"#303030\"/><ellipse cx=\"216.333\" cy=\"16.979\" rx=\"2.667\" ry=\"3.333\" fill=\"#303030\"/><ellipse cx=\"224.333\" cy=\"16.979\" rx=\"2.667\" ry=\"3.333\" fill=\"#303030\"/><path d=\"m218.357 21.943 1.421-2.132a.667.667 0 0 1 1.11 0l1.421 2.132a.667.667 0 0 1-.555 1.036h-2.842a.667.667 0 0 1-.555-1.036Z\" fill=\"#303030\"/><path d=\"m217.667 28.312.333-2.666m5 2.666-.334-2.666\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M211 38.313c0-6 9.333-6 9.333-6s9.333 0 9.333 6c0 2.323-.4 3.946-.89 5.064-.732 1.67-2.723 1.7-4.287.762l-4.156-2.493-4.156 2.493c-1.564.939-3.555.908-4.288-.762-.49-1.118-.889-2.741-.889-5.065Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M220.333 49.646V36.312\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m214.421 48.464 5.128 1.025a3.994 3.994 0 0 0 1.568 0l5.128-1.025a1.777 1.777 0 0 1 1.605 2.998l-2.934 2.934a1.334 1.334 0 0 1-1.365.323l-3.218-1.073-3.218 1.073a1.334 1.334 0 0 1-1.365-.322l-2.934-2.935a1.777 1.777 0 0 1 1.605-2.998Z\" fill=\"#F6E8D0\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M215 33.646s2 2.666 5.333 2.666 5.333-2.666 5.333-2.666m-14.666 4s3.5 2.666 9.333 2.666 9.333-2.666 9.333-2.666m2.667-5.333 5.333 5.333M239 40.313c0 1.333.533 4.533 2.666 6.666 0-1.333-.533-4.533-2.666-6.666Zm-30.667-8L203 37.645m-1.333 2.668c0 1.333-.534 4.533-2.667 6.666 0-1.333.533-4.533 2.667-6.666Zm38.666 12L243 50.979l1.41.94c.387.258.699.612.906 1.027l1.017 2.033M243 50.98v5.333m-42.667-4-2.667-1.334-1.41.94a2.655 2.655 0 0 0-.906 1.027l-1.017 2.033m3.334-3.999v5.333\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g clip-path=\"url(#d)\"><path d=\"m103.187 57.692 9.814-50.713 9.814 50.713m7.039-.001 9.814-50.712 9.814 50.712\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M112.999 6.98h26.666l7.484 38.666h-26.667L112.999 6.98Z\" fill=\"#945D35\"/><path d=\"m139.665 6.98 1.309-.254a1.333 1.333 0 0 0-1.309-1.08V6.98Zm-26.666 0V5.645a1.334 1.334 0 0 0-1.31 1.587l1.31-.254Zm34.15 38.666v1.334a1.335 1.335 0 0 0 1.309-1.587l-1.309.253Zm-26.667 0-1.309.254c.122.627.671 1.08 1.309 1.08v-1.334Zm19.183-40h-26.666v2.667h26.666V5.646Zm8.793 39.747-7.484-38.667-2.618.507L145.84 45.9l2.618-.507Zm-27.976 1.587h26.667v-2.667h-26.667v2.666Zm-8.793-39.747 7.484 38.667 2.618-.507-7.483-38.667-2.619.507Z\" fill=\"#303030\"/><path d=\"M113 6.98h26.666l-8 41.333H105l8-41.334Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linejoin=\"round\"/><path d=\"m144.711 10.816 2.451-2.866m2.49 8.357 3.109-2.134m.239 8.715 3.556-1.257m-48.609-10.815-2.451-2.866m-2.484 8.357-3.11-2.134m-.238 8.715-3.556-1.257m19.559-7.066c2.666-2.627 5.333-3.152 6.666-.525.889-.876 2.934-2.207 4-.526 1.334 2.102 4.667 2.102 8-1.05m-24 30.516h17.333\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><path d=\"M7.075 44.05c-.708-2.549 1.209-5.07 3.854-5.07h42.808c2.646 0 4.562 2.521 3.854 5.07l-.323 1.165a13.333 13.333 0 0 1-12.847 9.764H20.245A13.333 13.333 0 0 1 7.4 45.215l-.324-1.165Z\" fill=\"#E1AB55\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.666 49.646 11 38.979H8.333A1.333 1.333 0 0 1 7 37.646v-1.333c0-.737.596-1.334 1.333-1.334h46.666c.737 0 1.334.597 1.334 1.334v1.333c0 .736-.597 1.333-1.334 1.333H32.414L21.666 49.646Z\" fill=\"#E3AA00\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect x=\"7\" y=\"29.646\" width=\"49.333\" height=\"5.333\" rx=\"2.667\" fill=\"#D64853\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M51.513 29.646h-38.36c-2.07-9.897 3.053-19.284 13.149-19.84 1.834-.102 3.841-.16 6.031-.16 2.19 0 4.197.058 6.032.16 10.095.556 15.218 9.943 13.148 19.84Z\" fill=\"#F8F8F8\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M36.593 18.698 35 14.979l-2.302 3.07a4 4 0 0 0-.128 4.618l.425.638a4 4 0 0 1 .672 2.219v4.122a2.667 2.667 0 1 0 0 5.333h4v8a2.667 2.667 0 1 0 5.334 0v-8h1.333a2.667 2.667 0 1 0 0-5.333H43v-3.377a4 4 0 0 0-1.544-3.157l-3.641-2.833a4 4 0 0 1-1.22-1.581Z\" fill=\"#EDCB4E\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M31 29.646h16\" stroke=\"#303030\" stroke-width=\"2.667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle cx=\"27.666\" cy=\"14.313\" r=\"1\" fill=\"#303030\"/><circle cx=\"25\" cy=\"18.313\" r=\"1\" fill=\"#303030\"/><circle cx=\"22.333\" cy=\"15.646\" r=\"1\" fill=\"#303030\"/><circle cx=\"42.333\" cy=\"16.979\" r=\"1\" fill=\"#303030\"/><circle cx=\"39.666\" cy=\"14.313\" r=\"1\" fill=\"#303030\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(188.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(94.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(.333 94.313)\" d=\"M0 0h64v64H0z\"/></clipPath><clipPath id=\"d\"><path fill=\"#fff\" transform=\"translate(94.333 .313)\" d=\"M0 0h64v64H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lexo8o\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-82293e77-a432-4ea0-80d7-705770fb4252, rgb(200, 226, 187))\"},children:\"Collaborated with\u2026\"})})},Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-82293e77-a432-4ea0-80d7-705770fb4252, rgb(200, 226, 187))\"},children:\"Collaborated with\u2026\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-82293e77-a432-4ea0-80d7-705770fb4252, rgb(200, 226, 187))\"},children:\"Collaborated with\u2026\"})}),className:\"framer-3a75w0\",\"data-framer-name\":\"Testimonials\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5m62xk hidden-10xzzdy\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"144px\",src:\"https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png\",srcSet:\"https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png?scale-down-to=512 512w,https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png 1200w\"},className:\"framer-h9yoqp\",\"data-framer-name\":\"Twitter_white\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{background:{alt:\"\",fit:\"fill\",sizes:\"216px\",src:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png\",srcSet:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png?scale-down-to=512 512w,https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png 864w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"227px\",src:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png\",srcSet:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png?scale-down-to=512 512w,https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png 864w\"},className:\"framer-zundac\",\"data-framer-name\":\"Netflix_white\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:504,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"265px\",src:\"https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png\",srcSet:\"https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png 2000w\"},className:\"framer-1iuf6t4\",\"data-framer-name\":\"Spring-Health_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:241,intrinsicWidth:1e3,pixelHeight:241,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png\",srcSet:\"https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png 1000w\"},className:\"framer-1fw7h3l\",\"data-framer-name\":\"Esri_white\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{background:{alt:\"\",fit:\"fit\",pixelHeight:144,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:\"215px\",src:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png\",srcSet:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png 584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:144,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:\"236px\",src:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png\",srcSet:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png 584w\"},className:\"framer-ph3xdc\",\"data-framer-name\":\"Spring-Health_white\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{background:{alt:\"\",fit:\"fit\",pixelHeight:127,pixelWidth:602,positionX:\"center\",positionY:\"center\",sizes:\"228px\",src:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png\",srcSet:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png 602w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:127,pixelWidth:602,positionX:\"center\",positionY:\"center\",sizes:\"239px\",src:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png\",srcSet:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png 602w\"},className:\"framer-1c5jr8q\",\"data-framer-name\":\"Spring-Health_white\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png\",srcSet:\"https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png 864w\"},className:\"framer-1q4wdrd\",\"data-framer-name\":\"Esri_white\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t5mhxk hidden-72rtr7 hidden-1bvv02q\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"90px\",src:\"https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png\",srcSet:\"https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png?scale-down-to=512 512w,https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CK4bl0nG7YSCBP35XuxWRTw6aA.png 1200w\"},className:\"framer-2ahu3t\",\"data-framer-name\":\"Twitter_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"138px\",src:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png\",srcSet:\"https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png?scale-down-to=512 512w,https://framerusercontent.com/images/OTYfoD7jTK09e95FzdtUZ5jE360.png 864w\"},className:\"framer-88fzwj\",\"data-framer-name\":\"Netflix_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:504,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"159px\",src:\"https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png\",srcSet:\"https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png?scale-down-to=512 512w,https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tHBGgmVSV1UegJHy6G01tScMNjE.png 2000w\"},className:\"framer-c80gil\",\"data-framer-name\":\"Spring-Health_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:241,intrinsicWidth:1e3,pixelHeight:241,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png\",srcSet:\"https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png?scale-down-to=512 512w,https://framerusercontent.com/images/ezBz70baZVB875Iqnepb3j910.png 1000w\"},className:\"framer-6ss7y8\",\"data-framer-name\":\"Esri_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:144,pixelWidth:584,positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png\",srcSet:\"https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3cxrZkP4OeLHrwiKwC2nKnHKrI.png 584w\"},className:\"framer-kopf92\",\"data-framer-name\":\"Spring-Health_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:127,pixelWidth:602,positionX:\"center\",positionY:\"center\",sizes:\"138px\",src:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png\",srcSet:\"https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Zqf6uopqxQRZdk7kDHkwFzcXcpI.png 602w\"},className:\"framer-wn7b7a\",\"data-framer-name\":\"Spring-Health_white\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"136px\",src:\"https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png\",srcSet:\"https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/QmpmtEIWDPzgBElI5cqvYfut6Y.png 864w\"},className:\"framer-h8tk98\",\"data-framer-name\":\"Esri_white\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfvhhx\",\"data-framer-name\":\"Testimonials\",id:elementId1,ref:ref2,children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4bh3e hidden-10xzzdy\",\"data-framer-name\":\"Testimonials Desktop\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cijvvt\",\"data-styles-preset\":\"TIbPxse0J\",children:\"Testimonials\"})}),className:\"framer-15end8e\",\"data-framer-name\":\"Testimonials\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cvd2rs\",\"data-framer-name\":\"Ashley Group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck6bge\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-viamjl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11g9ox5\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Anton Schulz\"})}),className:\"framer-1u9j8x0\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Global Creative Lead at Strava\"})}),className:\"framer-8ggdfr\",\"data-framer-name\":\"Design Operations Lead - Sonos\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-1g2vl6j\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/XEyLg5FNY8Rnh2wwMe1P8UcWoI.png\"},className:\"framer-5bx8y6\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100},className:\"framer-a8k24u\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:[\"Griff is a rockstar iconographer! We brought him onto Strava and tasked him with redesigning our icon system; comprising over 300 existing and new icons, plus building out a comprehensive style guide to support our team in future designs. Griff's approach and process were truly exceptional, from initial ideation through concept development to final delivery. He demonstrated a deep understanding of our design principles and translated complex and unique ideas into intuitive and visually appealing icons. Furthermore, at each milestone and presentation, he made it easy for our team and stakeholders to follow along, engage in dialogues, and give feedback.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Griff\u2019s expertise, adaptability, and commitment to quality were apparent throughout the workstream. Midway through the project, we had to make a major pivot in the design approach. We needed to make sure the entire new icon set would also work in dark mode\u2014a project that kicked off after we had briefed Griff\u2014which added a new set of challenges. Griff handled this transition with remarkable agility and professionalism, delivering results that exceeded our expectations, all within the required timeline.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"The project outcome has modernized both our brand and product experiences and infused our entire design expression with iconography that is both bold and approachable, while unique to Strava. A great success in every way!\"]})}),className:\"framer-19t3u2j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x1ixje\",\"data-framer-name\":\"Testimonial Card Groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6x6r2s\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9cq64\",\"data-framer-name\":\"BK Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wmxqjk\",\"data-framer-name\":\"Frame 158\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13uf4l7\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqmqbr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bq53ko\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Bonnie Kate Wolf\"})}),className:\"framer-1meqt8p\",\"data-framer-name\":\"Bonnie Kate Wolf\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\"},children:\"Icon Designer, Illustrator, and Art Director\"})}),className:\"framer-eqkf8v\",\"data-framer-name\":\"Freelance Icon Designer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-2hik9p\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg\",srcSet:\"https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg 800w\"},className:\"framer-13sihac\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-17v0oxc\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is an exceptional icon designer. His strong conceptual thinking skills and positive attitude make him a great collaborator. He is thoughtful and proactive. His understanding of iconography is well-articulated and thorough. Griff is a pleasure to work with, both as a talented designer and a wonderful human being.\"})}),className:\"framer-165wb6m\",\"data-framer-name\":\"Griff is an exceptional icon designer. His strong conceptual thinking skills and positive attitude make him a great collaborator. He is thoughtful and proactive. His understanding of iconography is well-articulated and thorough. Griff is a pleasure to work with, both as a talented designer and a wonderful human being.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xztzkd\",\"data-framer-name\":\"Mags Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-vrhtim\",\"data-framer-name\":\"Frame 161\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ahh4e2\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yczo2l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v0fkky\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Magdalena Long\"})}),className:\"framer-n2teb7\",\"data-framer-name\":\"Magdalena Long\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Twitter - Marketing Team\"})}),className:\"framer-1ozq688\",\"data-framer-name\":\"Twitter - Marketing Team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-1fel8t6\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg\",srcSet:\"https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg 800w\"},className:\"framer-1xx102i\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1cdnrm0\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff brings a depth of knowledge and talent to his projects. Always professional, he comes to the table with insights, enthusiasm and creative feedback that is proactive and helpful. Building an icon set with him was truly a collaborative effort, one that resulted in a unique style that we're all very happy with!\"})}),className:\"framer-1httfu3\",\"data-framer-name\":\"Griff brings a depth of knowledge and talent to his projects. Always professional, he comes to the table with insights, enthusiasm and creative feedback that is proactive and helpful. Building and icon set with him was truly a collaborative effort, one that resulted in a unique style that we're all very happy with!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ru7l4r\",\"data-framer-name\":\"Keith Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcyy9l\",\"data-framer-name\":\"Frame 162\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-socy4p\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fqvmtz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djxz\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Keith Miller\"})}),className:\"framer-1v4pmcq\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Twitter - Design Systems Lead\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\"},children:\"Twitter - Design Systems Lead\"})}),className:\"framer-kvdk7j\",\"data-framer-name\":\"Twitter - Design Systems Lead\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg\",srcSet:\"https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg 600w\"},className:\"framer-1jbofse\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1dzudnt\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-1trxc43\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\"})]}),className:\"framer-1oo2b8s\",\"data-framer-name\":\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests. Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful. Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks. It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vx8ehr\",\"data-framer-name\":\"Ashley Group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cyou6y\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnukjr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4kf6b9\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Ashley Conway\"})}),className:\"framer-1ax7feg\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Sonos - Design Operations Lead UX,UR\"})}),className:\"framer-n3abfb\",\"data-framer-name\":\"Design Operations Lead - Sonos\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-94iee9\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/L6hE2zlDUxFbedBP3UGaO12wLI.jpeg\"},className:\"framer-vb79ot\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100},className:\"framer-ppowqn\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is fantastic to work with and is so immensely talented. He has such a positive energy and worked so well with our team. He taught us a lot and is definitely a season expert in iconography! Hopefully we will get to work together again soon.\"})}),className:\"framer-q2lpy0\",\"data-framer-name\":\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests. Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful. Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks. It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oqcuqz hidden-72rtr7 hidden-1bvv02q\",\"data-framer-name\":\"Testimonials Mobile\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cijvvt\",\"data-styles-preset\":\"TIbPxse0J\",children:\"Testimonials\"})}),className:\"framer-z8l05v\",\"data-framer-name\":\"Testimonials\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ya87k\",\"data-framer-name\":\"Testimonial Card Groups\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sq67po\",\"data-framer-name\":\"Left Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g33gji\",\"data-framer-name\":\"BK Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fl9mnl\",\"data-framer-name\":\"Frame 158\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efyzn0\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82ihhj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nmp65g\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Bonnie Kate Wolf\"})}),className:\"framer-1mw38ko\",\"data-framer-name\":\"Bonnie Kate Wolf\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Icon Designer, Illustrator, and Art Director\"})}),className:\"framer-1iuaqa2\",\"data-framer-name\":\"Freelance Icon Designer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-bdxbqa\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg\",srcSet:\"https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KC3phQXWcspN9Iu2vUo1VSg2K7M.jpg 800w\"},className:\"framer-16t0t1q\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1rrgmnk\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17k5dq1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is an exceptional icon designer. His strong conceptual thinking skills and positive attitude make him a great collaborator. He is thoughtful and proactive. His understanding of iconography is well-articulated and thorough. Griff is a pleasure to work with, both as a talented designer and a wonderful human being.\"})}),className:\"framer-aabd5w\",\"data-framer-name\":\"Griff is an exceptional icon designer. His strong conceptual thinking skills and positive attitude make him a great collaborator. He is thoughtful and proactive. His understanding of iconography is well-articulated and thorough. Griff is a pleasure to work with, both as a talented designer and a wonderful human being.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmb17f\",\"data-framer-name\":\"Mags Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v5bv3d\",\"data-framer-name\":\"Frame 161\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9e01e\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq1rpi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155utbe\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Magdalena Long\"})}),className:\"framer-1w8rmtz\",\"data-framer-name\":\"Magdalena Long\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Twitter - Marketing Team\"})}),className:\"framer-1x16sax\",\"data-framer-name\":\"Twitter - Marketing Team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-1wvo4bp\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg\",srcSet:\"https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/McK0NCC6YG3rW6ntZTrO40Nsz1g.jpg 800w\"},className:\"framer-1rwflwh\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1mk6skn\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6lj6op\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff brings a depth of knowledge and talent to his projects. Always professional, he comes to the table with insights, enthusiasm and creative feedback that is proactive and helpful. Building an icon set with him was truly a collaborative effort, one that resulted in a unique style that we're all very happy with!\"})}),className:\"framer-xrvim3\",\"data-framer-name\":\"Griff brings a depth of knowledge and talent to his projects. Always professional, he comes to the table with insights, enthusiasm and creative feedback that is proactive and helpful. Building and icon set with him was truly a collaborative effort, one that resulted in a unique style that we're all very happy with!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7rs3z\",\"data-framer-name\":\"Keith Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydmkcu\",\"data-framer-name\":\"Frame 162\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-71wp0q\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynvwox\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ki1ixv\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Keith Miller\"})}),className:\"framer-ppuw18\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Twitter - Design Systems Lead\"})}),className:\"framer-1g12j5m\",\"data-framer-name\":\"Twitter - Design Systems Lead\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-h0caqs\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100px\",src:\"https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg\",srcSet:\"https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EEPrXN61VWptNNRbcvEzbf0MPU.jpg 600w\"},className:\"framer-1gzqebz\",\"data-framer-name\":\"Ellipse 712\"}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-umyuz9\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10wf3f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\"})]}),className:\"framer-x2236u\",\"data-framer-name\":\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests. Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful. Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks. It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vgpkqb\",\"data-framer-name\":\"Ashley Group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-q215or\",\"data-framer-name\":\"Frame 162\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197bab1\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-29tjc4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p0pwk1\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Ashley Conway\"})}),className:\"framer-16prl2p\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Sonos - Design Operations Lead UX,UR\"})}),className:\"framer-94y6sz\",\"data-framer-name\":\"Twitter - Design Systems Lead\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-xu6h1r\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/L6hE2zlDUxFbedBP3UGaO12wLI.jpeg\"},className:\"framer-1c7ycoj\",\"data-framer-name\":\"Ellipse 712\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-o34gjz\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9exfui\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is fantastic to work with and is so immensely talented. He has such a positive energy and worked so well with our team. He taught us a lot and is definitely a season expert in iconography! Hopefully we will get to work together again soon.\"})}),className:\"framer-1ivtiau\",\"data-framer-name\":\"Griff joined the Twitter Design Systems team to help drive our iconography design processes and implementation. His attention to detail and experience with iconography enabled the team to support a high volume of requests. Griff stands out because of his ability to assess the style needed for the various projects he was supporting and produce these different styles for various applications. He was simultaneously delivering marketing icons in one style and a redesigned core utility icon set in another. His versatility was very helpful. Griff is also an excellent collaborator. He would meet with XFN teams and autonomously drive projects to completion as a representative of our team. He is a great communicator and over performed in his tasks. It is a shame we could not continue our engagement due to reasons outside of Griff's control and I will be the first to reach out and acquire his services again in the future.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9egsns\",\"data-framer-name\":\"Anton Group\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19cvqh3\",\"data-framer-name\":\"Frame 162\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15v0g98\",\"data-framer-name\":\"Frame 34588\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5u6af\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1exxm\",\"data-framer-name\":\"Frame 34587\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\"},children:\"Anton Schulz\"})}),className:\"framer-c7jw8q\",\"data-framer-name\":\"Keith Miller\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:\"Global Creative Lead at Strava\"})}),className:\"framer-cvde53\",\"data-framer-name\":\"Twitter - Design Systems Lead\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"\u201C\"})}),className:\"framer-p2m8ei\",\"data-framer-name\":\"\u201C\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/XEyLg5FNY8Rnh2wwMe1P8UcWoI.png\"},className:\"framer-q3390g\",\"data-framer-name\":\"Ellipse 712\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-lw6j7b\",\"data-border\":true,\"data-framer-name\":\"Ellipse 712\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6v82p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"30px\"},children:\"Griff is a rockstar iconographer! We brought him onto Strava and tasked him with redesigning our icon system; comprising over 300 existing and new icons, plus building out a comprehensive style guide to support our team in future designs. \"})}),className:\"framer-d7g5tx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) * 0.8507, (${componentViewport?.width||\"100vw\"} - 60px) * 0.85)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlz8fj-container\",nodeId:\"NWSwIOkTs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ShowMoreButton,{aZMDCkPrM:\"The project outcome has modernized both our brand and product experiences and infused our entire design expression with iconography that is both bold and approachable, while unique to Strava. A great success in every way!\",height:\"100%\",id:\"NWSwIOkTs\",layoutId:\"NWSwIOkTs\",style:{width:\"100%\"},variant:\"SH2rDT8Lf\",vVy_fh2o5:\"Griff's approach and process were truly exceptional, from initial ideation through concept development to final delivery. He demonstrated a deep understanding of our design principles and translated complex and unique ideas into intuitive and visually appealing icons. Furthermore, at each milestone and presentation, he made it easy for our team and stakeholders to follow along, engage in dialogues, and give feedback.\",width:\"100%\",wMSrLh_7k:\"Griff\u2019s expertise, adaptability, and commitment to quality were apparent throughout the workstream. Midway through the project, we had to make a major pivot in the design approach. We needed to make sure the entire new icon set would also work in dark mode\u2014a project that kicked off after we had briefed Griff\u2014which added a new set of challenges. Griff handled this transition with remarkable agility and professionalism, delivering results that exceeded our expectations, all within the required timeline.\"})})})})]})]})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uchapo\",\"data-framer-name\":\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cijvvt\",\"data-styles-preset\":\"TIbPxse0J\",children:\"Experience\"})}),className:\"framer-1kzdlb5\",\"data-framer-name\":\"Experience\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13n0jev\",\"data-framer-name\":\"Table\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yowg4\",\"data-framer-name\":\"Freelance\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Freelance\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Freelance\"})}),className:\"framer-1tstasj\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2022 - Present\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2022 - Present\"})}),className:\"framer-ewszgb\",\"data-framer-name\":\"2022- 2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"> 4000 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"> 4000 icons\"})}),className:\"framer-1x702uw\",\"data-framer-name\":\"600 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmuaaa\",\"data-framer-name\":\"Freelance\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"LinkedIn\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"LinkedIn\"})}),className:\"framer-1upwd5u\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024 - 2025\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024 - 2025\"})}),className:\"framer-1yc0gp5\",\"data-framer-name\":\"2022- 2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1800 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1800 icons\"})}),className:\"framer-15tuhoh\",\"data-framer-name\":\"600 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgt5qp\",\"data-framer-name\":\"Freelance\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Peerspace\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Peerspace\"})}),className:\"framer-19b63kl\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024\"})}),className:\"framer-vq8qde\",\"data-framer-name\":\"2022- 2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1000 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1000 icons\"})}),className:\"framer-1v8wpsx\",\"data-framer-name\":\"600 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rbspkt\",\"data-framer-name\":\"Freelance\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Strava\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Strava\"})}),className:\"framer-1tyhioj\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2024\"})}),className:\"framer-82dqqq\",\"data-framer-name\":\"2022- 2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1450 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1450 icons\"})}),className:\"framer-hoxgwf\",\"data-framer-name\":\"600 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4k75b\",\"data-framer-name\":\"Freelance\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Sonos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Sonos\"})}),className:\"framer-mur3lm\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023\"})}),className:\"framer-w99lbg\",\"data-framer-name\":\"2022- 2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"270 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"270 icons\"})}),className:\"framer-7xmpwr\",\"data-framer-name\":\"600 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3ro5e\",\"data-framer-name\":\"Lingraphica\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Lingraphica\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Lingraphica\"})}),className:\"framer-1ik8ufg\",\"data-framer-name\":\"Lingraphica\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023\"})}),className:\"framer-vtf9lg\",\"data-framer-name\":\"2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1,500 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"1,500 icons\"})}),className:\"framer-1lbxx8i\",\"data-framer-name\":\"1500 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wc7ea8\",\"data-framer-name\":\"Netflix\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Netflix\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Netflix\"})}),className:\"framer-cxp4p\",\"data-framer-name\":\"Netflix\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023 and 2024\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2023 and 2024\"})}),className:\"framer-1e0pm58\",\"data-framer-name\":\"2023\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"4,500 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"4,500 icons\"})}),className:\"framer-1ln8448\",\"data-framer-name\":\"4500 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsecix\",\"data-framer-name\":\"Twitter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Twitter\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Twitter\"})}),className:\"framer-gvid0i\",\"data-framer-name\":\"Twitter\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2021 - 2022\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2021 - 2022\"})}),className:\"framer-pyx3d4\",\"data-framer-name\":\"2021 - 2022\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"200 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"200 icons\"})}),className:\"framer-1hopkpb\",\"data-framer-name\":\"200 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e51wgu\",\"data-framer-name\":\"Lingraphica\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Esri\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"Esri\"})}),className:\"framer-dscomx\",\"data-framer-name\":\"Esri\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2016 - 2021\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"2016 - 2021\"})}),className:\"framer-11kq2db\",\"data-framer-name\":\"2016 - 2021\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"10,000 icons\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(92, 55, 18)\"},children:\"10,000 icons\"})}),className:\"framer-bxjc5\",\"data-framer-name\":\"10,000 icons\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47ac9q\",\"data-framer-name\":\"Contact Section\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1we6kv7\",\"data-framer-name\":\"Frame 34602\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vzbf7b\",\"data-framer-name\":\"Frame 161\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cijvvt\",\"data-styles-preset\":\"TIbPxse0J\",children:\"Let\u2019s talk icons!\"})}),className:\"framer-1is39bp\",\"data-framer-name\":\"Let\u2019s talk icons!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(41, 58, 32)\"},children:\"Interested in working with me? Tell me a bit about your project so we can get started!\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(41, 58, 32)\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"Also, feel free to check out my social media pages by clicking one of the icons below.\"]})]}),className:\"framer-m5ba92\",\"data-framer-name\":\"Interested in working with me? Tell me a little bit about your yourself and your project so we can get started! \\u2028Also, feel free to check out my social media pages by clicking one of the icons below.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b1dyne\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/grifflecuyer/\",motionChild:true,nodeId:\"D76HulTgi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-13wtrx framer-lux5qc\",\"data-framer-name\":\"linkedin\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.6296 4.33562V27.6644C29.6319 28.7438 28.7615 29.6221 27.6821 29.6296H4.31106C3.2331 29.6213 2.36511 28.7423 2.37039 27.6644V4.33562C2.36511 3.25764 3.2331 2.37864 4.31106 2.37036H27.6821C28.7615 2.37789 29.6319 3.25622 29.6296 4.33562ZM10.9317 8.60667C10.9317 7.65913 10.3609 6.80489 9.48546 6.44228C8.61004 6.07968 7.6024 6.28011 6.93239 6.95012C6.26238 7.62014 6.06194 8.62778 6.42455 9.5032C6.78716 10.3786 7.6414 10.9494 8.58894 10.9494C9.88154 10.9464 10.9286 9.89928 10.9317 8.60667ZM10.6198 25.736V12.7259H6.56898V25.736H10.6198ZM25.7593 18.6039C25.7593 15.0987 24.9989 12.4045 20.9097 12.4045C19.3446 12.3462 17.8738 13.152 17.0804 14.5025H17.0257V12.7259H13.1458V25.736H17.1844V19.2973C17.1844 17.5946 17.5085 15.9535 19.6146 15.9535C21.6824 15.9535 21.7139 17.8941 21.7139 19.4026V25.7319H25.7538L25.7593 18.6039Z\" fill=\"#293A20\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/griff.lecuyer/\",motionChild:true,nodeId:\"GZJZqBySz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1gil13p framer-lux5qc\",\"data-framer-name\":\"instagram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.5346 21.6209C29.5732 23.7388 28.7834 25.788 27.3333 27.3318C25.7933 28.7884 23.7414 29.5794 21.6224 29.5335C19.3721 29.6617 12.6266 29.6617 10.3776 29.5335C8.2599 29.5718 6.21085 28.7818 4.66668 27.3318C3.21174 25.7911 2.42107 23.7398 2.46544 21.6209C2.33868 19.3701 2.33868 12.6231 2.46544 10.3736C2.42394 8.25486 3.21418 6.20419 4.66668 4.66139C6.21052 3.21155 8.26039 2.42371 10.3776 2.46647C12.6279 2.33832 19.3734 2.33832 21.6224 2.46647C23.7403 2.42686 25.7898 3.21701 27.3333 4.66821C28.7883 6.20892 29.5789 8.26022 29.5346 10.3791C29.6613 12.6299 29.6613 19.3701 29.5346 21.6209ZM27.1766 16C27.1766 14.0164 27.3401 9.75878 26.6314 7.96468C26.1642 6.77967 25.2264 5.84166 24.0417 5.3744C22.2534 4.66957 17.9913 4.82908 16.0082 4.82908C14.025 4.82908 9.76838 4.66412 7.97467 5.3744C6.79021 5.84208 5.85256 6.77995 5.38498 7.96468C4.68031 9.75333 4.83978 14.0164 4.83978 16C4.83978 17.9836 4.67486 22.2412 5.38498 24.0353C5.85298 25.2198 6.79048 26.1575 7.97467 26.6256C9.76293 27.3304 14.0264 27.1709 16.0082 27.1709C17.99 27.1709 22.248 27.3359 24.0417 26.6256C25.2261 26.1579 26.1638 25.22 26.6314 24.0353C27.3388 22.2466 27.1766 17.9836 27.1766 16ZM22.9922 16C22.9922 19.8597 19.8643 22.9889 16.0055 22.9896C12.1466 22.9904 9.01751 19.8625 9.016 16.0027C9.0145 12.143 12.1411 9.01259 16 9.01032C17.8547 9.0067 19.6345 9.74186 20.9463 11.0534C22.258 12.3649 22.9937 14.1449 22.9908 16H22.9922ZM20.547 16C20.547 13.491 18.5139 11.4569 16.0054 11.4561C13.497 11.4553 11.4627 13.4883 11.4612 15.9973C11.4597 18.5063 13.4916 20.5416 16 20.5439C18.5088 20.5424 20.5426 18.5093 20.5456 16H20.547ZM23.273 10.3546C22.3696 10.3546 21.6374 9.6221 21.6374 8.71858C21.6374 7.81507 22.3696 7.08262 23.273 7.08262C24.1763 7.08262 24.9086 7.81507 24.9086 8.71858C24.9111 9.15254 24.7402 9.56951 24.4338 9.87675C24.1273 10.184 23.7109 10.356 23.277 10.3546H23.273Z\" fill=\"#293A20\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/griff_design\",motionChild:true,nodeId:\"A6CHWeOU7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1c72w7l framer-lux5qc\",\"data-framer-name\":\"twitter\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.194 10.6404C28.2265 15.3537 26.3685 19.8834 23.0356 23.2163C19.7027 26.5492 15.173 28.4072 10.4597 28.3747C7.06651 28.3836 3.74302 27.412 0.888889 25.577C1.38855 25.6314 1.89094 25.657 2.39354 25.6535C5.19919 25.6611 7.92554 24.723 10.1326 22.9908C7.46341 22.9452 5.1185 21.2077 4.29768 18.6675C4.68717 18.7297 5.08082 18.7623 5.47523 18.7649C6.02858 18.7633 6.5795 18.6917 7.1149 18.552C4.20911 17.9613 2.1217 15.4053 2.12351 12.4401V12.358C2.98698 12.8405 3.95234 13.1119 4.94074 13.15C2.1956 11.3173 1.34996 7.66521 3.01016 4.81243C6.17637 8.71 10.848 11.0807 15.8631 11.3349C15.7635 10.8658 15.7126 10.3877 15.7113 9.90821C15.7132 7.34981 17.277 5.05189 19.6562 4.11126C22.0354 3.17062 24.7478 3.77796 26.4986 5.6434C27.8936 5.37395 29.2311 4.86436 30.4517 4.13735C29.9862 5.5765 29.0117 6.79643 27.711 7.56841C28.9487 7.42874 30.1586 7.10503 31.3007 6.60799C30.4469 7.84997 29.3901 8.93929 28.1745 9.83027C28.194 10.1017 28.194 10.3717 28.194 10.6404Z\" fill=\"#293A20\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dcfytm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AdNy7CaUz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Pj45KAzUa:{layout:\"vertical\"}},children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,button:{color:\"rgb(255, 255, 255)\",fill:\"rgb(41, 58, 32)\",fontWeight:600,label:\"Send\"},email:{placeholder:\"Email\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"tEkn6uhX\",gap:15,height:\"100%\",id:\"AdNy7CaUz\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"rgb(255, 255, 255)\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"horizontal\",layoutId:\"AdNy7CaUz\",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(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(41, 58, 32)\"},children:\"After you click \u201CSend\u201D, your message will get sent to my inbox. I\u2019ll make it a priority to get back to you in 48 hours or less.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"rgb(41, 58, 32)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-text-color\":\"rgb(41, 58, 32)\"},children:[\"Lastly, I promise I will \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"italic\"},children:\"never\"}),\" share your personal information. I only need your contact info to learn more about you and your project.\"]})]}),className:\"framer-1nxla30\",\"data-framer-name\":\"After you click \u201CSend\u201D, your message will get sent to my inbox. I\u2019ll make it a priority to get back to you in 48 hours or less. Lastly, I promise I will never share your personal information. I only need your contact info to learn more about you and your project.\",fonts:[\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":NiO0UDq0C\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"X4mGzK6Sg\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dbz99x framer-lux5qc\",\"data-framer-name\":\"Back to top button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Back to top\"})}),className:\"framer-1cywafv\",\"data-framer-name\":\"Back to top\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxkygf\",\"data-framer-name\":\"Animated Footer\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-95iap1-container\",nodeId:\"s7vepFfRr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Mv5HcJ9O_:{variant:\"MbyVshFGJ\"},Pj45KAzUa:{variant:\"FbxWd2V73\"}},children:/*#__PURE__*/_jsx(Footer,{background:\"rgb(223, 230, 224)\",height:\"100%\",id:\"s7vepFfRr\",layoutId:\"s7vepFfRr\",style:{height:\"100%\",width:\"100%\"},variant:\"lI6ESytRF\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14dqdt3 hidden-10xzzdy\",\"data-framer-name\":\"Illustration Speech Bubble\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-na5obr\",\"data-framer-name\":\"Sup\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1m4fkdv\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"50\" viewBox=\"-2 -2 80 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.8938 1.27537e-05C25.9202 -0.000157477 23.3351 -0.000304818 21.243 0.253829C19.0034 0.525874 16.7996 1.13915 14.9073 2.75535C14.4492 3.14661 14.0226 3.57326 13.6313 4.03137C12.0151 5.9237 11.4018 8.12744 11.1298 10.367C10.99 11.5179 10.9271 12.8181 10.8989 14.25L9.59659 14.25C7.99722 14.2496 6.41062 14.2492 5.19353 14.4116C4.24937 14.5376 1.29826 15.0026 0.279886 17.9585C-0.738487 20.9145 1.30002 23.0985 1.96625 23.7793C2.82506 24.6568 4.07521 25.6337 5.33546 26.6185L10.8788 30.9524C10.8869 32.5219 10.9174 33.9217 11.0321 35.128C11.1981 36.8738 11.5681 38.6229 12.5706 40.2588C13.5188 41.8061 14.8198 43.1071 16.3672 44.0554C18.0031 45.0579 19.7522 45.4279 21.498 45.5939C23.1419 45.7502 25.145 45.7501 27.4476 45.75H56.8858C60.1988 45.7502 63.0778 45.7504 65.3885 45.4398C67.8744 45.1055 70.2923 44.3472 72.2577 42.3818C74.2231 40.4163 74.9815 37.9985 75.3157 35.5126C75.6264 33.2019 75.6262 30.3229 75.626 27.0098V18.7403C75.6262 15.4273 75.6264 12.5481 75.3157 10.2375C74.9815 7.75158 74.2231 5.33372 72.2577 3.36829C70.2923 1.40287 67.8744 0.644499 65.3885 0.310278C63.0778 -0.000381112 60.1988 -0.000198962 56.8858 1.08464e-05L28.8938 1.27537e-05ZM7.58499 18.0768C7.57958 18.0697 7.57655 18.066 7.57639 18.066C7.57627 18.066 7.57779 18.068 7.58118 18.0722C7.58226 18.0735 7.58353 18.075 7.58499 18.0768Z\" fill=\"#1D1711\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-146hzuf\",\"data-framer-name\":\"Rectangle 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:42,intrinsicWidth:75,svg:'<svg width=\"75\" height=\"42\" viewBox=\"-2 -2 75 42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.876 14.25C13.876 7.9054 13.876 4.7331 15.6729 2.62914C15.9281 2.33038 16.2064 2.05212 16.5051 1.79696C18.6091 0 21.7814 0 28.126 0H55.626C62.697 0 66.2326 0 68.4293 2.1967C70.626 4.3934 70.626 7.92893 70.626 15V22.75C70.626 29.8211 70.626 33.3566 68.4293 35.5533C66.2326 37.75 62.697 37.75 55.626 37.75H26.626C21.7158 37.75 19.2608 37.75 17.4572 36.6448C16.4481 36.0264 15.5996 35.1779 14.9812 34.1687C13.876 32.3652 13.876 29.9101 13.876 25V25L6.98616 19.6134C4.1376 17.3864 2.71331 16.2728 3.06176 15.2614C3.4102 14.25 5.21811 14.25 8.83393 14.25H13.876V14.25Z\" fill=\"#CFAF92\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2hpdm8tOTAw\",\"--framer-font-family\":'\"Chivo\", sans-serif',\"--framer-font-size\":\"17.5px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgb(29, 23, 17)\"},children:\"Sup.\"})}),className:\"framer-1th4j2\",\"data-framer-name\":\"Sup.\",fonts:[\"GF;Chivo-900\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BrCuY.framer-lux5qc, .framer-BrCuY .framer-lux5qc { display: block; }\",\".framer-BrCuY.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-BrCuY .framer-q51awm-container { flex: none; height: 45px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-BrCuY .framer-m5n3t3 { align-content: center; align-items: center; background-color: #f6f4ee; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1fa56vi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 50px 0px; position: relative; width: 1340px; }\",\".framer-BrCuY .framer-1pjzkhp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 657px; }\",\".framer-BrCuY .framer-11huli3, .framer-BrCuY .framer-10l0d0v, .framer-BrCuY .framer-19t3u2j, .framer-BrCuY .framer-q2lpy0, .framer-BrCuY .framer-aabd5w, .framer-BrCuY .framer-xrvim3, .framer-BrCuY .framer-x2236u, .framer-BrCuY .framer-1ivtiau, .framer-BrCuY .framer-d7g5tx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-12v8cov { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 270px; overflow: hidden; position: relative; width: 658px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1ualhie-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BrCuY .framer-1gx8att { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1nulvgi, .framer-BrCuY .framer-2oyckp, .framer-BrCuY .framer-hgbg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 375px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1340px; }\",\".framer-BrCuY .framer-121l4sk, .framer-BrCuY .framer-luhwjb, .framer-BrCuY .framer-1flw3kh, .framer-BrCuY .framer-jk6lib, .framer-BrCuY .framer-1x57vls { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-120c1y8 { background-color: #fc5200; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-d3zs5h { aspect-ratio: 2.765957446808511 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 141px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 390px; }\",\".framer-BrCuY .framer-11ji6vp, .framer-BrCuY .framer-1t6uxe6, .framer-BrCuY .framer-12aetb0, .framer-BrCuY .framer-1rkryop, .framer-BrCuY .framer-1kdk9f6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 190px; justify-content: space-between; overflow: visible; padding: 25px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1vhopsv, .framer-BrCuY .framer-3ysrn, .framer-BrCuY .framer-1ve8468, .framer-BrCuY .framer-aub8a9, .framer-BrCuY .framer-7ow0q6 { 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; overflow: hidden; padding: 0px; position: relative; width: 605px; }\",\".framer-BrCuY .framer-1wmbbvs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1ynaoqw, .framer-BrCuY .framer-nll0ud, .framer-BrCuY .framer-1iyaug0, .framer-BrCuY .framer-q0ls8p, .framer-BrCuY .framer-1idd0go, .framer-BrCuY .framer-4ip30u, .framer-BrCuY .framer-1u9j8x0, .framer-BrCuY .framer-8ggdfr, .framer-BrCuY .framer-1meqt8p, .framer-BrCuY .framer-n2teb7, .framer-BrCuY .framer-1ozq688, .framer-BrCuY .framer-1v4pmcq, .framer-BrCuY .framer-1ax7feg, .framer-BrCuY .framer-n3abfb, .framer-BrCuY .framer-1mw38ko, .framer-BrCuY .framer-1w8rmtz, .framer-BrCuY .framer-1x16sax, .framer-BrCuY .framer-ppuw18, .framer-BrCuY .framer-1g12j5m, .framer-BrCuY .framer-16prl2p, .framer-BrCuY .framer-c7jw8q { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-1wu5b7f { align-content: center; align-items: center; background-color: #c9f7b0; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 3px 12px 3px 12px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-1cv7b0v, .framer-BrCuY .framer-yewsk4, .framer-BrCuY .framer-1nop5nh, .framer-BrCuY .framer-pdzf1f, .framer-BrCuY .framer-jf2jnh { flex: none; height: 44px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-pq7dky-container, .framer-BrCuY .framer-i2sazu-container, .framer-BrCuY .framer-yc910d-container, .framer-BrCuY .framer-sg45oi-container, .framer-BrCuY .framer-1anu79n-container, .framer-BrCuY .framer-1xlz8fj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1tdzaxp { background-color: #e50914; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-jfyz3o { aspect-ratio: 2.765957446808511 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 141px); left: 50%; overflow: visible; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 390px; }\",\".framer-BrCuY .framer-yeb5d6 { background-color: #1da1f2; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1629lkc { flex: none; height: 156px; left: calc(49.92366412213743% - 390px / 2); position: absolute; top: calc(50.52083333333336% - 156px / 2); width: 390px; }\",\".framer-BrCuY .framer-1uxcsh6 { background-color: #2d2d2d; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1k8efzx { align-content: center; align-items: center; bottom: -1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 22px; overflow: hidden; padding: 0px; position: absolute; right: 22px; top: 1px; }\",\".framer-BrCuY .framer-ogwq7d { aspect-ratio: 3.6436781609195403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); max-height: 100%; max-width: 90%; position: relative; width: 470px; }\",\".framer-BrCuY .framer-n0hzcb { align-content: center; align-items: center; background-color: #ffd84e; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-m3vd65 { aspect-ratio: 2.9133858267716537 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 144px); max-height: 90%; position: relative; width: 420px; }\",\".framer-BrCuY .framer-ogv4u9 { align-content: center; align-items: center; background: linear-gradient(180deg, #F6F4EE 0%, #e6dbd1 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 42px 50px 42px 50px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1e2tb2a, .framer-BrCuY .framer-3a75w0, .framer-BrCuY .framer-15end8e, .framer-BrCuY .framer-z8l05v, .framer-BrCuY .framer-1kzdlb5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 587px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-1cfri3j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1340px; }\",\".framer-BrCuY .framer-18h9fpq, .framer-BrCuY .framer-1nckqxh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1w9lthf { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-BrCuY .framer-1cnvfxf { aspect-ratio: 1.5849056603773586 / 1; flex: none; height: 60%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 228px); }\",\".framer-BrCuY .framer-e3hopf { align-content: center; align-items: center; background-color: #e8c876; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-y551p4 { aspect-ratio: 1.3855421686746987 / 1; flex: none; height: 90%; position: relative; width: var(--framer-aspect-ratio-supported, 230px); }\",\".framer-BrCuY .framer-1cfgrx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1mngid2 { align-content: center; align-items: center; align-self: stretch; background-color: #1da1f2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-jsxxs1 { aspect-ratio: 1.3202247191011236 / 1; flex: none; height: 73%; position: relative; width: var(--framer-aspect-ratio-supported, 232px); }\",\".framer-BrCuY .framer-1yk5ock { align-content: center; align-items: center; background-color: #f2faff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-15lch8m { flex: none; height: 71%; position: relative; width: 236px; }\",\".framer-BrCuY .framer-1dlr1qh { align-content: center; align-items: center; background-color: #e7dcf1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1v2kfyg { aspect-ratio: 1.3403141361256545 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 191px); overflow: visible; position: relative; width: 256px; }\",\".framer-BrCuY .framer-mpd3cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-t1cloe { align-content: center; align-items: center; background-color: #136338; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-11gclai { aspect-ratio: 1.3855421686746987 / 1; flex: none; height: 72%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 240px); }\",\".framer-BrCuY .framer-1i9i58f { align-content: center; align-items: center; background-color: #ff323d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-2td9bw { aspect-ratio: 1.393939393939394 / 1; flex: none; height: 70%; position: relative; width: var(--framer-aspect-ratio-supported, 236px); }\",\".framer-BrCuY .framer-1nwyqam { align-content: center; align-items: center; background-color: #fac0c4; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-s4lkh8 { aspect-ratio: 1.387878787878788 / 1; flex: none; height: 69%; position: relative; width: var(--framer-aspect-ratio-supported, 229px); }\",\".framer-BrCuY .framer-1ol1207 { align-content: center; align-items: center; background-color: #ade4a4; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-9mt6b4 { aspect-ratio: 1.393939393939394 / 1; flex: none; height: 69%; position: relative; width: var(--framer-aspect-ratio-supported, 230px); }\",\".framer-BrCuY .framer-1okvfkl { align-content: center; align-items: center; background-color: #f8f8f8; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 240px; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-fol3y4 { aspect-ratio: 1.5911949685534592 / 1; flex: none; height: 88%; position: relative; width: var(--framer-aspect-ratio-supported, 253px); }\",\".framer-BrCuY .framer-1tyxle8 { align-content: center; align-items: center; background: linear-gradient(180deg, #F6F4EE 0%, #e6dbd1 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 30px 10px 30px 10px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-rn7zku { flex: none; height: 200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-pbgipi-container { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-BrCuY .framer-1wc25sq { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; padding: 0px; position: relative; width: 370px; }\",\".framer-BrCuY .framer-ox6a7d { aspect-ratio: 1.5849056603773586 / 1; flex: none; height: 80%; max-width: 90%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 317px); }\",\".framer-BrCuY .framer-3gzgn6 { background-color: #e8c876; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 200px; overflow: hidden; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-wlfbnp { flex: none; height: 70%; left: calc(50.00000000000002% - 200px / 2); position: absolute; top: calc(50.00000000000002% - 70% / 2); width: 200px; }\",\".framer-BrCuY .framer-147b2p3 { align-content: center; align-items: center; background-color: #1da1f2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-16r5puu { flex: none; height: 85%; position: relative; width: 232px; }\",\".framer-BrCuY .framer-1u9lfgt { align-content: center; align-items: center; background-color: #f2faff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-14dnce3 { flex: none; height: 85%; position: relative; width: 236px; }\",\".framer-BrCuY .framer-1h16hlv { align-content: center; align-items: center; background-color: #e7dcf1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-mohb8k { aspect-ratio: 1.3414634146341464 / 1; flex: none; height: 80%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 268px); }\",\".framer-BrCuY .framer-dvk3bj { align-content: center; align-items: center; background-color: #136338; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1or1466 { aspect-ratio: 1.3855421686746987 / 1; flex: none; height: 72%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-BrCuY .framer-1pq0gs3 { align-content: center; align-items: center; background-color: #ff323d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1e3k5y5 { flex: none; height: 80%; position: relative; width: 236px; }\",\".framer-BrCuY .framer-lf7cjv { align-content: center; align-items: center; background-color: #fac0c4; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1s0j3v9 { flex: none; height: 90%; position: relative; width: 229px; }\",\".framer-BrCuY .framer-5ukndx { align-content: center; align-items: center; background-color: #ade4a4; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-1c5isgh { flex: none; height: 83%; position: relative; width: 230px; }\",\".framer-BrCuY .framer-wdz2xj { align-content: center; align-items: center; background-color: #f8f8f8; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BrCuY .framer-sg7997 { flex: none; height: 109%; position: relative; width: 253px; }\",\".framer-BrCuY .framer-lexo8o { align-content: center; align-items: center; background-color: var(--token-4fed3fdf-396d-4684-bd75-3edb68a53bd6, #293a20); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 67px 124px 67px 124px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-5m62xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 89%; }\",\".framer-BrCuY .framer-h9yoqp { aspect-ratio: 1.0000001059638242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 144px); position: relative; width: 144px; }\",\".framer-BrCuY .framer-zundac { aspect-ratio: 2.6666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); position: relative; width: 227px; }\",\".framer-BrCuY .framer-1iuf6t4 { aspect-ratio: 4.545454428690016 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: relative; width: 265px; }\",\".framer-BrCuY .framer-1fw7h3l { aspect-ratio: 2.242990583124984 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); position: relative; width: 216px; }\",\".framer-BrCuY .framer-ph3xdc { aspect-ratio: 4.545454428690016 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 236px; }\",\".framer-BrCuY .framer-1c5jr8q { aspect-ratio: 4.545454428690016 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 239px; }\",\".framer-BrCuY .framer-1q4wdrd { aspect-ratio: 2.242990583124984 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); position: relative; width: 216px; }\",\".framer-BrCuY .framer-t5mhxk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 89%; }\",\".framer-BrCuY .framer-2ahu3t { aspect-ratio: 1.0000001059638242 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 90px; }\",\".framer-BrCuY .framer-88fzwj { flex: none; height: 78px; position: relative; width: 138px; }\",\".framer-BrCuY .framer-c80gil { aspect-ratio: 4.545454428690016 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 159px; }\",\".framer-BrCuY .framer-6ss7y8 { aspect-ratio: 2.242990583124984 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); position: relative; width: 131px; }\",\".framer-BrCuY .framer-kopf92 { flex: none; height: 48px; position: relative; width: 125px; }\",\".framer-BrCuY .framer-wn7b7a { flex: none; height: 33px; position: relative; width: 138px; }\",\".framer-BrCuY .framer-h8tk98 { aspect-ratio: 2.242990583124984 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); position: relative; width: 136px; }\",\".framer-BrCuY .framer-dfvhhx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-BrCuY .framer-i4bh3e { align-content: center; align-items: center; background: linear-gradient(180deg, #F6F4EE 0%, #e6dbd1 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 42px 50px 42px 50px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-cvd2rs, .framer-BrCuY .framer-vx8ehr { align-content: center; align-items: center; background-color: #f8f8f8; 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: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 90px 50px 50px 50px; position: relative; width: 896px; }\",\".framer-BrCuY .framer-ck6bge, .framer-BrCuY .framer-1cyou6y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-viamjl, .framer-BrCuY .framer-cnukjr { flex: none; height: 52px; overflow: visible; position: relative; width: 100%; }\",\".framer-BrCuY .framer-11g9ox5, .framer-BrCuY .framer-4kf6b9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 796px; }\",\".framer-BrCuY .framer-1g2vl6j, .framer-BrCuY .framer-94iee9 { bottom: -83px; flex: none; height: auto; left: -33px; position: absolute; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-5bx8y6, .framer-BrCuY .framer-vb79ot { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 100px; left: calc(50.12562814070354% - 100px / 2); position: absolute; top: calc(-130.76923076923075% - 100px / 2); width: 100px; }\",\".framer-BrCuY .framer-a8k24u, .framer-BrCuY .framer-ppowqn { --border-bottom-width: 5px; --border-color: #f8f8f8; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 104px; left: calc(50.12562814070354% - 104px / 2); position: absolute; top: -120px; width: 104px; }\",\".framer-BrCuY .framer-1x1ixje { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-6x6r2s { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-v9cq64, .framer-BrCuY .framer-1xztzkd, .framer-BrCuY .framer-ru7l4r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 423px; }\",\".framer-BrCuY .framer-1wmxqjk, .framer-BrCuY .framer-vrhtim { background-color: #f8f8f8; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 460px; overflow: visible; position: relative; width: 100%; }\",\".framer-BrCuY .framer-13uf4l7, .framer-BrCuY .framer-ahh4e2, .framer-BrCuY .framer-socy4p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 368px; justify-content: flex-start; left: 50px; overflow: visible; padding: 0px; position: absolute; top: 40px; width: 323px; }\",\".framer-BrCuY .framer-uqmqbr, .framer-BrCuY .framer-yczo2l, .framer-BrCuY .framer-1fqvmtz, .framer-BrCuY .framer-29tjc4, .framer-BrCuY .framer-1p5u6af { flex: none; height: 51px; overflow: visible; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1bq53ko { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-BrCuY .framer-eqkf8v { flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-2hik9p { bottom: -61px; flex: none; height: auto; left: -34px; position: absolute; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-13sihac, .framer-BrCuY .framer-1xx102i, .framer-BrCuY .framer-1jbofse { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 0px; position: absolute; top: -65px; width: 100px; }\",\".framer-BrCuY .framer-17v0oxc { --border-bottom-width: 4px; --border-color: #f8f8f8; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: -2px; position: absolute; top: -67px; width: 104px; }\",\".framer-BrCuY .framer-165wb6m, .framer-BrCuY .framer-1httfu3 { flex: none; height: 297px; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-v0fkky, .framer-BrCuY .framer-djxz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-BrCuY .framer-1fel8t6, .framer-BrCuY .framer-1trxc43 { bottom: -80px; flex: none; height: auto; left: -34px; position: absolute; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-1cdnrm0, .framer-BrCuY .framer-1dzudnt { --border-bottom-width: 4px; --border-color: #ffffff; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: -2px; position: absolute; top: -67px; width: 104px; }\",\".framer-BrCuY .framer-1jcyy9l { background-color: #f8f8f8; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 1002px; overflow: visible; position: relative; width: 100%; }\",\".framer-BrCuY .framer-kvdk7j { flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-1oo2b8s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-1oqcuqz { align-content: center; align-items: center; background: linear-gradient(180deg, #F6F4EE 0%, #e6dbd1 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-5ya87k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1sq67po { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-g33gji, .framer-BrCuY .framer-1dmb17f, .framer-BrCuY .framer-6lj6op, .framer-BrCuY .framer-1i7rs3z, .framer-BrCuY .framer-10wf3f, .framer-BrCuY .framer-1vgpkqb, .framer-BrCuY .framer-9exfui, .framer-BrCuY .framer-9egsns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-fl9mnl, .framer-BrCuY .framer-1v5bv3d, .framer-BrCuY .framer-1ydmkcu, .framer-BrCuY .framer-q215or, .framer-BrCuY .framer-19cvqh3 { align-content: center; align-items: center; background-color: #f8f8f8; 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: 0px; height: min-content; justify-content: center; overflow: visible; padding: 70px 10px 50px 10px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-efyzn0, .framer-BrCuY .framer-1v9e01e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-BrCuY .framer-82ihhj, .framer-BrCuY .framer-vq1rpi, .framer-BrCuY .framer-ynvwox { flex: none; height: 200px; overflow: visible; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1nmp65g, .framer-BrCuY .framer-155utbe, .framer-BrCuY .framer-1ki1ixv, .framer-BrCuY .framer-p0pwk1, .framer-BrCuY .framer-f1exxm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 281px; }\",\".framer-BrCuY .framer-1iuaqa2, .framer-BrCuY .framer-94y6sz, .framer-BrCuY .framer-cvde53 { flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-bdxbqa, .framer-BrCuY .framer-1wvo4bp { bottom: -72px; flex: none; height: auto; left: -29px; position: absolute; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-16t0t1q, .framer-BrCuY .framer-1rwflwh, .framer-BrCuY .framer-1gzqebz { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 100px; left: calc(50.00000000000002% - 100px / 2); position: absolute; top: calc(-127.45098039215684% - 100px / 2); width: 100px; }\",\".framer-BrCuY .framer-1rrgmnk, .framer-BrCuY .framer-umyuz9, .framer-BrCuY .framer-o34gjz, .framer-BrCuY .framer-lw6j7b { --border-bottom-width: 4px; --border-color: #ffffff; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: 50%; position: absolute; top: -127%; transform: translate(-50%, -50%); width: 104px; }\",\".framer-BrCuY .framer-17k5dq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-1mk6skn { --border-bottom-width: 5px; --border-color: #f8f8f8; --border-left-width: 5px; --border-right-width: 5px; --border-style: solid; --border-top-width: 5px; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 104px); left: 50%; position: absolute; top: -127%; transform: translate(-50%, -50%); width: 104px; }\",\".framer-BrCuY .framer-71wp0q, .framer-BrCuY .framer-197bab1, .framer-BrCuY .framer-15v0g98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; min-width: 85%; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-BrCuY .framer-h0caqs, .framer-BrCuY .framer-xu6h1r, .framer-BrCuY .framer-p2m8ei { bottom: -72px; flex: none; height: auto; left: -28px; position: absolute; white-space: pre; width: auto; }\",\".framer-BrCuY .framer-1c7ycoj, .framer-BrCuY .framer-q3390g { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 50%; position: absolute; top: -115px; transform: translateX(-50%); width: 100px; }\",\".framer-BrCuY .framer-k6v82p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-uchapo { align-content: center; align-items: center; background-color: #f6f3ee; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 43px; position: relative; width: 100%; }\",\".framer-BrCuY .framer-13n0jev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 194px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-1tstasj, .framer-BrCuY .framer-ewszgb, .framer-BrCuY .framer-1x702uw, .framer-BrCuY .framer-1upwd5u, .framer-BrCuY .framer-1yc0gp5, .framer-BrCuY .framer-15tuhoh, .framer-BrCuY .framer-19b63kl, .framer-BrCuY .framer-vq8qde, .framer-BrCuY .framer-1v8wpsx, .framer-BrCuY .framer-1tyhioj, .framer-BrCuY .framer-82dqqq, .framer-BrCuY .framer-hoxgwf, .framer-BrCuY .framer-mur3lm, .framer-BrCuY .framer-w99lbg, .framer-BrCuY .framer-7xmpwr, .framer-BrCuY .framer-1ik8ufg, .framer-BrCuY .framer-vtf9lg, .framer-BrCuY .framer-1lbxx8i, .framer-BrCuY .framer-cxp4p, .framer-BrCuY .framer-1e0pm58, .framer-BrCuY .framer-1ln8448, .framer-BrCuY .framer-gvid0i, .framer-BrCuY .framer-pyx3d4, .framer-BrCuY .framer-1hopkpb, .framer-BrCuY .framer-dscomx, .framer-BrCuY .framer-11kq2db, .framer-BrCuY .framer-bxjc5 { flex: none; height: 24px; position: relative; white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-47ac9q { align-content: center; align-items: center; background-color: #dfe6e0; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 0px 50px 0px; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-BrCuY .framer-1we6kv7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-1vzbf7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BrCuY .framer-1is39bp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-m5ba92, .framer-BrCuY .framer-1nxla30 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 510px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-1b1dyne { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-BrCuY .framer-13wtrx, .framer-BrCuY .framer-1gil13p, .framer-BrCuY .framer-1c72w7l { flex: none; height: 32px; position: relative; text-decoration: none; width: 32px; }\",\".framer-BrCuY .framer-1dcfytm-container { flex: none; height: 290px; position: relative; width: 550px; }\",\".framer-BrCuY .framer-1dbz99x { background-color: #f6f3ee; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 36px; overflow: visible; position: relative; text-decoration: none; width: 350px; }\",\".framer-BrCuY .framer-1cywafv { flex: none; height: auto; left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 175px; word-break: break-word; word-wrap: break-word; }\",\".framer-BrCuY .framer-1sxkygf { flex: none; height: 246px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BrCuY .framer-95iap1-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-BrCuY .framer-14dqdt3 { bottom: 0px; flex: none; height: 246px; left: 0px; overflow: visible; position: absolute; width: 246px; }\",\".framer-BrCuY .framer-na5obr { flex: none; height: 46px; left: 190px; overflow: visible; position: absolute; top: 170px; width: 76px; }\",\".framer-BrCuY .framer-1m4fkdv { flex: none; height: 50px; left: -2px; position: absolute; top: -2px; width: 80px; }\",\".framer-BrCuY .framer-146hzuf { flex: none; height: 42px; left: -1px; position: absolute; top: 2px; width: 75px; }\",\".framer-BrCuY .framer-1th4j2 { flex: none; height: 18px; left: 24px; position: absolute; top: 12px; white-space: pre-wrap; width: 46px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BrCuY.framer-72rtr7, .framer-BrCuY .framer-m5n3t3, .framer-BrCuY .framer-1fa56vi, .framer-BrCuY .framer-1pjzkhp, .framer-BrCuY .framer-1gx8att, .framer-BrCuY .framer-1nulvgi, .framer-BrCuY .framer-1vhopsv, .framer-BrCuY .framer-1wmbbvs, .framer-BrCuY .framer-1wu5b7f, .framer-BrCuY .framer-2oyckp, .framer-BrCuY .framer-3ysrn, .framer-BrCuY .framer-1ve8468, .framer-BrCuY .framer-hgbg5, .framer-BrCuY .framer-1k8efzx, .framer-BrCuY .framer-aub8a9, .framer-BrCuY .framer-n0hzcb, .framer-BrCuY .framer-7ow0q6, .framer-BrCuY .framer-ogv4u9, .framer-BrCuY .framer-1cfri3j, .framer-BrCuY .framer-18h9fpq, .framer-BrCuY .framer-1w9lthf, .framer-BrCuY .framer-e3hopf, .framer-BrCuY .framer-1cfgrx1, .framer-BrCuY .framer-1mngid2, .framer-BrCuY .framer-1yk5ock, .framer-BrCuY .framer-1dlr1qh, .framer-BrCuY .framer-mpd3cp, .framer-BrCuY .framer-t1cloe, .framer-BrCuY .framer-1i9i58f, .framer-BrCuY .framer-1nckqxh, .framer-BrCuY .framer-1nwyqam, .framer-BrCuY .framer-1ol1207, .framer-BrCuY .framer-1okvfkl, .framer-BrCuY .framer-1tyxle8, .framer-BrCuY .framer-1wc25sq, .framer-BrCuY .framer-147b2p3, .framer-BrCuY .framer-1u9lfgt, .framer-BrCuY .framer-1h16hlv, .framer-BrCuY .framer-dvk3bj, .framer-BrCuY .framer-1pq0gs3, .framer-BrCuY .framer-lf7cjv, .framer-BrCuY .framer-5ukndx, .framer-BrCuY .framer-wdz2xj, .framer-BrCuY .framer-lexo8o, .framer-BrCuY .framer-5m62xk, .framer-BrCuY .framer-t5mhxk, .framer-BrCuY .framer-dfvhhx, .framer-BrCuY .framer-i4bh3e, .framer-BrCuY .framer-cvd2rs, .framer-BrCuY .framer-ck6bge, .framer-BrCuY .framer-11g9ox5, .framer-BrCuY .framer-1x1ixje, .framer-BrCuY .framer-v9cq64, .framer-BrCuY .framer-13uf4l7, .framer-BrCuY .framer-1bq53ko, .framer-BrCuY .framer-1xztzkd, .framer-BrCuY .framer-ahh4e2, .framer-BrCuY .framer-v0fkky, .framer-BrCuY .framer-ru7l4r, .framer-BrCuY .framer-socy4p, .framer-BrCuY .framer-djxz, .framer-BrCuY .framer-vx8ehr, .framer-BrCuY .framer-1cyou6y, .framer-BrCuY .framer-4kf6b9, .framer-BrCuY .framer-1oqcuqz, .framer-BrCuY .framer-5ya87k, .framer-BrCuY .framer-1sq67po, .framer-BrCuY .framer-g33gji, .framer-BrCuY .framer-fl9mnl, .framer-BrCuY .framer-efyzn0, .framer-BrCuY .framer-1nmp65g, .framer-BrCuY .framer-17k5dq1, .framer-BrCuY .framer-1dmb17f, .framer-BrCuY .framer-1v5bv3d, .framer-BrCuY .framer-1v9e01e, .framer-BrCuY .framer-155utbe, .framer-BrCuY .framer-6lj6op, .framer-BrCuY .framer-1i7rs3z, .framer-BrCuY .framer-1ydmkcu, .framer-BrCuY .framer-71wp0q, .framer-BrCuY .framer-1ki1ixv, .framer-BrCuY .framer-10wf3f, .framer-BrCuY .framer-1vgpkqb, .framer-BrCuY .framer-q215or, .framer-BrCuY .framer-197bab1, .framer-BrCuY .framer-p0pwk1, .framer-BrCuY .framer-9exfui, .framer-BrCuY .framer-9egsns, .framer-BrCuY .framer-19cvqh3, .framer-BrCuY .framer-15v0g98, .framer-BrCuY .framer-f1exxm, .framer-BrCuY .framer-k6v82p, .framer-BrCuY .framer-uchapo, .framer-BrCuY .framer-13n0jev, .framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu, .framer-BrCuY .framer-47ac9q, .framer-BrCuY .framer-1we6kv7, .framer-BrCuY .framer-1vzbf7b, .framer-BrCuY .framer-1b1dyne { gap: 0px; } .framer-BrCuY.framer-72rtr7 > *, .framer-BrCuY .framer-cvd2rs > *, .framer-BrCuY .framer-vx8ehr > *, .framer-BrCuY .framer-fl9mnl > *, .framer-BrCuY .framer-1v5bv3d > *, .framer-BrCuY .framer-1ydmkcu > *, .framer-BrCuY .framer-q215or > *, .framer-BrCuY .framer-19cvqh3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BrCuY.framer-72rtr7 > :first-child, .framer-BrCuY .framer-m5n3t3 > :first-child, .framer-BrCuY .framer-1pjzkhp > :first-child, .framer-BrCuY .framer-1gx8att > :first-child, .framer-BrCuY .framer-1vhopsv > :first-child, .framer-BrCuY .framer-3ysrn > :first-child, .framer-BrCuY .framer-1ve8468 > :first-child, .framer-BrCuY .framer-aub8a9 > :first-child, .framer-BrCuY .framer-n0hzcb > :first-child, .framer-BrCuY .framer-7ow0q6 > :first-child, .framer-BrCuY .framer-ogv4u9 > :first-child, .framer-BrCuY .framer-1cfri3j > :first-child, .framer-BrCuY .framer-e3hopf > :first-child, .framer-BrCuY .framer-1dlr1qh > :first-child, .framer-BrCuY .framer-1okvfkl > :first-child, .framer-BrCuY .framer-1tyxle8 > :first-child, .framer-BrCuY .framer-1h16hlv > :first-child, .framer-BrCuY .framer-wdz2xj > :first-child, .framer-BrCuY .framer-lexo8o > :first-child, .framer-BrCuY .framer-dfvhhx > :first-child, .framer-BrCuY .framer-i4bh3e > :first-child, .framer-BrCuY .framer-cvd2rs > :first-child, .framer-BrCuY .framer-ck6bge > :first-child, .framer-BrCuY .framer-11g9ox5 > :first-child, .framer-BrCuY .framer-v9cq64 > :first-child, .framer-BrCuY .framer-13uf4l7 > :first-child, .framer-BrCuY .framer-1bq53ko > :first-child, .framer-BrCuY .framer-1xztzkd > :first-child, .framer-BrCuY .framer-ahh4e2 > :first-child, .framer-BrCuY .framer-v0fkky > :first-child, .framer-BrCuY .framer-ru7l4r > :first-child, .framer-BrCuY .framer-socy4p > :first-child, .framer-BrCuY .framer-djxz > :first-child, .framer-BrCuY .framer-vx8ehr > :first-child, .framer-BrCuY .framer-1cyou6y > :first-child, .framer-BrCuY .framer-4kf6b9 > :first-child, .framer-BrCuY .framer-1oqcuqz > :first-child, .framer-BrCuY .framer-5ya87k > :first-child, .framer-BrCuY .framer-1sq67po > :first-child, .framer-BrCuY .framer-g33gji > :first-child, .framer-BrCuY .framer-fl9mnl > :first-child, .framer-BrCuY .framer-efyzn0 > :first-child, .framer-BrCuY .framer-1nmp65g > :first-child, .framer-BrCuY .framer-1dmb17f > :first-child, .framer-BrCuY .framer-1v5bv3d > :first-child, .framer-BrCuY .framer-1v9e01e > :first-child, .framer-BrCuY .framer-155utbe > :first-child, .framer-BrCuY .framer-6lj6op > :first-child, .framer-BrCuY .framer-1i7rs3z > :first-child, .framer-BrCuY .framer-1ydmkcu > :first-child, .framer-BrCuY .framer-71wp0q > :first-child, .framer-BrCuY .framer-1ki1ixv > :first-child, .framer-BrCuY .framer-10wf3f > :first-child, .framer-BrCuY .framer-1vgpkqb > :first-child, .framer-BrCuY .framer-q215or > :first-child, .framer-BrCuY .framer-197bab1 > :first-child, .framer-BrCuY .framer-p0pwk1 > :first-child, .framer-BrCuY .framer-9exfui > :first-child, .framer-BrCuY .framer-9egsns > :first-child, .framer-BrCuY .framer-19cvqh3 > :first-child, .framer-BrCuY .framer-15v0g98 > :first-child, .framer-BrCuY .framer-f1exxm > :first-child, .framer-BrCuY .framer-k6v82p > :first-child, .framer-BrCuY .framer-uchapo > :first-child, .framer-BrCuY .framer-13n0jev > :first-child, .framer-BrCuY .framer-47ac9q > :first-child, .framer-BrCuY .framer-1we6kv7 > :first-child, .framer-BrCuY .framer-1vzbf7b > :first-child { margin-top: 0px; } .framer-BrCuY.framer-72rtr7 > :last-child, .framer-BrCuY .framer-m5n3t3 > :last-child, .framer-BrCuY .framer-1pjzkhp > :last-child, .framer-BrCuY .framer-1gx8att > :last-child, .framer-BrCuY .framer-1vhopsv > :last-child, .framer-BrCuY .framer-3ysrn > :last-child, .framer-BrCuY .framer-1ve8468 > :last-child, .framer-BrCuY .framer-aub8a9 > :last-child, .framer-BrCuY .framer-n0hzcb > :last-child, .framer-BrCuY .framer-7ow0q6 > :last-child, .framer-BrCuY .framer-ogv4u9 > :last-child, .framer-BrCuY .framer-1cfri3j > :last-child, .framer-BrCuY .framer-e3hopf > :last-child, .framer-BrCuY .framer-1dlr1qh > :last-child, .framer-BrCuY .framer-1okvfkl > :last-child, .framer-BrCuY .framer-1tyxle8 > :last-child, .framer-BrCuY .framer-1h16hlv > :last-child, .framer-BrCuY .framer-wdz2xj > :last-child, .framer-BrCuY .framer-lexo8o > :last-child, .framer-BrCuY .framer-dfvhhx > :last-child, .framer-BrCuY .framer-i4bh3e > :last-child, .framer-BrCuY .framer-cvd2rs > :last-child, .framer-BrCuY .framer-ck6bge > :last-child, .framer-BrCuY .framer-11g9ox5 > :last-child, .framer-BrCuY .framer-v9cq64 > :last-child, .framer-BrCuY .framer-13uf4l7 > :last-child, .framer-BrCuY .framer-1bq53ko > :last-child, .framer-BrCuY .framer-1xztzkd > :last-child, .framer-BrCuY .framer-ahh4e2 > :last-child, .framer-BrCuY .framer-v0fkky > :last-child, .framer-BrCuY .framer-ru7l4r > :last-child, .framer-BrCuY .framer-socy4p > :last-child, .framer-BrCuY .framer-djxz > :last-child, .framer-BrCuY .framer-vx8ehr > :last-child, .framer-BrCuY .framer-1cyou6y > :last-child, .framer-BrCuY .framer-4kf6b9 > :last-child, .framer-BrCuY .framer-1oqcuqz > :last-child, .framer-BrCuY .framer-5ya87k > :last-child, .framer-BrCuY .framer-1sq67po > :last-child, .framer-BrCuY .framer-g33gji > :last-child, .framer-BrCuY .framer-fl9mnl > :last-child, .framer-BrCuY .framer-efyzn0 > :last-child, .framer-BrCuY .framer-1nmp65g > :last-child, .framer-BrCuY .framer-1dmb17f > :last-child, .framer-BrCuY .framer-1v5bv3d > :last-child, .framer-BrCuY .framer-1v9e01e > :last-child, .framer-BrCuY .framer-155utbe > :last-child, .framer-BrCuY .framer-6lj6op > :last-child, .framer-BrCuY .framer-1i7rs3z > :last-child, .framer-BrCuY .framer-1ydmkcu > :last-child, .framer-BrCuY .framer-71wp0q > :last-child, .framer-BrCuY .framer-1ki1ixv > :last-child, .framer-BrCuY .framer-10wf3f > :last-child, .framer-BrCuY .framer-1vgpkqb > :last-child, .framer-BrCuY .framer-q215or > :last-child, .framer-BrCuY .framer-197bab1 > :last-child, .framer-BrCuY .framer-p0pwk1 > :last-child, .framer-BrCuY .framer-9exfui > :last-child, .framer-BrCuY .framer-9egsns > :last-child, .framer-BrCuY .framer-19cvqh3 > :last-child, .framer-BrCuY .framer-15v0g98 > :last-child, .framer-BrCuY .framer-f1exxm > :last-child, .framer-BrCuY .framer-k6v82p > :last-child, .framer-BrCuY .framer-uchapo > :last-child, .framer-BrCuY .framer-13n0jev > :last-child, .framer-BrCuY .framer-47ac9q > :last-child, .framer-BrCuY .framer-1we6kv7 > :last-child, .framer-BrCuY .framer-1vzbf7b > :last-child { margin-bottom: 0px; } .framer-BrCuY .framer-m5n3t3 > *, .framer-BrCuY .framer-1vhopsv > *, .framer-BrCuY .framer-3ysrn > *, .framer-BrCuY .framer-1ve8468 > *, .framer-BrCuY .framer-aub8a9 > *, .framer-BrCuY .framer-7ow0q6 > *, .framer-BrCuY .framer-e3hopf > *, .framer-BrCuY .framer-1dlr1qh > *, .framer-BrCuY .framer-1okvfkl > *, .framer-BrCuY .framer-1tyxle8 > *, .framer-BrCuY .framer-1h16hlv > *, .framer-BrCuY .framer-wdz2xj > *, .framer-BrCuY .framer-dfvhhx > *, .framer-BrCuY .framer-v9cq64 > *, .framer-BrCuY .framer-1xztzkd > *, .framer-BrCuY .framer-ru7l4r > *, .framer-BrCuY .framer-g33gji > *, .framer-BrCuY .framer-1dmb17f > *, .framer-BrCuY .framer-6lj6op > *, .framer-BrCuY .framer-1i7rs3z > *, .framer-BrCuY .framer-10wf3f > *, .framer-BrCuY .framer-1vgpkqb > *, .framer-BrCuY .framer-9exfui > *, .framer-BrCuY .framer-9egsns > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BrCuY .framer-1fa56vi > *, .framer-BrCuY .framer-t5mhxk > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-BrCuY .framer-1fa56vi > :first-child, .framer-BrCuY .framer-1nulvgi > :first-child, .framer-BrCuY .framer-1wmbbvs > :first-child, .framer-BrCuY .framer-1wu5b7f > :first-child, .framer-BrCuY .framer-2oyckp > :first-child, .framer-BrCuY .framer-hgbg5 > :first-child, .framer-BrCuY .framer-1k8efzx > :first-child, .framer-BrCuY .framer-18h9fpq > :first-child, .framer-BrCuY .framer-1w9lthf > :first-child, .framer-BrCuY .framer-1cfgrx1 > :first-child, .framer-BrCuY .framer-1mngid2 > :first-child, .framer-BrCuY .framer-1yk5ock > :first-child, .framer-BrCuY .framer-mpd3cp > :first-child, .framer-BrCuY .framer-t1cloe > :first-child, .framer-BrCuY .framer-1i9i58f > :first-child, .framer-BrCuY .framer-1nckqxh > :first-child, .framer-BrCuY .framer-1nwyqam > :first-child, .framer-BrCuY .framer-1ol1207 > :first-child, .framer-BrCuY .framer-1wc25sq > :first-child, .framer-BrCuY .framer-147b2p3 > :first-child, .framer-BrCuY .framer-1u9lfgt > :first-child, .framer-BrCuY .framer-dvk3bj > :first-child, .framer-BrCuY .framer-1pq0gs3 > :first-child, .framer-BrCuY .framer-lf7cjv > :first-child, .framer-BrCuY .framer-5ukndx > :first-child, .framer-BrCuY .framer-5m62xk > :first-child, .framer-BrCuY .framer-t5mhxk > :first-child, .framer-BrCuY .framer-1x1ixje > :first-child, .framer-BrCuY .framer-17k5dq1 > :first-child, .framer-BrCuY .framer-1yowg4 > :first-child, .framer-BrCuY .framer-vmuaaa > :first-child, .framer-BrCuY .framer-wgt5qp > :first-child, .framer-BrCuY .framer-1rbspkt > :first-child, .framer-BrCuY .framer-1r4k75b > :first-child, .framer-BrCuY .framer-1q3ro5e > :first-child, .framer-BrCuY .framer-wc7ea8 > :first-child, .framer-BrCuY .framer-tsecix > :first-child, .framer-BrCuY .framer-1e51wgu > :first-child, .framer-BrCuY .framer-1b1dyne > :first-child { margin-left: 0px; } .framer-BrCuY .framer-1fa56vi > :last-child, .framer-BrCuY .framer-1nulvgi > :last-child, .framer-BrCuY .framer-1wmbbvs > :last-child, .framer-BrCuY .framer-1wu5b7f > :last-child, .framer-BrCuY .framer-2oyckp > :last-child, .framer-BrCuY .framer-hgbg5 > :last-child, .framer-BrCuY .framer-1k8efzx > :last-child, .framer-BrCuY .framer-18h9fpq > :last-child, .framer-BrCuY .framer-1w9lthf > :last-child, .framer-BrCuY .framer-1cfgrx1 > :last-child, .framer-BrCuY .framer-1mngid2 > :last-child, .framer-BrCuY .framer-1yk5ock > :last-child, .framer-BrCuY .framer-mpd3cp > :last-child, .framer-BrCuY .framer-t1cloe > :last-child, .framer-BrCuY .framer-1i9i58f > :last-child, .framer-BrCuY .framer-1nckqxh > :last-child, .framer-BrCuY .framer-1nwyqam > :last-child, .framer-BrCuY .framer-1ol1207 > :last-child, .framer-BrCuY .framer-1wc25sq > :last-child, .framer-BrCuY .framer-147b2p3 > :last-child, .framer-BrCuY .framer-1u9lfgt > :last-child, .framer-BrCuY .framer-dvk3bj > :last-child, .framer-BrCuY .framer-1pq0gs3 > :last-child, .framer-BrCuY .framer-lf7cjv > :last-child, .framer-BrCuY .framer-5ukndx > :last-child, .framer-BrCuY .framer-5m62xk > :last-child, .framer-BrCuY .framer-t5mhxk > :last-child, .framer-BrCuY .framer-1x1ixje > :last-child, .framer-BrCuY .framer-17k5dq1 > :last-child, .framer-BrCuY .framer-1yowg4 > :last-child, .framer-BrCuY .framer-vmuaaa > :last-child, .framer-BrCuY .framer-wgt5qp > :last-child, .framer-BrCuY .framer-1rbspkt > :last-child, .framer-BrCuY .framer-1r4k75b > :last-child, .framer-BrCuY .framer-1q3ro5e > :last-child, .framer-BrCuY .framer-wc7ea8 > :last-child, .framer-BrCuY .framer-tsecix > :last-child, .framer-BrCuY .framer-1e51wgu > :last-child, .framer-BrCuY .framer-1b1dyne > :last-child { margin-right: 0px; } .framer-BrCuY .framer-1pjzkhp > *, .framer-BrCuY .framer-1vzbf7b > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-BrCuY .framer-1gx8att > *, .framer-BrCuY .framer-ogv4u9 > *, .framer-BrCuY .framer-lexo8o > *, .framer-BrCuY .framer-ck6bge > *, .framer-BrCuY .framer-13uf4l7 > *, .framer-BrCuY .framer-ahh4e2 > *, .framer-BrCuY .framer-socy4p > *, .framer-BrCuY .framer-1cyou6y > *, .framer-BrCuY .framer-efyzn0 > *, .framer-BrCuY .framer-1v9e01e > *, .framer-BrCuY .framer-71wp0q > *, .framer-BrCuY .framer-197bab1 > *, .framer-BrCuY .framer-15v0g98 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BrCuY .framer-1nulvgi > *, .framer-BrCuY .framer-2oyckp > *, .framer-BrCuY .framer-hgbg5 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-BrCuY .framer-1wmbbvs > *, .framer-BrCuY .framer-1wu5b7f > *, .framer-BrCuY .framer-1k8efzx > *, .framer-BrCuY .framer-1w9lthf > *, .framer-BrCuY .framer-1mngid2 > *, .framer-BrCuY .framer-1yk5ock > *, .framer-BrCuY .framer-t1cloe > *, .framer-BrCuY .framer-1i9i58f > *, .framer-BrCuY .framer-1nwyqam > *, .framer-BrCuY .framer-1ol1207 > *, .framer-BrCuY .framer-1wc25sq > *, .framer-BrCuY .framer-147b2p3 > *, .framer-BrCuY .framer-1u9lfgt > *, .framer-BrCuY .framer-dvk3bj > *, .framer-BrCuY .framer-1pq0gs3 > *, .framer-BrCuY .framer-lf7cjv > *, .framer-BrCuY .framer-5ukndx > *, .framer-BrCuY .framer-17k5dq1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BrCuY .framer-n0hzcb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BrCuY .framer-1cfri3j > *, .framer-BrCuY .framer-13n0jev > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BrCuY .framer-18h9fpq > *, .framer-BrCuY .framer-1cfgrx1 > *, .framer-BrCuY .framer-mpd3cp > *, .framer-BrCuY .framer-1nckqxh > *, .framer-BrCuY .framer-1b1dyne > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BrCuY .framer-5m62xk > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-BrCuY .framer-i4bh3e > *, .framer-BrCuY .framer-1oqcuqz > *, .framer-BrCuY .framer-5ya87k > *, .framer-BrCuY .framer-1sq67po > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BrCuY .framer-11g9ox5 > *, .framer-BrCuY .framer-1bq53ko > *, .framer-BrCuY .framer-v0fkky > *, .framer-BrCuY .framer-djxz > *, .framer-BrCuY .framer-4kf6b9 > *, .framer-BrCuY .framer-1nmp65g > *, .framer-BrCuY .framer-155utbe > *, .framer-BrCuY .framer-1ki1ixv > *, .framer-BrCuY .framer-p0pwk1 > *, .framer-BrCuY .framer-f1exxm > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BrCuY .framer-1x1ixje > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-BrCuY .framer-k6v82p > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BrCuY .framer-uchapo > *, .framer-BrCuY .framer-1we6kv7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BrCuY .framer-1yowg4 > *, .framer-BrCuY .framer-vmuaaa > *, .framer-BrCuY .framer-wgt5qp > *, .framer-BrCuY .framer-1rbspkt > *, .framer-BrCuY .framer-1r4k75b > *, .framer-BrCuY .framer-1q3ro5e > *, .framer-BrCuY .framer-wc7ea8 > *, .framer-BrCuY .framer-tsecix > *, .framer-BrCuY .framer-1e51wgu > * { margin: 0px; margin-left: calc(194px / 2); margin-right: calc(194px / 2); } .framer-BrCuY .framer-47ac9q > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-BrCuY[data-border=\"true\"]::after, .framer-BrCuY [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: 1439px) { .framer-BrCuY.framer-72rtr7 { width: 810px; } .framer-BrCuY .framer-1fa56vi { flex-direction: column; padding: 100px 10px 10px 10px; width: 100%; } .framer-BrCuY .framer-1pjzkhp { padding: 0px 20px 0px 20px; width: 100%; } .framer-BrCuY .framer-12v8cov, .framer-BrCuY .framer-7ow0q6, .framer-BrCuY .framer-1cfri3j, .framer-BrCuY .framer-1oo2b8s, .framer-BrCuY .framer-1is39bp, .framer-BrCuY .framer-m5ba92 { width: 100%; } .framer-BrCuY .framer-1ualhie-container { bottom: unset; height: auto; left: 50%; right: unset; top: 50%; transform: translate(-50%, -50%); width: 100%; } .framer-BrCuY .framer-1gx8att { gap: 10px; } .framer-BrCuY .framer-1nulvgi, .framer-BrCuY .framer-2oyckp, .framer-BrCuY .framer-hgbg5 { height: min-content; padding: 10px; width: 100%; } .framer-BrCuY .framer-121l4sk, .framer-BrCuY .framer-luhwjb, .framer-BrCuY .framer-1flw3kh, .framer-BrCuY .framer-jk6lib, .framer-BrCuY .framer-1x57vls { gap: 0px; height: min-content; justify-content: center; } .framer-BrCuY .framer-120c1y8, .framer-BrCuY .framer-1tdzaxp { flex: none; height: 155px; } .framer-BrCuY .framer-11ji6vp, .framer-BrCuY .framer-1t6uxe6, .framer-BrCuY .framer-12aetb0, .framer-BrCuY .framer-1rkryop, .framer-BrCuY .framer-1kdk9f6 { gap: 15px; height: min-content; justify-content: center; padding: 15px; } .framer-BrCuY .framer-1vhopsv, .framer-BrCuY .framer-3ysrn, .framer-BrCuY .framer-1ve8468, .framer-BrCuY .framer-aub8a9 { justify-content: flex-start; width: 100%; } .framer-BrCuY .framer-1cv7b0v, .framer-BrCuY .framer-yewsk4, .framer-BrCuY .framer-1nop5nh, .framer-BrCuY .framer-pdzf1f, .framer-BrCuY .framer-jf2jnh { height: 34px; } .framer-BrCuY .framer-pq7dky-container, .framer-BrCuY .framer-i2sazu-container, .framer-BrCuY .framer-yc910d-container, .framer-BrCuY .framer-sg45oi-container, .framer-BrCuY .framer-1anu79n-container { height: 44px; } .framer-BrCuY .framer-jfyz3o { aspect-ratio: unset; height: 154px; left: calc(50.00000000000002% - min(360px, 90%) / 2); max-height: 524px; max-width: 360px; top: 0px; transform: unset; width: 90%; } .framer-BrCuY .framer-yeb5d6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 153px; justify-content: center; padding: 0px; } .framer-BrCuY .framer-1629lkc { height: 98px; left: unset; order: 0; position: relative; top: unset; width: 300px; } .framer-BrCuY .framer-1uxcsh6 { flex: none; height: 153px; } .framer-BrCuY .framer-1k8efzx { bottom: unset; flex-direction: column; height: 153px; left: calc(50.00000000000002% - 380px / 2); right: unset; top: calc(50.326797385620935% - 153px / 2); width: 380px; } .framer-BrCuY .framer-ogwq7d { height: var(--framer-aspect-ratio-supported, 99px); max-width: 100%; width: 359px; } .framer-BrCuY .framer-n0hzcb { display: block; flex: none; gap: unset; height: 155px; padding: unset; } .framer-BrCuY .framer-m3vd65 { aspect-ratio: unset; height: 114px; left: calc(50.00000000000002% - 333px / 2); position: absolute; top: calc(49.838187702265394% - min(90%, 114px) / 2); width: 333px; } .framer-BrCuY .framer-ogv4u9 { padding: 20px; } .framer-BrCuY .framer-1cfgrx1 { height: 240px; } .framer-BrCuY .framer-1mngid2 { align-self: unset; flex-direction: column; height: 100%; } .framer-BrCuY .framer-jsxxs1 { height: var(--framer-aspect-ratio-supported, 158px); max-height: 90%; max-width: 284px; width: 86%; } .framer-BrCuY .framer-1yk5ock, .framer-BrCuY .framer-1dlr1qh { height: 100%; } .framer-BrCuY .framer-15lch8m { aspect-ratio: 1.3793103448275863 / 1; height: var(--framer-aspect-ratio-supported, 145px); max-height: 90%; max-width: 298px; width: 82%; } .framer-BrCuY .framer-1v2kfyg { height: var(--framer-aspect-ratio-supported, 158px); max-height: 90%; max-width: 290px; width: 87%; } .framer-BrCuY .framer-s4lkh8 { height: var(--framer-aspect-ratio-supported, 142px); max-height: 90%; max-width: 310px; width: 93%; } .framer-BrCuY .framer-9mt6b4 { height: var(--framer-aspect-ratio-supported, 134px); max-height: 80%; max-width: 270px; width: 90%; } .framer-BrCuY .framer-1okvfkl { padding: 0px; } .framer-BrCuY .framer-fol3y4 { height: var(--framer-aspect-ratio-supported, 130px); max-height: 90%; max-width: 344px; width: 90%; } .framer-BrCuY .framer-lexo8o { padding: 60px 10px 60px 10px; } .framer-BrCuY .framer-5m62xk { gap: 35px; } .framer-BrCuY .framer-h9yoqp { aspect-ratio: unset; height: 89px; } .framer-BrCuY .framer-zundac { aspect-ratio: unset; height: 96px; width: 216px; } .framer-BrCuY .framer-1fw7h3l { height: var(--framer-aspect-ratio-supported, 97px); } .framer-BrCuY .framer-ph3xdc { height: var(--framer-aspect-ratio-supported, 48px); width: 215px; } .framer-BrCuY .framer-1c5jr8q { height: var(--framer-aspect-ratio-supported, 50px); width: 228px; } .framer-BrCuY .framer-1q4wdrd { height: var(--framer-aspect-ratio-supported, 96px); } .framer-BrCuY .framer-i4bh3e { padding: 50px; } .framer-BrCuY .framer-cvd2rs, .framer-BrCuY .framer-vx8ehr { justify-content: center; padding: 70px 10px 50px 10px; width: 710px; } .framer-BrCuY .framer-ck6bge, .framer-BrCuY .framer-1cyou6y { min-width: 85%; width: 85%; } .framer-BrCuY .framer-11g9ox5, .framer-BrCuY .framer-4kf6b9 { width: 796fr; } .framer-BrCuY .framer-1g2vl6j, .framer-BrCuY .framer-94iee9 { bottom: unset; height: 61px; top: 74px; } .framer-BrCuY .framer-5bx8y6, .framer-BrCuY .framer-vb79ot { left: calc(50.00000000000002% - 100px / 2); top: -110px; } .framer-BrCuY .framer-a8k24u, .framer-BrCuY .framer-ppowqn { left: calc(50.00000000000002% - 104px / 2); top: -112px; } .framer-BrCuY .framer-1x1ixje { align-content: center; align-items: center; flex-direction: column; gap: 60px; width: 100%; } .framer-BrCuY .framer-6x6r2s { align-content: center; align-items: center; align-self: unset; gap: 60px; height: min-content; justify-content: flex-start; width: 100%; } .framer-BrCuY .framer-v9cq64, .framer-BrCuY .framer-1xztzkd, .framer-BrCuY .framer-ru7l4r { width: 710px; } .framer-BrCuY .framer-1wmxqjk, .framer-BrCuY .framer-vrhtim { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 70px 10px 50px 10px; } .framer-BrCuY .framer-13uf4l7, .framer-BrCuY .framer-ahh4e2 { height: min-content; left: unset; position: relative; top: unset; width: 85%; } .framer-BrCuY .framer-1bq53ko, .framer-BrCuY .framer-v0fkky, .framer-BrCuY .framer-djxz { align-content: center; align-items: center; left: 50%; top: 49%; width: 586px; } .framer-BrCuY .framer-2hik9p, .framer-BrCuY .framer-1fel8t6 { bottom: -79px; left: -46px; } .framer-BrCuY .framer-13sihac, .framer-BrCuY .framer-1xx102i { aspect-ratio: unset; height: 100px; left: calc(50.00000000000002% - 100px / 2); top: -113px; } .framer-BrCuY .framer-17v0oxc, .framer-BrCuY .framer-1cdnrm0 { aspect-ratio: unset; height: 104px; left: calc(50.00000000000002% - 104px / 2); top: -115px; } .framer-BrCuY .framer-165wb6m, .framer-BrCuY .framer-1httfu3 { height: auto; width: 100%; } .framer-BrCuY .framer-1jcyy9l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 70px 10px 50px 10px; } .framer-BrCuY .framer-socy4p { height: min-content; left: unset; min-width: 85%; position: relative; top: unset; width: 85%; } .framer-BrCuY .framer-1jbofse { aspect-ratio: unset; height: 100px; left: calc(50.00000000000002% - 100px / 2); top: -110px; } .framer-BrCuY .framer-1dzudnt { aspect-ratio: unset; height: 104px; left: calc(50.00000000000002% - 104px / 2); top: calc(-117.64705882352939% - 104px / 2); } .framer-BrCuY .framer-1trxc43 { bottom: unset; left: -6%; top: 202%; transform: translate(-50%, -50%); } .framer-BrCuY .framer-uchapo { padding: 30px 30px 60px 30px; } .framer-BrCuY .framer-13n0jev { width: 90%; } .framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu { gap: unset; justify-content: space-between; width: 100%; } .framer-BrCuY .framer-1we6kv7 { align-content: center; align-items: center; width: 100%; } .framer-BrCuY .framer-1vzbf7b { width: 70%; } .framer-BrCuY .framer-1b1dyne { align-self: unset; width: 100%; } .framer-BrCuY .framer-95iap1-container { left: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BrCuY .framer-1fa56vi, .framer-BrCuY .framer-1gx8att, .framer-BrCuY .framer-121l4sk, .framer-BrCuY .framer-11ji6vp, .framer-BrCuY .framer-luhwjb, .framer-BrCuY .framer-1t6uxe6, .framer-BrCuY .framer-1flw3kh, .framer-BrCuY .framer-yeb5d6, .framer-BrCuY .framer-12aetb0, .framer-BrCuY .framer-jk6lib, .framer-BrCuY .framer-1k8efzx, .framer-BrCuY .framer-1rkryop, .framer-BrCuY .framer-1x57vls, .framer-BrCuY .framer-n0hzcb, .framer-BrCuY .framer-1kdk9f6, .framer-BrCuY .framer-1mngid2, .framer-BrCuY .framer-5m62xk, .framer-BrCuY .framer-1x1ixje, .framer-BrCuY .framer-6x6r2s, .framer-BrCuY .framer-1wmxqjk, .framer-BrCuY .framer-vrhtim, .framer-BrCuY .framer-1jcyy9l, .framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu { gap: 0px; } .framer-BrCuY .framer-1fa56vi > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-BrCuY .framer-1fa56vi > :first-child, .framer-BrCuY .framer-1gx8att > :first-child, .framer-BrCuY .framer-121l4sk > :first-child, .framer-BrCuY .framer-11ji6vp > :first-child, .framer-BrCuY .framer-luhwjb > :first-child, .framer-BrCuY .framer-1t6uxe6 > :first-child, .framer-BrCuY .framer-1flw3kh > :first-child, .framer-BrCuY .framer-12aetb0 > :first-child, .framer-BrCuY .framer-jk6lib > :first-child, .framer-BrCuY .framer-1k8efzx > :first-child, .framer-BrCuY .framer-1rkryop > :first-child, .framer-BrCuY .framer-1x57vls > :first-child, .framer-BrCuY .framer-1kdk9f6 > :first-child, .framer-BrCuY .framer-1mngid2 > :first-child, .framer-BrCuY .framer-1x1ixje > :first-child, .framer-BrCuY .framer-6x6r2s > :first-child, .framer-BrCuY .framer-1wmxqjk > :first-child, .framer-BrCuY .framer-vrhtim > :first-child, .framer-BrCuY .framer-1jcyy9l > :first-child { margin-top: 0px; } .framer-BrCuY .framer-1fa56vi > :last-child, .framer-BrCuY .framer-1gx8att > :last-child, .framer-BrCuY .framer-121l4sk > :last-child, .framer-BrCuY .framer-11ji6vp > :last-child, .framer-BrCuY .framer-luhwjb > :last-child, .framer-BrCuY .framer-1t6uxe6 > :last-child, .framer-BrCuY .framer-1flw3kh > :last-child, .framer-BrCuY .framer-12aetb0 > :last-child, .framer-BrCuY .framer-jk6lib > :last-child, .framer-BrCuY .framer-1k8efzx > :last-child, .framer-BrCuY .framer-1rkryop > :last-child, .framer-BrCuY .framer-1x57vls > :last-child, .framer-BrCuY .framer-1kdk9f6 > :last-child, .framer-BrCuY .framer-1mngid2 > :last-child, .framer-BrCuY .framer-1x1ixje > :last-child, .framer-BrCuY .framer-6x6r2s > :last-child, .framer-BrCuY .framer-1wmxqjk > :last-child, .framer-BrCuY .framer-vrhtim > :last-child, .framer-BrCuY .framer-1jcyy9l > :last-child { margin-bottom: 0px; } .framer-BrCuY .framer-1gx8att > *, .framer-BrCuY .framer-1k8efzx > *, .framer-BrCuY .framer-1mngid2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BrCuY .framer-121l4sk > *, .framer-BrCuY .framer-luhwjb > *, .framer-BrCuY .framer-1flw3kh > *, .framer-BrCuY .framer-jk6lib > *, .framer-BrCuY .framer-1x57vls > *, .framer-BrCuY .framer-1wmxqjk > *, .framer-BrCuY .framer-vrhtim > *, .framer-BrCuY .framer-1jcyy9l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BrCuY .framer-11ji6vp > *, .framer-BrCuY .framer-1t6uxe6 > *, .framer-BrCuY .framer-12aetb0 > *, .framer-BrCuY .framer-1rkryop > *, .framer-BrCuY .framer-1kdk9f6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-BrCuY .framer-yeb5d6 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BrCuY .framer-yeb5d6 > :first-child, .framer-BrCuY .framer-5m62xk > :first-child { margin-left: 0px; } .framer-BrCuY .framer-yeb5d6 > :last-child, .framer-BrCuY .framer-5m62xk > :last-child { margin-right: 0px; } .framer-BrCuY .framer-n0hzcb > *, .framer-BrCuY .framer-n0hzcb > :first-child, .framer-BrCuY .framer-n0hzcb > :last-child, .framer-BrCuY .framer-1yowg4 > *, .framer-BrCuY .framer-1yowg4 > :first-child, .framer-BrCuY .framer-1yowg4 > :last-child, .framer-BrCuY .framer-vmuaaa > *, .framer-BrCuY .framer-vmuaaa > :first-child, .framer-BrCuY .framer-vmuaaa > :last-child, .framer-BrCuY .framer-wgt5qp > *, .framer-BrCuY .framer-wgt5qp > :first-child, .framer-BrCuY .framer-wgt5qp > :last-child, .framer-BrCuY .framer-1rbspkt > *, .framer-BrCuY .framer-1rbspkt > :first-child, .framer-BrCuY .framer-1rbspkt > :last-child, .framer-BrCuY .framer-1r4k75b > *, .framer-BrCuY .framer-1r4k75b > :first-child, .framer-BrCuY .framer-1r4k75b > :last-child, .framer-BrCuY .framer-1q3ro5e > *, .framer-BrCuY .framer-1q3ro5e > :first-child, .framer-BrCuY .framer-1q3ro5e > :last-child, .framer-BrCuY .framer-wc7ea8 > *, .framer-BrCuY .framer-wc7ea8 > :first-child, .framer-BrCuY .framer-wc7ea8 > :last-child, .framer-BrCuY .framer-tsecix > *, .framer-BrCuY .framer-tsecix > :first-child, .framer-BrCuY .framer-tsecix > :last-child, .framer-BrCuY .framer-1e51wgu > *, .framer-BrCuY .framer-1e51wgu > :first-child, .framer-BrCuY .framer-1e51wgu > :last-child { margin: 0px; } .framer-BrCuY .framer-5m62xk > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-BrCuY .framer-1x1ixje > *, .framer-BrCuY .framer-6x6r2s > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 809px) { .framer-BrCuY.framer-72rtr7 { width: 390px; } .framer-BrCuY .framer-q51awm-container, .framer-BrCuY .framer-9egsns { order: 0; } .framer-BrCuY .framer-m5n3t3, .framer-BrCuY .framer-1sq67po { order: 1; } .framer-BrCuY .framer-1fa56vi { flex-direction: column; padding: 100px 10px 10px 10px; width: 100%; } .framer-BrCuY .framer-1pjzkhp { padding: 0px 20px 0px 20px; width: 100%; } .framer-BrCuY .framer-12v8cov { align-content: center; align-items: center; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-BrCuY .framer-1ualhie-container { aspect-ratio: 2.4342105263157894 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 152px); left: unset; position: relative; right: unset; top: unset; width: 100%; z-index: 0; } .framer-BrCuY .framer-1nulvgi, .framer-BrCuY .framer-2oyckp, .framer-BrCuY .framer-hgbg5 { flex-direction: column; height: min-content; padding: 10px; width: 100%; } .framer-BrCuY .framer-121l4sk, .framer-BrCuY .framer-luhwjb, .framer-BrCuY .framer-1flw3kh, .framer-BrCuY .framer-jk6lib, .framer-BrCuY .framer-1x57vls { flex: none; height: 314px; width: 100%; } .framer-BrCuY .framer-120c1y8, .framer-BrCuY .framer-1tdzaxp, .framer-BrCuY .framer-n0hzcb { flex: none; height: 45%; } .framer-BrCuY .framer-d3zs5h { max-width: 90%; width: 296px; } .framer-BrCuY .framer-11ji6vp, .framer-BrCuY .framer-1t6uxe6, .framer-BrCuY .framer-12aetb0, .framer-BrCuY .framer-1rkryop, .framer-BrCuY .framer-1kdk9f6 { flex: 1 0 0px; height: 1px; padding: 20px; } .framer-BrCuY .framer-1vhopsv, .framer-BrCuY .framer-3ysrn, .framer-BrCuY .framer-1ve8468, .framer-BrCuY .framer-aub8a9 { justify-content: flex-start; width: 100%; } .framer-BrCuY .framer-1cv7b0v, .framer-BrCuY .framer-yewsk4, .framer-BrCuY .framer-1nop5nh, .framer-BrCuY .framer-pdzf1f, .framer-BrCuY .framer-jf2jnh { height: auto; } .framer-BrCuY .framer-pq7dky-container, .framer-BrCuY .framer-i2sazu-container, .framer-BrCuY .framer-yc910d-container, .framer-BrCuY .framer-1anu79n-container { height: 44px; } .framer-BrCuY .framer-jfyz3o { aspect-ratio: 2.5813953488372094 / 1; height: var(--framer-aspect-ratio-supported, 129px); left: 48%; max-width: 90%; top: 51%; width: 333px; } .framer-BrCuY .framer-1iyaug0, .framer-BrCuY .framer-q0ls8p, .framer-BrCuY .framer-1idd0go, .framer-BrCuY .framer-4ip30u { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-BrCuY .framer-yeb5d6, .framer-BrCuY .framer-1uxcsh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 45%; justify-content: center; padding: 0px; } .framer-BrCuY .framer-1629lkc { height: 118px; left: unset; position: relative; top: unset; width: 295px; } .framer-BrCuY .framer-1k8efzx { bottom: unset; flex-direction: column; height: 141px; left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-BrCuY .framer-ogwq7d { height: var(--framer-aspect-ratio-supported, 127px); max-height: 90%; } .framer-BrCuY .framer-m3vd65 { height: var(--framer-aspect-ratio-supported, 107px); max-width: 90%; width: 312px; } .framer-BrCuY .framer-7ow0q6, .framer-BrCuY .framer-1kzdlb5, .framer-BrCuY .framer-1vzbf7b, .framer-BrCuY .framer-1is39bp, .framer-BrCuY .framer-m5ba92, .framer-BrCuY .framer-1nxla30 { width: 100%; } .framer-BrCuY .framer-1tyxle8, .framer-BrCuY .framer-1vgpkqb { order: 3; } .framer-BrCuY .framer-lexo8o { order: 4; padding: 30px 10px 60px 10px; } .framer-BrCuY .framer-6ss7y8 { height: var(--framer-aspect-ratio-supported, 59px); } .framer-BrCuY .framer-dfvhhx { order: 5; } .framer-BrCuY .framer-82ihhj, .framer-BrCuY .framer-vq1rpi, .framer-BrCuY .framer-ynvwox { height: 51px; } .framer-BrCuY .framer-1i7rs3z { order: 2; } .framer-BrCuY .framer-uchapo { order: 6; padding: 30px 10px 30px 10px; } .framer-BrCuY .framer-13n0jev { gap: 15px; width: 90%; } .framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu { gap: unset; justify-content: space-between; width: 100%; } .framer-BrCuY .framer-1tstasj, .framer-BrCuY .framer-1x702uw, .framer-BrCuY .framer-1upwd5u, .framer-BrCuY .framer-15tuhoh, .framer-BrCuY .framer-19b63kl, .framer-BrCuY .framer-1v8wpsx, .framer-BrCuY .framer-1tyhioj, .framer-BrCuY .framer-hoxgwf, .framer-BrCuY .framer-mur3lm, .framer-BrCuY .framer-7xmpwr, .framer-BrCuY .framer-1ik8ufg, .framer-BrCuY .framer-1lbxx8i, .framer-BrCuY .framer-cxp4p, .framer-BrCuY .framer-1ln8448, .framer-BrCuY .framer-gvid0i, .framer-BrCuY .framer-1hopkpb, .framer-BrCuY .framer-dscomx, .framer-BrCuY .framer-bxjc5 { width: 100px; } .framer-BrCuY .framer-ewszgb, .framer-BrCuY .framer-1yc0gp5, .framer-BrCuY .framer-vq8qde, .framer-BrCuY .framer-82dqqq, .framer-BrCuY .framer-w99lbg, .framer-BrCuY .framer-vtf9lg, .framer-BrCuY .framer-1e0pm58, .framer-BrCuY .framer-pyx3d4, .framer-BrCuY .framer-11kq2db { white-space: pre; width: auto; } .framer-BrCuY .framer-47ac9q { order: 7; padding: 30px 10px 30px 10px; } .framer-BrCuY .framer-1we6kv7 { align-content: center; align-items: center; width: 90%; } .framer-BrCuY .framer-1b1dyne { align-self: unset; width: 100%; } .framer-BrCuY .framer-1dcfytm-container { height: 385px; width: 100%; } .framer-BrCuY .framer-1sxkygf { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BrCuY .framer-1fa56vi, .framer-BrCuY .framer-12v8cov, .framer-BrCuY .framer-1nulvgi, .framer-BrCuY .framer-2oyckp, .framer-BrCuY .framer-yeb5d6, .framer-BrCuY .framer-hgbg5, .framer-BrCuY .framer-1uxcsh6, .framer-BrCuY .framer-1k8efzx, .framer-BrCuY .framer-13n0jev, .framer-BrCuY .framer-1yowg4, .framer-BrCuY .framer-vmuaaa, .framer-BrCuY .framer-wgt5qp, .framer-BrCuY .framer-1rbspkt, .framer-BrCuY .framer-1r4k75b, .framer-BrCuY .framer-1q3ro5e, .framer-BrCuY .framer-wc7ea8, .framer-BrCuY .framer-tsecix, .framer-BrCuY .framer-1e51wgu { gap: 0px; } .framer-BrCuY .framer-1fa56vi > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-BrCuY .framer-1fa56vi > :first-child, .framer-BrCuY .framer-1nulvgi > :first-child, .framer-BrCuY .framer-2oyckp > :first-child, .framer-BrCuY .framer-yeb5d6 > :first-child, .framer-BrCuY .framer-hgbg5 > :first-child, .framer-BrCuY .framer-1uxcsh6 > :first-child, .framer-BrCuY .framer-1k8efzx > :first-child, .framer-BrCuY .framer-13n0jev > :first-child { margin-top: 0px; } .framer-BrCuY .framer-1fa56vi > :last-child, .framer-BrCuY .framer-1nulvgi > :last-child, .framer-BrCuY .framer-2oyckp > :last-child, .framer-BrCuY .framer-yeb5d6 > :last-child, .framer-BrCuY .framer-hgbg5 > :last-child, .framer-BrCuY .framer-1uxcsh6 > :last-child, .framer-BrCuY .framer-1k8efzx > :last-child, .framer-BrCuY .framer-13n0jev > :last-child { margin-bottom: 0px; } .framer-BrCuY .framer-12v8cov > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BrCuY .framer-12v8cov > :first-child { margin-left: 0px; } .framer-BrCuY .framer-12v8cov > :last-child { margin-right: 0px; } .framer-BrCuY .framer-1nulvgi > *, .framer-BrCuY .framer-2oyckp > *, .framer-BrCuY .framer-hgbg5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BrCuY .framer-yeb5d6 > *, .framer-BrCuY .framer-1uxcsh6 > *, .framer-BrCuY .framer-1k8efzx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BrCuY .framer-13n0jev > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-BrCuY .framer-1yowg4 > *, .framer-BrCuY .framer-1yowg4 > :first-child, .framer-BrCuY .framer-1yowg4 > :last-child, .framer-BrCuY .framer-vmuaaa > *, .framer-BrCuY .framer-vmuaaa > :first-child, .framer-BrCuY .framer-vmuaaa > :last-child, .framer-BrCuY .framer-wgt5qp > *, .framer-BrCuY .framer-wgt5qp > :first-child, .framer-BrCuY .framer-wgt5qp > :last-child, .framer-BrCuY .framer-1rbspkt > *, .framer-BrCuY .framer-1rbspkt > :first-child, .framer-BrCuY .framer-1rbspkt > :last-child, .framer-BrCuY .framer-1r4k75b > *, .framer-BrCuY .framer-1r4k75b > :first-child, .framer-BrCuY .framer-1r4k75b > :last-child, .framer-BrCuY .framer-1q3ro5e > *, .framer-BrCuY .framer-1q3ro5e > :first-child, .framer-BrCuY .framer-1q3ro5e > :last-child, .framer-BrCuY .framer-wc7ea8 > *, .framer-BrCuY .framer-wc7ea8 > :first-child, .framer-BrCuY .framer-wc7ea8 > :last-child, .framer-BrCuY .framer-tsecix > *, .framer-BrCuY .framer-tsecix > :first-child, .framer-BrCuY .framer-tsecix > :last-child, .framer-BrCuY .framer-1e51wgu > *, .framer-BrCuY .framer-1e51wgu > :first-child, .framer-BrCuY .framer-1e51wgu > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7297.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mv5HcJ9O_\":{\"layout\":[\"fixed\",\"auto\"]},\"Pj45KAzUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"NiO0UDq0C\":{\"pattern\":\":NiO0UDq0C\",\"name\":\"intro\"},\"sC4Dx2YiF\":{\"pattern\":\":sC4Dx2YiF\",\"name\":\"testimonials\"},\"Yn4svdK3V\":{\"pattern\":\":Yn4svdK3V\",\"name\":\"\"},\"QxXS_bVxQ\":{\"pattern\":\":QxXS_bVxQ\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BrCuY\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7297.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_ukmDSFXjQiQ.woff2\",weight:\"400\"},{family:\"Chivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_FRjukmDSFXjQiQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...TopNavFonts,...RotatingThumbnailFonts,...ViewCaseStudyFonts,...SlideshowFonts,...ShowMoreButtonFonts,...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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mv5HcJ9O_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pj45KAzUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7297.5\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"{\\\"NiO0UDq0C\\\":{\\\"pattern\\\":\\\":NiO0UDq0C\\\",\\\"name\\\":\\\"intro\\\"},\\\"sC4Dx2YiF\\\":{\\\"pattern\\\":\\\":sC4Dx2YiF\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"Yn4svdK3V\\\":{\\\"pattern\\\":\\\":Yn4svdK3V\\\",\\\"name\\\":\\\"\\\"},\\\"QxXS_bVxQ\\\":{\\\"pattern\\\":\\\":QxXS_bVxQ\\\",\\\"name\\\":\\\"contact\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "sync", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1e1frkv", "args", "CycleVariantState", "useOnVariantChange", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerAWreEf71D", "withCSS", "AWreEf71D_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "content2", "content3", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vVy_fh2o5", "wMSrLh_7k", "aZMDCkPrM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapc2ryxy", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerbjHY8VzSE", "withCSS", "bjHY8VzSE_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "TopNavFonts", "getFonts", "aXtxR0byl_default", "RotatingThumbnailFonts", "AWreEf71D_default", "ViewCaseStudyFonts", "ikH2JjdDe_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "ShowMoreButtonFonts", "bjHY8VzSE_default", "FormSparkFonts", "FormSpark_default", "FooterFonts", "UqpqQn_cn_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "transformTemplate2", "animation2", "transition2", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "Link", "SVG", "ResolveLinks", "resolvedLinks", "Image2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
