{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/sLZ7JJ6DBBmf2abY8GO2/HPprlOs5mijN47W2sdUV/LYGNn9j3C.js", "ssg:https://framerusercontent.com/modules/rrdIGcTntBbIYaTCOYsO/zQsbduefnngnzE2BxE0A/OYlmTX1kc.js", "ssg:https://framerusercontent.com/modules/2k0svctvzytHvT0hbBEg/Hsny8i4smlsorwkWunJY/Ssr3nMNc5.js", "ssg:https://framerusercontent.com/modules/2aHmRPrCmNCNx8QZlIRi/0a49L0AkSW5LEF63GtmS/LPlkdq3FM.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ABAExfvWnWin6AYaDnml/04BqV56g9oXMThLwWxCw/jOMsDRTg0.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";const enabledGestures={U1lc73kzr:{hover:true}};const cycleOrder=[\"U1lc73kzr\",\"IAsoN5ZvK\"];const serializationHash=\"framer-NFGTT\";const variantClassNames={IAsoN5ZvK:\"framer-v-67gkgq\",U1lc73kzr:\"framer-v-13pz5mw\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"U1lc73kzr\",\"Variant 2\":\"IAsoN5ZvK\"};const getProps=({background,description,height,id,image,link,number,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,aQBSKC2sL:(_ref=number!==null&&number!==void 0?number:props.aQBSKC2sL)!==null&&_ref!==void 0?_ref:\"01\",d3QIn9tDn:(_ref1=description!==null&&description!==void 0?description:props.d3QIn9tDn)!==null&&_ref1!==void 0?_ref1:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement and brand awareness.\",ILOuZZCvC:(_ref2=background!==null&&background!==void 0?background:props.ILOuZZCvC)!==null&&_ref2!==void 0?_ref2:'var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241)) /* {\"name\":\"Purple\"} */',R2FMrPTdm:link!==null&&link!==void 0?link:props.R2FMrPTdm,TdHSza4Lq:(_ref3=title!==null&&title!==void 0?title:props.TdHSza4Lq)!==null&&_ref3!==void 0?_ref3:\"Revitalized Branding\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"U1lc73kzr\",VQQ2OjQKM:image!==null&&image!==void 0?image:props.VQQ2OjQKM};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,VQQ2OjQKM,aQBSKC2sL,TdHSza4Lq,d3QIn9tDn,ILOuZZCvC,R2FMrPTdm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"U1lc73kzr\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:R2FMrPTdm,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-13pz5mw\",className,classNames)} framer-1r2gm2l`,\"data-framer-name\":\"Variant 1\",initial:variant,layoutDependency:layoutDependency,layoutId:\"U1lc73kzr\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:ILOuZZCvC,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{\"U1lc73kzr-hover\":{backgroundColor:\"var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122))\"}},...addPropertyOverrides({\"U1lc73kzr-hover\":{\"data-framer-name\":undefined},IAsoN5ZvK:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oq6nft\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"NbBKuHCoz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hxzia6\",\"data-framer-name\":\"Number\",layoutDependency:layoutDependency,layoutId:\"NYtPmAJ5i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"# \"})}),className:\"framer-12umf1c\",\"data-framer-name\":\"#\",layoutDependency:layoutDependency,layoutId:\"I6:2579;6:1025\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"U1lc73kzr-hover\":{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"U1lc73kzr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"# \"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"01\"})}),className:\"framer-uzda3\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"LbKs2jPus\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:aQBSKC2sL,variants:{\"U1lc73kzr-hover\":{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"U1lc73kzr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"01\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1of1vzp\",\"data-framer-name\":\"Title + Paragraph\",layoutDependency:layoutDependency,layoutId:\"I6:2579;6:1039\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Revitalized Branding\"})}),className:\"framer-1xf0amq\",\"data-framer-name\":\"Revitalized Branding\",layoutDependency:layoutDependency,layoutId:\"I6:2579;6:1024\",style:{\"--extracted-1eung3n\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:TdHSza4Lq,variants:{\"U1lc73kzr-hover\":{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"U1lc73kzr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Revitalized Branding\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement and brand awareness.\"})}),className:\"framer-p39opc\",\"data-framer-name\":\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement.\",layoutDependency:layoutDependency,layoutId:\"I6:2579;6:1026\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},text:d3QIn9tDn,variants:{\"U1lc73kzr-hover\":{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"U1lc73kzr-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement and brand awareness.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"394px\",...toResponsiveImage(VQQ2OjQKM)},className:\"framer-zxnxkd\",\"data-framer-name\":\"Photo\",layoutDependency:layoutDependency,layoutId:\"RhlK3sjN6\",style:{borderBottomLeftRadius:1e3,borderTopRightRadius:100},...addPropertyOverrides({IAsoN5ZvK:{background:{alt:\"\",fit:\"fill\",sizes:\"264px\",...toResponsiveImage(VQQ2OjQKM)}}},baseVariant,gestureVariant)})]})})})});});const css=['.framer-NFGTT[data-border=\"true\"]::after, .framer-NFGTT [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-NFGTT.framer-1r2gm2l, .framer-NFGTT .framer-1r2gm2l { display: block; }\",\".framer-NFGTT.framer-13pz5mw { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 610px; }\",\".framer-NFGTT .framer-1oq6nft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 32px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-NFGTT .framer-hxzia6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NFGTT .framer-12umf1c, .framer-NFGTT .framer-uzda3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NFGTT .framer-1of1vzp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-NFGTT .framer-1xf0amq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 38%; word-break: break-word; word-wrap: break-word; }\",\".framer-NFGTT .framer-p39opc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NFGTT .framer-zxnxkd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 188px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; width: 394px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NFGTT.framer-13pz5mw, .framer-NFGTT .framer-1oq6nft, .framer-NFGTT .framer-hxzia6, .framer-NFGTT .framer-1of1vzp, .framer-NFGTT .framer-zxnxkd { gap: 0px; } .framer-NFGTT.framer-13pz5mw > *, .framer-NFGTT .framer-zxnxkd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NFGTT.framer-13pz5mw > :first-child, .framer-NFGTT .framer-1oq6nft > :first-child, .framer-NFGTT .framer-1of1vzp > :first-child, .framer-NFGTT .framer-zxnxkd > :first-child { margin-top: 0px; } .framer-NFGTT.framer-13pz5mw > :last-child, .framer-NFGTT .framer-1oq6nft > :last-child, .framer-NFGTT .framer-1of1vzp > :last-child, .framer-NFGTT .framer-zxnxkd > :last-child { margin-bottom: 0px; } .framer-NFGTT .framer-1oq6nft > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-NFGTT .framer-hxzia6 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-NFGTT .framer-hxzia6 > :first-child { margin-left: 0px; } .framer-NFGTT .framer-hxzia6 > :last-child { margin-right: 0px; } .framer-NFGTT .framer-1of1vzp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-NFGTT.framer-v-67gkgq.framer-13pz5mw { cursor: unset; width: 350px; }\",\".framer-NFGTT.framer-v-67gkgq .framer-1oq6nft { gap: 115px; padding: 32px 24px 32px 24px; }\",\".framer-NFGTT.framer-v-67gkgq .framer-1xf0amq { width: 100%; }\",\".framer-NFGTT.framer-v-67gkgq .framer-zxnxkd { height: 152px; width: 264px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NFGTT.framer-v-67gkgq .framer-1oq6nft { gap: 0px; } .framer-NFGTT.framer-v-67gkgq .framer-1oq6nft > * { margin: 0px; margin-bottom: calc(115px / 2); margin-top: calc(115px / 2); } .framer-NFGTT.framer-v-67gkgq .framer-1oq6nft > :first-child { margin-top: 0px; } .framer-NFGTT.framer-v-67gkgq .framer-1oq6nft > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 342\n * @framerIntrinsicWidth 610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IAsoN5ZvK\":{\"layout\":[\"fixed\",\"auto\"]},\"hYr3su4GC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VQQ2OjQKM\":\"image\",\"aQBSKC2sL\":\"number\",\"TdHSza4Lq\":\"title\",\"d3QIn9tDn\":\"description\",\"ILOuZZCvC\":\"background\",\"R2FMrPTdm\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerLYGNn9j3C=withCSS(Component,css,\"framer-NFGTT\");export default FramerLYGNn9j3C;FramerLYGNn9j3C.displayName=\"Stories\";FramerLYGNn9j3C.defaultProps={height:342,width:610};addPropertyControls(FramerLYGNn9j3C,{variant:{options:[\"U1lc73kzr\",\"IAsoN5ZvK\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},VQQ2OjQKM:{title:\"Image\",type:ControlType.ResponsiveImage},aQBSKC2sL:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},TdHSza4Lq:{defaultValue:\"Revitalized Branding\",displayTextArea:false,title:\"Title\",type:ControlType.String},d3QIn9tDn:{defaultValue:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement and brand awareness.\",displayTextArea:true,title:\"Description\",type:ControlType.String},ILOuZZCvC:{defaultValue:'var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241)) /* {\"name\":\"Purple\"} */',title:\"Background\",type:ControlType.Color},R2FMrPTdm:{title:\"Link\",type:ControlType.Link}});addFonts(FramerLYGNn9j3C,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLYGNn9j3C\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"342\",\"framerVariables\":\"{\\\"VQQ2OjQKM\\\":\\\"image\\\",\\\"aQBSKC2sL\\\":\\\"number\\\",\\\"TdHSza4Lq\\\":\\\"title\\\",\\\"d3QIn9tDn\\\":\\\"description\\\",\\\"ILOuZZCvC\\\":\\\"background\\\",\\\"R2FMrPTdm\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IAsoN5ZvK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hYr3su4GC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"610\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LYGNn9j3C.map", "// Generated by Framer (91d32d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ABAExfvWnWin6AYaDnml/04BqV56g9oXMThLwWxCw/jOMsDRTg0.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";const enabledGestures={TtJpP1VlV:{hover:true,pressed:true}};const cycleOrder=[\"TtJpP1VlV\",\"AtisTmg3_\"];const serializationHash=\"framer-spfdN\";const variantClassNames={AtisTmg3_:\"framer-v-1opk68p\",TtJpP1VlV:\"framer-v-6pzk9e\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Dekstop:\"TtJpP1VlV\",Mobile:\"AtisTmg3_\"};const getProps=({background,description,heading,height,icon,iconHover,id,link,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,a1PjvZXUA:(_ref=heading!==null&&heading!==void 0?heading:props.a1PjvZXUA)!==null&&_ref!==void 0?_ref:\"Digital Marketing\",awl_piSGn:icon!==null&&icon!==void 0?icon:props.awl_piSGn,jd4xO8Ne_:(_ref1=background!==null&&background!==void 0?background:props.jd4xO8Ne_)!==null&&_ref1!==void 0?_ref1:'var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241)) /* {\"name\":\"Purple\"} */',reZkHEM0X:(_ref2=description!==null&&description!==void 0?description:props.reZkHEM0X)!==null&&_ref2!==void 0?_ref2:\"Expand your reach, increase conversion rates for your business.\",TfZYOz8sR:link!==null&&link!==void 0?link:props.TfZYOz8sR,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"TtJpP1VlV\",yC9pv7Szv:iconHover!==null&&iconHover!==void 0?iconHover:props.yC9pv7Szv};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,awl_piSGn,yC9pv7Szv,a1PjvZXUA,reZkHEM0X,jd4xO8Ne_,TfZYOz8sR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"TtJpP1VlV\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:TfZYOz8sR,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-6pzk9e\",className,classNames)} framer-brlj9i`,\"data-framer-name\":\"Dekstop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"TtJpP1VlV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:jd4xO8Ne_,borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"none\",...style},variants:{\"TtJpP1VlV-hover\":{backgroundColor:\"var(--token-b6e1e388-6693-4117-ba3d-6232bbbf978f, rgb(254, 214, 122))\",boxShadow:\"1px 2px 12px 0px rgba(34, 34, 34, 0.16)\"},\"TtJpP1VlV-pressed\":{backgroundColor:\"rgb(252, 230, 177)\",boxShadow:\"1px 2px 12px 0px rgba(34, 34, 34, 0.16)\"}},...addPropertyOverrides({\"TtJpP1VlV-hover\":{\"data-framer-name\":undefined},\"TtJpP1VlV-pressed\":{\"data-framer-name\":undefined},AtisTmg3_:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xrphym\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"VOYDSGJ9I\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:64,pixelHeight:64,pixelWidth:64,sizes:\"64px\",...toResponsiveImage(awl_piSGn)},className:\"framer-1me46mq\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"oVLYixiTD\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},...addPropertyOverrides({\"TtJpP1VlV-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:64,pixelHeight:64,pixelWidth:64,sizes:\"64px\",...toResponsiveImage(yC9pv7Szv)}},\"TtJpP1VlV-pressed\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:64,pixelHeight:64,pixelWidth:64,sizes:\"64px\",...toResponsiveImage(yC9pv7Szv)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sdaz5h\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I6:2597;6:968\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Digital Marketing\"})}),className:\"framer-1i7h158\",\"data-framer-name\":\"Digital Marketing\",layoutDependency:layoutDependency,layoutId:\"I6:2597;6:954\",style:{\"--extracted-1eung3n\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:a1PjvZXUA,variants:{\"TtJpP1VlV-hover\":{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},\"TtJpP1VlV-pressed\":{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TtJpP1VlV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Digital Marketing\"})})},\"TtJpP1VlV-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Digital Marketing\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)))\"},children:\"Expand your reach, increase conversion rates for your business.\"})}),className:\"framer-182exk\",\"data-framer-name\":\"Expand your reach, increase conversion rates.\",layoutDependency:layoutDependency,layoutId:\"I6:2597;6:955\",style:{\"--extracted-r6o4lv\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.75},text:reZkHEM0X,variants:{\"TtJpP1VlV-hover\":{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},\"TtJpP1VlV-pressed\":{\"--extracted-r6o4lv\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"TtJpP1VlV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Expand your reach, increase conversion rates for your business.\"})})},\"TtJpP1VlV-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Expand your reach, increase conversion rates for your business.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nsl6p9\",\"data-framer-name\":\"Element\",layoutDependency:layoutDependency,layoutId:\"UQvkQfdYN\",style:{borderBottomRightRadius:20,rotate:-90},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o3hyl\",\"data-framer-name\":\"Element_white\",fill:\"black\",intrinsicHeight:146,intrinsicWidth:147,layoutDependency:layoutDependency,layoutId:\"dg0YtHD5M\",svg:'<svg width=\"147\" height=\"146\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M96 48c0 26.51-21.49 48-48 48H0V48C0 21.49 21.49 0 48 0s48 21.49 48 48Zm0 96c0-26.51 21.49-48 48-48h48v48c0 26.51-21.49 48-48 48s-48-21.49-48-48Zm-96 0c0 26.51 21.49 48 48 48h48v-48c0-26.51-21.49-48-48-48S0 117.49 0 144Zm192-96c0-26.51-21.49-48-48-48H96v48c0 26.51 21.49 48 48 48s48-21.49 48-48Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h147v146H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})})})});});const css=['.framer-spfdN[data-border=\"true\"]::after, .framer-spfdN [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-spfdN.framer-brlj9i, .framer-spfdN .framer-brlj9i { display: block; }\",\".framer-spfdN.framer-6pzk9e { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 32px 32px 32px 32px; position: relative; text-decoration: none; width: 295px; }\",\".framer-spfdN .framer-1xrphym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 110px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-spfdN .framer-1me46mq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-spfdN .framer-sdaz5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-spfdN .framer-1i7h158, .framer-spfdN .framer-182exk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-spfdN .framer-nsl6p9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 146px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; right: -1px; top: 0px; width: 147px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-spfdN .framer-1o3hyl { aspect-ratio: 1.0068493150684932 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 146px); position: relative; width: 147px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-spfdN.framer-6pzk9e, .framer-spfdN .framer-1xrphym, .framer-spfdN .framer-1me46mq, .framer-spfdN .framer-sdaz5h, .framer-spfdN .framer-nsl6p9 { gap: 0px; } .framer-spfdN.framer-6pzk9e > *, .framer-spfdN .framer-1xrphym > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-spfdN.framer-6pzk9e > :first-child, .framer-spfdN .framer-1xrphym > :first-child, .framer-spfdN .framer-1me46mq > :first-child, .framer-spfdN .framer-sdaz5h > :first-child { margin-top: 0px; } .framer-spfdN.framer-6pzk9e > :last-child, .framer-spfdN .framer-1xrphym > :last-child, .framer-spfdN .framer-1me46mq > :last-child, .framer-spfdN .framer-sdaz5h > :last-child { margin-bottom: 0px; } .framer-spfdN .framer-1me46mq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-spfdN .framer-sdaz5h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-spfdN .framer-nsl6p9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-spfdN .framer-nsl6p9 > :first-child { margin-left: 0px; } .framer-spfdN .framer-nsl6p9 > :last-child { margin-right: 0px; } }\",\".framer-spfdN.framer-v-1opk68p.framer-6pzk9e { cursor: unset; height: 300px; width: 335px; }\",\".framer-spfdN.framer-v-1opk68p .framer-1xrphym { padding: 0px 0px 0px 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 444\n * @framerIntrinsicWidth 295\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AtisTmg3_\":{\"layout\":[\"fixed\",\"fixed\"]},\"PJGizl5GI\":{\"layout\":[\"fixed\",\"auto\"]},\"PAs5Tn2X8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"awl_piSGn\":\"icon\",\"yC9pv7Szv\":\"iconHover\",\"a1PjvZXUA\":\"heading\",\"reZkHEM0X\":\"description\",\"jd4xO8Ne_\":\"background\",\"TfZYOz8sR\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerOYlmTX1kc=withCSS(Component,css,\"framer-spfdN\");export default FramerOYlmTX1kc;FramerOYlmTX1kc.displayName=\"Services v1\";FramerOYlmTX1kc.defaultProps={height:444,width:295};addPropertyControls(FramerOYlmTX1kc,{variant:{options:[\"TtJpP1VlV\",\"AtisTmg3_\"],optionTitles:[\"Dekstop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},awl_piSGn:{title:\"Icon\",type:ControlType.ResponsiveImage},yC9pv7Szv:{title:\"Icon (Hover)\",type:ControlType.ResponsiveImage},a1PjvZXUA:{defaultValue:\"Digital Marketing\",displayTextArea:false,title:\"Heading\",type:ControlType.String},reZkHEM0X:{defaultValue:\"Expand your reach, increase conversion rates for your business.\",displayTextArea:true,title:\"Description\",type:ControlType.String},jd4xO8Ne_:{defaultValue:'var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241)) /* {\"name\":\"Purple\"} */',title:\"Background\",type:ControlType.Color},TfZYOz8sR:{title:\"Link\",type:ControlType.Link}});addFonts(FramerOYlmTX1kc,[...sharedStyle.fonts,...sharedStyle1.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOYlmTX1kc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"awl_piSGn\\\":\\\"icon\\\",\\\"yC9pv7Szv\\\":\\\"iconHover\\\",\\\"a1PjvZXUA\\\":\\\"heading\\\",\\\"reZkHEM0X\\\":\\\"description\\\",\\\"jd4xO8Ne_\\\":\\\"background\\\",\\\"TfZYOz8sR\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"295\",\"framerIntrinsicHeight\":\"444\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AtisTmg3_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PJGizl5GI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PAs5Tn2X8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OYlmTX1kc.map", "// Generated by Framer (36a78eb)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as i,cx as n,Image as o,RichText as s,SVG as l,useLocaleInfo as f,useVariantState as c,withCSS as d}from\"framer\";import{LayoutGroup as m,motion as p,MotionConfigContext as x}from\"framer-motion\";import*as u from\"react\";import*as g from\"https://framerusercontent.com/modules/guxJM7TWgG5Hp9VcNBXE/THnDWi6bEiOcgb9jUN6p/CK9MmPcy8.js\";import*as h from\"https://framerusercontent.com/modules/dR88dVGobcwUC33bT2ct/vUGiRxSsGq6HbYP3q2dF/vpCobN6jJ.js\";import*as y from\"https://framerusercontent.com/modules/Ru6giAWwqYzA5NbiKcUu/ld5x7q4npPlroNGW5QwP/Ygnv75AQg.js\";let v=[\"jzvyrYk63\"],b=\"framer-ucxDf\",w={jzvyrYk63:\"framer-v-11816ad\"};function D(e,...r){let a={};return null==r||r.forEach(r=>r&&Object.assign(a,e[r])),a;}let C={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},N=e=>\"object\"==typeof e&&null!==e&&\"string\"==typeof e.src?e:\"string\"==typeof e?{src:e}:void 0,R=({value:r,children:a})=>{let t=u.useContext(x),i=null!=r?r:t.transition,n=u.useMemo(()=>({...t,transition:i}),[JSON.stringify(i)]);return /*#__PURE__*/e(x.Provider,{value:n,children:a});},k=({height:e,id:r,image:a,name1:t,position:i,testimoni:n,width:o,...s})=>{var l,f,c;return{...s,HRgRvL1pd:null!==(l=null!=i?i:s.HRgRvL1pd)&&void 0!==l?l:\"CEO of Rawboat Company\",iecfVteJc:null!=a?a:s.iecfVteJc,mRMe2McTE:null!==(f=null!=t?t:s.mRMe2McTE)&&void 0!==f?f:\"text\",VSNJ94ATG:null!==(c=null!=n?n:s.VSNJ94ATG)&&void 0!==c?c:\"DigiCraft has transformed our digital presence and brought significant growth to our business. Their team is creative, responsive, and a pleasure to work with. Their strategic approach and creative ideas have signifi-cantly boosted our brand's digital visibility and engagement!\"};},T=(e,r)=>r.join(\"-\")+e.layoutDependency,j=/*#__PURE__*/u.forwardRef(function(a,t){let{activeLocale:i}=f(),{style:d,className:x,layoutId:b,variant:D,VSNJ94ATG:j,iecfVteJc:I,mRMe2McTE:E,HRgRvL1pd:L,...P}=k(a),{baseVariant:V,classNames:A,gestureVariant:M,setGestureState:z,setVariant:S,transition:J,variants:B}=c({cycleOrder:v,defaultVariant:\"jzvyrYk63\",transitions:C,variant:D,variantClassNames:w}),H=T(a,B),O=u.useRef(null),_=u.useId(),F=[y.className,g.className,h.className];return /*#__PURE__*/e(m,{id:null!=b?b:_,children:/*#__PURE__*/e(p.div,{initial:D,animate:B,onHoverStart:()=>z({isHovered:!0}),onHoverEnd:()=>z({isHovered:!1}),onTapStart:()=>z({isPressed:!0}),onTap:()=>z({isPressed:!1}),onTapCancel:()=>z({isPressed:!1}),className:n(\"framer-ucxDf\",...F,A),style:{display:\"contents\"},children:/*#__PURE__*/e(R,{value:J,children:/*#__PURE__*/e(p.div,{...P,className:n(\"framer-11816ad\",x),\"data-framer-name\":\"Variant 1\",layoutDependency:H,layoutId:\"jzvyrYk63\",ref:null!=t?t:O,style:{backgroundColor:\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 5px 40px 0px rgba(0, 0, 0, 0.05000000074505806)\",...d},children:/*#__PURE__*/r(p.div,{className:\"framer-1t0wie4\",\"data-framer-name\":\"Container\",layoutDependency:H,layoutId:\"R9kdNa3lM\",children:[/*#__PURE__*/r(p.div,{className:\"framer-ca04ex\",\"data-framer-name\":\"Review\",layoutDependency:H,layoutId:\"wWaNDGfy6\",children:[/*#__PURE__*/e(l,{className:\"framer-qsvhwp\",\"data-framer-name\":\"Quote Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:30,layoutDependency:H,layoutId:\"M8XiDTjA6\",svg:'<svg width=\"30\" height=\"24\" viewBox=\"0 0 30 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.3034 1.94118C28.9888 3.88235 30 6 30 9.52941C30 15.7059 25.7865 21.1765 19.8876 24L18.3708 21.7059C23.9326 18.5294 25.1124 14.4706 25.4494 11.8235C24.6067 12.3529 23.427 12.5294 22.2472 12.3529C19.2135 12 16.8539 9.52941 16.8539 6.17647C16.8539 4.58824 17.5281 3 18.5393 1.76471C19.7191 0.529412 21.0674 0 22.7528 0C24.6067 0 26.2921 0.882354 27.3034 1.94118ZM10.4494 1.94118C12.1348 3.88235 13.1461 6 13.1461 9.52941C13.1461 15.7059 8.93258 21.1765 3.03371 24L1.51685 21.7059C7.07865 18.5294 8.25843 14.4706 8.59551 11.8235C7.75281 12.3529 6.57303 12.5294 5.39326 12.3529C2.35955 12 0 9.35294 0 6.17647C0 4.58824 0.674157 3 1.68539 1.76471C2.86517 0.529412 4.21348 0 5.89888 0C7.75281 0 9.4382 0.882354 10.4494 1.94118Z\" fill=\"#FED67A\"/>\\n</svg>\\n',withExternalLayout:!0}),/*#__PURE__*/e(s,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(u.Fragment,{children:/*#__PURE__*/e(p.h4,{className:\"framer-styles-preset-1vr7pdk\",\"data-styles-preset\":\"Ygnv75AQg\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"DigiCraft has transformed our digital presence and brought significant growth to our business. Their team is creative, responsive, and a pleasure to work with. Their strategic approach and creative ideas have signifi-cantly boosted our brand's digital visibility and engagement!\"})}),className:\"framer-g8pley\",\"data-framer-name\":\"DigiCraft has transformed our digital presence and brought significant growth to our business. Their team is creative, responsive, and a pleasure to work with. Their strategic approach and creative ideas have signifi-cantly boosted our brand's digital visibility and engagement!\",layoutDependency:H,layoutId:\"sck7cCcN7\",style:{\"--extracted-1eung3n\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:j,verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/r(p.div,{className:\"framer-ncowys\",\"data-framer-name\":\"Name\",layoutDependency:H,layoutId:\"xVkLRNPPi\",children:[/*#__PURE__*/e(o,{background:{alt:\"\",fit:\"fill\",sizes:\"56px\",...N(I)},className:\"framer-1r920dt\",\"data-framer-name\":\"Photo\",layoutDependency:H,layoutId:\"XGji5BOFB\",style:{borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36}}),/*#__PURE__*/r(p.div,{className:\"framer-h47hbv\",\"data-framer-name\":\"Text\",layoutDependency:H,layoutId:\"IOnWhWVx_\",children:[/*#__PURE__*/e(s,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(u.Fragment,{children:/*#__PURE__*/e(p.h6,{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34)))\"},children:\"Peter Shaw\"})}),className:\"framer-61zb02\",\"data-framer-name\":\"Peter Shaw\",layoutDependency:H,layoutId:\"fkkuQoVBn\",style:{\"--extracted-1w1cjl5\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:E,verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(s,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(u.Fragment,{children:/*#__PURE__*/e(p.p,{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"CEO of Rawboat Company\"})}),className:\"framer-j7zyi7\",\"data-framer-name\":\"CEO of Rawboat Company\",layoutDependency:H,layoutId:\"NPn5DrF9q\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.75},text:L,verticalAlignment:\"top\",withExternalLayout:!0})]})]})]})})})})});}),I=['.framer-ucxDf [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-ucxDf .framer-1edbldm { display: block; }\",\".framer-ucxDf .framer-11816ad { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 40px 40px 40px; position: relative; width: 1240px; }\",\".framer-ucxDf .framer-1t0wie4 { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ucxDf .framer-ca04ex { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ucxDf .framer-qsvhwp { flex: none; height: 24px; position: relative; width: 30px; }\",\".framer-ucxDf .framer-g8pley { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ucxDf .framer-ncowys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ucxDf .framer-1r920dt { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ucxDf .framer-h47hbv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-ucxDf .framer-61zb02, .framer-ucxDf .framer-j7zyi7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ucxDf .framer-11816ad, .framer-ucxDf .framer-1t0wie4, .framer-ucxDf .framer-ca04ex, .framer-ucxDf .framer-ncowys, .framer-ucxDf .framer-1r920dt, .framer-ucxDf .framer-h47hbv { gap: 0px; } .framer-ucxDf .framer-11816ad > *, .framer-ucxDf .framer-1t0wie4 > *, .framer-ucxDf .framer-ca04ex > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ucxDf .framer-11816ad > :first-child, .framer-ucxDf .framer-1t0wie4 > :first-child, .framer-ucxDf .framer-ca04ex > :first-child, .framer-ucxDf .framer-1r920dt > :first-child, .framer-ucxDf .framer-h47hbv > :first-child { margin-top: 0px; } .framer-ucxDf .framer-11816ad > :last-child, .framer-ucxDf .framer-1t0wie4 > :last-child, .framer-ucxDf .framer-ca04ex > :last-child, .framer-ucxDf .framer-1r920dt > :last-child, .framer-ucxDf .framer-h47hbv > :last-child { margin-bottom: 0px; } .framer-ucxDf .framer-ncowys > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ucxDf .framer-ncowys > :first-child { margin-left: 0px; } .framer-ucxDf .framer-ncowys > :last-child { margin-right: 0px; } .framer-ucxDf .framer-1r920dt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ucxDf .framer-h47hbv > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...y.css,...g.css,...h.css],E=d(j,I,\"framer-ucxDf\");export default E;E.displayName=\"Testimonial\",E.defaultProps={height:368,width:1240},t(E,{VSNJ94ATG:{defaultValue:\"DigiCraft has transformed our digital presence and brought significant growth to our business. Their team is creative, responsive, and a pleasure to work with. Their strategic approach and creative ideas have signifi-cantly boosted our brand's digital visibility and engagement!\",displayTextArea:!0,title:\"Testimoni\",type:i.String},iecfVteJc:{title:\"Image\",type:i.ResponsiveImage},mRMe2McTE:{defaultValue:\"text\",displayTextArea:!1,title:\"Name\",type:i.String},HRgRvL1pd:{defaultValue:\"CEO of Rawboat Company\",displayTextArea:!1,title:\"Position\",type:i.String}}),a(E,[...y.fonts,...g.fonts,...h.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSsr3nMNc5\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"VSNJ94ATG\\\":\\\"testimoni\\\",\\\"iecfVteJc\\\":\\\"image\\\",\\\"mRMe2McTE\\\":\\\"name1\\\",\\\"HRgRvL1pd\\\":\\\"position\\\"}\",\"framerIntrinsicWidth\":\"1240\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"368\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import PricingPlanMonthlyYearly from\"#framer/local/canvasComponent/gfp9S0fPV/gfp9S0fPV.js\";import BlogV1 from\"#framer/local/canvasComponent/j8ZPoA0cg/j8ZPoA0cg.js\";import PrimaryButton from\"#framer/local/canvasComponent/Kain7XeUB/Kain7XeUB.js\";import Stories from\"#framer/local/canvasComponent/LYGNn9j3C/LYGNn9j3C.js\";import ButtonBuyCopy from\"#framer/local/canvasComponent/Mcyif8s0K/Mcyif8s0K.js\";import ServicesV1 from\"#framer/local/canvasComponent/OYlmTX1kc/OYlmTX1kc.js\";import SecondaryButton from\"#framer/local/canvasComponent/PrJYCwVx9/PrJYCwVx9.js\";import FooterV1 from\"#framer/local/canvasComponent/RdtLcV8UA/RdtLcV8UA.js\";import FAQV2 from\"#framer/local/canvasComponent/SfPyxiKzN/SfPyxiKzN.js\";import Testimonial from\"#framer/local/canvasComponent/Ssr3nMNc5/Ssr3nMNc5.js\";import Navigation from\"#framer/local/canvasComponent/SuP86C0Kg/SuP86C0Kg.js\";import Services from\"#framer/local/collection/pi_t1SB7e/pi_t1SB7e.js\";import Blog from\"#framer/local/collection/wknzkw37V/wknzkw37V.js\";import*as sharedStyle3 from\"#framer/local/css/CK9MmPcy8/CK9MmPcy8.js\";import*as sharedStyle4 from\"#framer/local/css/jOMsDRTg0/jOMsDRTg0.js\";import*as sharedStyle2 from\"#framer/local/css/p1JB7TT7p/p1JB7TT7p.js\";import*as sharedStyle from\"#framer/local/css/rekGNLphG/rekGNLphG.js\";import*as sharedStyle1 from\"#framer/local/css/vpCobN6jJ/vpCobN6jJ.js\";import metadataProvider from\"#framer/local/webPageMetadata/LPlkdq3FM/LPlkdq3FM.js\";const NavigationFonts=getFonts(Navigation);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const PrimaryButtonFonts=getFonts(PrimaryButton);const SecondaryButtonFonts=getFonts(SecondaryButton);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const ServicesV1Fonts=getFonts(ServicesV1);const StoriesFonts=getFonts(Stories);const TestimonialFonts=getFonts(Testimonial);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const PricingPlanMonthlyYearlyFonts=getFonts(PricingPlanMonthlyYearly);const FAQV2Fonts=getFonts(FAQV2);const BlogV1Fonts=getFonts(BlogV1);const FooterV1Fonts=getFonts(FooterV1);const ButtonBuyCopyFonts=getFonts(ButtonBuyCopy);const cycleOrder=[\"bHUqNFjpq\",\"BOC3J5Kza\",\"HFZRCTw4h\",\"H6LOoIHW9\"];const breakpoints={bHUqNFjpq:\"(min-width: 1440px)\",BOC3J5Kza:\"(min-width: 810px) and (max-width: 1199px)\",H6LOoIHW9:\"(min-width: 1200px) and (max-width: 1439px)\",HFZRCTw4h:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7TF14\";const variantClassNames={bHUqNFjpq:\"framer-v-1fwa4eb\",BOC3J5Kza:\"framer-v-9vr8w0\",H6LOoIHW9:\"framer-v-14ggkru\",HFZRCTw4h:\"framer-v-130eim6\"};const transition1={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition2={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition3={damping:20,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:-150,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:150,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition4={delay:0,duration:4,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition5={delay:.5,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"bHUqNFjpq\",Laptop:\"H6LOoIHW9\",Phone:\"HFZRCTw4h\",Tablet:\"BOC3J5Kza\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bHUqNFjpq\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,h1zN12YJYgX57os3nL,je2EDFFuvgX57os3nL,hrGISsCpGgX57os3nL,QgiUwH4wdgX57os3nL,dXNW3d5czgX57os3nL,idgX57os3nL,MI6eD4eWrq0Ae9Pb9f,ePglR8UHBq0Ae9Pb9f,AEpFi1K4Gq0Ae9Pb9f,PLvqxTEFbq0Ae9Pb9f,zAJeq4UQ3q0Ae9Pb9f,lnYhhfWd8q0Ae9Pb9f,ZerSptMOiq0Ae9Pb9f,idq0Ae9Pb9f,zAJeq4UQ3Ol9zi9mth,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-7TF14`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-7TF14`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"bHUqNFjpq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fwa4eb\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-uarvsw\",\"data-framer-appear-id\":\"uarvsw\",\"data-framer-name\":\"Menu\",initial:animation1,name:\"Menu\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q2vqn3-container\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{variant:\"cTbD5DWjo\"},HFZRCTw4h:{variant:\"cTbD5DWjo\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"AndFyfPEL\",layoutId:\"AndFyfPEL\",name:\"Navigation\",style:{width:\"100%\"},variant:\"acv3zHcSp\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-r54p03\",\"data-framer-appear-id\":\"r54p03\",\"data-framer-name\":\"Hero Section\",initial:animation1,name:\"Hero Section\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xt23uz\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-463dng\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HFZRCTw4h:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hn4utp\",\"data-framer-name\":\"Texts\",name:\"Texts\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sv21oc\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2nr7ka\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1cftb3z\",\"data-styles-preset\":\"rekGNLphG\",children:[\"Carve Your Success\",/*#__PURE__*/_jsx(\"br\",{}),\"with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\"},children:\"Digicraft\"})]})}),className:\"framer-1fudt4e\",\"data-framer-name\":\"Carve Your Success with Digicraft\",fonts:[\"Inter\"],name:\"Carve Your Success with Digicraft\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"Empowering businesses with innovative digital solutions that create lasting impressions. Elevate your brand with us!\"})}),className:\"framer-1p40r70\",\"data-framer-name\":\"Empowering businesses with innovative digital solutions that create lasting impressions. Elevate your brand with us!\",fonts:[\"Inter\"],name:\"Empowering businesses with innovative digital solutions that create lasting impressions. Elevate your brand with us!\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4r2ayz\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o4ynez-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{jmC9WFiAE:resolvedLinks[1]},H6LOoIHW9:{jmC9WFiAE:resolvedLinks[3]},HFZRCTw4h:{jmC9WFiAE:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"qaTffit7I\",jmC9WFiAE:resolvedLinks[0],layoutId:\"qaTffit7I\",variant:\"GQDyAb1zp\",width:\"100%\",yudgrvSht:\"Get Free Consultation\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4eozas-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{G8hBdvW_C:resolvedLinks1[1]},H6LOoIHW9:{G8hBdvW_C:resolvedLinks1[3]},HFZRCTw4h:{G8hBdvW_C:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"Explore Services\",G8hBdvW_C:resolvedLinks1[0],height:\"100%\",id:\"Zfs_IxvCo\",layoutId:\"Zfs_IxvCo\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1peqehd\",\"data-framer-name\":\"Numbers\",name:\"Numbers\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"Worked with\"})}),className:\"framer-1q0eodm\",\"data-framer-name\":\"Worked with\",fonts:[\"Inter\"],name:\"Worked with\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbvzgf\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yno7as\",\"data-framer-name\":\"Item 1\",name:\"Item 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"100+\"})}),className:\"framer-cyac34\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Clients & Partnerships\"})}),className:\"framer-evv3vb\",\"data-framer-name\":\"Clients & Partnerships\",fonts:[\"Inter\"],name:\"Clients & Partnerships\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xad94\",\"data-framer-name\":\"Item 1\",name:\"Item 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"80%\"})}),className:\"framer-65qy43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-esmzaz\",\"data-styles-preset\":\"CK9MmPcy8\",style:{\"--framer-text-color\":\"var(--token-267c98c0-f3e5-410a-939d-4826c308573b, rgb(34, 34, 34))\"},children:\"Project Succession Rate\"})}),className:\"framer-1ugp6if\",\"data-framer-name\":\"Clients & Partnerships\",fonts:[\"Inter\"],name:\"Clients & Partnerships\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:584,pixelHeight:496,pixelWidth:584,sizes:\"710px\",src:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg\",srcSet:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg 584w\"}},H6LOoIHW9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:584,pixelHeight:496,pixelWidth:584,sizes:\"523px\",src:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg\",srcSet:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg 584w\"}},HFZRCTw4h:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:584,pixelHeight:496,pixelWidth:584,sizes:\"350px\",src:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg\",srcSet:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg 584w\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:584,pixelHeight:496,pixelWidth:584,sizes:\"584px\",src:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg\",srcSet:\"https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hQe576KDTVasXFiDf8fxkIQPA.svg 584w\"},className:\"framer-doa290\",\"data-framer-name\":\"Images\",name:\"Images\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112,intrinsicWidth:220,pixelHeight:112,pixelWidth:220,src:\"https://framerusercontent.com/images/wuDEiFhUee9ciVYjRKTpR46u78.svg\"},className:\"framer-qnp8n\",\"data-framer-name\":\"Logo\",name:\"Logo\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5z1o1h\",\"data-framer-name\":\"Services\",name:\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ngz1y\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mutaq\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"SERVICES\"})}),className:\"framer-iyn7k9\",\"data-framer-name\":\"SERVICES\",fonts:[\"Inter\"],name:\"SERVICES\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Expertise\"})}),className:\"framer-14yv9el\",\"data-framer-name\":\"Our Expertise\",fonts:[\"Inter\"],name:\"Our Expertise\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8qoe7\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16a19kn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"default\",name:\"h1zN12YJY\",type:\"Identifier\"},{collection:\"default\",name:\"je2EDFFuv\",type:\"Identifier\"},{collection:\"default\",name:\"hrGISsCpG\",type:\"Identifier\"},{collection:\"default\",name:\"QgiUwH4wd\",type:\"Identifier\"},{collection:\"default\",name:\"dXNW3d5cz\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"h1zN12YJY\":h1zN12YJYgX57os3nL,\"je2EDFFuv\":je2EDFFuvgX57os3nL,\"hrGISsCpG\":hrGISsCpGgX57os3nL,\"QgiUwH4wd\":QgiUwH4wdgX57os3nL,\"dXNW3d5cz\":dXNW3d5czgX57os3nL,\"id\":idgX57os3nL},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`gX57os3nL-${idgX57os3nL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dXNW3d5cz:dXNW3d5czgX57os3nL},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{dXNW3d5cz:dXNW3d5czgX57os3nL},webPageId:\"L8BiRCy5A\"},implicitPathVariables:undefined},{href:{pathVariables:{dXNW3d5cz:dXNW3d5czgX57os3nL},webPageId:\"L8BiRCy5A\"},implicitPathVariables:undefined},{href:{pathVariables:{dXNW3d5cz:dXNW3d5czgX57os3nL},webPageId:\"L8BiRCy5A\"},implicitPathVariables:undefined},{href:{pathVariables:{dXNW3d5cz:dXNW3d5czgX57os3nL},webPageId:\"L8BiRCy5A\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation,className:\"framer-1f4mqbq-container\",\"data-framer-appear-id\":\"1f4mqbq\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{TfZYOz8sR:resolvedLinks2[1],variant:\"AtisTmg3_\"},H6LOoIHW9:{TfZYOz8sR:resolvedLinks2[3]},HFZRCTw4h:{TfZYOz8sR:resolvedLinks2[2],variant:\"AtisTmg3_\"}},children:/*#__PURE__*/_jsx(ServicesV1,{a1PjvZXUA:hrGISsCpGgX57os3nL,awl_piSGn:toResponsiveImage(h1zN12YJYgX57os3nL),height:\"100%\",id:\"ozMKAuurO\",jd4xO8Ne_:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\",layoutId:\"ozMKAuurO\",reZkHEM0X:QgiUwH4wdgX57os3nL,style:{height:\"100%\",width:\"100%\"},TfZYOz8sR:resolvedLinks2[0],variant:\"TtJpP1VlV\",width:\"100%\",yC9pv7Szv:toResponsiveImage(je2EDFFuvgX57os3nL)})})})})})})},idgX57os3nL);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined},{href:{webPageId:\"V4RudC6Qs\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k2hjoc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{G8hBdvW_C:resolvedLinks3[1]},H6LOoIHW9:{G8hBdvW_C:resolvedLinks3[3]},HFZRCTw4h:{G8hBdvW_C:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More Services\",G8hBdvW_C:resolvedLinks3[0],height:\"100%\",id:\"kvPDhThyZ\",layoutId:\"kvPDhThyZ\",style:{maxWidth:\"100%\"},variant:\"eBv5VeVvL\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xw40m0\",\"data-framer-name\":\"About\",name:\"About\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c28rgt\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:776,pixelHeight:496,pixelWidth:776,sizes:\"710px\",src:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg\",srcSet:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg 776w\"}},H6LOoIHW9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:776,pixelHeight:496,pixelWidth:776,sizes:\"567px\",src:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg\",srcSet:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg 776w\"}},HFZRCTw4h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:776,pixelHeight:496,pixelWidth:776,sizes:\"350px\",src:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg\",srcSet:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg 776w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:496,intrinsicWidth:776,pixelHeight:496,pixelWidth:776,sizes:\"776px\",src:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg\",srcSet:\"https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IU9Bq2BrTS6Yojno7DOJVnV3Y.svg 776w\"},className:\"framer-11kp8pd\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tkzc4s\",\"data-framer-name\":\"Element 1\",name:\"Element 1\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dvvdia\",\"data-framer-name\":\"parallelogram_1\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:28,name:\"parallelogram_1\",svg:'<svg width=\"28\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m0 13.745 13.734 13.746L27.47 13.745 13.734 0 0 13.745Z\" fill=\"#FED67A\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qz3i0i\",\"data-framer-name\":\"Element 2\",name:\"Element 2\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7wa19i\",\"data-framer-name\":\"parallelogram_2\",fill:\"black\",intrinsicHeight:17,intrinsicWidth:17,name:\"parallelogram_2\",svg:'<svg width=\"17\" height=\"17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m.34 8.336 8.33 8.337L17 8.336 8.67 0 .34 8.336Z\" fill=\"#766DF1\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ctuyvg\",\"data-framer-name\":\"Element 3\",name:\"Element 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12j4b75\",\"data-framer-name\":\"parallelogram_3\",fill:\"black\",intrinsicHeight:13,intrinsicWidth:13,name:\"parallelogram_3\",svg:'<svg width=\"13\" height=\"13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m0 6.504 6.498 6.504 6.499-6.504L6.498 0 0 6.504Z\" fill=\"#6AD9C5\"/></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8u9m6k\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z3ucj3\",\"data-framer-name\":\"Title + Desc\",name:\"Title + Desc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wldnhm\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMzAw\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"ABOUT\"})}),className:\"framer-f5dnr2\",\"data-framer-name\":\"ABOUT\",fonts:[\"GF;Helvetica Neue-300\"],name:\"ABOUT\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:[\"Your Trusted\",/*#__PURE__*/_jsx(\"br\",{}),\"Digital Partner\"]})}),className:\"framer-11jguch\",\"data-framer-name\":\"Your Trusted Digital Partner\",fonts:[\"Inter\"],name:\"Your Trusted Digital Partner\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"We are a team of passionate digital experts dedicated to helping client businesses thrive online. With years of proven track record of delivering outstanding digital results.\"})}),className:\"framer-mkgpd5\",\"data-framer-name\":\"We are a team of passionate digital experts dedicated to helping client businesses thrive online. With years of proven track record of delivering outstanding digital results.\",fonts:[\"GF;Helvetica Neue-regular\"],name:\"We are a team of passionate digital experts dedicated to helping client businesses thrive online. With years of proven track record of delivering outstanding digital results.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2w56w\",\"data-framer-name\":\"Button \",name:\"Button \",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Wg62lCToF\"},implicitPathVariables:undefined},{href:{webPageId:\"Wg62lCToF\"},implicitPathVariables:undefined},{href:{webPageId:\"Wg62lCToF\"},implicitPathVariables:undefined},{href:{webPageId:\"Wg62lCToF\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fs9fqu-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{G8hBdvW_C:resolvedLinks4[1]},H6LOoIHW9:{G8hBdvW_C:resolvedLinks4[3]},HFZRCTw4h:{G8hBdvW_C:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More About Us\",G8hBdvW_C:resolvedLinks4[0],height:\"100%\",id:\"fg1aVfrVh\",layoutId:\"fg1aVfrVh\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-46binb\",\"data-framer-name\":\"Case Study\",name:\"Case Study\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1zxu14\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fam40i\",\"data-framer-name\":\"Title + Texts\",name:\"Title + Texts\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dy0bbg\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"CASE STUDIES\"})}),className:\"framer-1o7klbk\",\"data-framer-name\":\"CASE STUDIES\",fonts:[\"Inter\"],name:\"CASE STUDIES\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Success Stories\"})}),className:\"framer-sous6k\",\"data-framer-name\":\"Success Stories\",fonts:[\"Inter\"],name:\"Success Stories\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3o44f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s8vbpy\",\"data-styles-preset\":\"jOMsDRTg0\",children:\"Discover how we have helped businesses like yours achieving remarkable success, and envision what we can do for your brand.\"})}),className:\"framer-1a7dfap\",\"data-framer-name\":\"Discover how we have helped businesses like yours achieving remarkable success, and envision what we can do for your brand.\",fonts:[\"Inter\"],name:\"Discover how we have helped businesses like yours achieving remarkable success, and envision what we can do for your brand.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined},{href:{webPageId:\"XtIRYsvL5\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12prhez-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{jmC9WFiAE:resolvedLinks5[1]},H6LOoIHW9:{jmC9WFiAE:resolvedLinks5[3]},HFZRCTw4h:{jmC9WFiAE:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"QkY7tvHwn\",jmC9WFiAE:resolvedLinks5[0],layoutId:\"QkY7tvHwn\",variant:\"GQDyAb1zp\",width:\"100%\",yudgrvSht:\"See More\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xztk5h\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{WVYJ1S2ds:\"revitalized-branding\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"TyuLAuI9W\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"revitalized-branding\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"TyuLAuI9W\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"revitalized-branding\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"TyuLAuI9W\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"revitalized-branding\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"TyuLAuI9W\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckm5kk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{R2FMrPTdm:resolvedLinks6[1]},H6LOoIHW9:{R2FMrPTdm:resolvedLinks6[3]},HFZRCTw4h:{R2FMrPTdm:resolvedLinks6[2],variant:\"IAsoN5ZvK\"}},children:/*#__PURE__*/_jsx(Stories,{aQBSKC2sL:\"01\",d3QIn9tDn:\"Reimagined and redesigned the brand identity for Grams Company, resulting in a 30% increase in consumer engagement and brand awareness in social media.\",height:\"100%\",id:\"r1ZwYcL8Y\",ILOuZZCvC:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\",layoutId:\"r1ZwYcL8Y\",R2FMrPTdm:resolvedLinks6[0],style:{width:\"100%\"},TdHSza4Lq:\"Revitalized Branding\",variant:\"U1lc73kzr\",VQQ2OjQKM:addImageAlt({src:\"https://framerusercontent.com/images/DSduW7BabrJq3LxS8wleGaiLvDc.jpg\",srcSet:\"https://framerusercontent.com/images/DSduW7BabrJq3LxS8wleGaiLvDc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DSduW7BabrJq3LxS8wleGaiLvDc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DSduW7BabrJq3LxS8wleGaiLvDc.jpg 1500w\"},\"\"),width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{WVYJ1S2ds:\"responsive-e-commerce\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"AcAjxLhi_\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"responsive-e-commerce\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"AcAjxLhi_\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"responsive-e-commerce\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"AcAjxLhi_\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined},{href:{pathVariables:{WVYJ1S2ds:\"responsive-e-commerce\"},unresolvedPathSlugs:{WVYJ1S2ds:{collectionId:\"yRPVVQ1dB\",collectionItemId:\"AcAjxLhi_\"}},webPageId:\"x5XlxFux_\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fi8gb6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{R2FMrPTdm:resolvedLinks7[1]},H6LOoIHW9:{R2FMrPTdm:resolvedLinks7[3]},HFZRCTw4h:{R2FMrPTdm:resolvedLinks7[2],variant:\"IAsoN5ZvK\"}},children:/*#__PURE__*/_jsx(Stories,{aQBSKC2sL:\"02\",d3QIn9tDn:\"Developed an intuitive e-commerce website for Cobalt Store, driving a 50% increase in online sales within six months. We worked with many stakeholders within deadlines.\",height:\"100%\",id:\"kK3qY9MkV\",ILOuZZCvC:\"var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, rgb(118, 109, 241))\",layoutId:\"kK3qY9MkV\",R2FMrPTdm:resolvedLinks7[0],style:{width:\"100%\"},TdHSza4Lq:\"Responsive E-Commerce\",variant:\"U1lc73kzr\",VQQ2OjQKM:addImageAlt({src:\"https://framerusercontent.com/images/clnafI5OJZxczEg5LYJ6TaMQHSw.jpg\",srcSet:\"https://framerusercontent.com/images/clnafI5OJZxczEg5LYJ6TaMQHSw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/clnafI5OJZxczEg5LYJ6TaMQHSw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/clnafI5OJZxczEg5LYJ6TaMQHSw.jpg 1500w\"},\"\"),width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jzsigu\",\"data-framer-name\":\"Testimonial + Partner\",name:\"Testimonial + Partner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9yvtc\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1aju0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HFZRCTw4h:{arrowOptions:{arrowFill:\"rgba(106, 217, 196, 0.53)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:40,arrowPaddingTop:30,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},autoPlayControl:true,dragControl:true}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(106, 217, 196, 0.53)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:40,arrowPaddingLeft:0,arrowPaddingRight:40,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,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:\"knhoYIOGi\",intervalControl:1.5,itemAmount:1,layoutId:\"knhoYIOGi\",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(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1avjbcf-container\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",HRgRvL1pd:\"CEO of Rawboat Company\",id:\"RDN8zCBvq\",iecfVteJc:addImageAlt({src:\"https://framerusercontent.com/images/tnPFEjObhH2AWarRE7cg2Ff2e4Y.png\"},\"\"),layoutId:\"RDN8zCBvq\",mRMe2McTE:\"Peter Shaw\",style:{width:\"100%\"},VSNJ94ATG:\"DigiCraft has transformed our digital presence and brought significant growth to our business. Their team is creative, responsive, and a pleasure to work with. Their strategic approach and creative ideas have signifi-cantly boosted our brand's digital visibility and engagement!\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ub8gnd-container\",children:/*#__PURE__*/_jsx(Testimonial,{height:\"100%\",HRgRvL1pd:\"CMO of ABC Corporation\",id:\"SfS1Io2L1\",iecfVteJc:addImageAlt({src:\"https://framerusercontent.com/images/qQYeWgIpAAyDpTIpoWFSBIS7c.jpg\",srcSet:\"https://framerusercontent.com/images/qQYeWgIpAAyDpTIpoWFSBIS7c.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qQYeWgIpAAyDpTIpoWFSBIS7c.jpg 564w\"},\"\"),layoutId:\"SfS1Io2L1\",mRMe2McTE:\"Jessica Winston\",style:{width:\"100%\"},VSNJ94ATG:\"Engaging with DigiCraft has truly been an exceptional experience. The remarkable commitment to both profitability and excellence, demonstrated through their unwavering dedication to ensuring our success, illuminates every facet of our collaborative projects. \",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9izwzb\",\"data-framer-name\":\"Partners\",name:\"Partners\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1msmnvj-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"XbIihBqPX\",layoutId:\"XbIihBqPX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i2soev\",\"data-framer-name\":\"Logo - 1\",name:\"Logo - 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sqet24\",\"data-framer-name\":\"Logo_1\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:170,name:\"Logo_1\",svg:'<svg width=\"170\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#F4F4F4\"><path d=\"M51.277 29.823H63.23v-3.6h-7.704v-13.56h-4.248v17.16Zm19.033-2.4c-1.703 0-2.591-1.488-2.591-3.72s.888-3.744 2.592-3.744c1.704 0 2.616 1.512 2.616 3.744s-.912 3.72-2.616 3.72Zm.025 2.784c3.96 0 6.552-2.808 6.552-6.504 0-3.696-2.592-6.504-6.552-6.504-3.936 0-6.576 2.808-6.576 6.504 0 3.696 2.64 6.504 6.576 6.504Zm13.406 3.864c1.824 0 3.432-.408 4.512-1.368.984-.888 1.632-2.232 1.632-4.08V17.535h-3.744v1.32h-.048c-.72-1.032-1.824-1.68-3.456-1.68-3.048 0-5.16 2.544-5.16 6.144 0 3.768 2.568 5.832 5.328 5.832 1.488 0 2.424-.6 3.144-1.416h.096v1.224c0 1.488-.696 2.352-2.352 2.352-1.296 0-1.944-.552-2.16-1.2h-3.792c.384 2.568 2.616 3.96 6 3.96Zm-.024-7.824c-1.464 0-2.424-1.2-2.424-3.048 0-1.872.96-3.072 2.424-3.072 1.632 0 2.496 1.392 2.496 3.048 0 1.728-.792 3.072-2.496 3.072Zm13.866 1.176c-1.704 0-2.592-1.488-2.592-3.72s.888-3.744 2.592-3.744c1.704 0 2.616 1.512 2.616 3.744s-.912 3.72-2.616 3.72Zm.024 2.784c3.96 0 6.552-2.808 6.552-6.504 0-3.696-2.592-6.504-6.552-6.504-3.936 0-6.576 2.808-6.576 6.504 0 3.696 2.64 6.504 6.576 6.504Zm7.695-.384h3.912V17.535h-3.912v12.288Zm0-13.992h3.912v-3.168h-3.912v3.168Zm5.609 18.049h3.912v-5.33h.048c.768 1.032 1.896 1.656 3.48 1.656 3.216 0 5.352-2.544 5.352-6.528 0-3.696-1.992-6.504-5.256-6.504-1.68 0-2.88.744-3.72 1.848h-.072v-1.488h-3.744V33.88Zm6.432-6.697c-1.68 0-2.64-1.368-2.64-3.36 0-1.992.864-3.504 2.568-3.504 1.68 0 2.472 1.392 2.472 3.504 0 2.088-.912 3.36-2.4 3.36Zm12.729 3.024c3.216 0 5.592-1.392 5.592-4.08 0-3.144-2.544-3.696-4.704-4.056-1.56-.288-2.952-.408-2.952-1.272 0-.768.744-1.128 1.704-1.128 1.08 0 1.824.336 1.968 1.44h3.6c-.192-2.424-2.064-3.936-5.544-3.936-2.904 0-5.304 1.344-5.304 3.936 0 2.88 2.28 3.456 4.416 3.816 1.632.288 3.12.408 3.12 1.512 0 .792-.744 1.224-1.92 1.224-1.296 0-2.112-.6-2.256-1.824h-3.696c.12 2.712 2.376 4.368 5.976 4.368Zm10.906-.024c1.704 0 2.784-.672 3.672-1.872h.072v1.512h3.744V17.535h-3.912V24.4c0 1.464-.816 2.472-2.16 2.472-1.248 0-1.848-.744-1.848-2.088v-7.248h-3.888V25.6c0 2.736 1.488 4.584 4.32 4.584Zm9.19-.36h3.912v-6.888c0-1.464.72-2.496 1.944-2.496 1.176 0 1.728.768 1.728 2.088v7.296h3.912v-6.888c0-1.464.696-2.496 1.944-2.496 1.176 0 1.728.768 1.728 2.088v7.296h3.912v-7.992c0-2.76-1.392-4.656-4.176-4.656-1.584 0-2.904.672-3.864 2.16h-.048c-.624-1.32-1.848-2.16-3.456-2.16-1.776 0-2.952.84-3.72 2.112h-.072v-1.752h-3.744v12.288Z\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M20.102 40.823c11.045 0 20-8.954 20-20 0-11.045-8.955-20-20-20-11.046 0-20 8.955-20 20 0 11.046 8.954 20 20 20Zm3.087-24.547a4.366 4.366 0 1 0-6.174 0l3.087 3.087 3.087-3.087Zm1.46 7.634a4.366 4.366 0 1 0 0-6.174l-3.087 3.087 3.087 3.087Zm-1.46 7.635a4.366 4.366 0 0 0 0-6.174l-3.087-3.087-3.087 3.087a4.366 4.366 0 0 0 6.174 6.174ZM9.38 23.91a4.366 4.366 0 0 1 6.174-6.174l3.087 3.087-3.087 3.087a4.366 4.366 0 0 1-6.174 0Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 .5)\" d=\"M0 0h170v41H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u3j9uo\",\"data-framer-name\":\"Logo - 2\",name:\"Logo - 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lggd5a\",\"data-framer-name\":\"Logo_2\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:133,name:\"Logo_2\",svg:'<svg width=\"133\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.31 11.76h3.21v13h-3.21v-13Zm4.49 8.11c0-3.22 2-5.15 5-5.15s5 1.93 5 5.15c0 3.22-1.93 5.17-5 5.17-3.07 0-5-1.88-5-5.17Zm6.82 0c0-1.77-.69-2.81-1.79-2.81s-1.78 1-1.78 2.81.68 2.8 1.78 2.8 1.81-.99 1.81-2.79l-.02-.01Zm4.46 5.56h3.1a1.66 1.66 0 0 0 1.74 1c1.23 0 1.87-.66 1.87-1.64v-1.8h.01a3.07 3.07 0 0 1-3 1.75c-2.35 0-3.91-1.79-3.91-4.87s1.49-5 4-5a3.07 3.07 0 0 1 3 1.89h-.09v-1.81h3.18v9.74c0 2.35-2.08 3.82-5.14 3.82-2.78-.01-4.56-1.28-4.74-3.07l-.02-.01Zm6.72-5.56c0-1.57-.72-2.56-1.86-2.56-1.14 0-1.84 1-1.84 2.56s.69 2.48 1.84 2.48c1.15 0 1.86-.85 1.86-2.48Zm4.45 0c0-3.22 2-5.15 5-5.15s5 1.93 5 5.15c0 3.22-1.94 5.17-5 5.17s-4.98-1.88-4.98-5.17h-.02Zm6.82 0c0-1.77-.7-2.81-1.79-2.81s-1.78 1-1.78 2.81.68 2.8 1.78 2.8 1.81-.99 1.81-2.79l-.02-.01Zm4.48-7.29a1.64 1.64 0 1 1 1.64 1.57 1.582 1.582 0 0 1-1.62-1.56l-.02-.01Zm0 2.36h3.25v9.86h-3.2l-.05-9.86Zm14.94 4.93c0 3.21-1.44 5.07-3.89 5.07a3.07 3.07 0 0 1-3-1.83h-.06v4.86h-3.21v-13h3.19v1.76h.06a3.09 3.09 0 0 1 3-1.9c2.52-.02 3.97 1.83 3.97 5.05l-.06-.01Zm-3.27 0c0-1.56-.73-2.57-1.86-2.57-1.13 0-1.84 1-1.85 2.57-.01 1.57.72 2.56 1.85 2.56 1.13 0 1.92-.93 1.92-2.55l-.06-.01Zm8.75-5.16c2.69 0 4.36 1.27 4.38 3.31h-2.93c0-.71-.59-1.15-1.47-1.15s-1.3.34-1.3.85.37.67 1.11.82l2.06.42c2 .42 2.8 1.22 2.8 2.71 0 2-1.85 3.36-4.6 3.36-2.75 0-4.54-1.32-4.67-3.33h3.11c.09.73.67 1.16 1.61 1.16.94 0 1.38-.3 1.38-.83s-.3-.62-1.07-.78l-1.86-.39c-1.93-.41-2.94-1.42-2.94-2.93.06-1.96 1.74-3.21 4.45-3.21l-.06-.01Zm15.4 10.08h-3.11v-1.85h-.06a2.818 2.818 0 0 1-2.87 2.05 3.43 3.43 0 0 1-3.53-3.71v-6.33h3.21v5.64c0 1.16.61 1.79 1.61 1.79a1.642 1.642 0 0 0 1.61-1.88v-5.55h3.2l-.06 9.84Zm1.55-9.85h3.12v1.9h.07a2.86 2.86 0 0 1 2.81-2.08 2.558 2.558 0 0 1 2.74 2.09h.14a2.998 2.998 0 0 1 3-2.09 3.118 3.118 0 0 1 3.23 3.35v6.69h-3.23v-5.87c0-1-.47-1.56-1.38-1.56a1.403 1.403 0 0 0-1.363.993 1.416 1.416 0 0 0-.047.597v5.84h-3.06v-5.9c0-1-.49-1.53-1.37-1.53a1.429 1.429 0 0 0-1.43 1.61v5.82h-3.21l-.02-9.86Zm-81.96-2.33A9.88 9.88 0 0 0 15.8 5.93H3.32v26.34h26.35V19.96a9.87 9.87 0 0 0 3.29-7.35Zm-5.07 0a4.82 4.82 0 1 1-9.64.02 4.82 4.82 0 0 1 9.64-.02ZM24.6 27.2H8.39V11h4.94a9.554 9.554 0 0 0-.15 1.61 9.9 9.9 0 0 0 9.89 9.89 9.67 9.67 0 0 0 1.53-.13v4.83Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5gtvr1\",\"data-framer-name\":\"Logo - 3\",name:\"Logo - 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z93x8j\",\"data-framer-name\":\"Logo_3\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:139,name:\"Logo_3\",svg:'<svg width=\"139\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.59 23.759 3.65 11.384c-1.818-1.254-1.2-3.865 1.067-4.48L23.784 1.73A2.7 2.7 0 0 1 27.4 4.222L26.27 21.77c-.134 2.083-2.862 3.242-4.68 1.988Z\" fill=\"#F4F4F4\"/><path d=\"M15.9 26.814 5.331 6.145a2.883 2.883 0 0 1 3.007-4.16l19.587 3.022a2.884 2.884 0 0 1 2.127 4.162L21.03 26.815a2.883 2.883 0 0 1-5.129 0Z\" fill=\"#F4F4F4\"/><path d=\"M27.352 4.918 17.588 3.41 5.6 6.666l4.785 9.36L21.59 23.76c.247.169.52.298.806.383l4.256-8.323.7-10.901ZM76.81 7.334a1.835 1.835 0 1 1 1.834 1.835 1.854 1.854 0 0 1-1.835-1.835Zm.305 2.732h3.06V20.26h-3.06V10.066Zm16.269 5.097a5.119 5.119 0 0 1-4.872 5.383 3.831 3.831 0 0 1-3.038-1.244v5.036h-3.058V10.066h3.058v.958a3.829 3.829 0 0 1 3.038-1.243 5.119 5.119 0 0 1 4.872 5.382Zm-3.058 0a2.427 2.427 0 1 0-2.426 2.488 2.327 2.327 0 0 0 2.426-2.488Zm12.497 2.037c0 2.345-2.039 3.344-4.24 3.344a4.463 4.463 0 0 1-4.384-2.427l2.65-1.508a1.675 1.675 0 0 0 1.733 1.2c.734 0 1.1-.225 1.1-.632 0-1.122-5.015-.53-5.015-4.058 0-2.222 1.875-3.343 4-3.343a4.458 4.458 0 0 1 3.975 2.181l-2.609 1.407a1.479 1.479 0 0 0-1.366-.9c-.53 0-.856.2-.856.571-.003 1.17 5.012.395 5.012 4.165ZM114 10.066V20.26h-3.058v-.96a3.488 3.488 0 0 1-2.916 1.244c-2.059 0-3.812-1.468-3.812-4.221v-6.257h3.058v5.81a1.675 1.675 0 0 0 .457 1.34 1.683 1.683 0 0 0 1.317.516c1.121 0 1.9-.652 1.9-2.1v-5.566H114ZM131.528 14v6.26h-3.058v-5.994c0-1.019-.49-1.672-1.468-1.672-1.02 0-1.59.714-1.59 1.917v5.749h-3.059v-5.994c0-1.019-.489-1.672-1.468-1.672-1.019 0-1.59.714-1.59 1.917v5.749h-3.058V10.066h3.063V11a3.131 3.131 0 0 1 2.732-1.223 3.036 3.036 0 0 1 2.671 1.345 3.36 3.36 0 0 1 2.957-1.345c2.34.004 3.868 1.675 3.868 4.223Zm2.591-3.997a2.27 2.27 0 1 0 0-4.54 2.27 2.27 0 0 0 0 4.54ZM35.057 5.377h3.06V20.26h-3.06V5.377Zm4.791 9.786a5.4 5.4 0 1 1 5.4 5.383 5.345 5.345 0 0 1-5.4-5.383Zm7.748 0a2.344 2.344 0 1 0-2.345 2.406 2.287 2.287 0 0 0 2.35-2.406h-.005Zm15.25-5.1v9.685c0 3.425-2.672 4.872-5.383 4.872a5.212 5.212 0 0 1-4.832-2.467l2.61-1.509a2.332 2.332 0 0 0 2.324 1.285 2.033 2.033 0 0 0 2.3-2.181v-.938a3.623 3.623 0 0 1-2.977 1.325 5.181 5.181 0 0 1 0-10.357 3.622 3.622 0 0 1 2.977 1.325v-1.04h2.98Zm-2.977 4.893a2.47 2.47 0 1 0-2.469 2.369 2.31 2.31 0 0 0 2.47-2.366v-.003Zm4.708.2a5.4 5.4 0 1 1 5.4 5.383 5.344 5.344 0 0 1-5.4-5.376v-.007Zm7.748 0a2.347 2.347 0 1 0-2.345 2.406 2.288 2.288 0 0 0 2.345-2.399v-.007Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hqp7tv\",\"data-framer-name\":\"Logo - 4\",name:\"Logo - 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iwclxr\",\"data-framer-name\":\"Logo_4\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:128,name:\"Logo_4\",svg:'<svg width=\"128\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.188 6.441a3.056 3.056 0 0 1 4.342 0 3.104 3.104 0 0 1 0 4.37l-7.31 7.358c-2.099-2.831-1.87-6.857.684-9.429l2.284-2.299ZM73.637 23.04a3.104 3.104 0 0 1 0 4.37 3.056 3.056 0 0 1-4.341 0l-7.31-7.357a7.15 7.15 0 0 1 9.368.689l2.283 2.299ZM57.146 33.559a3.056 3.056 0 0 1-4.342 0 3.104 3.104 0 0 1 0-4.37l7.31-7.358c2.098 2.831 1.87 6.858-.684 9.429l-2.284 2.299ZM46.696 16.96a3.104 3.104 0 0 1 0-4.37 3.056 3.056 0 0 1 4.342 0l7.31 7.357a7.15 7.15 0 0 1-9.368-.689l-2.284-2.299Zm14.858 15.697a9.757 9.757 0 0 0 2.465-7.002l3.51 3.533.027.027v2.522a3.08 3.08 0 0 1-3.07 3.09 3.074 3.074 0 0 1-2.932-2.17ZM47.59 21.396a9.617 9.617 0 0 0 6.958 2.481l-3.51 3.534a2.166 2.166 0 0 0-.026.026h-2.507a3.08 3.08 0 0 1-3.07-3.09 3.09 3.09 0 0 1 2.156-2.95Zm25.152-2.792a9.617 9.617 0 0 0-6.957-2.481l3.51-3.534c.01-.008.018-.017.027-.026h2.506a3.08 3.08 0 0 1 3.07 3.09 3.09 3.09 0 0 1-2.156 2.95ZM58.78 7.342a9.757 9.757 0 0 0-2.466 7.003l-3.51-3.534c-.01-.008-.018-.017-.027-.026V8.263a3.08 3.08 0 0 1 3.07-3.09c1.378 0 2.543.912 2.932 2.17Z\" fill=\"#F4F4F4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.848 2.658c-3.075 0-5.568 2.51-5.568 5.604v1.09c-1.85-.486-3.9 0-5.35 1.46a5.63 5.63 0 0 0 0 7.925l.765.77a5.609 5.609 0 0 0-2.758 4.84c0 3.095 2.493 5.604 5.568 5.604h1.083a5.627 5.627 0 0 0 1.45 5.385 5.543 5.543 0 0 0 7.874 0l2.284-2.299a9.754 9.754 0 0 0 2.823-7.382l3.51 3.533a5.543 5.543 0 0 0 7.875 0 5.63 5.63 0 0 0 0-7.925l-.765-.77a5.61 5.61 0 0 0 2.758-4.84c0-3.095-2.494-5.604-5.569-5.604h-1.082a5.627 5.627 0 0 0-1.45-5.385 5.543 5.543 0 0 0-7.874 0l-2.284 2.298a9.753 9.753 0 0 0-2.823 7.383l-3.511-3.534-.026-.026V8.262a3.08 3.08 0 0 1 3.07-3.09c1.377 0 2.542.913 2.931 2.17a9.84 9.84 0 0 1 .359-.38l1.518-1.528a5.56 5.56 0 0 0-4.808-2.776Zm13.474 9.905-.026.026-3.51 3.533a9.616 9.616 0 0 1 6.957 2.482 3.09 3.09 0 0 0 2.156-2.951 3.08 3.08 0 0 0-3.07-3.09h-2.507Zm-18.31 14.874.026-.026 3.51-3.534a9.617 9.617 0 0 1-6.957-2.48 3.09 3.09 0 0 0-2.156 2.95 3.08 3.08 0 0 0 3.07 3.09h2.506Zm13.474 9.905a5.56 5.56 0 0 1-4.808-2.776l1.518-1.529a9.97 9.97 0 0 0 .358-.38 3.074 3.074 0 0 0 2.932 2.17 3.08 3.08 0 0 0 3.07-3.09v-2.522a5.532 5.532 0 0 0 2.498 1.432v1.09c0 3.096-2.493 5.605-5.568 5.605Zm3.044-30.9a3.056 3.056 0 0 0-4.342 0L60.904 8.74c-2.555 2.571-2.783 6.598-.684 9.429l7.31-7.358a3.104 3.104 0 0 0 0-4.37Zm6.108 20.968a3.104 3.104 0 0 0 0-4.37l-2.284-2.298a7.15 7.15 0 0 0-9.368-.689l7.31 7.357a3.056 3.056 0 0 0 4.342 0Zm-16.492 6.15a3.056 3.056 0 0 1-4.342 0 3.105 3.105 0 0 1 0-4.37l7.31-7.358c2.098 2.831 1.87 6.857-.684 9.429l-2.284 2.299Zm-10.45-20.97a3.104 3.104 0 0 0 0 4.37l2.284 2.3a7.15 7.15 0 0 0 9.367.688l-7.31-7.358a3.056 3.056 0 0 0-4.341 0Z\" fill=\"#F4F4F4\"/><path d=\"M1.724 13.991h2.73v8.54h4.69v2.314h-7.42V13.99Zm12.378 11.087c-.915 0-1.717-.166-2.406-.497-.69-.342-1.224-.808-1.605-1.398-.37-.6-.555-1.288-.555-2.065 0-.776.185-1.46.555-2.05.38-.6.916-1.066 1.605-1.397.689-.341 1.491-.512 2.406-.512.916 0 1.718.17 2.407.512.689.331 1.219.797 1.589 1.398.38.59.57 1.273.57 2.05 0 .776-.19 1.464-.57 2.064-.37.59-.9 1.056-1.589 1.398-.69.331-1.491.497-2.407.497Zm0-2.128c.545 0 .977-.16 1.296-.48.33-.332.494-.782.494-1.352 0-.57-.165-1.014-.494-1.335-.319-.331-.75-.497-1.296-.497-.545 0-.982.166-1.31.497-.32.32-.48.766-.48 1.335 0 .57.16 1.02.48 1.351.328.321.765.481 1.31.481Zm9.667 5.466c-.494 0-.993-.046-1.497-.14a6.106 6.106 0 0 1-1.28-.372v-1.895c.812.352 1.738.528 2.777.528.75 0 1.29-.155 1.62-.465.34-.311.509-.767.509-1.367v-.45c-.298.259-.669.46-1.111.605a4.336 4.336 0 0 1-1.388.218c-.782 0-1.471-.166-2.068-.497a3.586 3.586 0 0 1-1.404-1.398c-.329-.6-.493-1.288-.493-2.065 0-.787.164-1.48.493-2.08.33-.6.792-1.062 1.389-1.382.596-.332 1.28-.497 2.052-.497 1.06 0 1.933.326 2.622.978v-.745h2.623v6.94c0 1.294-.396 2.299-1.188 3.013-.782.714-2 1.071-3.656 1.071Zm.308-5.45c.422 0 .797-.109 1.126-.326.33-.218.561-.507.695-.87v-1.304a1.746 1.746 0 0 0-.71-.854 1.974 1.974 0 0 0-1.11-.326c-.556 0-1.003.166-1.343.497-.34.32-.509.76-.509 1.32 0 .569.17 1.024.51 1.366.339.331.786.497 1.341.497Zm9.791 2.112c-.915 0-1.717-.166-2.406-.497-.69-.342-1.224-.808-1.605-1.398-.37-.6-.555-1.288-.555-2.065 0-.776.185-1.46.555-2.05.38-.6.916-1.066 1.605-1.397.689-.341 1.49-.512 2.406-.512.916 0 1.718.17 2.407.512.689.331 1.219.797 1.589 1.398.38.59.57 1.273.57 2.05 0 .776-.19 1.464-.57 2.064-.37.59-.9 1.056-1.59 1.398-.688.331-1.49.497-2.406.497Zm0-2.128c.545 0 .977-.16 1.296-.48.33-.332.494-.782.494-1.352 0-.57-.165-1.014-.494-1.335-.319-.331-.75-.497-1.296-.497-.545 0-.982.166-1.311.497-.319.32-.478.766-.478 1.335 0 .57.159 1.02.478 1.351.329.321.766.481 1.311.481Zm48.116-8.959h2.73v10.854h-2.73V13.99Zm4.113 3.401h2.623v.745c.689-.652 1.563-.978 2.622-.978.772 0 1.456.165 2.052.497a3.37 3.37 0 0 1 1.389 1.382c.329.59.494 1.278.494 2.065 0 .776-.165 1.47-.494 2.08a3.48 3.48 0 0 1-1.389 1.398c-.586.331-1.27.497-2.052.497-.493 0-.966-.078-1.418-.233a3.184 3.184 0 0 1-1.111-.606v4.006h-2.716V17.392Zm4.536 5.558c.556 0 1.003-.165 1.342-.496.34-.332.51-.782.51-1.351 0-.57-.17-1.015-.51-1.336-.339-.33-.786-.497-1.342-.497-.411 0-.782.11-1.111.326-.33.208-.565.492-.71.855v1.32c.145.362.38.651.71.869.33.207.7.31 1.111.31Zm8.691 2.128a9.915 9.915 0 0 1-1.866-.187c-.648-.113-1.163-.28-1.543-.496v-2.003a6.4 6.4 0 0 0 1.512.62 6.537 6.537 0 0 0 1.635.233c.36 0 .623-.025.787-.077.165-.052.247-.155.247-.31a.334.334 0 0 0-.17-.296c-.102-.082-.298-.165-.586-.248a19.938 19.938 0 0 0-.972-.295c-.627-.187-1.12-.378-1.48-.575-.361-.196-.628-.445-.803-.745-.175-.3-.262-.678-.262-1.134 0-.807.313-1.407.94-1.8.638-.405 1.507-.606 2.608-.606.535 0 1.095.057 1.681.17.597.114 1.044.264 1.343.45v1.973c-.309-.207-.721-.378-1.235-.513a5.507 5.507 0 0 0-1.42-.201c-.348 0-.621.036-.816.108-.196.062-.293.176-.293.342 0 .155.097.274.293.357.195.083.545.186 1.048.31.329.083.469.12.417.11.658.175 1.167.372 1.527.59.36.217.612.475.756.776.155.29.232.662.232 1.118 0 .714-.309 1.283-.926 1.708-.607.414-1.492.62-2.654.62Zm7.633 0c-1.018 0-1.784-.285-2.298-.854-.504-.57-.756-1.32-.756-2.252v-4.58h2.715v4.27c0 .859.386 1.289 1.157 1.289.35 0 .669-.083.957-.249.287-.166.524-.409.709-.73v-4.58h2.715v7.453h-2.622v-.808c-.319.342-.705.6-1.157.777a3.882 3.882 0 0 1-1.42.264Zm6.59-7.686h2.515v.807a3.196 3.196 0 0 1 1.064-.76 3 3 0 0 1 1.28-.28c.556 0 .998.082 1.327.248.34.166.612.414.818.745.308-.31.684-.553 1.126-.73.443-.175.89-.263 1.342-.263.977 0 1.672.253 2.083.76.411.497.617 1.217.617 2.159v4.767h-2.592v-4.379c0-.414-.077-.714-.232-.9-.153-.187-.411-.28-.77-.28-.463 0-.839.166-1.127.497.011.176.016.445.016.807v4.255h-2.592v-4.488c0-.383-.067-.657-.201-.823-.133-.165-.37-.248-.709-.248-.525 0-.977.295-1.358.885v4.674h-2.607v-7.453Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qu1x3n\",\"data-framer-name\":\"Logo - 5\",name:\"Logo - 5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qo7uh2\",\"data-framer-name\":\"Logo_5\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:133,name:\"Logo_5\",svg:'<svg width=\"133\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M38.865 19.855c0 .633-.13 1.119-.392 1.459-.254.34-.68.51-1.275.51-.563 0-.961-.17-1.196-.51-.227-.34-.341-.826-.341-1.46V9.29c0-.633.114-1.12.341-1.459.235-.34.633-.51 1.196-.51.596 0 1.02.17 1.275.51.261.34.392.826.392 1.46v10.565Zm.973-3.069c0-.706.114-1.373.341-2a4.66 4.66 0 0 1 1.045-1.658c.469-.473 1.051-.85 1.748-1.13.703-.28 1.527-.42 2.47-.42.905 0 1.705.13 2.401.39.697.26 1.283.623 1.758 1.09a4.55 4.55 0 0 1 1.085 1.649c.248.633.372 1.326.372 2.079 0 .7-.117 1.363-.352 1.99a4.633 4.633 0 0 1-1.055 1.638c-.468.467-1.054.84-1.757 1.12-.703.273-1.52.41-2.451.41-.918 0-1.728-.13-2.431-.39-.697-.267-1.282-.63-1.758-1.09a4.631 4.631 0 0 1-1.064-1.639 5.825 5.825 0 0 1-.352-2.039Zm3.345 0c0 .44.04.86.12 1.26.08.393.208.739.382 1.039.18.3.415.54.703.72.288.173.64.26 1.055.26.382 0 .713-.08.994-.24.288-.16.523-.384.703-.67.188-.287.328-.63.422-1.03.094-.406.14-.853.14-1.339 0-.44-.043-.856-.13-1.25-.08-.4-.21-.75-.392-1.049a2.018 2.018 0 0 0-.703-.72c-.28-.18-.626-.27-1.034-.27-.409 0-.757.087-1.045.26-.288.174-.522.41-.703.71-.18.3-.311.65-.392 1.05-.08.4-.12.823-.12 1.269Zm16.12 3.108a3.116 3.116 0 0 1-.663.85c-.255.233-.54.426-.854.58a4.43 4.43 0 0 1-.994.33 5.77 5.77 0 0 1-1.075.1c-.616 0-1.179-.11-1.688-.33a3.718 3.718 0 0 1-1.316-.95c-.361-.42-.642-.933-.843-1.54-.201-.606-.302-1.299-.302-2.078 0-.733.094-1.42.282-2.06a5.167 5.167 0 0 1 .813-1.668 3.96 3.96 0 0 1 1.326-1.12c.522-.273 1.119-.41 1.788-.41.764 0 1.44.147 2.03.44.595.293 1.107.773 1.536 1.44v-.26c0-.48.13-.84.392-1.08.268-.247.636-.37 1.105-.37.28 0 .519.047.713.14.194.087.348.22.462.4.114.173.194.39.24.65.054.253.081.543.081.87v6.696c0 .813-.103 1.54-.311 2.179a4.001 4.001 0 0 1-.944 1.62c-.429.44-.978.772-1.648.999-.67.233-1.466.35-2.39.35-.65 0-1.226-.03-1.728-.09a6.756 6.756 0 0 1-1.286-.25c-.361-.127-.636-.267-.823-.42a.749.749 0 0 1-.272-.6c0-.14.02-.273.06-.4.04-.126.101-.24.181-.34.088-.093.198-.17.332-.23.14-.052.311-.08.512-.08.215 0 .429.014.643.04.221.027.449.054.683.08.241.034.492.064.754.09.267.027.555.04.863.04.369 0 .697-.036.985-.11a1.65 1.65 0 0 0 .733-.39c.2-.186.355-.436.462-.749.107-.306.16-.7.16-1.18v-1.189Zm0-3.108c0-.487-.037-.93-.11-1.33a2.94 2.94 0 0 0-.352-1.02 1.725 1.725 0 0 0-.673-.659c-.282-.16-.633-.24-1.055-.24-.415 0-.76.084-1.035.25a1.83 1.83 0 0 0-.642.69 3.26 3.26 0 0 0-.342 1.03c-.06.393-.09.812-.09 1.259 0 1.02.18 1.786.542 2.299.362.513.887.77 1.577.77.322-.007.613-.067.874-.18a1.83 1.83 0 0 0 .693-.55c.194-.247.345-.56.452-.94.107-.38.16-.84.16-1.38Zm3.956 0c0-.706.114-1.373.341-2a4.663 4.663 0 0 1 1.045-1.658c.469-.473 1.051-.85 1.748-1.13.703-.28 1.526-.42 2.47-.42.905 0 1.705.13 2.401.39.697.26 1.283.623 1.758 1.09a4.55 4.55 0 0 1 1.085 1.649c.248.633.372 1.326.372 2.079 0 .7-.118 1.363-.352 1.99a4.634 4.634 0 0 1-1.055 1.638c-.468.467-1.054.84-1.757 1.12-.704.273-1.52.41-2.451.41-.918 0-1.728-.13-2.431-.39-.697-.267-1.283-.63-1.758-1.09a4.634 4.634 0 0 1-1.065-1.639 5.828 5.828 0 0 1-.351-2.039Zm3.345 0c0 .44.04.86.12 1.26.08.393.208.739.382 1.039.18.3.415.54.703.72.288.173.64.26 1.055.26.381 0 .713-.08.994-.24.288-.16.522-.384.703-.67.188-.287.328-.63.422-1.03.094-.406.14-.853.14-1.339 0-.44-.043-.856-.13-1.25-.08-.4-.21-.75-.392-1.049a2.019 2.019 0 0 0-.703-.72c-.28-.18-.626-.27-1.034-.27-.409 0-.757.087-1.045.26-.288.174-.522.41-.703.71-.18.3-.311.65-.392 1.05-.08.4-.12.823-.12 1.269ZM78.786 8.21c0 .22-.05.416-.15.59a1.414 1.414 0 0 1-.392.42c-.161.113-.349.2-.563.26a2.573 2.573 0 0 1-1.316-.01 1.831 1.831 0 0 1-.552-.26 1.375 1.375 0 0 1-.382-.43 1.142 1.142 0 0 1-.14-.57c0-.194.043-.37.13-.53.094-.167.218-.31.372-.43s.338-.213.552-.28c.215-.066.449-.1.703-.1.221 0 .436.03.643.09.215.06.402.147.563.26.16.113.288.253.381.42.1.167.151.357.151.57Zm-.15 11.644c0 .633-.131 1.12-.392 1.46-.255.34-.68.51-1.276.51-.563 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-6.117c0-.633.114-1.12.342-1.46.234-.339.633-.509 1.195-.509.596 0 1.021.17 1.276.51.26.34.391.826.391 1.46v6.116Zm4.618-3.088c0 .446.034.863.1 1.25a3.3 3.3 0 0 0 .362 1.019c.175.286.402.513.683.68.288.166.643.25 1.065.25.389 0 .713-.08.975-.24.267-.167.481-.394.643-.68.16-.294.274-.637.34-1.03.074-.393.111-.82.111-1.28 0-.366-.026-.739-.08-1.119a3.599 3.599 0 0 0-.301-1.05 2.05 2.05 0 0 0-.613-.769c-.261-.2-.603-.3-1.025-.3-.421 0-.78.067-1.074.2a1.673 1.673 0 0 0-.703.61c-.175.273-.299.616-.372 1.03-.074.406-.11.882-.11 1.429Zm-.01-3.029c.168-.353.382-.663.643-.93a3.949 3.949 0 0 1 1.848-1.069c.349-.093.693-.14 1.035-.14.616 0 1.172.137 1.668.41a3.89 3.89 0 0 1 1.265 1.12 5.06 5.06 0 0 1 .814 1.659c.187.633.281 1.312.281 2.039 0 .753-.101 1.442-.302 2.069a4.873 4.873 0 0 1-.834 1.619 3.825 3.825 0 0 1-1.285 1.05 3.586 3.586 0 0 1-1.657.38c-.75 0-1.42-.174-2.01-.52a4.257 4.257 0 0 1-1.466-1.46v3.599c0 .633-.13 1.12-.391 1.459-.255.34-.68.51-1.276.51-.563 0-.961-.17-1.195-.51-.228-.34-.342-.826-.342-1.46v-9.825c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.196-.509.596 0 1.021.17 1.276.51.26.34.391.826.391 1.46Zm11.088.71c0 .26.114.463.341.61.228.14.543.256.945.35.381.086.773.17 1.175.25.402.08.794.173 1.175.28.382.1.74.22 1.075.36.334.14.63.316.884.529.254.206.455.46.602.76.148.293.221.646.221 1.06 0 .519-.107.982-.321 1.388-.214.4-.519.74-.914 1.02-.388.28-.853.496-1.396.65a6.86 6.86 0 0 1-1.798.24c-.623 0-1.223-.04-1.799-.12a7.364 7.364 0 0 1-1.536-.35c-.442-.16-.797-.357-1.065-.59-.267-.24-.401-.52-.401-.84 0-.28.09-.496.27-.65.182-.152.412-.23.694-.23.107 0 .234.02.382.06.147.04.307.09.481.15s.359.127.553.2c.2.067.408.127.622.18.269.074.543.134.824.18.288.04.583.06.885.06.187 0 .37-.016.552-.05.18-.04.342-.096.482-.17.148-.08.268-.18.362-.3a.866.866 0 0 0 .17-.439c.02-.04.037-.08.05-.12a.43.43 0 0 0 .02-.14c0-.187-.087-.353-.26-.5-.168-.146-.406-.263-.714-.35-.516-.12-1.008-.23-1.477-.33a20.51 20.51 0 0 1-1.305-.32 8.215 8.215 0 0 1-1.085-.39 3.039 3.039 0 0 1-.824-.539 2.312 2.312 0 0 1-.522-.77c-.12-.3-.18-.662-.18-1.089 0-.46.103-.87.31-1.23.215-.366.52-.672.915-.919s.873-.433 1.437-.56a8.297 8.297 0 0 1 1.908-.2c1.272 0 2.24.154 2.903.46.67.3 1.004.693 1.004 1.18 0 .273-.09.483-.271.63-.181.14-.399.21-.653.21-.134 0-.275-.024-.422-.07a7.673 7.673 0 0 0-.512-.17 4.876 4.876 0 0 0-.723-.17 5.5 5.5 0 0 0-1.025-.08c-.308 0-.59.013-.844.04a2.707 2.707 0 0 0-.643.14 1.027 1.027 0 0 0-.411.27.648.648 0 0 0-.14.43Zm10.495 3.668c0 .313.04.587.121.82.086.233.204.43.351.59.148.153.318.27.512.35.201.073.416.11.643.11.268 0 .526-.04.774-.12a1.818 1.818 0 0 0 1.115-1c.113-.253.171-.55.171-.89v-4.238c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.195-.509.596 0 1.021.17 1.276.51.261.34.392.826.392 1.46v6.116c0 .633-.131 1.12-.392 1.46-.255.34-.68.51-1.276.51-.562 0-.96-.17-1.195-.51-.227-.34-.341-.827-.341-1.46a3.323 3.323 0 0 1-.553.84 3.413 3.413 0 0 1-.784.66 3.84 3.84 0 0 1-.984.42c-.355.1-.74.15-1.155.15a3.72 3.72 0 0 1-1.296-.23 3.22 3.22 0 0 1-1.084-.7 3.452 3.452 0 0 1-.754-1.16c-.188-.46-.281-.996-.281-1.609v-4.488c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.196-.509.596 0 1.021.17 1.275.51.262.34.392.826.392 1.46v4.377Zm8.345-4.378c0-.633.114-1.12.342-1.46.234-.339.633-.509 1.195-.509.597 0 1.022.17 1.276.51.261.34.392.826.392 1.46.134-.32.315-.61.543-.87.234-.267.498-.494.792-.68.302-.187.627-.33.975-.43a3.797 3.797 0 0 1 2.109-.02c.342.087.657.23.945.43.294.193.552.44.773.74.221.3.392.66.513 1.08.207-.447.451-.824.733-1.13a3.79 3.79 0 0 1 .913-.74 3.73 3.73 0 0 1 1.025-.4 5.01 5.01 0 0 1 1.085-.12c.428 0 .837.077 1.225.23.396.153.74.387 1.035.7.302.306.539.696.713 1.17.181.466.271 1.012.271 1.638v4.518c0 .633-.13 1.12-.392 1.46-.253.34-.679.51-1.275.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-4.378c0-.3-.04-.566-.12-.8a1.655 1.655 0 0 0-.342-.599 1.3 1.3 0 0 0-.502-.37 1.512 1.512 0 0 0-.623-.13c-.275 0-.535.044-.783.13-.248.087-.465.22-.653.4-.181.18-.328.41-.442.69-.108.28-.161.616-.161 1.01v4.047c0 .633-.131 1.12-.391 1.46-.255.34-.68.51-1.277.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-4.188c0-.686-.144-1.206-.431-1.559-.282-.353-.667-.53-1.155-.53-.288 0-.556.047-.804.14-.248.093-.462.23-.643.41-.181.18-.325.403-.432.67-.1.266-.15.573-.15.92v4.137c0 .633-.131 1.12-.392 1.46-.254.34-.679.51-1.276.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-6.117Zm-98.401 6.381c-2.84 0-5.143-2.292-5.143-5.118 0-2.826 2.303-5.118 5.143-5.118s5.143 2.292 5.143 5.118c0 2.826-2.302 5.118-5.143 5.118Z\" fill=\"#F4F4F4\"/><path d=\"M4.808 16.748c-1.49.262-2.512 1.694-1.94 3.088a12.8 12.8 0 0 0 3.725 5.036 12.898 12.898 0 0 0 8.403 2.92 12.893 12.893 0 0 0 8.295-3.21 12.793 12.793 0 0 0 3.546-5.162c.523-1.413-.549-2.81-2.047-3.019-1.499-.21-2.844.876-3.584 2.19a7.348 7.348 0 0 1-1.547 1.907 7.4 7.4 0 0 1-9.58.166 7.35 7.35 0 0 1-1.612-1.852c-.786-1.287-2.169-2.325-3.659-2.064Z\" fill=\"#F4F4F4\"/><path d=\"M27.53 16.599c.065-.524.099-1.058.099-1.6 0-7.065-5.757-12.793-12.858-12.793-7.1 0-12.857 5.728-12.857 12.794 0 .695.056 1.377.163 2.042a4.014 4.014 0 0 1 2.508-1.554c1.077-.189 2.056.071 2.884.557A7.365 7.365 0 0 1 7.395 15c0-4.054 3.302-7.34 7.376-7.34 4.075 0 7.377 3.286 7.377 7.34 0 .267-.014.531-.042.791.81-.514 1.78-.809 2.863-.657 1 .14 1.942.682 2.56 1.465Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u328a8\",\"data-framer-name\":\"Logo - 6\",name:\"Logo - 6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z7n6e\",\"data-framer-name\":\"Logo_6\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:137,name:\"Logo_6\",svg:'<svg width=\"137\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.035 2.154a18.907 18.907 0 0 0-13.348 5.52A18.846 18.846 0 0 0 2.157 21a18.82 18.82 0 0 0 5.53 13.326 18.88 18.88 0 0 0 13.348 5.52v-9.423a9.452 9.452 0 0 1-6.674-2.76A9.422 9.422 0 0 1 11.596 21a9.408 9.408 0 0 1 2.765-6.663 9.44 9.44 0 0 1 6.674-2.76V2.154Z\" fill=\"#F4F4F4\"/><path d=\"M21.035 27.282c3.476 0 6.293-2.812 6.293-6.282s-2.817-6.282-6.293-6.282A6.287 6.287 0 0 0 14.743 21a6.287 6.287 0 0 0 6.292 6.282Z\" fill=\"#F4F4F4\"/><path d=\"M2.157 21a18.82 18.82 0 0 0 5.53 13.326 18.883 18.883 0 0 0 13.348 5.52 18.907 18.907 0 0 0 13.35-5.52A18.821 18.821 0 0 0 39.914 21h-9.44a9.407 9.407 0 0 1-2.765 6.663 9.44 9.44 0 0 1-6.675 2.76 9.45 9.45 0 0 1-6.674-2.76A9.423 9.423 0 0 1 11.596 21H2.157Zm25.171 0a6.277 6.277 0 0 0-1.843-4.442 6.298 6.298 0 0 0-8.899 0A6.277 6.277 0 0 0 14.743 21h12.585Zm22.445-7.08h-2.345v13.003h2.345V13.919Zm1.531 8.396c0 3.01 2.084 4.867 4.838 4.867s4.838-1.858 4.838-4.867c0-3.01-2.084-4.867-4.838-4.867s-4.838 1.857-4.838 4.867Zm2.344 0c0-1.784 1.042-2.824 2.494-2.824 1.451 0 2.493 1.04 2.493 2.824 0 1.783-1.042 2.824-2.493 2.824-1.452 0-2.494-1.04-2.494-2.824Zm15.711-4.607v1.244h-.186c-.559-.798-1.452-1.504-3.052-1.504-2.196 0-4.168 1.857-4.168 4.718 0 2.861 1.972 4.719 4.168 4.719 1.6 0 2.493-.725 3.014-1.45h.186v.892c0 1.784-1.042 2.601-2.567 2.601-1.526 0-2.308-.817-2.624-1.876l-2.103.91c.484 1.393 1.898 2.935 4.764 2.935 2.94 0 4.875-1.541 4.875-4.514V17.71H69.36Zm-2.531 7.17c-1.451 0-2.53-1.04-2.53-2.712 0-1.672 1.079-2.712 2.53-2.712 1.451 0 2.53 1.04 2.53 2.712 0 1.672-1.079 2.712-2.53 2.712Zm6.355-2.563c0 3.01 2.084 4.867 4.838 4.867s4.838-1.858 4.838-4.867c0-3.01-2.084-4.867-4.838-4.867s-4.838 1.857-4.838 4.867Zm2.344 0c0-1.784 1.043-2.824 2.494-2.824 1.451 0 2.493 1.04 2.493 2.824 0 1.783-1.041 2.824-2.493 2.824-1.451 0-2.493-1.04-2.493-2.824Zm9.173-7.282c0 .947.725 1.597 1.656 1.597.93 0 1.656-.65 1.656-1.597 0-.948-.726-1.598-1.656-1.598-.93 0-1.656.65-1.656 1.598Zm2.828 2.675h-2.344v9.214h2.344V17.71Zm2.089 12.929h2.346v-4.904h.185c.521.743 1.414 1.449 3.015 1.449 2.196 0 4.169-1.858 4.169-4.867 0-3.01-1.973-4.867-4.169-4.867-1.6 0-2.494.706-3.051 1.504h-.187V17.71h-2.308v12.93Zm4.839-5.461c-1.451 0-2.531-1.04-2.531-2.861 0-1.82 1.08-2.861 2.53-2.861 1.453 0 2.531 1.04 2.531 2.86 0 1.821-1.078 2.862-2.53 2.862Zm6.243-4.886c0 1.82 1.526 2.49 3.461 2.86l.484.094c1.153.223 1.674.501 1.674 1.096 0 .594-.521 1.059-1.599 1.059-1.08 0-1.954-.446-2.197-1.784l-2.158.558c.317 1.932 1.935 3.009 4.355 3.009 2.344 0 3.87-1.096 3.87-3.028s-1.563-2.452-3.647-2.86l-.484-.094c-.968-.186-1.489-.446-1.489-1.059 0-.557.484-.91 1.377-.91.894 0 1.526.372 1.749 1.375l2.122-.65c-.447-1.486-1.805-2.508-3.871-2.508-2.196 0-3.647 1.021-3.647 2.842Zm18.422 6.632V17.71h-2.344v4.756c0 1.709-.837 2.712-2.271 2.712-1.265 0-1.972-.687-1.972-2.08V17.71h-2.345v5.499c0 2.285 1.434 3.864 3.592 3.864 1.693 0 2.475-.743 2.847-1.524h.186v1.375h2.307Zm2.08-9.214v9.214h2.345v-5.499c0-1.263.595-1.969 1.674-1.969.931 0 1.489.52 1.489 1.524v5.944h2.345v-5.499c0-1.263.595-1.969 1.674-1.969.931 0 1.489.52 1.489 1.524v5.944h2.345v-6.056c0-2.23-1.378-3.307-3.09-3.307-1.507 0-2.195.67-2.641 1.45h-.187c-.428-.874-1.191-1.45-2.531-1.45s-2.066.595-2.418 1.3h-.187v-1.15h-2.307Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u3j9uo\",\"data-framer-name\":\"Logo - 2\",name:\"Logo - 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lggd5a\",\"data-framer-name\":\"Logo_2\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:133,name:\"Logo_2\",svg:'<svg width=\"133\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.31 11.76h3.21v13h-3.21v-13Zm4.49 8.11c0-3.22 2-5.15 5-5.15s5 1.93 5 5.15c0 3.22-1.93 5.17-5 5.17-3.07 0-5-1.88-5-5.17Zm6.82 0c0-1.77-.69-2.81-1.79-2.81s-1.78 1-1.78 2.81.68 2.8 1.78 2.8 1.81-.99 1.81-2.79l-.02-.01Zm4.46 5.56h3.1a1.66 1.66 0 0 0 1.74 1c1.23 0 1.87-.66 1.87-1.64v-1.8h.01a3.07 3.07 0 0 1-3 1.75c-2.35 0-3.91-1.79-3.91-4.87s1.49-5 4-5a3.07 3.07 0 0 1 3 1.89h-.09v-1.81h3.18v9.74c0 2.35-2.08 3.82-5.14 3.82-2.78-.01-4.56-1.28-4.74-3.07l-.02-.01Zm6.72-5.56c0-1.57-.72-2.56-1.86-2.56-1.14 0-1.84 1-1.84 2.56s.69 2.48 1.84 2.48c1.15 0 1.86-.85 1.86-2.48Zm4.45 0c0-3.22 2-5.15 5-5.15s5 1.93 5 5.15c0 3.22-1.94 5.17-5 5.17s-4.98-1.88-4.98-5.17h-.02Zm6.82 0c0-1.77-.7-2.81-1.79-2.81s-1.78 1-1.78 2.81.68 2.8 1.78 2.8 1.81-.99 1.81-2.79l-.02-.01Zm4.48-7.29a1.64 1.64 0 1 1 1.64 1.57 1.582 1.582 0 0 1-1.62-1.56l-.02-.01Zm0 2.36h3.25v9.86h-3.2l-.05-9.86Zm14.94 4.93c0 3.21-1.44 5.07-3.89 5.07a3.07 3.07 0 0 1-3-1.83h-.06v4.86h-3.21v-13h3.19v1.76h.06a3.09 3.09 0 0 1 3-1.9c2.52-.02 3.97 1.83 3.97 5.05l-.06-.01Zm-3.27 0c0-1.56-.73-2.57-1.86-2.57-1.13 0-1.84 1-1.85 2.57-.01 1.57.72 2.56 1.85 2.56 1.13 0 1.92-.93 1.92-2.55l-.06-.01Zm8.75-5.16c2.69 0 4.36 1.27 4.38 3.31h-2.93c0-.71-.59-1.15-1.47-1.15s-1.3.34-1.3.85.37.67 1.11.82l2.06.42c2 .42 2.8 1.22 2.8 2.71 0 2-1.85 3.36-4.6 3.36-2.75 0-4.54-1.32-4.67-3.33h3.11c.09.73.67 1.16 1.61 1.16.94 0 1.38-.3 1.38-.83s-.3-.62-1.07-.78l-1.86-.39c-1.93-.41-2.94-1.42-2.94-2.93.06-1.96 1.74-3.21 4.45-3.21l-.06-.01Zm15.4 10.08h-3.11v-1.85h-.06a2.818 2.818 0 0 1-2.87 2.05 3.43 3.43 0 0 1-3.53-3.71v-6.33h3.21v5.64c0 1.16.61 1.79 1.61 1.79a1.642 1.642 0 0 0 1.61-1.88v-5.55h3.2l-.06 9.84Zm1.55-9.85h3.12v1.9h.07a2.86 2.86 0 0 1 2.81-2.08 2.558 2.558 0 0 1 2.74 2.09h.14a2.998 2.998 0 0 1 3-2.09 3.118 3.118 0 0 1 3.23 3.35v6.69h-3.23v-5.87c0-1-.47-1.56-1.38-1.56a1.403 1.403 0 0 0-1.363.993 1.416 1.416 0 0 0-.047.597v5.84h-3.06v-5.9c0-1-.49-1.53-1.37-1.53a1.429 1.429 0 0 0-1.43 1.61v5.82h-3.21l-.02-9.86Zm-81.96-2.33A9.88 9.88 0 0 0 15.8 5.93H3.32v26.34h26.35V19.96a9.87 9.87 0 0 0 3.29-7.35Zm-5.07 0a4.82 4.82 0 1 1-9.64.02 4.82 4.82 0 0 1 9.64-.02ZM24.6 27.2H8.39V11h4.94a9.554 9.554 0 0 0-.15 1.61 9.9 9.9 0 0 0 9.89 9.89 9.67 9.67 0 0 0 1.53-.13v4.83Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5gtvr1\",\"data-framer-name\":\"Logo - 3\",name:\"Logo - 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-z93x8j\",\"data-framer-name\":\"Logo_3\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:139,name:\"Logo_3\",svg:'<svg width=\"139\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M21.59 23.759 3.65 11.384c-1.818-1.254-1.2-3.865 1.067-4.48L23.784 1.73A2.7 2.7 0 0 1 27.4 4.222L26.27 21.77c-.134 2.083-2.862 3.242-4.68 1.988Z\" fill=\"#F4F4F4\"/><path d=\"M15.9 26.814 5.331 6.145a2.883 2.883 0 0 1 3.007-4.16l19.587 3.022a2.884 2.884 0 0 1 2.127 4.162L21.03 26.815a2.883 2.883 0 0 1-5.129 0Z\" fill=\"#F4F4F4\"/><path d=\"M27.352 4.918 17.588 3.41 5.6 6.666l4.785 9.36L21.59 23.76c.247.169.52.298.806.383l4.256-8.323.7-10.901ZM76.81 7.334a1.835 1.835 0 1 1 1.834 1.835 1.854 1.854 0 0 1-1.835-1.835Zm.305 2.732h3.06V20.26h-3.06V10.066Zm16.269 5.097a5.119 5.119 0 0 1-4.872 5.383 3.831 3.831 0 0 1-3.038-1.244v5.036h-3.058V10.066h3.058v.958a3.829 3.829 0 0 1 3.038-1.243 5.119 5.119 0 0 1 4.872 5.382Zm-3.058 0a2.427 2.427 0 1 0-2.426 2.488 2.327 2.327 0 0 0 2.426-2.488Zm12.497 2.037c0 2.345-2.039 3.344-4.24 3.344a4.463 4.463 0 0 1-4.384-2.427l2.65-1.508a1.675 1.675 0 0 0 1.733 1.2c.734 0 1.1-.225 1.1-.632 0-1.122-5.015-.53-5.015-4.058 0-2.222 1.875-3.343 4-3.343a4.458 4.458 0 0 1 3.975 2.181l-2.609 1.407a1.479 1.479 0 0 0-1.366-.9c-.53 0-.856.2-.856.571-.003 1.17 5.012.395 5.012 4.165ZM114 10.066V20.26h-3.058v-.96a3.488 3.488 0 0 1-2.916 1.244c-2.059 0-3.812-1.468-3.812-4.221v-6.257h3.058v5.81a1.675 1.675 0 0 0 .457 1.34 1.683 1.683 0 0 0 1.317.516c1.121 0 1.9-.652 1.9-2.1v-5.566H114ZM131.528 14v6.26h-3.058v-5.994c0-1.019-.49-1.672-1.468-1.672-1.02 0-1.59.714-1.59 1.917v5.749h-3.059v-5.994c0-1.019-.489-1.672-1.468-1.672-1.019 0-1.59.714-1.59 1.917v5.749h-3.058V10.066h3.063V11a3.131 3.131 0 0 1 2.732-1.223 3.036 3.036 0 0 1 2.671 1.345 3.36 3.36 0 0 1 2.957-1.345c2.34.004 3.868 1.675 3.868 4.223Zm2.591-3.997a2.27 2.27 0 1 0 0-4.54 2.27 2.27 0 0 0 0 4.54ZM35.057 5.377h3.06V20.26h-3.06V5.377Zm4.791 9.786a5.4 5.4 0 1 1 5.4 5.383 5.345 5.345 0 0 1-5.4-5.383Zm7.748 0a2.344 2.344 0 1 0-2.345 2.406 2.287 2.287 0 0 0 2.35-2.406h-.005Zm15.25-5.1v9.685c0 3.425-2.672 4.872-5.383 4.872a5.212 5.212 0 0 1-4.832-2.467l2.61-1.509a2.332 2.332 0 0 0 2.324 1.285 2.033 2.033 0 0 0 2.3-2.181v-.938a3.623 3.623 0 0 1-2.977 1.325 5.181 5.181 0 0 1 0-10.357 3.622 3.622 0 0 1 2.977 1.325v-1.04h2.98Zm-2.977 4.893a2.47 2.47 0 1 0-2.469 2.369 2.31 2.31 0 0 0 2.47-2.366v-.003Zm4.708.2a5.4 5.4 0 1 1 5.4 5.383 5.344 5.344 0 0 1-5.4-5.376v-.007Zm7.748 0a2.347 2.347 0 1 0-2.345 2.406 2.288 2.288 0 0 0 2.345-2.399v-.007Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hqp7tv\",\"data-framer-name\":\"Logo - 4\",name:\"Logo - 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iwclxr\",\"data-framer-name\":\"Logo_4\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:128,name:\"Logo_4\",svg:'<svg width=\"128\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.188 6.441a3.056 3.056 0 0 1 4.342 0 3.104 3.104 0 0 1 0 4.37l-7.31 7.358c-2.099-2.831-1.87-6.857.684-9.429l2.284-2.299ZM73.637 23.04a3.104 3.104 0 0 1 0 4.37 3.056 3.056 0 0 1-4.341 0l-7.31-7.357a7.15 7.15 0 0 1 9.368.689l2.283 2.299ZM57.146 33.559a3.056 3.056 0 0 1-4.342 0 3.104 3.104 0 0 1 0-4.37l7.31-7.358c2.098 2.831 1.87 6.858-.684 9.429l-2.284 2.299ZM46.696 16.96a3.104 3.104 0 0 1 0-4.37 3.056 3.056 0 0 1 4.342 0l7.31 7.357a7.15 7.15 0 0 1-9.368-.689l-2.284-2.299Zm14.858 15.697a9.757 9.757 0 0 0 2.465-7.002l3.51 3.533.027.027v2.522a3.08 3.08 0 0 1-3.07 3.09 3.074 3.074 0 0 1-2.932-2.17ZM47.59 21.396a9.617 9.617 0 0 0 6.958 2.481l-3.51 3.534a2.166 2.166 0 0 0-.026.026h-2.507a3.08 3.08 0 0 1-3.07-3.09 3.09 3.09 0 0 1 2.156-2.95Zm25.152-2.792a9.617 9.617 0 0 0-6.957-2.481l3.51-3.534c.01-.008.018-.017.027-.026h2.506a3.08 3.08 0 0 1 3.07 3.09 3.09 3.09 0 0 1-2.156 2.95ZM58.78 7.342a9.757 9.757 0 0 0-2.466 7.003l-3.51-3.534c-.01-.008-.018-.017-.027-.026V8.263a3.08 3.08 0 0 1 3.07-3.09c1.378 0 2.543.912 2.932 2.17Z\" fill=\"#F4F4F4\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.848 2.658c-3.075 0-5.568 2.51-5.568 5.604v1.09c-1.85-.486-3.9 0-5.35 1.46a5.63 5.63 0 0 0 0 7.925l.765.77a5.609 5.609 0 0 0-2.758 4.84c0 3.095 2.493 5.604 5.568 5.604h1.083a5.627 5.627 0 0 0 1.45 5.385 5.543 5.543 0 0 0 7.874 0l2.284-2.299a9.754 9.754 0 0 0 2.823-7.382l3.51 3.533a5.543 5.543 0 0 0 7.875 0 5.63 5.63 0 0 0 0-7.925l-.765-.77a5.61 5.61 0 0 0 2.758-4.84c0-3.095-2.494-5.604-5.569-5.604h-1.082a5.627 5.627 0 0 0-1.45-5.385 5.543 5.543 0 0 0-7.874 0l-2.284 2.298a9.753 9.753 0 0 0-2.823 7.383l-3.511-3.534-.026-.026V8.262a3.08 3.08 0 0 1 3.07-3.09c1.377 0 2.542.913 2.931 2.17a9.84 9.84 0 0 1 .359-.38l1.518-1.528a5.56 5.56 0 0 0-4.808-2.776Zm13.474 9.905-.026.026-3.51 3.533a9.616 9.616 0 0 1 6.957 2.482 3.09 3.09 0 0 0 2.156-2.951 3.08 3.08 0 0 0-3.07-3.09h-2.507Zm-18.31 14.874.026-.026 3.51-3.534a9.617 9.617 0 0 1-6.957-2.48 3.09 3.09 0 0 0-2.156 2.95 3.08 3.08 0 0 0 3.07 3.09h2.506Zm13.474 9.905a5.56 5.56 0 0 1-4.808-2.776l1.518-1.529a9.97 9.97 0 0 0 .358-.38 3.074 3.074 0 0 0 2.932 2.17 3.08 3.08 0 0 0 3.07-3.09v-2.522a5.532 5.532 0 0 0 2.498 1.432v1.09c0 3.096-2.493 5.605-5.568 5.605Zm3.044-30.9a3.056 3.056 0 0 0-4.342 0L60.904 8.74c-2.555 2.571-2.783 6.598-.684 9.429l7.31-7.358a3.104 3.104 0 0 0 0-4.37Zm6.108 20.968a3.104 3.104 0 0 0 0-4.37l-2.284-2.298a7.15 7.15 0 0 0-9.368-.689l7.31 7.357a3.056 3.056 0 0 0 4.342 0Zm-16.492 6.15a3.056 3.056 0 0 1-4.342 0 3.105 3.105 0 0 1 0-4.37l7.31-7.358c2.098 2.831 1.87 6.857-.684 9.429l-2.284 2.299Zm-10.45-20.97a3.104 3.104 0 0 0 0 4.37l2.284 2.3a7.15 7.15 0 0 0 9.367.688l-7.31-7.358a3.056 3.056 0 0 0-4.341 0Z\" fill=\"#F4F4F4\"/><path d=\"M1.724 13.991h2.73v8.54h4.69v2.314h-7.42V13.99Zm12.378 11.087c-.915 0-1.717-.166-2.406-.497-.69-.342-1.224-.808-1.605-1.398-.37-.6-.555-1.288-.555-2.065 0-.776.185-1.46.555-2.05.38-.6.916-1.066 1.605-1.397.689-.341 1.491-.512 2.406-.512.916 0 1.718.17 2.407.512.689.331 1.219.797 1.589 1.398.38.59.57 1.273.57 2.05 0 .776-.19 1.464-.57 2.064-.37.59-.9 1.056-1.589 1.398-.69.331-1.491.497-2.407.497Zm0-2.128c.545 0 .977-.16 1.296-.48.33-.332.494-.782.494-1.352 0-.57-.165-1.014-.494-1.335-.319-.331-.75-.497-1.296-.497-.545 0-.982.166-1.31.497-.32.32-.48.766-.48 1.335 0 .57.16 1.02.48 1.351.328.321.765.481 1.31.481Zm9.667 5.466c-.494 0-.993-.046-1.497-.14a6.106 6.106 0 0 1-1.28-.372v-1.895c.812.352 1.738.528 2.777.528.75 0 1.29-.155 1.62-.465.34-.311.509-.767.509-1.367v-.45c-.298.259-.669.46-1.111.605a4.336 4.336 0 0 1-1.388.218c-.782 0-1.471-.166-2.068-.497a3.586 3.586 0 0 1-1.404-1.398c-.329-.6-.493-1.288-.493-2.065 0-.787.164-1.48.493-2.08.33-.6.792-1.062 1.389-1.382.596-.332 1.28-.497 2.052-.497 1.06 0 1.933.326 2.622.978v-.745h2.623v6.94c0 1.294-.396 2.299-1.188 3.013-.782.714-2 1.071-3.656 1.071Zm.308-5.45c.422 0 .797-.109 1.126-.326.33-.218.561-.507.695-.87v-1.304a1.746 1.746 0 0 0-.71-.854 1.974 1.974 0 0 0-1.11-.326c-.556 0-1.003.166-1.343.497-.34.32-.509.76-.509 1.32 0 .569.17 1.024.51 1.366.339.331.786.497 1.341.497Zm9.791 2.112c-.915 0-1.717-.166-2.406-.497-.69-.342-1.224-.808-1.605-1.398-.37-.6-.555-1.288-.555-2.065 0-.776.185-1.46.555-2.05.38-.6.916-1.066 1.605-1.397.689-.341 1.49-.512 2.406-.512.916 0 1.718.17 2.407.512.689.331 1.219.797 1.589 1.398.38.59.57 1.273.57 2.05 0 .776-.19 1.464-.57 2.064-.37.59-.9 1.056-1.59 1.398-.688.331-1.49.497-2.406.497Zm0-2.128c.545 0 .977-.16 1.296-.48.33-.332.494-.782.494-1.352 0-.57-.165-1.014-.494-1.335-.319-.331-.75-.497-1.296-.497-.545 0-.982.166-1.311.497-.319.32-.478.766-.478 1.335 0 .57.159 1.02.478 1.351.329.321.766.481 1.311.481Zm48.116-8.959h2.73v10.854h-2.73V13.99Zm4.113 3.401h2.623v.745c.689-.652 1.563-.978 2.622-.978.772 0 1.456.165 2.052.497a3.37 3.37 0 0 1 1.389 1.382c.329.59.494 1.278.494 2.065 0 .776-.165 1.47-.494 2.08a3.48 3.48 0 0 1-1.389 1.398c-.586.331-1.27.497-2.052.497-.493 0-.966-.078-1.418-.233a3.184 3.184 0 0 1-1.111-.606v4.006h-2.716V17.392Zm4.536 5.558c.556 0 1.003-.165 1.342-.496.34-.332.51-.782.51-1.351 0-.57-.17-1.015-.51-1.336-.339-.33-.786-.497-1.342-.497-.411 0-.782.11-1.111.326-.33.208-.565.492-.71.855v1.32c.145.362.38.651.71.869.33.207.7.31 1.111.31Zm8.691 2.128a9.915 9.915 0 0 1-1.866-.187c-.648-.113-1.163-.28-1.543-.496v-2.003a6.4 6.4 0 0 0 1.512.62 6.537 6.537 0 0 0 1.635.233c.36 0 .623-.025.787-.077.165-.052.247-.155.247-.31a.334.334 0 0 0-.17-.296c-.102-.082-.298-.165-.586-.248a19.938 19.938 0 0 0-.972-.295c-.627-.187-1.12-.378-1.48-.575-.361-.196-.628-.445-.803-.745-.175-.3-.262-.678-.262-1.134 0-.807.313-1.407.94-1.8.638-.405 1.507-.606 2.608-.606.535 0 1.095.057 1.681.17.597.114 1.044.264 1.343.45v1.973c-.309-.207-.721-.378-1.235-.513a5.507 5.507 0 0 0-1.42-.201c-.348 0-.621.036-.816.108-.196.062-.293.176-.293.342 0 .155.097.274.293.357.195.083.545.186 1.048.31.329.083.469.12.417.11.658.175 1.167.372 1.527.59.36.217.612.475.756.776.155.29.232.662.232 1.118 0 .714-.309 1.283-.926 1.708-.607.414-1.492.62-2.654.62Zm7.633 0c-1.018 0-1.784-.285-2.298-.854-.504-.57-.756-1.32-.756-2.252v-4.58h2.715v4.27c0 .859.386 1.289 1.157 1.289.35 0 .669-.083.957-.249.287-.166.524-.409.709-.73v-4.58h2.715v7.453h-2.622v-.808c-.319.342-.705.6-1.157.777a3.882 3.882 0 0 1-1.42.264Zm6.59-7.686h2.515v.807a3.196 3.196 0 0 1 1.064-.76 3 3 0 0 1 1.28-.28c.556 0 .998.082 1.327.248.34.166.612.414.818.745.308-.31.684-.553 1.126-.73.443-.175.89-.263 1.342-.263.977 0 1.672.253 2.083.76.411.497.617 1.217.617 2.159v4.767h-2.592v-4.379c0-.414-.077-.714-.232-.9-.153-.187-.411-.28-.77-.28-.463 0-.839.166-1.127.497.011.176.016.445.016.807v4.255h-2.592v-4.488c0-.383-.067-.657-.201-.823-.133-.165-.37-.248-.709-.248-.525 0-.977.295-1.358.885v4.674h-2.607v-7.453Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qu1x3n\",\"data-framer-name\":\"Logo - 5\",name:\"Logo - 5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qo7uh2\",\"data-framer-name\":\"Logo_5\",fill:\"black\",intrinsicHeight:30,intrinsicWidth:133,name:\"Logo_5\",svg:'<svg width=\"133\" height=\"30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M38.865 19.855c0 .633-.13 1.119-.392 1.459-.254.34-.68.51-1.275.51-.563 0-.961-.17-1.196-.51-.227-.34-.341-.826-.341-1.46V9.29c0-.633.114-1.12.341-1.459.235-.34.633-.51 1.196-.51.596 0 1.02.17 1.275.51.261.34.392.826.392 1.46v10.565Zm.973-3.069c0-.706.114-1.373.341-2a4.66 4.66 0 0 1 1.045-1.658c.469-.473 1.051-.85 1.748-1.13.703-.28 1.527-.42 2.47-.42.905 0 1.705.13 2.401.39.697.26 1.283.623 1.758 1.09a4.55 4.55 0 0 1 1.085 1.649c.248.633.372 1.326.372 2.079 0 .7-.117 1.363-.352 1.99a4.633 4.633 0 0 1-1.055 1.638c-.468.467-1.054.84-1.757 1.12-.703.273-1.52.41-2.451.41-.918 0-1.728-.13-2.431-.39-.697-.267-1.282-.63-1.758-1.09a4.631 4.631 0 0 1-1.064-1.639 5.825 5.825 0 0 1-.352-2.039Zm3.345 0c0 .44.04.86.12 1.26.08.393.208.739.382 1.039.18.3.415.54.703.72.288.173.64.26 1.055.26.382 0 .713-.08.994-.24.288-.16.523-.384.703-.67.188-.287.328-.63.422-1.03.094-.406.14-.853.14-1.339 0-.44-.043-.856-.13-1.25-.08-.4-.21-.75-.392-1.049a2.018 2.018 0 0 0-.703-.72c-.28-.18-.626-.27-1.034-.27-.409 0-.757.087-1.045.26-.288.174-.522.41-.703.71-.18.3-.311.65-.392 1.05-.08.4-.12.823-.12 1.269Zm16.12 3.108a3.116 3.116 0 0 1-.663.85c-.255.233-.54.426-.854.58a4.43 4.43 0 0 1-.994.33 5.77 5.77 0 0 1-1.075.1c-.616 0-1.179-.11-1.688-.33a3.718 3.718 0 0 1-1.316-.95c-.361-.42-.642-.933-.843-1.54-.201-.606-.302-1.299-.302-2.078 0-.733.094-1.42.282-2.06a5.167 5.167 0 0 1 .813-1.668 3.96 3.96 0 0 1 1.326-1.12c.522-.273 1.119-.41 1.788-.41.764 0 1.44.147 2.03.44.595.293 1.107.773 1.536 1.44v-.26c0-.48.13-.84.392-1.08.268-.247.636-.37 1.105-.37.28 0 .519.047.713.14.194.087.348.22.462.4.114.173.194.39.24.65.054.253.081.543.081.87v6.696c0 .813-.103 1.54-.311 2.179a4.001 4.001 0 0 1-.944 1.62c-.429.44-.978.772-1.648.999-.67.233-1.466.35-2.39.35-.65 0-1.226-.03-1.728-.09a6.756 6.756 0 0 1-1.286-.25c-.361-.127-.636-.267-.823-.42a.749.749 0 0 1-.272-.6c0-.14.02-.273.06-.4.04-.126.101-.24.181-.34.088-.093.198-.17.332-.23.14-.052.311-.08.512-.08.215 0 .429.014.643.04.221.027.449.054.683.08.241.034.492.064.754.09.267.027.555.04.863.04.369 0 .697-.036.985-.11a1.65 1.65 0 0 0 .733-.39c.2-.186.355-.436.462-.749.107-.306.16-.7.16-1.18v-1.189Zm0-3.108c0-.487-.037-.93-.11-1.33a2.94 2.94 0 0 0-.352-1.02 1.725 1.725 0 0 0-.673-.659c-.282-.16-.633-.24-1.055-.24-.415 0-.76.084-1.035.25a1.83 1.83 0 0 0-.642.69 3.26 3.26 0 0 0-.342 1.03c-.06.393-.09.812-.09 1.259 0 1.02.18 1.786.542 2.299.362.513.887.77 1.577.77.322-.007.613-.067.874-.18a1.83 1.83 0 0 0 .693-.55c.194-.247.345-.56.452-.94.107-.38.16-.84.16-1.38Zm3.956 0c0-.706.114-1.373.341-2a4.663 4.663 0 0 1 1.045-1.658c.469-.473 1.051-.85 1.748-1.13.703-.28 1.526-.42 2.47-.42.905 0 1.705.13 2.401.39.697.26 1.283.623 1.758 1.09a4.55 4.55 0 0 1 1.085 1.649c.248.633.372 1.326.372 2.079 0 .7-.118 1.363-.352 1.99a4.634 4.634 0 0 1-1.055 1.638c-.468.467-1.054.84-1.757 1.12-.704.273-1.52.41-2.451.41-.918 0-1.728-.13-2.431-.39-.697-.267-1.283-.63-1.758-1.09a4.634 4.634 0 0 1-1.065-1.639 5.828 5.828 0 0 1-.351-2.039Zm3.345 0c0 .44.04.86.12 1.26.08.393.208.739.382 1.039.18.3.415.54.703.72.288.173.64.26 1.055.26.381 0 .713-.08.994-.24.288-.16.522-.384.703-.67.188-.287.328-.63.422-1.03.094-.406.14-.853.14-1.339 0-.44-.043-.856-.13-1.25-.08-.4-.21-.75-.392-1.049a2.019 2.019 0 0 0-.703-.72c-.28-.18-.626-.27-1.034-.27-.409 0-.757.087-1.045.26-.288.174-.522.41-.703.71-.18.3-.311.65-.392 1.05-.08.4-.12.823-.12 1.269ZM78.786 8.21c0 .22-.05.416-.15.59a1.414 1.414 0 0 1-.392.42c-.161.113-.349.2-.563.26a2.573 2.573 0 0 1-1.316-.01 1.831 1.831 0 0 1-.552-.26 1.375 1.375 0 0 1-.382-.43 1.142 1.142 0 0 1-.14-.57c0-.194.043-.37.13-.53.094-.167.218-.31.372-.43s.338-.213.552-.28c.215-.066.449-.1.703-.1.221 0 .436.03.643.09.215.06.402.147.563.26.16.113.288.253.381.42.1.167.151.357.151.57Zm-.15 11.644c0 .633-.131 1.12-.392 1.46-.255.34-.68.51-1.276.51-.563 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-6.117c0-.633.114-1.12.342-1.46.234-.339.633-.509 1.195-.509.596 0 1.021.17 1.276.51.26.34.391.826.391 1.46v6.116Zm4.618-3.088c0 .446.034.863.1 1.25a3.3 3.3 0 0 0 .362 1.019c.175.286.402.513.683.68.288.166.643.25 1.065.25.389 0 .713-.08.975-.24.267-.167.481-.394.643-.68.16-.294.274-.637.34-1.03.074-.393.111-.82.111-1.28 0-.366-.026-.739-.08-1.119a3.599 3.599 0 0 0-.301-1.05 2.05 2.05 0 0 0-.613-.769c-.261-.2-.603-.3-1.025-.3-.421 0-.78.067-1.074.2a1.673 1.673 0 0 0-.703.61c-.175.273-.299.616-.372 1.03-.074.406-.11.882-.11 1.429Zm-.01-3.029c.168-.353.382-.663.643-.93a3.949 3.949 0 0 1 1.848-1.069c.349-.093.693-.14 1.035-.14.616 0 1.172.137 1.668.41a3.89 3.89 0 0 1 1.265 1.12 5.06 5.06 0 0 1 .814 1.659c.187.633.281 1.312.281 2.039 0 .753-.101 1.442-.302 2.069a4.873 4.873 0 0 1-.834 1.619 3.825 3.825 0 0 1-1.285 1.05 3.586 3.586 0 0 1-1.657.38c-.75 0-1.42-.174-2.01-.52a4.257 4.257 0 0 1-1.466-1.46v3.599c0 .633-.13 1.12-.391 1.459-.255.34-.68.51-1.276.51-.563 0-.961-.17-1.195-.51-.228-.34-.342-.826-.342-1.46v-9.825c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.196-.509.596 0 1.021.17 1.276.51.26.34.391.826.391 1.46Zm11.088.71c0 .26.114.463.341.61.228.14.543.256.945.35.381.086.773.17 1.175.25.402.08.794.173 1.175.28.382.1.74.22 1.075.36.334.14.63.316.884.529.254.206.455.46.602.76.148.293.221.646.221 1.06 0 .519-.107.982-.321 1.388-.214.4-.519.74-.914 1.02-.388.28-.853.496-1.396.65a6.86 6.86 0 0 1-1.798.24c-.623 0-1.223-.04-1.799-.12a7.364 7.364 0 0 1-1.536-.35c-.442-.16-.797-.357-1.065-.59-.267-.24-.401-.52-.401-.84 0-.28.09-.496.27-.65.182-.152.412-.23.694-.23.107 0 .234.02.382.06.147.04.307.09.481.15s.359.127.553.2c.2.067.408.127.622.18.269.074.543.134.824.18.288.04.583.06.885.06.187 0 .37-.016.552-.05.18-.04.342-.096.482-.17.148-.08.268-.18.362-.3a.866.866 0 0 0 .17-.439c.02-.04.037-.08.05-.12a.43.43 0 0 0 .02-.14c0-.187-.087-.353-.26-.5-.168-.146-.406-.263-.714-.35-.516-.12-1.008-.23-1.477-.33a20.51 20.51 0 0 1-1.305-.32 8.215 8.215 0 0 1-1.085-.39 3.039 3.039 0 0 1-.824-.539 2.312 2.312 0 0 1-.522-.77c-.12-.3-.18-.662-.18-1.089 0-.46.103-.87.31-1.23.215-.366.52-.672.915-.919s.873-.433 1.437-.56a8.297 8.297 0 0 1 1.908-.2c1.272 0 2.24.154 2.903.46.67.3 1.004.693 1.004 1.18 0 .273-.09.483-.271.63-.181.14-.399.21-.653.21-.134 0-.275-.024-.422-.07a7.673 7.673 0 0 0-.512-.17 4.876 4.876 0 0 0-.723-.17 5.5 5.5 0 0 0-1.025-.08c-.308 0-.59.013-.844.04a2.707 2.707 0 0 0-.643.14 1.027 1.027 0 0 0-.411.27.648.648 0 0 0-.14.43Zm10.495 3.668c0 .313.04.587.121.82.086.233.204.43.351.59.148.153.318.27.512.35.201.073.416.11.643.11.268 0 .526-.04.774-.12a1.818 1.818 0 0 0 1.115-1c.113-.253.171-.55.171-.89v-4.238c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.195-.509.596 0 1.021.17 1.276.51.261.34.392.826.392 1.46v6.116c0 .633-.131 1.12-.392 1.46-.255.34-.68.51-1.276.51-.562 0-.96-.17-1.195-.51-.227-.34-.341-.827-.341-1.46a3.323 3.323 0 0 1-.553.84 3.413 3.413 0 0 1-.784.66 3.84 3.84 0 0 1-.984.42c-.355.1-.74.15-1.155.15a3.72 3.72 0 0 1-1.296-.23 3.22 3.22 0 0 1-1.084-.7 3.452 3.452 0 0 1-.754-1.16c-.188-.46-.281-.996-.281-1.609v-4.488c0-.633.114-1.12.341-1.46.235-.339.633-.509 1.196-.509.596 0 1.021.17 1.275.51.262.34.392.826.392 1.46v4.377Zm8.345-4.378c0-.633.114-1.12.342-1.46.234-.339.633-.509 1.195-.509.597 0 1.022.17 1.276.51.261.34.392.826.392 1.46.134-.32.315-.61.543-.87.234-.267.498-.494.792-.68.302-.187.627-.33.975-.43a3.797 3.797 0 0 1 2.109-.02c.342.087.657.23.945.43.294.193.552.44.773.74.221.3.392.66.513 1.08.207-.447.451-.824.733-1.13a3.79 3.79 0 0 1 .913-.74 3.73 3.73 0 0 1 1.025-.4 5.01 5.01 0 0 1 1.085-.12c.428 0 .837.077 1.225.23.396.153.74.387 1.035.7.302.306.539.696.713 1.17.181.466.271 1.012.271 1.638v4.518c0 .633-.13 1.12-.392 1.46-.253.34-.679.51-1.275.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-4.378c0-.3-.04-.566-.12-.8a1.655 1.655 0 0 0-.342-.599 1.3 1.3 0 0 0-.502-.37 1.512 1.512 0 0 0-.623-.13c-.275 0-.535.044-.783.13-.248.087-.465.22-.653.4-.181.18-.328.41-.442.69-.108.28-.161.616-.161 1.01v4.047c0 .633-.131 1.12-.391 1.46-.255.34-.68.51-1.277.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-4.188c0-.686-.144-1.206-.431-1.559-.282-.353-.667-.53-1.155-.53-.288 0-.556.047-.804.14-.248.093-.462.23-.643.41-.181.18-.325.403-.432.67-.1.266-.15.573-.15.92v4.137c0 .633-.131 1.12-.392 1.46-.254.34-.679.51-1.276.51-.562 0-.961-.17-1.195-.51-.228-.34-.342-.827-.342-1.46v-6.117Zm-98.401 6.381c-2.84 0-5.143-2.292-5.143-5.118 0-2.826 2.303-5.118 5.143-5.118s5.143 2.292 5.143 5.118c0 2.826-2.302 5.118-5.143 5.118Z\" fill=\"#F4F4F4\"/><path d=\"M4.808 16.748c-1.49.262-2.512 1.694-1.94 3.088a12.8 12.8 0 0 0 3.725 5.036 12.898 12.898 0 0 0 8.403 2.92 12.893 12.893 0 0 0 8.295-3.21 12.793 12.793 0 0 0 3.546-5.162c.523-1.413-.549-2.81-2.047-3.019-1.499-.21-2.844.876-3.584 2.19a7.348 7.348 0 0 1-1.547 1.907 7.4 7.4 0 0 1-9.58.166 7.35 7.35 0 0 1-1.612-1.852c-.786-1.287-2.169-2.325-3.659-2.064Z\" fill=\"#F4F4F4\"/><path d=\"M27.53 16.599c.065-.524.099-1.058.099-1.6 0-7.065-5.757-12.793-12.858-12.793-7.1 0-12.857 5.728-12.857 12.794 0 .695.056 1.377.163 2.042a4.014 4.014 0 0 1 2.508-1.554c1.077-.189 2.056.071 2.884.557A7.365 7.365 0 0 1 7.395 15c0-4.054 3.302-7.34 7.376-7.34 4.075 0 7.377 3.286 7.377 7.34 0 .267-.014.531-.042.791.81-.514 1.78-.809 2.863-.657 1 .14 1.942.682 2.56 1.465Z\" fill=\"#F4F4F4\"/></svg>',withExternalLayout:true})})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-171ghv5\",\"data-framer-name\":\"Pricing Plan\",name:\"Pricing Plan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpyc6l\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1q5fccc\",\"data-framer-appear-id\":\"1q5fccc\",\"data-framer-name\":\"Texts\",initial:animation1,name:\"Texts\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ofe6a9\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"PACKAGES\"})}),className:\"framer-1152k0a\",\"data-framer-name\":\"PACKAGES\",fonts:[\"Inter\"],name:\"PACKAGES\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Choose Your Plan\"})}),className:\"framer-cw1gvh\",\"data-framer-name\":\"Choose Your Plan\",fonts:[\"Inter\"],name:\"Choose Your Plan\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation8,className:\"framer-do5ejy-container\",\"data-framer-appear-id\":\"do5ejy\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{variant:\"y8I_nzRE1\"},HFZRCTw4h:{variant:\"daJFPwmWo\"}},children:/*#__PURE__*/_jsx(PricingPlanMonthlyYearly,{height:\"100%\",id:\"qlgCOSOux\",layoutId:\"qlgCOSOux\",style:{width:\"100%\"},variant:\"fg1t6R303\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e0fn09\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h128a0\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-grzi40\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wscax\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",children:\"F.A.Q\"})}),className:\"framer-1apu6er\",\"data-framer-name\":\"F.A.Q\",fonts:[\"Inter\"],name:\"F.A.Q\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",children:\"Answers to Your Questions\"})}),className:\"framer-1bjo7hj\",\"data-framer-name\":\"Answers to Your Questions\",fonts:[\"Inter\"],name:\"Answers to Your Questions\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ye1ij\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{width:\"calc(min(max(100vw, 1px), 1440px) - 100px)\"},H6LOoIHW9:{width:\"max((min(max(100vw, 1px), 1440px) - 720px) * 1, 1px)\"},HFZRCTw4h:{width:\"calc((min(100vw, 1440px) - 40px) * 0.9)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(max(100vw, 1px), 1440px) - 820px) * 1, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15twrqj-container\",children:/*#__PURE__*/_jsx(FAQV2,{DD2NqCACp:\"Do you offer flexible payment options?\",gGRTI0h_2:\"We offer various flexible payment options tailored to suit your needs, including credit cards, PayPal, and direct bank transfers, we strive to make your purchasing experience convenient.\",height:\"100%\",id:\"J7Mrzxt7R\",layoutId:\"J7Mrzxt7R\",style:{width:\"100%\"},variant:\"SwRMvj8I8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{width:\"calc(min(max(100vw, 1px), 1440px) - 100px)\"},H6LOoIHW9:{width:\"max((min(max(100vw, 1px), 1440px) - 720px) * 1, 1px)\"},HFZRCTw4h:{width:\"calc((min(100vw, 1440px) - 40px) * 0.9)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(max(100vw, 1px), 1440px) - 820px) * 1, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zvqpu2-container\",children:/*#__PURE__*/_jsx(FAQV2,{DD2NqCACp:\"What services do you offer?\",gGRTI0h_2:\"We offer a wide range of digital services including digital marketing, web design, SEO, graphic design, content creation, and social media management.\",height:\"100%\",id:\"ikh4gQAzN\",layoutId:\"ikh4gQAzN\",style:{width:\"100%\"},variant:\"zELPYH_k8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{width:\"calc(min(max(100vw, 1px), 1440px) - 100px)\"},H6LOoIHW9:{width:\"max((min(max(100vw, 1px), 1440px) - 720px) * 1, 1px)\"},HFZRCTw4h:{width:\"calc((min(100vw, 1440px) - 40px) * 0.9)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(max(100vw, 1px), 1440px) - 820px) * 1, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3xf3h-container\",children:/*#__PURE__*/_jsx(FAQV2,{DD2NqCACp:\"How long does it take to see results?\",gGRTI0h_2:\"Typically, you may begin to observe initial indicators of progress within a few months. However, significant and consistent outcomes often materialize over a more extended period. \",height:\"100%\",id:\"pIVdORrtk\",layoutId:\"pIVdORrtk\",style:{width:\"100%\"},variant:\"SwRMvj8I8\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{width:\"calc(min(max(100vw, 1px), 1440px) - 100px)\"},H6LOoIHW9:{width:\"max((min(max(100vw, 1px), 1440px) - 720px) * 1, 1px)\"},HFZRCTw4h:{width:\"calc((min(100vw, 1440px) - 40px) * 0.9)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(max(100vw, 1px), 1440px) - 820px) * 1, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4lcyb9-container\",children:/*#__PURE__*/_jsx(FAQV2,{DD2NqCACp:\"How can I request a quote for your service?\",gGRTI0h_2:\"Our team will promptly review your needs and provide a comprehensive quote tailored to meet your specific objectives. We look forward to the opportunity to discuss and cater to your requirements\",height:\"100%\",id:\"YBvd8Z5nn\",layoutId:\"YBvd8Z5nn\",style:{width:\"100%\"},variant:\"SwRMvj8I8\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:540,pixelHeight:638,pixelWidth:540,sizes:\"528px\",src:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg\",srcSet:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg 540w\"}},HFZRCTw4h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:540,pixelHeight:638,pixelWidth:540,sizes:\"314px\",src:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg\",srcSet:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg 540w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:540,pixelHeight:638,pixelWidth:540,sizes:\"540px\",src:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg\",srcSet:\"https://framerusercontent.com/images/k5ApuqWc6Czt0lieKtjR02Mos4.svg 540w\"},className:\"framer-63olny\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nqhe9n\",\"data-framer-name\":\"Element 1\",name:\"Element 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a2u85f\",\"data-framer-name\":\"FAQ_image_1_setting\",fill:\"black\",intrinsicHeight:111,intrinsicWidth:111,name:\"FAQ_image_1_setting\",svg:'<svg width=\"111\" height=\"111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.474 63.223a4.331 4.331 0 0 0 4.337 4.325l11.839.011c.05.16 1.04 2.835 2.003 5.088a3.56 3.56 0 0 1-.76 3.936l-6.61 6.568a4.31 4.31 0 0 0-.005 6.113l10.666 10.647a4.35 4.35 0 0 0 6.137.005l6.56-6.524c1.085-1.08 2.725-1.304 4.117-.668.843.383 1.696.74 2.56 1.063 1.43.543 2.421 1.853 2.421 3.383l-.016 9.232a4.338 4.338 0 0 0 4.331 4.331l15.097.022c2.4 0 4.343-1.929 4.348-4.314l.017-9.326a3.55 3.55 0 0 1 2.273-3.317c.875-.34 1.893-.746 2.835-1.14a3.584 3.584 0 0 1 3.951.762l6.594 6.595a4.35 4.35 0 0 0 6.137.011l10.699-10.614a4.314 4.314 0 0 0 .011-6.113l-6.544-6.54c-1.084-1.086-1.31-2.714-.671-4.107.385-.838.737-1.688 1.067-2.549.545-1.425 1.866-2.412 3.396-2.412l9.269.022a4.338 4.338 0 0 0 4.353-4.31l.039-15.043a4.334 4.334 0 0 0-4.326-4.331l-9.362-.022c-1.475 0-2.79-.9-3.33-2.27a92.331 92.331 0 0 0-1.145-2.824 3.57 3.57 0 0 1 .765-3.936l6.627-6.562a4.31 4.31 0 0 0 .016-6.113l-10.65-10.67a4.35 4.35 0 0 0-6.136-.016l-6.578 6.514c-1.09 1.08-2.724 1.304-4.117.663-.88-.4-1.777-.773-2.685-1.113-1.437-.537-2.428-1.848-2.428-3.377V5.07c0-2.385-1.942-4.325-4.342-4.325H48.137c-2.394 0-4.343 1.935-4.343 4.325v9.326c0 1.47-.897 2.785-2.267 3.322a99.92 99.92 0 0 0-2.834 1.146 3.596 3.596 0 0 1-3.952-.756l-6.6-6.58a4.35 4.35 0 0 0-6.136 0L11.322 22.16a4.31 4.31 0 0 0 0 6.113l6.55 6.53c1.084 1.085 1.315 2.713.677 4.106a42.94 42.94 0 0 0-1.068 2.55c-.54 1.43-1.86 2.417-3.396 2.417H4.822a4.323 4.323 0 0 0-4.348 4.31L.463 63.227l.01-.005Zm34.173-3.64a20.707 20.707 0 0 1 .358-9.162 21.765 21.765 0 0 1 6.637-10.707 21.031 21.031 0 0 1 6.33-3.843C60.405 31.1 74.23 38.606 76.74 51.907c.468 2.478.463 4.972.039 7.374-.21 1.2-.528 2.38-.941 3.525a21.944 21.944 0 0 1-1.514 3.311 21.876 21.876 0 0 1-2.047 3.016 21.355 21.355 0 0 1-5.499 4.83c-1.056.647-2.18 1.2-3.362 1.65-12.433 4.77-26.26-2.741-28.774-16.036l.005.005Z\" fill=\"#222\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-aahein\",\"data-framer-name\":\"Element 2\",name:\"Element 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-excih8\",\"data-framer-name\":\"FAQ_element\",fill:\"black\",intrinsicHeight:78,intrinsicWidth:78,name:\"FAQ_element\",svg:'<svg width=\"78\" height=\"78\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 44.288a3.065 3.065 0 0 0 3.062 3.068l8.36.01c.037.11.735 2.013 1.415 3.605a2.533 2.533 0 0 1-.536 2.79l-4.668 4.661a3.065 3.065 0 0 0-.005 4.337l7.532 7.553a3.066 3.066 0 0 0 4.334.005l4.636-4.623c.768-.764 1.924-.926 2.91-.477a28.16 28.16 0 0 0 1.808.754c1.013.384 1.712 1.315 1.712 2.398l-.01 6.544a3.06 3.06 0 0 0 3.058 3.069L44.267 78a3.068 3.068 0 0 0 3.072-3.06l.009-6.613c0-1.041.633-1.976 1.605-2.351a71.71 71.71 0 0 0 2.003-.81 2.52 2.52 0 0 1 2.79.541l4.653 4.675a3.06 3.06 0 0 0 4.33.01l7.555-7.526a3.07 3.07 0 0 0 .009-4.337l-4.622-4.638c-.763-.768-.925-1.925-.471-2.91.273-.593.522-1.195.754-1.806.384-1.013 1.318-1.712 2.4-1.708l6.546.019a3.065 3.065 0 0 0 3.072-3.06L78 33.759a3.068 3.068 0 0 0-3.058-3.073l-6.61-.018a2.517 2.517 0 0 1-2.35-1.606 74.94 74.94 0 0 0-.81-2.004 2.53 2.53 0 0 1 .541-2.791l4.677-4.651a3.07 3.07 0 0 0 .014-4.337l-7.517-7.563a3.06 3.06 0 0 0-4.33-.009l-4.645 4.62c-.768.763-1.924.925-2.91.471a28.303 28.303 0 0 0-1.896-.791c-1.014-.384-1.712-1.31-1.712-2.393v-6.55A3.065 3.065 0 0 0 44.327 0H33.669a3.064 3.064 0 0 0-3.063 3.064v6.614a2.528 2.528 0 0 1-1.6 2.355c-.62.241-1.337.533-2.004.815a2.53 2.53 0 0 1-2.79-.537l-4.658-4.665a3.062 3.062 0 0 0-4.334 0l-7.54 7.54a3.065 3.065 0 0 0 0 4.336l4.625 4.628c.768.769.93 1.926.481 2.911a28.133 28.133 0 0 0-.754 1.81c-.379 1.014-1.313 1.713-2.396 1.713H3.095a3.058 3.058 0 0 0-3.067 3.059L.018 44.31 0 44.288Zm24.125-2.583c-.412-2.194-.3-4.41.254-6.493a15.561 15.561 0 0 1 3.752-6.697c.296-.315.61-.611.934-.898a14.72 14.72 0 0 1 4.47-2.722c8.775-3.383 18.54 1.94 20.312 11.372a14.72 14.72 0 0 1 .028 5.23c-.148.852-.37 1.69-.661 2.5a15.55 15.55 0 0 1-2.512 4.484 15.206 15.206 0 0 1-3.882 3.425 14.32 14.32 0 0 1-2.373 1.17c-8.78 3.384-18.541-1.943-20.313-11.37h-.01Z\" fill=\"#6AD9C5\"/></svg>',withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nmbbjs\",\"data-framer-name\":\"Blog Section\",name:\"Blog Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hmy1co\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t1xq00\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-18xdmu\",\"data-styles-preset\":\"vpCobN6jJ\",style:{\"--framer-text-alignment\":\"center\"},children:\"BLOG\"})}),className:\"framer-1usb2yl\",\"data-framer-name\":\"BLOG\",fonts:[\"Inter\"],name:\"BLOG\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-alignment\":\"center\"},children:\"Latest From Blog\"})}),className:\"framer-vzdqp1\",\"data-framer-name\":\"Latest From Blog\",fonts:[\"Inter\"],name:\"Latest From Blog\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ohhmx2\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2e9f0z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"default\",name:\"MI6eD4eWr\",type:\"Identifier\"},{collection:\"default\",name:\"ePglR8UHB\",type:\"Identifier\"},{collection:\"default\",name:\"AEpFi1K4G\",type:\"Identifier\"},{collection:\"default\",name:\"PLvqxTEFb\",type:\"Identifier\"},{collection:\"default\",name:\"zAJeq4UQ3\",type:\"Identifier\"},{collection:\"default\",name:\"lnYhhfWd8\",type:\"Identifier\"},{collection:\"default\",name:\"ZerSptMOi\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"default\",name:\"zAJeq4UQ3\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zAJeq4UQ3Ol9zi9mth},type:\"BinaryOperation\"}}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"default\",name:\"MI6eD4eWr\",type:\"Identifier\"},{collection:\"default\",name:\"ePglR8UHB\",type:\"Identifier\"},{collection:\"default\",name:\"AEpFi1K4G\",type:\"Identifier\"},{collection:\"default\",name:\"PLvqxTEFb\",type:\"Identifier\"},{collection:\"default\",name:\"zAJeq4UQ3\",type:\"Identifier\"},{collection:\"default\",name:\"lnYhhfWd8\",type:\"Identifier\"},{collection:\"default\",name:\"ZerSptMOi\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"default\",name:\"zAJeq4UQ3\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zAJeq4UQ3Ol9zi9mth},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"MI6eD4eWr\":MI6eD4eWrq0Ae9Pb9f,\"ePglR8UHB\":ePglR8UHBq0Ae9Pb9f,\"AEpFi1K4G\":AEpFi1K4Gq0Ae9Pb9f,\"PLvqxTEFb\":PLvqxTEFbq0Ae9Pb9f,\"zAJeq4UQ3\":zAJeq4UQ3q0Ae9Pb9f,\"lnYhhfWd8\":lnYhhfWd8q0Ae9Pb9f,\"ZerSptMOi\":ZerSptMOiq0Ae9Pb9f,\"id\":idq0Ae9Pb9f},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`q0Ae9Pb9f-${idq0Ae9Pb9f}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ZerSptMOi:ZerSptMOiq0Ae9Pb9f},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{ZerSptMOi:ZerSptMOiq0Ae9Pb9f},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOiq0Ae9Pb9f},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOiq0Ae9Pb9f},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined},{href:{pathVariables:{ZerSptMOi:ZerSptMOiq0Ae9Pb9f},webPageId:\"Ol9zi9mth\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9l6lx8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{LyYtshUif:resolvedLinks8[1],variant:\"STqPPWI97\"},H6LOoIHW9:{LyYtshUif:resolvedLinks8[3]},HFZRCTw4h:{LyYtshUif:resolvedLinks8[2],variant:\"STqPPWI97\"}},children:/*#__PURE__*/_jsx(BlogV1,{cZti8ivs8:zAJeq4UQ3q0Ae9Pb9f,height:\"100%\",id:\"SHGL11QDZ\",layoutId:\"SHGL11QDZ\",LyYtshUif:resolvedLinks8[0],qNiqCnQtk:PLvqxTEFbq0Ae9Pb9f,style:{width:\"100%\"},variant:\"fYsnLD8vl\",W3uwmM5uA:AEpFi1K4Gq0Ae9Pb9f,width:\"100%\",WVsGEZmO7:toResponsiveImage(MI6eD4eWrq0Ae9Pb9f),xKTYkinM5:ePglR8UHBq0Ae9Pb9f,Z6QR0SfrY:lnYhhfWd8q0Ae9Pb9f})})})})})})},idq0Ae9Pb9f);})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-47ps3m\",\"data-border\":true,\"data-framer-name\":\"Button \",name:\"Button \",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined},{href:{webPageId:\"egrQ40uM6\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pyjraf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{G8hBdvW_C:resolvedLinks9[1]},H6LOoIHW9:{G8hBdvW_C:resolvedLinks9[3]},HFZRCTw4h:{G8hBdvW_C:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(SecondaryButton,{BIZjDzs3y:\"See More Articles\",G8hBdvW_C:resolvedLinks9[0],height:\"100%\",id:\"p_Y7oJd8F\",layoutId:\"p_Y7oJd8F\",variant:\"eBv5VeVvL\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hejmdv\",\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5yas4l\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0jzzi\",\"data-framer-name\":\"Left\",name:\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuz74q\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-3zn36n\",\"data-styles-preset\":\"p1JB7TT7p\",style:{\"--framer-text-color\":\"var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255))\"},children:[\"Ready to transform\",/*#__PURE__*/_jsx(\"br\",{}),\"your digital presence?\"]})}),className:\"framer-qad2so\",\"data-framer-name\":\"Ready to transform your digital presence?\",fonts:[\"Inter\"],name:\"Ready to transform your digital presence?\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let us transform your digital business in just a month.\"})}),className:\"framer-fjp077\",\"data-framer-name\":\"Let us transform your digital business in just a month.\",fonts:[\"GF;Helvetica Neue-regular\"],name:\"Let us transform your digital business in just a month.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined},{href:{webPageId:\"gluKDJXSP\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ma2yrm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{jmC9WFiAE:resolvedLinks10[1]},H6LOoIHW9:{jmC9WFiAE:resolvedLinks10[3]},HFZRCTw4h:{jmC9WFiAE:resolvedLinks10[2]}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"e0nXrxBnf\",jmC9WFiAE:resolvedLinks10[0],layoutId:\"e0nXrxBnf\",variant:\"T2GQBGaCJ\",width:\"100%\",yudgrvSht:\"Get Free Consultation\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x9c9ob\",\"data-framer-name\":\"Element\",name:\"Element\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1l07kvw\",\"data-framer-name\":\"Element\",fill:\"black\",intrinsicHeight:524,intrinsicWidth:757,name:\"Element\",svg:'<svg width=\"757\" height=\"524\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M657 50c0 27.614-22.386 50-50 50h-50V50c0-27.614 22.386-50 50-50s50 22.386 50 50Zm0 100c0-27.614 22.386-50 50-50h50v50c0 27.614-22.386 50-50 50s-50-22.386-50-50Zm-100 0c0 27.614 22.386 50 50 50h50v-50c0-27.614-22.386-50-50-50s-50 22.386-50 50ZM757 50c0-27.614-22.386-50-50-50h-50v50c0 27.614 22.386 50 50 50s50-22.386 50-50Z\" fill=\"#fff\"/><path d=\"M110 359c0 30.376-24.624 55-55 55H0v-55c0-30.376 24.624-55 55-55s55 24.624 55 55Zm0 110c0-30.376 24.624-55 55-55h55v55c0 30.376-24.624 55-55 55s-55-24.624-55-55ZM0 469c0 30.376 24.624 55 55 55h55v-55c0-30.376-24.624-55-55-55S0 438.624 0 469Zm220-110c0-30.376-24.624-55-55-55h-55v55c0 30.376 24.624 55 55 55s55-24.624 55-55Zm430.952-158.112c13.439 0 24.333-10.917 24.333-24.385 0-13.467-10.894-24.385-24.333-24.385-13.439 0-24.334 10.918-24.334 24.385 0 13.468 10.895 24.385 24.334 24.385Z\" fill=\"#FED67A\"/><path d=\"m519.773 233.825 35.343-21.829s-.845-41.325 5.97-36.403c6.816 4.922 7.325 23.382 7.325 23.382l26.3-19.492 39.162 20.483-26.121 23.145-36.5 24.014-62.622 43.882 11.137-57.177.006-.005Z\" fill=\"#fff\"/><path d=\"m506.523 294.248 11.947-61.328 35.187-21.729c-.028-2.366-.075-9.422.29-16.616.827-16.396 2.985-19.579 4.773-20.518.59-.313 1.787-.679 3.216.353 5.716 4.128 7.325 16.309 7.764 21.8l24.878-18.443 41.829 21.881-27.863 24.663-37.542 24.698-64.473 45.228-.006.011Zm14.545-59.524-10.333 53.031 58.642-41.135 37.489-24.669 24.467-21.677-36.495-19.086-27.799 20.605-.075-2.777c-.139-4.934-1.614-18.559-6.723-22.246a.806.806 0 0 0-.214-.122c-.301.197-2.372 2.105-3.188 17.898-.451 8.742-.283 17.335-.283 17.422l.017.829-35.511 21.932.006-.005Zm-169.172-.476-11.328 178.789h136.971l-3.217-132.001-26.306-42.492-28.222-20.964-67.898 16.668Z\" fill=\"#222\"/><path d=\"m419.794 217.579 17.911-30.345-36.222-9.815-21.372 32.85 37.114 27.017 2.569-19.707Z\" fill=\"#fff\"/><path d=\"m418.348 239.895-40.198-29.261 22.697-34.884 39.069 10.586-18.722 31.725-2.846 21.834Zm-36.269-29.986 34.035 24.774 2.292-17.584 17.09-28.96-33.371-9.044-20.046 30.814Z\" fill=\"#222\"/><path d=\"M436.224 152.495c6.845 4.569 11.519 11.752 12.85 19.886 1.695 10.349 3.026 25.255-.694 35.905-6.266 17.921-39.133-7.728-39.133-7.728l-13.839-13.909s-7.162-39.929 9.847-43.964c9.928-2.354 22.349 4.059 30.969 9.81Z\" fill=\"#fff\"/><path d=\"M439.245 216.084c-12.3 0-30.061-13.735-30.888-14.384a1.457 1.457 0 0 1-.255-2.035 1.446 1.446 0 0 1 2.031-.256c.214.169 21.36 16.53 31.993 13.393 2.355-.696 3.952-2.331 4.889-5.003 3.599-10.297 2.332-24.82.636-35.186-1.255-7.677-5.71-14.57-12.224-18.912-8.418-5.613-20.423-11.839-29.836-9.607-15.487 3.676-8.828 41.911-8.759 42.294a1.448 1.448 0 0 1-1.169 1.681 1.44 1.44 0 0 1-1.677-1.171c-.301-1.687-7.197-41.326 10.94-45.628 10.419-2.475 23.211 4.082 32.103 10.013 7.18 4.789 12.092 12.39 13.475 20.854 1.753 10.703 3.043 25.742-.758 36.618-1.25 3.566-3.535 5.862-6.804 6.824-1.151.342-2.395.493-3.697.493v.012Zm11.525 33.974a1.444 1.444 0 0 1-1.394-1.066l-2.621-9.578-27.817-20.669a1.453 1.453 0 0 1-.3-2.029 1.445 1.445 0 0 1 2.024-.301l28.621 21.265 2.887 10.546a1.446 1.446 0 0 1-1.394 1.832h-.006Z\" fill=\"#222\"/><path d=\"M639.798 207.7h11.154v-60.238h-11.154V207.7Z\" fill=\"#fff\"/><path d=\"M652.398 209.149h-14.047v-63.136h14.047v63.136Zm-11.155-2.898h8.262v-57.339h-8.262v57.339Z\" fill=\"#222\"/><path d=\"M435.999 185.455h6.398V169.54h-6.398v15.915Z\" fill=\"#fff\"/><path d=\"M443.844 186.904h-9.291v-18.813h9.291v18.813Zm-6.399-2.899h3.506V170.99h-3.506v13.015Z\" fill=\"#222\"/><path d=\"m639.804 201.949-197.406-17.758v-13.387l197.406-17.759v48.904Z\" fill=\"#222\"/><path d=\"m641.249 203.538-200.298-18.02v-16.036l1.319-.116 198.985-17.903v52.08l-.006-.005Zm-197.405-20.669 194.512 17.497v-45.738l-194.512 17.498v10.743Zm-50.744 80.78c13.833-7.189 19.232-24.255 12.058-38.117-7.173-13.863-24.203-19.274-38.037-12.085-13.833 7.189-19.232 24.255-12.059 38.118 7.174 13.863 24.204 19.273 38.038 12.084Z\" fill=\"#222\"/><path d=\"m393.436 213.614 50.709 28.635-26.919 48.492-49.963-27.017 26.173-50.11Z\" fill=\"#222\"/><path d=\"m444.145 242.248 20.758 12.106 44.149-59.71c18.45-27.058 44.912-38.63 77.612-38.561l15.349.035c2.14 0 4.246.62 5.999 1.844 2.401 1.681 3.952 4.278-3.298 6.719l-10.888 3.212 6.943 2.099c2.684.812 5.021 2.563 6.416 5.003 1.33 2.331 1.597 4.986-2.962 6.076-1.302.313-2.65.383-3.987.261l-20.873-1.855 19.149 5.769c2.639.794 4.935 2.504 6.33 4.881 1.481 2.528 1.556 5.276-5.421 5.009l-25.202-4.156 15.297 12.598c1.672 1.38 2.841 3.305 3.165 5.456.387 2.562-.573 4.875-7.238 1.576-11.588-5.739-22.447-13.955-22.447-13.955s-.77 13.898-20.267 15.353l-29.743 79.15c-9.204 23.069-36.558 32.768-58.196 20.639l-37.57-21.063 26.919-48.491.006.005Z\" fill=\"#fff\"/><path d=\"M474.855 318.488a42.475 42.475 0 0 1-20.764-5.42l-38.832-21.765 28.337-51.043 20.908 12.193 43.38-58.673c9.094-13.34 20.544-23.417 33.995-29.893 12.745-6.139 27.712-9.247 44.49-9.247h.289l15.349.035c2.505 0 4.866.736 6.821 2.11 1.938 1.363 2.806 2.841 2.586 4.395-.289 1.994-2.273 3.548-6.248 4.887l-6.289 1.856 2.303.695c3.124.945 5.698 2.957 7.249 5.67 1.093 1.908 1.331 3.612.706 5.062-.654 1.519-2.199 2.574-4.582 3.148-1.4.336-2.893.435-4.449.296l-6.763-.603 5.583 1.681c3.066.922 5.606 2.893 7.156 5.537 1.14 1.942 1.313 3.6.521 4.928-1.001 1.675-3.367 2.412-7.244 2.261l-.179-.017-19.884-3.282 11.136 9.166c2.002 1.647 3.31 3.908 3.68 6.36.37 2.435-.486 3.635-1.267 4.204-1.591 1.165-4.148.811-8.036-1.114-8.782-4.348-17.229-10.163-20.839-12.754-1.227 4.261-5.502 12.795-20.197 14.221l-29.419 78.292c-4.553 11.41-13.775 20.286-25.306 24.374a42.397 42.397 0 0 1-14.186 2.44h-.005Zm-55.662-28.304 36.315 20.356a39.559 39.559 0 0 0 32.572 2.777 39.683 39.683 0 0 0 23.576-22.692l30.055-79.985.92-.07c17.912-1.339 18.895-13.479 18.93-13.995l.174-2.685 2.14 1.612c.11.081 10.889 8.198 22.216 13.81 4.085 2.024 5.011 1.403 5.051 1.374.122-.087.249-.545.116-1.432-.261-1.745-1.204-3.357-2.656-4.551l-19.462-16.025 30.426 5.021c3.859.128 4.501-.754 4.564-.858.151-.255.093-.904-.532-1.971-1.18-2.012-3.13-3.514-5.496-4.227l-32.717-9.862 34.985 3.114c1.244.11 2.43.035 3.523-.226 1.412-.337 2.338-.864 2.604-1.479.3-.701-.139-1.733-.556-2.47-1.18-2.063-3.164-3.606-5.577-4.336l-11.588-3.502 15.545-4.586c4.044-1.362 4.253-2.487 4.258-2.534.041-.289-.37-.898-1.382-1.605-1.47-1.032-3.258-1.583-5.172-1.583l-15.349-.035h-.295c-33.822 0-58.717 12.407-76.119 37.928l-44.953 60.801-20.602-12.013-25.503 45.935-.011-.006Z\" fill=\"#222\"/><path d=\"M595.434 169.836c-.185 0-.37-.035-.549-.11-.041-.018-2.777-1.096-9.824-1.896a1.448 1.448 0 0 1-1.273-1.606 1.448 1.448 0 0 1 1.603-1.276c7.561.858 10.483 2.047 10.604 2.099a1.448 1.448 0 0 1 .781 1.896 1.448 1.448 0 0 1-1.336.893h-.006Zm-15.024 11.189c-.093 0-.185-.005-.278-.029l-10.205-1.988a1.45 1.45 0 0 1 .549-2.847l10.206 1.989a1.448 1.448 0 0 1-.272 2.87v.005Zm-4.055 13.167c-.267 0-.533-.076-.776-.227l-10.211-6.505a1.449 1.449 0 0 1 1.55-2.446l10.212 6.505a1.449 1.449 0 0 1-.775 2.673ZM538.384 213.8c-1.469 0-3.06-.081-4.697-.296a1.453 1.453 0 0 1-1.25-1.623 1.454 1.454 0 0 1 1.62-1.252c5.843.765 11.247-.354 11.299-.366a1.442 1.442 0 0 1 1.712 1.119 1.44 1.44 0 0 1-1.11 1.716c-.18.041-3.356.702-7.579.702h.005Zm-118.37 79.955c-.231 0-.469-.058-.689-.174l-33.544-18.193a1.452 1.452 0 0 1-.584-1.965 1.45 1.45 0 0 1 1.961-.586l33.544 18.193c.7.383.967 1.258.585 1.966a1.438 1.438 0 0 1-1.273.759Zm24.131-50.052c-.243 0-.486-.058-.711-.185l-25.977-14.668a1.453 1.453 0 0 1-.549-1.977 1.446 1.446 0 0 1 1.972-.551l25.977 14.668c.694.394.943 1.276.55 1.977-.267.47-.758.736-1.262.736Zm12.67-82.228c-4.021 2.076-9.401 3.595-16.604 3.937l-22.373-2.505s-8.626 18.651-18.386 20.472c-9.76 1.82-16.83-8.262-18.154-32.125-1.285-23.15 18.386-14.732 18.386-14.732s57.426-26.385 66.098-2.075c4.276 11.978 2.315 21.19-8.967 27.023v.005Z\" fill=\"#222\"/><path d=\"M397.254 185.043c-2.638 0-5.056-.852-7.208-2.545-5.872-4.621-9.303-15.103-10.194-31.157-.428-7.676 1.336-12.958 5.247-15.706 5.213-3.658 12.404-1.461 14.539-.678 5.114-2.29 40.845-17.706 58.618-10.204 4.374 1.849 7.365 4.945 8.887 9.212 4.825 13.52 1.66 22.942-9.668 28.797-4.634 2.395-10.42 3.775-17.2 4.094h-.116l-.115-.006-21.355-2.389c-1.955 3.943-9.812 18.634-18.976 20.338-.839.157-1.66.238-2.459.238v.006Zm-5.016-48.556c-1.886 0-3.853.377-5.49 1.531-3.032 2.133-4.38 6.563-4.015 13.166 1.053 18.912 5.525 26.229 9.095 29.041 2.117 1.67 4.593 2.255 7.353 1.739 8.91-1.664 17.252-19.474 17.339-19.654l.44-.945 23.292 2.603c6.312-.313 11.663-1.582 15.898-3.768 9.951-5.143 12.578-13.167 8.268-25.249-1.256-3.519-3.639-5.977-7.284-7.514-17.594-7.433-56.46 10.239-56.854 10.419l-.584.266-.59-.249c-.047-.023-3.304-1.374-6.868-1.374v-.012Z\" fill=\"#222\"/><path d=\"M408.906 176.59s-4.71-16.349-11.404-12.204c-3.222 1.995-5.259 6.268-6.502 10.164-1.4 4.371.636 9.108 4.749 11.131l6.833 3.351 6.324-12.442Z\" fill=\"#fff\"/><path d=\"M402.583 190.481c-.214 0-.428-.046-.637-.15l-6.832-3.351c-4.733-2.325-7.099-7.856-5.491-12.877 1.73-5.409 4.125-9.097 7.122-10.952 1.557-.968 3.229-1.148 4.825-.527 5.271 2.035 8.389 12.389 8.725 13.56.22.771-.22 1.572-.989 1.792a1.45 1.45 0 0 1-1.794-.992c-1.128-3.901-4.021-10.517-6.989-11.659-.752-.29-1.475-.197-2.268.29-2.36 1.461-4.391 4.702-5.883 9.369-1.169 3.659.555 7.694 4.009 9.387l6.832 3.351a1.452 1.452 0 0 1 .666 1.936 1.44 1.44 0 0 1-1.302.812l.006.011Z\" fill=\"#222\"/><path d=\"M403.358 181.367c-.168 0-.342-.029-.509-.093-.185-.069-4.617-1.791-6.208-6.54a1.456 1.456 0 0 1 .908-1.838 1.45 1.45 0 0 1 1.834.911c1.146 3.415 4.461 4.742 4.496 4.754a1.46 1.46 0 0 1 .833 1.872c-.22.58-.77.934-1.348.934h-.006Zm37.194 19.063c-.48.064-.966.087-1.452.058-.104-.006-.208-.017-.318-.023-.411-.035.289.058-.116-.012a9.19 9.19 0 0 1-.677-.145 9.377 9.377 0 0 1-.659-.203c-.035-.011-.417-.168-.116-.04-.116-.052-.226-.105-.335-.157a5.984 5.984 0 0 1-.538-.301 5.623 5.623 0 0 1-.307-.203c-.041-.029-.33-.279-.093-.064-.167-.151-.341-.296-.503-.458-.069-.075-.145-.151-.208-.226-.023-.029-.272-.348-.081-.087a6.902 6.902 0 0 1-.671-1.142c.144.307-.012-.052-.029-.099a3.006 3.006 0 0 1-.104-.342c-.053-.191-.087-.383-.128-.574.07.348 0 0 0-.081-.011-.116-.011-.232-.017-.354 0-.237.017-.469.04-.701.093-.754-.729-1.484-1.446-1.45-.862.041-1.348.638-1.446 1.45-.272 2.272.798 4.673 2.551 6.116 1.84 1.508 4.293 2.25 6.659 1.937.746-.099 1.487-.597 1.446-1.45-.028-.701-.642-1.553-1.446-1.449h-.006Zm-8.84-14.622c-.619 0-1.186-.4-1.382-1.02-2.662-8.61 1.035-14.669 1.197-14.918a1.449 1.449 0 0 1 1.996-.458c.677.423.879 1.316.457 1.995-.133.214-3.136 5.241-.885 12.528a1.451 1.451 0 0 1-1.383 1.879v-.006Zm-4.651-2.991c-.619 0-1.186-.4-1.383-1.021-1.614-5.218.659-8.934.752-9.09a1.447 1.447 0 0 1 2.459 1.53c-.081.128-1.649 2.818-.446 6.702a1.451 1.451 0 0 1-1.382 1.879Zm32.022 81.445a1.451 1.451 0 0 1-1.18-2.29l10.067-14.204a1.443 1.443 0 0 1 2.019-.342 1.45 1.45 0 0 1 .341 2.023l-10.067 14.204a1.44 1.44 0 0 1-1.18.609Zm18.45 148.774H340.568v62.006h136.965v-62.006Z\" fill=\"#222\"/><path d=\"m554.483 317.058 6.394 6.408 6.394-6.408-6.394-6.407-6.394 6.407Z\" fill=\"#FED67A\"/><path d=\"m665.458 312.233 9.082 9.101 9.082-9.101-9.082-9.101-9.082 9.101Z\" fill=\"#6AD9C5\"/><path d=\"m601.179 259.52 11.451 11.475 11.45-11.475-11.45-11.475-11.451 11.475Z\" fill=\"#fff\"/><path d=\"M261.615 266.083c.364-7.908-.139-15.863.816-23.719a64.666 64.666 0 0 1 3.795-15.271c2.36-6.145 5.895-12.157 11.478-15.619 5.589-3.461 13.573-3.641 18.247.986 1.291 1.276 2.286 2.847 3.726 3.954 4.53 3.484 10.946 1.026 16.645.568 6.613-.533 13.416 2.087 17.97 6.923 4.559 4.835 6.774 11.786 5.866 18.372-.85 6.146-4.223 11.776-4.727 17.962-.601 7.386 2.986 14.505 7.44 20.419 4.455 5.914 9.876 11.103 13.874 17.335 6.867 10.703 8.979 24.971 3.24 36.317-1.927 3.809-4.634 7.16-7.406 10.401-2.094 2.447-4.263 4.87-6.884 6.748-5.82 4.175-13.237 5.236-20.336 6.134-8.603 1.085-17.461 2.082-25.844-.133-4.588-1.212-8.88-3.357-13.052-5.624-13.607-7.403-23.83-16.581-32.531-29.365-7.649-11.242-6.393-21.243 1.03-32.577 4.674-7.137 6.254-15.393 6.641-23.817l.012.006Z\" fill=\"#222\"/><path d=\"M263.061 266.083c.364-8.082-.191-16.228.885-24.269.943-7.056 2.997-14.28 6.584-20.466 3.066-5.299 7.735-9.931 14.018-10.83 2.638-.377 5.502-.081 7.885 1.165 1.314.684 2.372 1.601 3.344 2.708 1.157 1.328 2.222 2.69 3.72 3.658 5.739 3.728 12.931.145 19.139.325 6.259.18 12.485 3.299 16.176 8.407 3.934 5.432 4.958 12.175 3.228 18.604-.932 3.456-2.349 6.76-3.246 10.233-.914 3.525-1.105 7.085-.434 10.674 2.737 14.714 16.61 23.202 23.136 35.899 2.991 5.821 4.582 12.413 4.345 18.964a31.115 31.115 0 0 1-1.776 9.358c-1.169 3.275-3.014 6.249-5.097 9.009-2.164 2.876-4.541 5.705-7.11 8.221-2.517 2.464-5.439 4.331-8.742 5.543-3.222 1.183-6.607 1.849-9.991 2.354-3.628.545-7.284.985-10.935 1.322-3.859.353-7.747.527-11.611.22a38.43 38.43 0 0 1-11.12-2.592c-3.361-1.327-6.578-3.043-9.725-4.818a99.387 99.387 0 0 1-8.314-5.229 85.472 85.472 0 0 1-14.174-12.529 90.42 90.42 0 0 1-6.121-7.531c-2.095-2.876-4.131-5.85-5.398-9.195-1.14-3.015-1.672-6.18-1.452-9.404.225-3.276 1.249-6.499 2.655-9.45 1.62-3.409 3.923-6.407 5.554-9.798 1.545-3.212 2.644-6.615 3.356-10.1.7-3.438 1.064-6.945 1.232-10.447.087-1.867-2.806-1.861-2.893 0-.347 7.206-1.596 14.511-5.12 20.889-.954 1.733-2.106 3.345-3.083 5.061a42.99 42.99 0 0 0-2.552 5.253c-1.278 3.154-2.059 6.54-2.088 9.955-.029 3.484.763 6.893 2.123 10.087 1.475 3.467 3.633 6.563 5.872 9.567 3.986 5.345 8.482 10.291 13.544 14.639 5.091 4.377 10.68 8.151 16.558 11.381 3.355 1.843 6.786 3.588 10.391 4.899 3.725 1.356 7.631 2.081 11.582 2.325 4.061.249 8.134 0 12.173-.412 3.772-.389 7.55-.841 11.293-1.438 3.494-.557 6.977-1.328 10.257-2.69 3.472-1.438 6.497-3.502 9.153-6.175 2.655-2.672 5.103-5.629 7.353-8.65 2.222-2.98 4.085-6.192 5.305-9.717 2.257-6.487 2.303-13.624.77-20.28-1.608-6.969-5.028-13.114-9.436-18.68-4.629-5.844-10.061-11.097-13.735-17.642-1.735-3.096-3.101-6.482-3.552-10.025-.463-3.606.231-7.073 1.325-10.499 1.122-3.525 2.557-6.975 3.164-10.645.573-3.449.405-6.98-.526-10.354-1.84-6.673-6.538-12.349-12.844-15.219-3.118-1.421-6.485-2.227-9.916-2.25-3.39-.023-6.682.864-10.038 1.206-3.13.319-6.225.11-8.527-2.278-1.204-1.253-2.193-2.685-3.558-3.78a13.892 13.892 0 0 0-3.992-2.233c-6.098-2.226-12.942-.237-17.779 3.804-5.34 4.47-8.447 11.149-10.564 17.648-2.563 7.867-3.281 15.99-3.367 24.223-.041 4.006-.012 8.018-.191 12.018-.087 1.867 2.806 1.861 2.892 0l-.005.006Z\" fill=\"#222\"/><path d=\"M272.634 333.943c2.349-14.498-7.476-28.158-21.943-30.512-14.467-2.353-28.098 7.492-30.447 21.99-2.348 14.497 7.476 28.158 21.943 30.511 14.467 2.353 28.099-7.492 30.447-21.989Zm113.448 9.388c10.364-10.385 10.364-27.224 0-37.609-10.363-10.386-27.166-10.386-37.53 0-10.363 10.385-10.363 27.224 0 37.609 10.364 10.386 27.167 10.386 37.53 0Z\" fill=\"#6AD9C5\"/><path d=\"M236.482 305.021 178.68 327.22l18.068 49.715 62.176-23.794-22.442-48.12Z\" fill=\"#6AD9C5\"/><path d=\"m242.164 303.426 42.384-7.34h42.477l41.915 1.902 50.826 176.556H286.851l-36.096-118.278-8.591-52.84Z\" fill=\"#6AD9C5\"/><path d=\"m385.348 305.021 47.36 46.103-36.993 35.267-49.245-45.413 38.878-35.957Z\" fill=\"#6AD9C5\"/><path d=\"m432.707 351.124 6.48 6.221a50.996 50.996 0 0 1 15.672 36.786v80.414h-35.1l-8.632-75.631-15.418-12.517 36.998-35.267v-.006Z\" fill=\"#fff\"/><path d=\"M456.306 475.994h-37.837l-8.713-76.326-16.239-13.184 39.19-37.355 7.481 7.178c10.24 9.833 16.118 23.62 16.118 37.83V476v-.006Zm-35.256-2.899h32.363v-78.964c0-13.427-5.548-26.449-15.227-35.737l-5.485-5.264-34.805 33.174 14.597 11.856.069.586 8.488 74.349Z\" fill=\"#222\"/><path d=\"M411.764 405.906a1.446 1.446 0 0 1-1.434-1.293l-1.782-16.5a1.443 1.443 0 0 1 1.284-1.595 1.441 1.441 0 0 1 1.591 1.288l1.782 16.5a1.442 1.442 0 0 1-1.284 1.594c-.052 0-.104.006-.157.006Z\" fill=\"#222\"/><path d=\"M307.88 319.15a15.266 15.266 0 0 1-14.307-9.955l-11.328-30.409h32.607l7.342 19.706c3.725 10.001-3.657 20.658-14.308 20.658h-.006Z\" fill=\"#fff\"/><path d=\"M307.881 320.599c-6.942 0-13.237-4.377-15.667-10.894l-12.057-32.362h35.691l7.688 20.645c1.944 5.218 1.244 10.836-1.926 15.411-3.17 4.574-8.175 7.2-13.735 7.2h.006Zm-23.552-40.363 10.598 28.455c2.008 5.392 7.215 9.009 12.954 9.009 4.6 0 8.736-2.168 11.357-5.954 2.621-3.786 3.205-8.43 1.597-12.749l-6.989-18.761h-29.517Z\" fill=\"#222\"/><path d=\"M298.797 233.002c-10.668-.221-20.388 6.215-24.241 16.187-4.57 11.833-7.908 27.597 1.076 37.285 7.365 7.942 16.362 6.835 23.877 3.38 3.795-1.745 7.214-4.088 9.853-6.169 3.378-2.661 5.49-4.899 5.49-4.899s10.547-36.131 4.218-41.9c-3.101-2.823-11.999-3.71-20.278-3.884h.005Z\" fill=\"#fff\"/><path d=\"M288.8 293.917c-5.432 0-10.246-2.162-14.226-6.458-9.54-10.285-6.011-26.774-1.366-38.793 3.981-10.296 14.007-17.12 25.069-17.12.185 0 .37 0 .555.006 11.386.232 18.328 1.629 21.215 4.261 1.128 1.026 4.553 4.151.712 24.455-1.603 8.458-3.818 16.471-4.385 18.459l.491 1.322a1.454 1.454 0 0 1-.85 1.867 1.449 1.449 0 0 1-1.863-.852l-.827-2.221.133-.463c3.98-13.637 8.759-36.665 4.634-40.422-1.302-1.188-5.548-3.223-19.329-3.507-10.067-.198-19.26 5.925-22.864 15.259-4.345 11.248-7.736 26.582.786 35.772 5.722 6.168 13.197 7.195 22.217 3.043a1.448 1.448 0 0 1 1.92.714c.336.73.018 1.588-.711 1.924-3.992 1.838-7.782 2.749-11.311 2.749v.005Z\" fill=\"#222\"/><path d=\"M295.534 232.271s7.602 24.826 23.911 27.116c0 0 4.889.847 7.579-9.241 2.691-10.088-8.713-29.696-31.49-17.875Z\" fill=\"#222\"/><path d=\"M319.446 260.836c-.07 0-.133 0-.203-.011-17.026-2.389-24.773-27.076-25.097-28.125a1.446 1.446 0 1 1 2.765-.846c.076.237 7.527 23.973 22.731 26.107a1.45 1.45 0 0 1 1.233 1.635 1.446 1.446 0 0 1-1.429 1.246v-.006Z\" fill=\"#222\"/><path d=\"m208.741 315.676 25.919-38.966a13.332 13.332 0 0 1 9.146-5.803l6.509-.963c3.651 0 7.209-1.13 10.177-3.252 6.531-4.667 17.535-13.178 17.535-17.503 0 0 20.666-2.279 23.061-4.517 2.158-2.017.573-5.479-1.579-6.053 0 0 3.737-5.044-.718-6.342 0 0 3.165-6.053-.434-7.497h-43.483a52.293 52.293 0 0 0-39.006 17.48l-86.793 97.227c-23.049 25.823 5.248 64.923 36.9 50.991l30.773-13.543-9.379-25.812 21.372-35.447Z\" fill=\"#fff\"/><path d=\"M152.721 394.826c-11.421 0-21.169-6.186-26.879-14.083-7.921-10.94-10.322-28.24 2.158-42.218l86.793-97.233a53.79 53.79 0 0 1 40.087-17.961h43.761l.261.104c1.11.446 1.915 1.264 2.32 2.36.7 1.895.046 4.272-.527 5.762.891.592 1.319 1.34 1.527 1.954.538 1.6-.075 3.363-.688 4.563a5.633 5.633 0 0 1 1.88 2.974c.44 1.769-.04 3.479-1.33 4.679-2.39 2.232-16.911 4.099-22.818 4.777-1.18 3.862-7.192 9.688-17.929 17.364a18.836 18.836 0 0 1-10.912 3.525l-6.41.945a11.882 11.882 0 0 0-8.152 5.172l-25.901 38.937-21.001 34.827 9.609 26.431-32.01 14.089c-4.773 2.099-9.431 3.02-13.839 3.02v.012Zm102.153-168.602c-14.463 0-28.285 6.197-37.929 16.998l-86.793 97.233c-12.184 13.654-8.678 29.319-1.973 38.584 6.705 9.265 20.475 17.474 37.212 10.111l29.529-12.998-9.153-25.186 21.765-36.096 25.919-38.966a14.79 14.79 0 0 1 10.142-6.435l6.722-.974a15.95 15.95 0 0 0 9.338-2.986c12.485-8.923 16.928-14.28 16.928-16.321v-1.298l1.29-.145c9.639-1.061 20.88-2.946 22.234-4.14.642-.603.625-1.339.498-1.855-.203-.823-.834-1.566-1.464-1.739l-2.06-.551 1.273-1.716c.619-.847 1.406-2.488 1.122-3.317-.04-.121-.167-.498-1.087-.765l-1.701-.493.821-1.571c.625-1.206 1.447-3.577.995-4.806a1.011 1.011 0 0 0-.468-.568h-43.16Z\" fill=\"#222\"/><path d=\"M178.674 367.496a1.45 1.45 0 0 1-1.244-2.186l12.381-21.039a1.442 1.442 0 0 1 1.979-.51c.688.405.914 1.292.509 1.982l-12.381 21.04a1.449 1.449 0 0 1-1.249.713h.005Zm86.308-126.088a1.453 1.453 0 0 1-1.447-1.391 1.445 1.445 0 0 1 1.389-1.502l34.521-1.345h.058c.776 0 1.412.614 1.447 1.391.029.8-.59 1.473-1.389 1.502l-34.522 1.345h-.057Zm0-6.534a1.45 1.45 0 0 1-1.447-1.403 1.441 1.441 0 0 1 1.394-1.496l33.805-1.154a1.451 1.451 0 0 1 1.492 1.398 1.44 1.44 0 0 1-1.394 1.495l-33.804 1.154h-.052l.006.006Zm-22.818 23.835c-.174 0-.347-.029-.515-.099a1.45 1.45 0 0 1-.833-1.872c.156-.4 3.865-9.862 12.491-10.917a1.441 1.441 0 0 1 1.608 1.264 1.443 1.443 0 0 1-1.261 1.611c-6.92.847-10.107 8.993-10.142 9.074-.22.579-.77.933-1.354.933l.006.006Zm18.218-8.071a1.44 1.44 0 0 1-1.238-.702 1.454 1.454 0 0 1 .492-1.989c13.041-7.884 19.48.279 19.543.36a1.445 1.445 0 0 1-.272 2.029 1.437 1.437 0 0 1-2.019-.267c-.22-.278-5.039-6.122-15.753.354a1.458 1.458 0 0 1-.747.209l-.006.006Z\" fill=\"#222\"/><path d=\"M311.474 259.387s7.688-9.584 10.899-5.363c3.211 4.221 2.216 14.987 0 16.541-2.215 1.554-10.899-1.664-10.899-1.664v-9.514Z\" fill=\"#fff\"/><path d=\"M320.365 272.426c-3.118 0-7.33-1.403-9.39-2.169a1.453 1.453 0 0 1-.856-1.861 1.446 1.446 0 0 1 1.857-.858c4.172 1.542 8.731 2.418 9.569 1.838 1.343-1.032 2.523-10.749-.318-14.477-.266-.353-.538-.498-.931-.504h-.023c-2.019 0-5.693 3.444-7.666 5.896a1.437 1.437 0 0 1-2.031.22 1.443 1.443 0 0 1-.22-2.034c.573-.719 5.722-6.981 9.928-6.981h.052c1.285.017 2.39.586 3.2 1.641 2.349 3.084 2.725 8.812 2.059 13.126-.301 1.954-.96 4.487-2.378 5.484-.688.487-1.689.673-2.84.673l-.012.006Z\" fill=\"#222\"/><path d=\"M316.767 264.227c-.272 0-.509-.029-.705-.075l.647-2.824-.046-.011c.081.017.856.098 1.609-.934a1.436 1.436 0 0 1 2.019-.313c.648.47.787 1.38.312 2.024-1.221 1.675-2.777 2.127-3.847 2.127l.011.006Zm-30.003 15.283c-1.909 0-3.448-.557-3.552-.591a1.447 1.447 0 0 1-.857-1.861 1.45 1.45 0 0 1 1.852-.864c.029.011 2.915 1.026 4.929-.139 1.053-.609 1.712-1.728 2.013-3.421a1.45 1.45 0 0 1 1.678-1.171 1.449 1.449 0 0 1 1.169 1.681c-.457 2.557-1.615 4.383-3.431 5.427-1.238.713-2.592.933-3.801.933v.006Zm7.637-26.559c0 1.456-.816 2.633-1.829 2.633-1.012 0-1.828-1.177-1.828-2.633 0-1.455.816-2.632 1.828-2.632 1.013 0 1.829 1.177 1.829 2.632Zm-15.418 1.497c0 1.455-.816 2.632-1.829 2.632-1.012 0-1.828-1.177-1.828-2.632 0-1.456.816-2.633 1.828-2.633 1.013 0 1.829 1.177 1.829 2.633Zm2.712-.001c.116 1.566.174 3.178-.127 4.731-.318 1.635-1.076 3.027-1.869 4.465-.775 1.408-1.921 2.974-1.643 4.667.272 1.664 1.753 2.394 3.263 2.649.77.128 1.556-.203 1.782-1.014.191-.696-.237-1.653-1.012-1.786-.243-.041-1.059-.075-1.192-.331-.116-.22.208-.736.312-.939.689-1.298 1.464-2.557 2.095-3.884 1.284-2.708 1.498-5.607 1.284-8.563-.058-.783-.625-1.45-1.446-1.45-.741 0-1.505.667-1.447 1.45v.005Zm114.02 133.393c-.347 0-.7-.127-.977-.382l-29.929-27.603a1.451 1.451 0 0 1-.086-2.047 1.449 1.449 0 0 1 2.042-.087l29.928 27.603a1.451 1.451 0 0 1-.978 2.516ZM286.85 475.994a1.45 1.45 0 0 1-1.382-1.032l-40.412-133.567a1.454 1.454 0 0 1 .967-1.809 1.45 1.45 0 0 1 1.805.969l40.411 133.566a1.454 1.454 0 0 1-1.389 1.873Zm-90.102-97.61a1.445 1.445 0 0 1-1.354-.933 1.455 1.455 0 0 1 .833-1.873l22.054-8.441a1.449 1.449 0 0 1 1.036 2.707l-22.054 8.442a1.441 1.441 0 0 1-.515.093v.005Zm428.216 84.472 34.533-100.131c1.979-5.746-2.274-11.735-8.343-11.735H511.69a3.828 3.828 0 0 0-3.65 2.673l-36.402 114.493h-93.4a3.183 3.183 0 0 0-3.182 3.188 3.183 3.183 0 0 0 3.182 3.189h230.364a17.32 17.32 0 0 0 16.367-11.682l-.005.005Z\" fill=\"#222\"/><path d=\"m472.106 466.671 35.818-113.078a3.722 3.722 0 0 1 3.546-2.597c2.529 0 4.316 2.47 3.535 4.876l-37.223 114.846a5.53 5.53 0 0 1-5.259 3.827h-94.297a3.184 3.184 0 0 1-3.182-3.189 3.183 3.183 0 0 1 3.182-3.189h91.838c.931 0 1.753-.603 2.031-1.49l.011-.006Z\" fill=\"#222\"/><path d=\"M378.189 475.993c-2.55 0-4.626-2.061-4.626-4.594 0-2.533 2.076-4.595 4.626-4.595h91.785a.68.68 0 0 0 .653-.477l35.797-112.018a5.143 5.143 0 0 1 4.92-3.579c.798 0 1.446.644 1.446 1.436 0 .793-.648 1.436-1.446 1.436-.994 0-1.861.632-2.162 1.574l-35.797 112.019a3.562 3.562 0 0 1-3.411 2.475h-91.785a1.73 1.73 0 0 0-1.734 1.723c0 .948.78 1.723 1.734 1.723.798 0 1.446.643 1.446 1.436 0 .792-.648 1.436-1.446 1.436v.005Z\" fill=\"#222\"/><path d=\"m567.879 417.043 7.203 13.491 12.988-13.491-8.186-13.874-12.005 13.874Z\" fill=\"#fff\"/><path d=\"M322.362 467.993c.81-1.31 1.076-2.963.497-4.586l-21.805-61.612a15.913 15.913 0 0 0-14.996-10.615H171.882c-1.7 0-3.153.782-4.113 1.965l-3.477 4.377 2.974 1.879 21.412 60.504a15.913 15.913 0 0 0 14.996 10.616H311.74l.104 2.041h6.937l2.892-3.67a5.46 5.46 0 0 0 .66-.835l.046-.058h-.006l-.011-.006Z\" fill=\"#222\"/><path d=\"M322.361 469.443a1.449 1.449 0 0 1-1.226-2.215 3.863 3.863 0 0 0 .364-3.339l-21.805-61.612c-2.042-5.775-7.521-9.648-13.631-9.648H171.882a1.449 1.449 0 0 1 0-2.899h114.181c7.331 0 13.909 4.656 16.356 11.578l21.805 61.612a6.755 6.755 0 0 1-.636 5.839c-.272.44-.747.684-1.233.684h.006Z\" fill=\"#222\"/><path d=\"M314.638 474.545H200.457a15.91 15.91 0 0 1-14.996-10.616l-21.806-61.612c-1.226-3.472 1.343-7.113 5.016-7.113h114.182a15.911 15.911 0 0 1 14.996 10.615l21.805 61.612c1.227 3.473-1.342 7.114-5.016 7.114Z\" fill=\"#222\"/><path d=\"M172.732 474.544h132.909l8.164-23.063H180.896l-8.164 23.063Z\" fill=\"#222\"/><path d=\"M305.641 475.994c-.162 0-.324-.029-.486-.081a1.45 1.45 0 0 1-.879-1.85l7.475-21.127H180.896a1.448 1.448 0 0 1 0-2.898h131.682c.752 0 1.458.365 1.886.979.434.615.544 1.403.289 2.111l-7.752 21.903c-.208.592-.77.969-1.365.969l.005-.006Z\" fill=\"#222\"/><path d=\"m246.925 432.036-6.225 11.665-12.074-11.323 5.988-12.337 12.311 11.995Z\" fill=\"#fff\"/><path d=\"M684.548 475.994H116.446a1.449 1.449 0 0 1 0-2.899h568.102a1.449 1.449 0 0 1 0 2.899Z\" fill=\"#222\"/><path d=\"M314.5 187c24.024 0 43.5-19.699 43.5-44s-19.476-44-43.5-44-43.5 19.699-43.5 44 19.476 44 43.5 44Z\" fill=\"#FED67A\"/><path d=\"M325 178.186 316.082 201 305 178l20 .186ZM351.611 142 371 157.373 346 162l5.611-20Z\" fill=\"#FED67A\"/><path d=\"M313.44 156.294a15.94 15.94 0 0 1-11.314-4.688c-6.238-6.252-6.238-16.421 0-22.672a15.867 15.867 0 0 1 11.314-4.697c4.277 0 8.29 1.666 11.314 4.697 6.238 6.251 6.238 16.42 0 22.672a15.931 15.931 0 0 1-11.314 4.688Zm0-27.728a11.593 11.593 0 0 0-8.26 3.428c-4.553 4.563-4.553 11.988 0 16.551 4.553 4.563 11.962 4.563 16.516 0 4.553-4.563 4.553-11.988 0-16.551a11.586 11.586 0 0 0-8.26-3.428h.004Zm19.224 33.373a2.166 2.166 0 0 1-1.529-.632l-4.618-4.628a2.169 2.169 0 0 1 0-3.061 2.158 2.158 0 0 1 3.054 0l4.618 4.628a2.17 2.17 0 0 1 0 3.061 2.149 2.149 0 0 1-1.529.632h.004Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11x99yd\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fnkoiw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BOC3J5Kza:{variant:\"ueWL3aRtt\"},HFZRCTw4h:{variant:\"aP8BwKY8o\"}},children:/*#__PURE__*/_jsx(FooterV1,{height:\"100%\",id:\"dnRtvkXLj\",layoutId:\"dnRtvkXLj\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"dF2Vi5y1g\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iwuk4t\",\"data-framer-name\":\"Background\",name:\"Background\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-625ix8-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(ButtonBuyCopy,{cduyS1Ada:\"https://peterdraw.gumroad.com/l/digicraft\",height:\"100%\",id:\"g23HIqhew\",layoutId:\"g23HIqhew\",width:\"100%\",yoHhge7xS:\"Buy This Template\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-7TF14 { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); }`,\".framer-7TF14.framer-1oj9yoc, .framer-7TF14 .framer-1oj9yoc { display: block; }\",\".framer-7TF14.framer-1fwa4eb { align-content: center; align-items: center; background-color: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-7TF14 .framer-uarvsw { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 32px 100px 32px 100px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-7TF14 .framer-q2vqn3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-7TF14 .framer-r54p03 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-xt23uz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-463dng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-7TF14 .framer-1hn4utp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-7TF14 .framer-1sv21oc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-2nr7ka { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1fudt4e, .framer-7TF14 .framer-1q0eodm, .framer-7TF14 .framer-evv3vb, .framer-7TF14 .framer-1ugp6if { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7TF14 .framer-1p40r70 { flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-7TF14 .framer-4r2ayz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-o4ynez-container, .framer-7TF14 .framer-4eozas-container, .framer-7TF14 .framer-fs9fqu-container, .framer-7TF14 .framer-12prhez-container, .framer-7TF14 .framer-1pyjraf-container, .framer-7TF14 .framer-ma2yrm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-7TF14 .framer-1peqehd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 439px; }\",\".framer-7TF14 .framer-1sbvzgf { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-cyac34, .framer-7TF14 .framer-65qy43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7TF14 .framer-doa290 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 496px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 584px; z-index: 0; }\",\".framer-7TF14 .framer-qnp8n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 112px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 220px; }\",\".framer-7TF14 .framer-5z1o1h, .framer-7TF14 .framer-e0fn09 { align-content: center; align-items: center; background-color: var(--token-9f26e582-0c11-4e19-8355-e28d8fcef4b1, #f4f4f4); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-6ngz1y, .framer-7TF14 .framer-1g9yvtc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-11mutaq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-iyn7k9, .framer-7TF14 .framer-14yv9el, .framer-7TF14 .framer-f5dnr2, .framer-7TF14 .framer-11jguch, .framer-7TF14 .framer-1o7klbk, .framer-7TF14 .framer-sous6k, .framer-7TF14 .framer-1152k0a, .framer-7TF14 .framer-cw1gvh, .framer-7TF14 .framer-1bjo7hj, .framer-7TF14 .framer-1usb2yl, .framer-7TF14 .framer-vzdqp1, .framer-7TF14 .framer-qad2so { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7TF14 .framer-j8qoe7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1920px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-16a19kn { display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-1f4mqbq-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1k2hjoc-container { flex: none; height: auto; max-width: 1920px; position: relative; width: auto; }\",\".framer-7TF14 .framer-1xw40m0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-c28rgt { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-11kp8pd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 496px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 776px; }\",\".framer-7TF14 .framer-tkzc4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 46%; overflow: hidden; padding: 0px; position: absolute; top: 63px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-7TF14 .framer-dvvdia { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-7TF14 .framer-qz3i0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 54%; overflow: hidden; padding: 0px; position: absolute; top: 15px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-7TF14 .framer-7wa19i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 17px; }\",\".framer-7TF14 .framer-1ctuyvg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 482px; overflow: hidden; padding: 0px; position: absolute; top: 140px; width: min-content; z-index: 1; }\",\".framer-7TF14 .framer-12j4b75 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 13px; }\",\".framer-7TF14 .framer-8u9m6k { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-z3ucj3 { 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: 100%; }\",\".framer-7TF14 .framer-wldnhm, .framer-7TF14 .framer-1wscax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-mkgpd5 { flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7TF14 .framer-1p2w56w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-46binb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1zxu14 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-fam40i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1dy0bbg { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-1o3o44f { 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: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-1a7dfap { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 597px; word-break: break-word; word-wrap: break-word; }\",\".framer-7TF14 .framer-1xztk5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1ckm5kk-container, .framer-7TF14 .framer-fi8gb6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-7TF14 .framer-jzsigu { align-content: center; align-items: center; background-color: var(--token-18cef09e-c68f-469e-8bcb-7a7202717a9e, #6ad9c5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1n1aju0-container { flex: none; height: 377px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1avjbcf-container, .framer-7TF14 .framer-ub8gnd-container { height: auto; position: relative; width: 1240px; }\",\".framer-7TF14 .framer-9izwzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1msmnvj-container { flex: none; height: 42px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1i2soev { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 170px; }\",\".framer-7TF14 .framer-sqet24 { aspect-ratio: 4.0476190476190474 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 170px; }\",\".framer-7TF14 .framer-1u3j9uo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 133px; }\",\".framer-7TF14 .framer-1lggd5a { aspect-ratio: 3.6944444444444446 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 133px; }\",\".framer-7TF14 .framer-5gtvr1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 139px; }\",\".framer-7TF14 .framer-z93x8j { aspect-ratio: 4.633333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 139px; }\",\".framer-7TF14 .framer-1hqp7tv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 128px; }\",\".framer-7TF14 .framer-1iwclxr { aspect-ratio: 3.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 128px; }\",\".framer-7TF14 .framer-qu1x3n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 133px; }\",\".framer-7TF14 .framer-qo7uh2 { aspect-ratio: 4.433333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 133px; }\",\".framer-7TF14 .framer-1u328a8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 137px; }\",\".framer-7TF14 .framer-z7n6e { aspect-ratio: 3.261904761904762 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 137px; }\",\".framer-7TF14 .framer-171ghv5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 112px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-kpyc6l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1q5fccc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-ofe6a9, .framer-7TF14 .framer-1t1xq00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-do5ejy-container, .framer-7TF14 .framer-15twrqj-container, .framer-7TF14 .framer-zvqpu2-container, .framer-7TF14 .framer-1f3xf3h-container, .framer-7TF14 .framer-4lcyb9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7TF14 .framer-h128a0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 100px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-grzi40 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-1apu6er, .framer-7TF14 .framer-fjp077 { flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7TF14 .framer-16ye1ij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-63olny { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 638px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 540px; }\",\".framer-7TF14 .framer-1nqhe9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 111px; justify-content: center; left: 256px; overflow: hidden; padding: 0px; position: absolute; right: 173px; top: 80px; z-index: 1; }\",\".framer-7TF14 .framer-1a2u85f { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 111px); position: relative; width: 111px; }\",\".framer-7TF14 .framer-aahein { align-content: center; align-items: center; bottom: 97px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 78px; justify-content: center; left: 358px; overflow: hidden; padding: 0px; position: absolute; right: 104px; z-index: 1; }\",\".framer-7TF14 .framer-excih8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 78px); position: relative; width: 78px; }\",\".framer-7TF14 .framer-nmbbjs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 100px 120px 100px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1hmy1co { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-ohhmx2 { 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-7TF14 .framer-2e9f0z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-9l6lx8-container { cursor: pointer; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-7TF14 .framer-47ps3m { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7TF14 .framer-hejmdv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 100px 120px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-7TF14 .framer-5yas4l { align-content: center; align-items: center; background-color: var(--token-edc8ec43-3c85-4f02-8158-7e93dda720ab, #766df1); 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: row; flex-wrap: nowrap; height: 416px; justify-content: space-between; max-width: 1440px; overflow: hidden; padding: 48px 64px 48px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7TF14 .framer-1q0jzzi { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.6 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7TF14 .framer-1cuz74q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7TF14 .framer-1x9c9ob { align-content: center; align-items: center; bottom: -54px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -52px; top: -54px; width: 757px; z-index: 1; }\",\".framer-7TF14 .framer-1l07kvw { aspect-ratio: 1.4446564885496183 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 524px); position: relative; width: 757px; }\",\".framer-7TF14 .framer-11x99yd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-7TF14 .framer-1fnkoiw-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",\".framer-7TF14 .framer-iwuk4t { background-color: var(--token-9f26e582-0c11-4e19-8355-e28d8fcef4b1, #f4f4f4); bottom: -1px; flex: none; height: 761px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-7TF14 .framer-625ix8-container { bottom: 65px; flex: none; height: auto; position: fixed; right: 20px; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7TF14.framer-1fwa4eb, .framer-7TF14 .framer-uarvsw, .framer-7TF14 .framer-r54p03, .framer-7TF14 .framer-xt23uz, .framer-7TF14 .framer-463dng, .framer-7TF14 .framer-1hn4utp, .framer-7TF14 .framer-1sv21oc, .framer-7TF14 .framer-2nr7ka, .framer-7TF14 .framer-4r2ayz, .framer-7TF14 .framer-1peqehd, .framer-7TF14 .framer-1sbvzgf, .framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94, .framer-7TF14 .framer-doa290, .framer-7TF14 .framer-qnp8n, .framer-7TF14 .framer-5z1o1h, .framer-7TF14 .framer-6ngz1y, .framer-7TF14 .framer-11mutaq, .framer-7TF14 .framer-j8qoe7, .framer-7TF14 .framer-1xw40m0, .framer-7TF14 .framer-11kp8pd, .framer-7TF14 .framer-tkzc4s, .framer-7TF14 .framer-qz3i0i, .framer-7TF14 .framer-1ctuyvg, .framer-7TF14 .framer-8u9m6k, .framer-7TF14 .framer-z3ucj3, .framer-7TF14 .framer-wldnhm, .framer-7TF14 .framer-1p2w56w, .framer-7TF14 .framer-46binb, .framer-7TF14 .framer-1zxu14, .framer-7TF14 .framer-1dy0bbg, .framer-7TF14 .framer-1o3o44f, .framer-7TF14 .framer-1xztk5h, .framer-7TF14 .framer-jzsigu, .framer-7TF14 .framer-1g9yvtc, .framer-7TF14 .framer-9izwzb, .framer-7TF14 .framer-1i2soev, .framer-7TF14 .framer-1u3j9uo, .framer-7TF14 .framer-5gtvr1, .framer-7TF14 .framer-1hqp7tv, .framer-7TF14 .framer-qu1x3n, .framer-7TF14 .framer-1u328a8, .framer-7TF14 .framer-171ghv5, .framer-7TF14 .framer-kpyc6l, .framer-7TF14 .framer-1q5fccc, .framer-7TF14 .framer-ofe6a9, .framer-7TF14 .framer-e0fn09, .framer-7TF14 .framer-grzi40, .framer-7TF14 .framer-1wscax, .framer-7TF14 .framer-16ye1ij, .framer-7TF14 .framer-63olny, .framer-7TF14 .framer-1nqhe9n, .framer-7TF14 .framer-aahein, .framer-7TF14 .framer-nmbbjs, .framer-7TF14 .framer-1hmy1co, .framer-7TF14 .framer-1t1xq00, .framer-7TF14 .framer-ohhmx2, .framer-7TF14 .framer-2e9f0z, .framer-7TF14 .framer-47ps3m, .framer-7TF14 .framer-hejmdv, .framer-7TF14 .framer-1q0jzzi, .framer-7TF14 .framer-1cuz74q, .framer-7TF14 .framer-1x9c9ob, .framer-7TF14 .framer-11x99yd { gap: 0px; } .framer-7TF14.framer-1fwa4eb > *, .framer-7TF14 .framer-r54p03 > *, .framer-7TF14 .framer-yno7as > *, .framer-7TF14 .framer-19xad94 > *, .framer-7TF14 .framer-doa290 > *, .framer-7TF14 .framer-qnp8n > *, .framer-7TF14 .framer-11kp8pd > *, .framer-7TF14 .framer-46binb > *, .framer-7TF14 .framer-63olny > *, .framer-7TF14 .framer-hejmdv > *, .framer-7TF14 .framer-11x99yd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7TF14.framer-1fwa4eb > :first-child, .framer-7TF14 .framer-r54p03 > :first-child, .framer-7TF14 .framer-xt23uz > :first-child, .framer-7TF14 .framer-1hn4utp > :first-child, .framer-7TF14 .framer-1sv21oc > :first-child, .framer-7TF14 .framer-2nr7ka > :first-child, .framer-7TF14 .framer-1peqehd > :first-child, .framer-7TF14 .framer-yno7as > :first-child, .framer-7TF14 .framer-19xad94 > :first-child, .framer-7TF14 .framer-doa290 > :first-child, .framer-7TF14 .framer-qnp8n > :first-child, .framer-7TF14 .framer-6ngz1y > :first-child, .framer-7TF14 .framer-11mutaq > :first-child, .framer-7TF14 .framer-11kp8pd > :first-child, .framer-7TF14 .framer-8u9m6k > :first-child, .framer-7TF14 .framer-z3ucj3 > :first-child, .framer-7TF14 .framer-wldnhm > :first-child, .framer-7TF14 .framer-46binb > :first-child, .framer-7TF14 .framer-1zxu14 > :first-child, .framer-7TF14 .framer-1dy0bbg > :first-child, .framer-7TF14 .framer-1o3o44f > :first-child, .framer-7TF14 .framer-1g9yvtc > :first-child, .framer-7TF14 .framer-9izwzb > :first-child, .framer-7TF14 .framer-171ghv5 > :first-child, .framer-7TF14 .framer-kpyc6l > :first-child, .framer-7TF14 .framer-1q5fccc > :first-child, .framer-7TF14 .framer-ofe6a9 > :first-child, .framer-7TF14 .framer-grzi40 > :first-child, .framer-7TF14 .framer-1wscax > :first-child, .framer-7TF14 .framer-16ye1ij > :first-child, .framer-7TF14 .framer-63olny > :first-child, .framer-7TF14 .framer-nmbbjs > :first-child, .framer-7TF14 .framer-1hmy1co > :first-child, .framer-7TF14 .framer-1t1xq00 > :first-child, .framer-7TF14 .framer-hejmdv > :first-child, .framer-7TF14 .framer-1q0jzzi > :first-child, .framer-7TF14 .framer-1cuz74q > :first-child, .framer-7TF14 .framer-11x99yd > :first-child { margin-top: 0px; } .framer-7TF14.framer-1fwa4eb > :last-child, .framer-7TF14 .framer-r54p03 > :last-child, .framer-7TF14 .framer-xt23uz > :last-child, .framer-7TF14 .framer-1hn4utp > :last-child, .framer-7TF14 .framer-1sv21oc > :last-child, .framer-7TF14 .framer-2nr7ka > :last-child, .framer-7TF14 .framer-1peqehd > :last-child, .framer-7TF14 .framer-yno7as > :last-child, .framer-7TF14 .framer-19xad94 > :last-child, .framer-7TF14 .framer-doa290 > :last-child, .framer-7TF14 .framer-qnp8n > :last-child, .framer-7TF14 .framer-6ngz1y > :last-child, .framer-7TF14 .framer-11mutaq > :last-child, .framer-7TF14 .framer-11kp8pd > :last-child, .framer-7TF14 .framer-8u9m6k > :last-child, .framer-7TF14 .framer-z3ucj3 > :last-child, .framer-7TF14 .framer-wldnhm > :last-child, .framer-7TF14 .framer-46binb > :last-child, .framer-7TF14 .framer-1zxu14 > :last-child, .framer-7TF14 .framer-1dy0bbg > :last-child, .framer-7TF14 .framer-1o3o44f > :last-child, .framer-7TF14 .framer-1g9yvtc > :last-child, .framer-7TF14 .framer-9izwzb > :last-child, .framer-7TF14 .framer-171ghv5 > :last-child, .framer-7TF14 .framer-kpyc6l > :last-child, .framer-7TF14 .framer-1q5fccc > :last-child, .framer-7TF14 .framer-ofe6a9 > :last-child, .framer-7TF14 .framer-grzi40 > :last-child, .framer-7TF14 .framer-1wscax > :last-child, .framer-7TF14 .framer-16ye1ij > :last-child, .framer-7TF14 .framer-63olny > :last-child, .framer-7TF14 .framer-nmbbjs > :last-child, .framer-7TF14 .framer-1hmy1co > :last-child, .framer-7TF14 .framer-1t1xq00 > :last-child, .framer-7TF14 .framer-hejmdv > :last-child, .framer-7TF14 .framer-1q0jzzi > :last-child, .framer-7TF14 .framer-1cuz74q > :last-child, .framer-7TF14 .framer-11x99yd > :last-child { margin-bottom: 0px; } .framer-7TF14 .framer-uarvsw > *, .framer-7TF14 .framer-tkzc4s > *, .framer-7TF14 .framer-qz3i0i > *, .framer-7TF14 .framer-1ctuyvg > *, .framer-7TF14 .framer-1i2soev > *, .framer-7TF14 .framer-1u3j9uo > *, .framer-7TF14 .framer-5gtvr1 > *, .framer-7TF14 .framer-1hqp7tv > *, .framer-7TF14 .framer-qu1x3n > *, .framer-7TF14 .framer-1u328a8 > *, .framer-7TF14 .framer-1nqhe9n > *, .framer-7TF14 .framer-aahein > *, .framer-7TF14 .framer-1x9c9ob > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7TF14 .framer-uarvsw > :first-child, .framer-7TF14 .framer-463dng > :first-child, .framer-7TF14 .framer-4r2ayz > :first-child, .framer-7TF14 .framer-1sbvzgf > :first-child, .framer-7TF14 .framer-5z1o1h > :first-child, .framer-7TF14 .framer-j8qoe7 > :first-child, .framer-7TF14 .framer-1xw40m0 > :first-child, .framer-7TF14 .framer-tkzc4s > :first-child, .framer-7TF14 .framer-qz3i0i > :first-child, .framer-7TF14 .framer-1ctuyvg > :first-child, .framer-7TF14 .framer-1p2w56w > :first-child, .framer-7TF14 .framer-1xztk5h > :first-child, .framer-7TF14 .framer-jzsigu > :first-child, .framer-7TF14 .framer-1i2soev > :first-child, .framer-7TF14 .framer-1u3j9uo > :first-child, .framer-7TF14 .framer-5gtvr1 > :first-child, .framer-7TF14 .framer-1hqp7tv > :first-child, .framer-7TF14 .framer-qu1x3n > :first-child, .framer-7TF14 .framer-1u328a8 > :first-child, .framer-7TF14 .framer-e0fn09 > :first-child, .framer-7TF14 .framer-1nqhe9n > :first-child, .framer-7TF14 .framer-aahein > :first-child, .framer-7TF14 .framer-ohhmx2 > :first-child, .framer-7TF14 .framer-2e9f0z > :first-child, .framer-7TF14 .framer-47ps3m > :first-child, .framer-7TF14 .framer-1x9c9ob > :first-child { margin-left: 0px; } .framer-7TF14 .framer-uarvsw > :last-child, .framer-7TF14 .framer-463dng > :last-child, .framer-7TF14 .framer-4r2ayz > :last-child, .framer-7TF14 .framer-1sbvzgf > :last-child, .framer-7TF14 .framer-5z1o1h > :last-child, .framer-7TF14 .framer-j8qoe7 > :last-child, .framer-7TF14 .framer-1xw40m0 > :last-child, .framer-7TF14 .framer-tkzc4s > :last-child, .framer-7TF14 .framer-qz3i0i > :last-child, .framer-7TF14 .framer-1ctuyvg > :last-child, .framer-7TF14 .framer-1p2w56w > :last-child, .framer-7TF14 .framer-1xztk5h > :last-child, .framer-7TF14 .framer-jzsigu > :last-child, .framer-7TF14 .framer-1i2soev > :last-child, .framer-7TF14 .framer-1u3j9uo > :last-child, .framer-7TF14 .framer-5gtvr1 > :last-child, .framer-7TF14 .framer-1hqp7tv > :last-child, .framer-7TF14 .framer-qu1x3n > :last-child, .framer-7TF14 .framer-1u328a8 > :last-child, .framer-7TF14 .framer-e0fn09 > :last-child, .framer-7TF14 .framer-1nqhe9n > :last-child, .framer-7TF14 .framer-aahein > :last-child, .framer-7TF14 .framer-ohhmx2 > :last-child, .framer-7TF14 .framer-2e9f0z > :last-child, .framer-7TF14 .framer-47ps3m > :last-child, .framer-7TF14 .framer-1x9c9ob > :last-child { margin-right: 0px; } .framer-7TF14 .framer-xt23uz > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-7TF14 .framer-463dng > *, .framer-7TF14 .framer-5z1o1h > *, .framer-7TF14 .framer-1xw40m0 > *, .framer-7TF14 .framer-1p2w56w > *, .framer-7TF14 .framer-jzsigu > *, .framer-7TF14 .framer-e0fn09 > *, .framer-7TF14 .framer-47ps3m > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7TF14 .framer-1hn4utp > *, .framer-7TF14 .framer-grzi40 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-7TF14 .framer-1sv21oc > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-7TF14 .framer-2nr7ka > *, .framer-7TF14 .framer-1cuz74q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7TF14 .framer-4r2ayz > *, .framer-7TF14 .framer-j8qoe7 > *, .framer-7TF14 .framer-1xztk5h > *, .framer-7TF14 .framer-ohhmx2 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-7TF14 .framer-1peqehd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-7TF14 .framer-1sbvzgf > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-7TF14 .framer-6ngz1y > *, .framer-7TF14 .framer-1g9yvtc > *, .framer-7TF14 .framer-nmbbjs > *, .framer-7TF14 .framer-1hmy1co > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-7TF14 .framer-11mutaq > *, .framer-7TF14 .framer-wldnhm > *, .framer-7TF14 .framer-1dy0bbg > *, .framer-7TF14 .framer-ofe6a9 > *, .framer-7TF14 .framer-1wscax > *, .framer-7TF14 .framer-1t1xq00 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-7TF14 .framer-8u9m6k > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-7TF14 .framer-z3ucj3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7TF14 .framer-1zxu14 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-7TF14 .framer-1o3o44f > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7TF14 .framer-9izwzb > *, .framer-7TF14 .framer-kpyc6l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7TF14 .framer-171ghv5 > * { margin: 0px; margin-bottom: calc(112px / 2); margin-top: calc(112px / 2); } .framer-7TF14 .framer-1q5fccc > *, .framer-7TF14 .framer-16ye1ij > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7TF14 .framer-2e9f0z > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-7TF14 .framer-1q0jzzi > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\",\"@media (min-width: 1440px) { .framer-7TF14 .hidden-1fwa4eb { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-7TF14 .hidden-9vr8w0 { display: none !important; } .${metadata.bodyClassName}-framer-7TF14 { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-7TF14.framer-1fwa4eb { gap: 100px; width: 810px; } .framer-7TF14 .framer-uarvsw { padding: 32px 50px 32px 50px; } .framer-7TF14 .framer-r54p03 { padding: 120px 50px 0px 50px; } .framer-7TF14 .framer-xt23uz { gap: 30px; } .framer-7TF14 .framer-463dng { flex-direction: column; gap: 80px; } .framer-7TF14 .framer-1hn4utp, .framer-7TF14 .framer-1dy0bbg, .framer-7TF14 .framer-1ckm5kk-container, .framer-7TF14 .framer-fi8gb6-container, .framer-7TF14 .framer-grzi40 { flex: none; width: 100%; } .framer-7TF14 .framer-1fudt4e { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7TF14 .framer-1p40r70 { width: 90%; } .framer-7TF14 .framer-1peqehd { width: 100%; } .framer-7TF14 .framer-1sbvzgf { gap: 150px; width: 100%; } .framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94 { gap: 7px; } .framer-7TF14 .framer-cyac34 { order: 0; } .framer-7TF14 .framer-evv3vb { order: 1; } .framer-7TF14 .framer-doa290 { height: 603px; width: 710px; } .framer-7TF14 .framer-6ngz1y { padding: 50px; } .framer-7TF14 .framer-j8qoe7 { flex-direction: column; max-width: 1440px; } .framer-7TF14 .framer-16a19kn { flex: none; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 100%; } .framer-7TF14 .framer-1f4mqbq-container { cursor: pointer; height: 295px; } .framer-7TF14 .framer-1xw40m0, .framer-7TF14 .framer-46binb, .framer-7TF14 .framer-171ghv5, .framer-7TF14 .framer-nmbbjs, .framer-7TF14 .framer-hejmdv, .framer-7TF14 .framer-11x99yd { padding: 0px 50px 0px 50px; } .framer-7TF14 .framer-c28rgt { flex-direction: column; gap: 56px; justify-content: flex-start; } .framer-7TF14 .framer-11kp8pd { height: 454px; order: 1; width: 710px; } .framer-7TF14 .framer-8u9m6k { flex: none; gap: 100px; order: 0; width: 100%; } .framer-7TF14 .framer-1zxu14 { gap: 56px; } .framer-7TF14 .framer-fam40i { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-7TF14 .framer-1xztk5h { flex-direction: column; } .framer-7TF14 .framer-1g9yvtc { padding: 100px 50px 100px 50px; } .framer-7TF14 .framer-1n1aju0-container { height: 475px; } .framer-7TF14 .framer-h128a0 { flex-direction: column; gap: 80px; justify-content: flex-start; padding: 100px 50px 100px 50px; } .framer-7TF14 .framer-63olny { aspect-ratio: 0.8460620525059666 / 1; height: var(--framer-aspect-ratio-supported, 624px); width: 528px; } .framer-7TF14 .framer-1nqhe9n { height: min-content; left: 254px; right: unset; top: 104px; width: min-content; } .framer-7TF14 .framer-1a2u85f { height: var(--framer-aspect-ratio-supported, 81px); width: 81px; } .framer-7TF14 .framer-2e9f0z { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); justify-content: center; } .framer-7TF14 .framer-9l6lx8-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-7TF14 .framer-5yas4l { align-content: flex-start; align-items: flex-start; gap: 48px; height: 490px; justify-content: flex-start; padding: 40px; } .framer-7TF14 .framer-1q0jzzi { flex: 1 0 0px; gap: 80px; } .framer-7TF14 .framer-1x9c9ob { bottom: unset; height: min-content; left: 261px; right: unset; top: 178px; width: min-content; } .framer-7TF14 .framer-1l07kvw { height: 358px; order: 0; width: var(--framer-aspect-ratio-supported, 517px); } .framer-7TF14 .framer-iwuk4t { height: 966px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7TF14.framer-1fwa4eb, .framer-7TF14 .framer-xt23uz, .framer-7TF14 .framer-463dng, .framer-7TF14 .framer-1sbvzgf, .framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94, .framer-7TF14 .framer-j8qoe7, .framer-7TF14 .framer-c28rgt, .framer-7TF14 .framer-8u9m6k, .framer-7TF14 .framer-1zxu14, .framer-7TF14 .framer-fam40i, .framer-7TF14 .framer-1xztk5h, .framer-7TF14 .framer-h128a0, .framer-7TF14 .framer-2e9f0z, .framer-7TF14 .framer-5yas4l, .framer-7TF14 .framer-1q0jzzi { gap: 0px; } .framer-7TF14.framer-1fwa4eb > *, .framer-7TF14 .framer-8u9m6k > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-7TF14.framer-1fwa4eb > :first-child, .framer-7TF14 .framer-xt23uz > :first-child, .framer-7TF14 .framer-463dng > :first-child, .framer-7TF14 .framer-yno7as > :first-child, .framer-7TF14 .framer-19xad94 > :first-child, .framer-7TF14 .framer-j8qoe7 > :first-child, .framer-7TF14 .framer-c28rgt > :first-child, .framer-7TF14 .framer-8u9m6k > :first-child, .framer-7TF14 .framer-1zxu14 > :first-child, .framer-7TF14 .framer-fam40i > :first-child, .framer-7TF14 .framer-1xztk5h > :first-child, .framer-7TF14 .framer-h128a0 > :first-child, .framer-7TF14 .framer-1q0jzzi > :first-child { margin-top: 0px; } .framer-7TF14.framer-1fwa4eb > :last-child, .framer-7TF14 .framer-xt23uz > :last-child, .framer-7TF14 .framer-463dng > :last-child, .framer-7TF14 .framer-yno7as > :last-child, .framer-7TF14 .framer-19xad94 > :last-child, .framer-7TF14 .framer-j8qoe7 > :last-child, .framer-7TF14 .framer-c28rgt > :last-child, .framer-7TF14 .framer-8u9m6k > :last-child, .framer-7TF14 .framer-1zxu14 > :last-child, .framer-7TF14 .framer-fam40i > :last-child, .framer-7TF14 .framer-1xztk5h > :last-child, .framer-7TF14 .framer-h128a0 > :last-child, .framer-7TF14 .framer-1q0jzzi > :last-child { margin-bottom: 0px; } .framer-7TF14 .framer-xt23uz > *, .framer-7TF14 .framer-fam40i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7TF14 .framer-463dng > *, .framer-7TF14 .framer-h128a0 > *, .framer-7TF14 .framer-1q0jzzi > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-7TF14 .framer-1sbvzgf > * { margin: 0px; margin-left: calc(150px / 2); margin-right: calc(150px / 2); } .framer-7TF14 .framer-1sbvzgf > :first-child, .framer-7TF14 .framer-5yas4l > :first-child { margin-left: 0px; } .framer-7TF14 .framer-1sbvzgf > :last-child, .framer-7TF14 .framer-5yas4l > :last-child { margin-right: 0px; } .framer-7TF14 .framer-yno7as > *, .framer-7TF14 .framer-19xad94 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-7TF14 .framer-j8qoe7 > *, .framer-7TF14 .framer-1xztk5h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7TF14 .framer-c28rgt > *, .framer-7TF14 .framer-1zxu14 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-7TF14 .framer-2e9f0z > *, .framer-7TF14 .framer-2e9f0z > :first-child, .framer-7TF14 .framer-2e9f0z > :last-child { margin: 0px; } .framer-7TF14 .framer-5yas4l > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }}`,`@media (max-width: 809px) { .framer-7TF14 .hidden-130eim6 { display: none !important; } .${metadata.bodyClassName}-framer-7TF14 { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-7TF14.framer-1fwa4eb { gap: 80px; width: 390px; } .framer-7TF14 .framer-uarvsw { padding: 32px 20px 32px 20px; } .framer-7TF14 .framer-r54p03 { padding: 120px 20px 0px 20px; } .framer-7TF14 .framer-xt23uz { gap: 40px; } .framer-7TF14 .framer-463dng { flex-direction: column; gap: 50px; } .framer-7TF14 .framer-1hn4utp, .framer-7TF14 .framer-1dy0bbg, .framer-7TF14 .framer-1ckm5kk-container, .framer-7TF14 .framer-fi8gb6-container, .framer-7TF14 .framer-9l6lx8-container { flex: none; width: 100%; } .framer-7TF14 .framer-1fudt4e, .framer-7TF14 .framer-1ugp6if { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7TF14 .framer-1p40r70, .framer-7TF14 .framer-1peqehd, .framer-7TF14 .framer-1o3o44f, .framer-7TF14 .framer-1a7dfap { width: 100%; } .framer-7TF14 .framer-4r2ayz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; width: 100%; } .framer-7TF14 .framer-1sbvzgf { align-content: flex-start; align-items: flex-start; gap: 31px; width: 100%; } .framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94 { flex: 1 0 0px; gap: 2px; width: 1px; } .framer-7TF14 .framer-cyac34 { order: 0; } .framer-7TF14 .framer-evv3vb { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-7TF14 .framer-doa290 { height: 297px; width: 350px; } .framer-7TF14 .framer-qnp8n { height: 66px; order: 0; width: 130px; } .framer-7TF14 .framer-5z1o1h, .framer-7TF14 .framer-j8qoe7, .framer-7TF14 .framer-1xztk5h, .framer-7TF14 .framer-jzsigu, .framer-7TF14 .framer-e0fn09, .framer-7TF14 .framer-2e9f0z { flex-direction: column; } .framer-7TF14 .framer-6ngz1y { flex: none; padding: 50px 20px 50px 20px; width: 100%; } .framer-7TF14 .framer-16a19kn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; justify-content: flex-start; width: 100%; } .framer-7TF14 .framer-1f4mqbq-container { align-self: unset; height: 295px; } .framer-7TF14 .framer-1xw40m0 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-7TF14 .framer-c28rgt { flex: none; flex-direction: column; gap: 48px; justify-content: center; width: 100%; } .framer-7TF14 .framer-11kp8pd { height: 224px; order: 1; width: 350px; } .framer-7TF14 .framer-8u9m6k { flex: none; gap: 80px; order: 0; width: 100%; } .framer-7TF14 .framer-z3ucj3 { gap: 30px; } .framer-7TF14 .framer-46binb, .framer-7TF14 .framer-171ghv5, .framer-7TF14 .framer-nmbbjs, .framer-7TF14 .framer-11x99yd { padding: 0px 20px 0px 20px; } .framer-7TF14 .framer-fam40i { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; justify-content: flex-start; } .framer-7TF14 .framer-1g9yvtc { flex: none; padding: 80px 20px 80px 20px; width: 100%; } .framer-7TF14 .framer-1n1aju0-container { height: 892px; } .framer-7TF14 .framer-h128a0 { flex: none; flex-direction: column; gap: 80px; justify-content: flex-start; padding: 80px 20px 80px 20px; width: 100%; } .framer-7TF14 .framer-grzi40 { flex: none; width: 90%; } .framer-7TF14 .framer-63olny { height: 371px; width: 314px; } .framer-7TF14 .framer-hejmdv { justify-content: flex-start; padding: 0px 20px 0px 20px; } .framer-7TF14 .framer-5yas4l { align-content: flex-start; align-items: flex-start; gap: 0px; height: 590px; justify-content: flex-start; padding: 30px; } .framer-7TF14 .framer-1q0jzzi { flex: 1 0 0px; gap: 40px; } .framer-7TF14 .framer-1x9c9ob { bottom: unset; height: min-content; left: 45px; right: unset; top: 357px; width: min-content; } .framer-7TF14 .framer-1l07kvw { height: 258px; order: 0; width: var(--framer-aspect-ratio-supported, 373px); } .framer-7TF14 .framer-iwuk4t { height: 1884px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7TF14.framer-1fwa4eb, .framer-7TF14 .framer-xt23uz, .framer-7TF14 .framer-463dng, .framer-7TF14 .framer-4r2ayz, .framer-7TF14 .framer-1sbvzgf, .framer-7TF14 .framer-yno7as, .framer-7TF14 .framer-19xad94, .framer-7TF14 .framer-5z1o1h, .framer-7TF14 .framer-j8qoe7, .framer-7TF14 .framer-16a19kn, .framer-7TF14 .framer-1xw40m0, .framer-7TF14 .framer-c28rgt, .framer-7TF14 .framer-8u9m6k, .framer-7TF14 .framer-z3ucj3, .framer-7TF14 .framer-fam40i, .framer-7TF14 .framer-1xztk5h, .framer-7TF14 .framer-jzsigu, .framer-7TF14 .framer-e0fn09, .framer-7TF14 .framer-h128a0, .framer-7TF14 .framer-2e9f0z, .framer-7TF14 .framer-5yas4l, .framer-7TF14 .framer-1q0jzzi { gap: 0px; } .framer-7TF14.framer-1fwa4eb > *, .framer-7TF14 .framer-8u9m6k > *, .framer-7TF14 .framer-h128a0 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-7TF14.framer-1fwa4eb > :first-child, .framer-7TF14 .framer-xt23uz > :first-child, .framer-7TF14 .framer-463dng > :first-child, .framer-7TF14 .framer-4r2ayz > :first-child, .framer-7TF14 .framer-yno7as > :first-child, .framer-7TF14 .framer-19xad94 > :first-child, .framer-7TF14 .framer-5z1o1h > :first-child, .framer-7TF14 .framer-j8qoe7 > :first-child, .framer-7TF14 .framer-16a19kn > :first-child, .framer-7TF14 .framer-1xw40m0 > :first-child, .framer-7TF14 .framer-c28rgt > :first-child, .framer-7TF14 .framer-8u9m6k > :first-child, .framer-7TF14 .framer-z3ucj3 > :first-child, .framer-7TF14 .framer-fam40i > :first-child, .framer-7TF14 .framer-1xztk5h > :first-child, .framer-7TF14 .framer-jzsigu > :first-child, .framer-7TF14 .framer-e0fn09 > :first-child, .framer-7TF14 .framer-h128a0 > :first-child, .framer-7TF14 .framer-2e9f0z > :first-child, .framer-7TF14 .framer-1q0jzzi > :first-child { margin-top: 0px; } .framer-7TF14.framer-1fwa4eb > :last-child, .framer-7TF14 .framer-xt23uz > :last-child, .framer-7TF14 .framer-463dng > :last-child, .framer-7TF14 .framer-4r2ayz > :last-child, .framer-7TF14 .framer-yno7as > :last-child, .framer-7TF14 .framer-19xad94 > :last-child, .framer-7TF14 .framer-5z1o1h > :last-child, .framer-7TF14 .framer-j8qoe7 > :last-child, .framer-7TF14 .framer-16a19kn > :last-child, .framer-7TF14 .framer-1xw40m0 > :last-child, .framer-7TF14 .framer-c28rgt > :last-child, .framer-7TF14 .framer-8u9m6k > :last-child, .framer-7TF14 .framer-z3ucj3 > :last-child, .framer-7TF14 .framer-fam40i > :last-child, .framer-7TF14 .framer-1xztk5h > :last-child, .framer-7TF14 .framer-jzsigu > :last-child, .framer-7TF14 .framer-e0fn09 > :last-child, .framer-7TF14 .framer-h128a0 > :last-child, .framer-7TF14 .framer-2e9f0z > :last-child, .framer-7TF14 .framer-1q0jzzi > :last-child { margin-bottom: 0px; } .framer-7TF14 .framer-xt23uz > *, .framer-7TF14 .framer-2e9f0z > *, .framer-7TF14 .framer-1q0jzzi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7TF14 .framer-463dng > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-7TF14 .framer-4r2ayz > *, .framer-7TF14 .framer-16a19kn > *, .framer-7TF14 .framer-z3ucj3 > *, .framer-7TF14 .framer-fam40i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7TF14 .framer-1sbvzgf > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-7TF14 .framer-1sbvzgf > :first-child, .framer-7TF14 .framer-5yas4l > :first-child { margin-left: 0px; } .framer-7TF14 .framer-1sbvzgf > :last-child, .framer-7TF14 .framer-5yas4l > :last-child { margin-right: 0px; } .framer-7TF14 .framer-yno7as > *, .framer-7TF14 .framer-19xad94 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-7TF14 .framer-5z1o1h > *, .framer-7TF14 .framer-1xw40m0 > *, .framer-7TF14 .framer-jzsigu > *, .framer-7TF14 .framer-e0fn09 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7TF14 .framer-j8qoe7 > *, .framer-7TF14 .framer-1xztk5h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7TF14 .framer-c28rgt > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-7TF14 .framer-5yas4l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}`,`@media (min-width: 1200px) and (max-width: 1439px) { .framer-7TF14 .hidden-14ggkru { display: none !important; } .${metadata.bodyClassName}-framer-7TF14 { background: var(--token-2f2b5530-04f9-4963-b980-c7b4647cb338, rgb(255, 255, 255)); } .framer-7TF14.framer-1fwa4eb { width: 1200px; } .framer-7TF14 .framer-uarvsw { padding: 32px 50px 32px 50px; } .framer-7TF14 .framer-r54p03, .framer-7TF14 .framer-1xw40m0, .framer-7TF14 .framer-171ghv5, .framer-7TF14 .framer-nmbbjs { padding: 120px 50px 120px 50px; } .framer-7TF14 .framer-doa290 { height: 444px; width: 523px; } .framer-7TF14 .framer-6ngz1y { max-width: 1200px; padding: 100px 50px 100px 50px; } .framer-7TF14 .framer-11kp8pd { height: 362px; width: 567px; } .framer-7TF14 .framer-8u9m6k { gap: 60px; } .framer-7TF14 .framer-46binb, .framer-7TF14 .framer-hejmdv { padding: 0px 50px 120px 50px; } .framer-7TF14 .framer-1dy0bbg, .framer-7TF14 .framer-1q0jzzi { flex: 0.7 0 0px; } .framer-7TF14 .framer-1g9yvtc, .framer-7TF14 .framer-h128a0 { padding: 100px 50px 100px 50px; } .framer-7TF14 .framer-1n1aju0-container { height: 360px; } .framer-7TF14 .framer-5yas4l { gap: 48px; justify-content: flex-start; } .framer-7TF14 .framer-1x9c9ob { bottom: unset; height: min-content; right: -220px; top: 50%; transform: translateY(-50%); width: min-content; } .framer-7TF14 .framer-11x99yd { padding: 0px 50px 0px 50px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7TF14 .framer-8u9m6k, .framer-7TF14 .framer-5yas4l { gap: 0px; } .framer-7TF14 .framer-8u9m6k > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-7TF14 .framer-8u9m6k > :first-child { margin-top: 0px; } .framer-7TF14 .framer-8u9m6k > :last-child { margin-bottom: 0px; } .framer-7TF14 .framer-5yas4l > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-7TF14 .framer-5yas4l > :first-child { margin-left: 0px; } .framer-7TF14 .framer-5yas4l > :last-child { margin-right: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-7TF14[data-border=\"true\"]::after, .framer-7TF14 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7437\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BOC3J5Kza\":{\"layout\":[\"fixed\",\"auto\"]},\"HFZRCTw4h\":{\"layout\":[\"fixed\",\"auto\"]},\"H6LOoIHW9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerLPlkdq3FM=withCSS(Component,css,\"framer-7TF14\");export default FramerLPlkdq3FM;FramerLPlkdq3FM.displayName=\"Homepage V1\";FramerLPlkdq3FM.defaultProps={height:7437,width:1440};addFonts(FramerLPlkdq3FM,[{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\"}]},...NavigationFonts,...PrimaryButtonFonts,...SecondaryButtonFonts,...ServicesV1Fonts,...StoriesFonts,...TestimonialFonts,...SlideshowFonts,...TickerFonts,...PricingPlanMonthlyYearlyFonts,...FAQV2Fonts,...BlogV1Fonts,...FooterV1Fonts,...ButtonBuyCopyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLPlkdq3FM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7437\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BOC3J5Kza\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HFZRCTw4h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H6LOoIHW9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "background", "description", "height", "id", "image", "link", "number", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VQQ2OjQKM", "aQBSKC2sL", "TdHSza4Lq", "d3QIn9tDn", "ILOuZZCvC", "R2FMrPTdm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "motion", "cx", "RichText", "x", "Image2", "css", "FramerLYGNn9j3C", "withCSS", "LYGNn9j3C_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "background", "description", "heading", "height", "icon", "iconHover", "id", "link", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "awl_piSGn", "yC9pv7Szv", "a1PjvZXUA", "reZkHEM0X", "jd4xO8Ne_", "TfZYOz8sR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "LayoutGroup", "Link", "u", "motion", "cx", "Image2", "RichText", "x", "SVG", "css", "FramerOYlmTX1kc", "withCSS", "OYlmTX1kc_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "v", "w", "C", "N", "e", "R", "a", "t", "re", "MotionConfigContext", "i", "n", "se", "p", "k", "r", "o", "s", "l", "c", "T", "j", "Y", "useLocaleInfo", "x", "b", "D", "I", "E", "L", "P", "V", "A", "M", "z", "S", "J", "B", "useVariantState", "v", "w", "H", "O", "pe", "_", "F", "className", "LayoutGroup", "motion", "cx", "u", "SVG", "RichText", "Image2", "css", "withCSS", "Ssr3nMNc5_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavigationFonts", "getFonts", "SuP86C0Kg_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "PrimaryButtonFonts", "Kain7XeUB_default", "SecondaryButtonFonts", "PrJYCwVx9_default", "MotionDivWithFX", "withFX", "ImageWithFX", "Image2", "ServicesV1Fonts", "OYlmTX1kc_default", "StoriesFonts", "LYGNn9j3C_default", "TestimonialFonts", "Ssr3nMNc5_default", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "PricingPlanMonthlyYearlyFonts", "gfp9S0fPV_default", "FAQV2Fonts", "SfPyxiKzN_default", "BlogV1Fonts", "j8ZPoA0cg_default", "FooterV1Fonts", "RdtLcV8UA_default", "ButtonBuyCopyFonts", "Mcyif8s0K_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition4", "animation7", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "transition5", "animation8", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "h1zN12YJYgX57os3nL", "je2EDFFuvgX57os3nL", "hrGISsCpGgX57os3nL", "QgiUwH4wdgX57os3nL", "dXNW3d5czgX57os3nL", "idgX57os3nL", "MI6eD4eWrq0Ae9Pb9f", "ePglR8UHBq0Ae9Pb9f", "AEpFi1K4Gq0Ae9Pb9f", "PLvqxTEFbq0Ae9Pb9f", "zAJeq4UQ3q0Ae9Pb9f", "lnYhhfWd8q0Ae9Pb9f", "ZerSptMOiq0Ae9Pb9f", "idq0Ae9Pb9f", "zAJeq4UQ3Ol9zi9mth", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "MotionDivWithOptimizedAppearEffect", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SuP86C0Kg_default", "MotionDivWithFX", "RichText", "x", "ResolveLinks", "resolvedLinks", "Kain7XeUB_default", "resolvedLinks1", "PrJYCwVx9_default", "ImageWithFX", "Image2", "ChildrenCanSuspend", "pi_t1SB7e_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks2", "OYlmTX1kc_default", "resolvedLinks3", "SVG", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "LYGNn9j3C_default", "resolvedLinks7", "Slideshow", "Ssr3nMNc5_default", "Ticker", "gfp9S0fPV_default", "SfPyxiKzN_default", "wknzkw37V_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks8", "j8ZPoA0cg_default", "resolvedLinks9", "resolvedLinks10", "RdtLcV8UA_default", "Mcyif8s0K_default", "css", "FramerLPlkdq3FM", "withCSS", "LPlkdq3FM_default", "addFonts", "NavigationFonts", "PrimaryButtonFonts", "SecondaryButtonFonts", "ServicesV1Fonts", "StoriesFonts", "TestimonialFonts", "SlideshowFonts", "TickerFonts", "PricingPlanMonthlyYearlyFonts", "FAQV2Fonts", "BlogV1Fonts", "FooterV1Fonts", "ButtonBuyCopyFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
