{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/di3I91hUtBu0VRhoRBzF/whMPT9r5AGIJx5D5SVaz/Counter.js", "ssg:https://framerusercontent.com/modules/xe75ZnQ4zqODtfKIro1H/tO4ov7un7dQroGcu2D3B/aH7yeXBVj.js", "ssg:https://framerusercontent.com/modules/yNH7mcQ4q5DL4fbHg9hw/7wcDzniw4bMijblT7DyR/JDguMTCRG.js", "ssg:https://framerusercontent.com/modules/bKewEqtBD2CznGvYPPug/uQSSPFX0DY4CjXH4axfb/ZkokeclFd.js", "ssg:https://framerusercontent.com/modules/lTrjgycVMowCLmtfklZw/HYt4WyhSOLiLnuGGIb3F/eSOfEPmfr.js", "ssg:https://framerusercontent.com/modules/8LJg2qzM2aV5r1vYrZHz/6x81O8tLze2uWgDzWG3t/GXHhJTtJc.js", "ssg:https://framerusercontent.com/modules/zgKvXLptOQMM8019GGCK/7dc6vHqYNNQqKAlGrf07/hvQAZuTE8.js", "ssg:https://framerusercontent.com/modules/0JLPmaxZxenFQzSWFxwu/qJpZiXfAIi1MBZmmNkaC/sw01V2bJD.js", "ssg:https://framerusercontent.com/modules/g0SeqgLSb01JZE8q2DZ3/LojAlUGe1cjKnPS4CR62/jFWuJpyza.js", "ssg:https://framerusercontent.com/modules/cPf6qTCbXvZAphxaFvNA/N1405dU3f0ayvf73lpJM/kR2QL9FhD.js", "ssg:https://framerusercontent.com/modules/gFsoydRzCIsA9vZE54qy/iPz8GuFBwCEsaBMM9I7x/llioleSC9.js", "ssg:https://framerusercontent.com/modules/nhlDZioxfaDeWkp6WyUL/Bn9LfJ7arMg3k2mjmqdX/P9ubNxmwe.js", "ssg:https://framerusercontent.com/modules/vtz0iS69ynt208ca7Qtc/By3l6FxvOTD52SBDuNpp/CE7zNdgHX.js", "ssg:https://framerusercontent.com/modules/npMw3XI4wyzppUg3INB4/LMwB0lvN6TTU9ylBuzYr/EWzcwK0dQ.js", "ssg:https://framerusercontent.com/modules/W5PQeEuzGxe67pBDCIUJ/I1Any45vHubjW6wpNRtJ/MAxy_g2Et.js", "ssg:https://framerusercontent.com/modules/CXQwhXl6pHw1wFiPFWjW/FPJqC98sapDIxOCic2IT/tC_tj2qbE.js", "ssg:https://framerusercontent.com/modules/aa7Sc4jzXFi2Ou0khbvf/o2JYIfJOVa3IrlZoDu1q/DCs41GB7F.js", "ssg:https://framerusercontent.com/modules/eRDQRr4J7JOm4UjbcH62/6Ai7IHM5PODaUlNLtil1/KUEyOwyvM.js", "ssg:https://framerusercontent.com/modules/vzHhM4eX2QTJdGRHL59W/WePoFqFxrdhsRsdZOcWL/S_9OuWIAJ.js", "ssg:https://framerusercontent.com/modules/ziFA6a6gQCsKHfgjMIx4/aCHq2IVBPGBU4L2nRWj4/W96ZH6Gnz.js", "ssg:https://framerusercontent.com/modules/t02iRbHKsc5lBYzDUb4c/BNnKLYsbSONCtKXBUKIQ/O6R2SIoIO.js", "ssg:https://framerusercontent.com/modules/jKaDM9SvkCIHTLCVBed6/jaQ1ZSZEyPYgvo2O5Qh8/pfYUjS6Ot.js", "ssg:https://framerusercontent.com/modules/tjEQhyF3IzybO0uMZ7dQ/NJ7QVpAljmEA4aI56v5y/qKzOUOhz5.js", "ssg:https://framerusercontent.com/modules/ffKS8Cvga02EnDwZDH7R/jJLoOAzUTcToEcUenBef/uQRBhygQf.js", "ssg:https://framerusercontent.com/modules/vB6U1Xri7YPSBTy4eIOF/EAF2y1QR5VmTaCw6OJQv/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export function Counter({start=0,end=100,speed=100,gapSize=4,prefixText=\"\",suffixText=\"\",prefixFont,suffixFont,prefixColor,suffixColor,loop=false,decimalSeparatorType=\"comma\",textSize=36,selectedFont={fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor=\"#D3D3D3\",startOnViewport=false,restartOnViewport=false,incrementType=\"integer\"}){const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsVisible(entry.isIntersecting);});if(containerRef.current)observer.observe(containerRef.current);return()=>observer.disconnect();},[]);useEffect(()=>{if(!(isVisible||!startOnViewport)||start===end)return;const increment=incrementType===\"integer\"?1:.1;const intervalId=setInterval(()=>{setCount(prev=>prev+increment>=end?end:parseFloat((prev+increment).toFixed(2)));},speed);return()=>clearInterval(intervalId);},[isVisible,start,end,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible)setCount(start);},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\")return number.toLocaleString(\"en-US\");if(decimalSeparatorType===\"period\")return number.toLocaleString(\"en-US\").replace(/,/g,\".\");return number.toFixed(incrementType===\"integer\"?0:1);};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{display:\"flex\",gap:`${gapSize}px`,alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor,letterSpacing:\"-0.07em\"},children:[prefixText&&/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont?.fontFamily,fontWeight:prefixFont?.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),suffixText&&/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont?.fontFamily,fontWeight:suffixFont?.fontWeight,color:suffixColor},children:suffixText})]});}addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Counter}from\"https://framerusercontent.com/modules/di3I91hUtBu0VRhoRBzF/whMPT9r5AGIJx5D5SVaz/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1HoGQ6QwD2LyK0GEQDFa/dIKwJomSAtcf6KAJzpfk/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const CounterFonts=getFonts(Counter);const CounterControls=getPropertyControls(Counter);const cycleOrder=[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"];const serializationHash=\"framer-KGMCY\";const variantClassNames={cgtZ872x4:\"framer-v-kd3l4t\",GafEYaEBD:\"framer-v-11s36qo\",rU6L3C7CP:\"framer-v-1t1ct45\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Decimal:\"decimal\",Integer:\"integer\"};const humanReadableVariantMap={Desktop:\"rU6L3C7CP\",Phone:\"GafEYaEBD\",Tablet:\"cgtZ872x4\"};const getProps=({description,h3Title,height,id,incrementType,number,speedMs,suffix,width,...props})=>{return{...props,BU4_wyR9A:number??props.BU4_wyR9A??17,ezNYwgiIW:h3Title??props.ezNYwgiIW??\"H3 Title\",MTE4RiHaV:description??props.MTE4RiHaV??\"Description\",OhLeOem3o:speedMs??props.OhLeOem3o??60,uvfNqUND5:suffix??props.uvfNqUND5??\"+\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rU6L3C7CP\",XbDSLtZLO:humanReadableEnumMap[incrementType]??incrementType??props.XbDSLtZLO??\"integer\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,BU4_wyR9A,uvfNqUND5,XbDSLtZLO,OhLeOem3o,ezNYwgiIW,MTE4RiHaV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rU6L3C7CP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1t1ct45\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rU6L3C7CP\",ref:ref??ref1,style:{...style},...addPropertyOverrides({cgtZ872x4:{\"data-framer-name\":\"Tablet\"},GafEYaEBD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rnq1xt-container\",layoutDependency:layoutDependency,layoutId:\"SCstb8RtQ-container\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:BU4_wyR9A,gapSize:0,height:\"100%\",id:\"SCstb8RtQ\",incrementType:XbDSLtZLO,layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:OhLeOem3o,start:0,startOnViewport:true,suffixColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",suffixFont:{},suffixText:uvfNqUND5,textColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",textSize:90,width:\"100%\",...addPropertyOverrides({cgtZ872x4:{textSize:66},GafEYaEBD:{textSize:44}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11g5wz4\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"KM6RVAnzp\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(214, 214, 214)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Websites launched\"})}),className:\"framer-10l1onq\",\"data-framer-name\":\"Websites launched\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BCdPzBs67\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ezNYwgiIW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Helping brands make their mark online.\"})}),className:\"framer-1yj06m6\",\"data-framer-name\":\"Helping brands make their mark online.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQ5BFZosn\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:MTE4RiHaV,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KGMCY.framer-zp4nlz, .framer-KGMCY .framer-zp4nlz { display: block; }\",\".framer-KGMCY.framer-1t1ct45 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-KGMCY .framer-rnq1xt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KGMCY .framer-11g5wz4 { 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: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KGMCY .framer-10l1onq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KGMCY .framer-1yj06m6 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-1t1ct45, .framer-KGMCY .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-KGMCY.framer-1t1ct45 > :first-child, .framer-KGMCY .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-1t1ct45 > :last-child, .framer-KGMCY .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 { gap: 24px; }\",\".framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 { gap: 6px; padding: 32px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > :first-child, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > :last-child, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 { gap: 20px; }\",\".framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 { gap: 6px; padding: 24px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > :first-child, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > :last-child, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KGMCY[data-border=\"true\"]::after, .framer-KGMCY [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 242\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cgtZ872x4\":{\"layout\":[\"fixed\",\"auto\"]},\"GafEYaEBD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BU4_wyR9A\":\"number\",\"uvfNqUND5\":\"suffix\",\"XbDSLtZLO\":\"incrementType\",\"OhLeOem3o\":\"speedMs\",\"ezNYwgiIW\":\"h3Title\",\"MTE4RiHaV\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraH7yeXBVj=withCSS(Component,css,\"framer-KGMCY\");export default FrameraH7yeXBVj;FrameraH7yeXBVj.displayName=\"Numbers / Item\";FrameraH7yeXBVj.defaultProps={height:242,width:400};addPropertyControls(FrameraH7yeXBVj,{variant:{options:[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},BU4_wyR9A:{defaultValue:17,displayStepper:true,title:\"Number\",type:ControlType.Number},uvfNqUND5:{defaultValue:\"+\",title:\"Suffix\",type:ControlType.String},XbDSLtZLO:CounterControls?.[\"incrementType\"]&&{...CounterControls[\"incrementType\"],defaultValue:\"integer\",description:undefined,hidden:undefined,title:\"Increment Type\"},OhLeOem3o:{defaultValue:60,max:2e3,min:0,step:10,title:\"Speed Ms\",type:ControlType.Number},ezNYwgiIW:{defaultValue:\"H3 Title\",displayTextArea:false,title:\"H3 Title\",type:ControlType.String},MTE4RiHaV:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FrameraH7yeXBVj,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraH7yeXBVj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgtZ872x4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GafEYaEBD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"242\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BU4_wyR9A\\\":\\\"number\\\",\\\"uvfNqUND5\\\":\\\"suffix\\\",\\\"XbDSLtZLO\\\":\\\"incrementType\\\",\\\"OhLeOem3o\\\":\\\"speedMs\\\",\\\"ezNYwgiIW\\\":\\\"h3Title\\\",\\\"MTE4RiHaV\\\":\\\"description\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/99CfbQ0g2aHd3wkMunJ6/y1C7t0UV7hgBOIy2DUxd/q35quwzCc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const cycleOrder=[\"hDbCvcxst\",\"KVvKXtHq9\"];const serializationHash=\"framer-eBwJi\";const variantClassNames={hDbCvcxst:\"framer-v-145ktc9\",KVvKXtHq9:\"framer-v-yd3s1d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Phone:\"KVvKXtHq9\",Primary:\"hDbCvcxst\"};const getProps=({description,height,id,image,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,iU68ScBCY:(_ref=description!==null&&description!==void 0?description:props.iU68ScBCY)!==null&&_ref!==void 0?_ref:\"Description\",M6makQZJz:(_ref1=title!==null&&title!==void 0?title:props.M6makQZJz)!==null&&_ref1!==void 0?_ref1:\"Title\",OtapoObdF:image!==null&&image!==void 0?image:props.OtapoObdF,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"hDbCvcxst\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,OtapoObdF,M6makQZJz,iU68ScBCY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hDbCvcxst\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-145ktc9\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"hDbCvcxst\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({KVvKXtHq9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||245.5)-0-359.8)/2+0+0)),pixelHeight:315,pixelWidth:437,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(OtapoObdF),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ieoc4f\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"Y9Cx1EXp6\",...addPropertyOverrides({KVvKXtHq9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||191.5)-0-305.8)/2+0+0)),pixelHeight:315,pixelWidth:437,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(OtapoObdF),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zx5yf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XGsulj8pd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-1qxv4mt\",\"data-framer-name\":\"Branding\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2S116wtB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:M6makQZJz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Description\"})}),className:\"framer-1q2ai5c\",\"data-framer-name\":\"We create impactful brand identities that differentiate your business and connect with your audience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lEPU50rVm\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:iU68ScBCY,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eBwJi.framer-g71a2p, .framer-eBwJi .framer-g71a2p { display: block; }\",\".framer-eBwJi.framer-145ktc9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 180px; }\",\".framer-eBwJi .framer-1ieoc4f { aspect-ratio: 1.3846153846153846 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 130px); position: relative; width: 100%; }\",\".framer-eBwJi .framer-11zx5yf { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eBwJi .framer-1qxv4mt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-eBwJi .framer-1q2ai5c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eBwJi.framer-145ktc9, .framer-eBwJi .framer-11zx5yf { gap: 0px; } .framer-eBwJi.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-eBwJi.framer-145ktc9 > :first-child, .framer-eBwJi .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-eBwJi.framer-145ktc9 > :last-child, .framer-eBwJi .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-eBwJi .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-eBwJi.framer-v-yd3s1d.framer-145ktc9 { gap: 32px; }\",\".framer-eBwJi.framer-v-yd3s1d .framer-1ieoc4f { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 100px); }\",\".framer-eBwJi.framer-v-yd3s1d .framer-11zx5yf { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eBwJi.framer-v-yd3s1d.framer-145ktc9, .framer-eBwJi.framer-v-yd3s1d .framer-11zx5yf { gap: 0px; } .framer-eBwJi.framer-v-yd3s1d.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-eBwJi.framer-v-yd3s1d.framer-145ktc9 > :first-child, .framer-eBwJi.framer-v-yd3s1d .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-eBwJi.framer-v-yd3s1d.framer-145ktc9 > :last-child, .framer-eBwJi.framer-v-yd3s1d .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-eBwJi.framer-v-yd3s1d .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 245.5\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KVvKXtHq9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OtapoObdF\":\"image\",\"M6makQZJz\":\"title\",\"iU68ScBCY\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJDguMTCRG=withCSS(Component,css,\"framer-eBwJi\");export default FramerJDguMTCRG;FramerJDguMTCRG.displayName=\"Services / Items / Description\";FramerJDguMTCRG.defaultProps={height:245.5,width:180};addPropertyControls(FramerJDguMTCRG,{variant:{options:[\"hDbCvcxst\",\"KVvKXtHq9\"],optionTitles:[\"Primary\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},OtapoObdF:{title:\"Image\",type:ControlType.ResponsiveImage},M6makQZJz:{defaultValue:\"Title\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},iU68ScBCY:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerJDguMTCRG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDguMTCRG\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KVvKXtHq9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"OtapoObdF\\\":\\\"image\\\",\\\"M6makQZJz\\\":\\\"title\\\",\\\"iU68ScBCY\\\":\\\"description\\\"}\",\"framerIntrinsicWidth\":\"180\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"245.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDguMTCRG.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"];const serializationHash=\"framer-80AfW\";const variantClassNames={D_0PvXkKg:\"framer-v-pz4gxq\",DY4InP0NL:\"framer-v-1wdw0ve\",I5anvyWOt:\"framer-v-1vftdq5\",OM0T28LIR:\"framer-v-16tri3p\",sU_9MvVyf:\"framer-v-1hgpdev\",wNupTgeBX:\"framer-v-10t5t6l\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:0};const transition1={delay:0,duration:1,ease:[.22,1,.36,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:30,y:0};const transition2={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:20,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop active\":\"I5anvyWOt\",\"Desktop inactive\":\"wNupTgeBX\",\"Phone active\":\"DY4InP0NL\",\"Phone inactive\":\"OM0T28LIR\",\"Tablet active\":\"D_0PvXkKg\",\"Tablet inative\":\"sU_9MvVyf\"};const getProps=({height,id,mouseEnter,number,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,fErYKCICq:(_ref=title!==null&&title!==void 0?title:props.fErYKCICq)!==null&&_ref!==void 0?_ref:\"Title\",KrXbsPILD:mouseEnter!==null&&mouseEnter!==void 0?mouseEnter:props.KrXbsPILD,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"I5anvyWOt\",yB44CUche:(_ref2=number!==null&&number!==void 0?number:props.yB44CUche)!==null&&_ref2!==void 0?_ref2:\"00\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fErYKCICq,yB44CUche,KrXbsPILD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I5anvyWOt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter10pbwk0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(KrXbsPILD){const res=await KrXbsPILD(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vftdq5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I5anvyWOt\",onMouseEnter:onMouseEnter10pbwk0,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(50, 50, 50)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({D_0PvXkKg:{\"data-framer-name\":\"Tablet active\"},DY4InP0NL:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone active\"},OM0T28LIR:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone inactive\"},sU_9MvVyf:{\"data-framer-name\":\"Tablet inative\"},wNupTgeBX:{\"data-framer-name\":\"Desktop inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i8uvxx\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"AibRWKCID\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-t8hhz4\",\"data-framer-name\":\"Websites\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ElqYy4OYu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:fErYKCICq,variants:{OM0T28LIR:{opacity:.2},sU_9MvVyf:{opacity:.15},wNupTgeBX:{opacity:.15}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ttgg32\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"IAPdu_olr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})}),className:\"framer-nibo9d\",\"data-framer-name\":\"{\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"bcvYWJGOA\",style:{\"--extracted-r6o4lv\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{OM0T28LIR:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"},sU_9MvVyf:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"},wNupTgeBX:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})})},wNupTgeBX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"{\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})}),className:\"framer-z1qhe3\",\"data-framer-name\":\"01\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"wjwcJ_06U\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:yB44CUche,variants:{OM0T28LIR:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\"},sU_9MvVyf:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\"},wNupTgeBX:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})})},wNupTgeBX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"00\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})}),className:\"framer-9reabl\",\"data-framer-name\":\"}\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"hDBKsFpVP\",style:{\"--extracted-r6o4lv\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{OM0T28LIR:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"},sU_9MvVyf:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"},wNupTgeBX:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.2)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})})},wNupTgeBX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.2))\",\"--framer-text-transform\":\"uppercase\"},children:\"}\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-80AfW.framer-1g1xgga, .framer-80AfW .framer-1g1xgga { display: block; }\",\".framer-80AfW.framer-1vftdq5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 20px 16px; position: relative; width: 725px; }\",\".framer-80AfW .framer-1i8uvxx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-80AfW .framer-t8hhz4, .framer-80AfW .framer-nibo9d, .framer-80AfW .framer-z1qhe3, .framer-80AfW .framer-9reabl { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-80AfW .framer-1ttgg32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-1vftdq5, .framer-80AfW .framer-1i8uvxx, .framer-80AfW .framer-1ttgg32 { gap: 0px; } .framer-80AfW.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-80AfW.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-80AfW.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-80AfW .framer-1i8uvxx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-80AfW .framer-1i8uvxx > :first-child, .framer-80AfW .framer-1ttgg32 > :first-child { margin-left: 0px; } .framer-80AfW .framer-1i8uvxx > :last-child, .framer-80AfW .framer-1ttgg32 > :last-child { margin-right: 0px; } .framer-80AfW .framer-1ttgg32 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-80AfW.framer-v-10t5t6l.framer-1vftdq5 { padding: 10px 0px 20px 0px; }\",\".framer-80AfW.framer-v-10t5t6l .framer-1i8uvxx, .framer-80AfW.framer-v-pz4gxq .framer-1i8uvxx { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-v-10t5t6l .framer-1i8uvxx { gap: 0px; } .framer-80AfW.framer-v-10t5t6l .framer-1i8uvxx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-80AfW.framer-v-10t5t6l .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-80AfW.framer-v-10t5t6l .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-80AfW.framer-v-pz4gxq.framer-1vftdq5, .framer-80AfW.framer-v-1hgpdev.framer-1vftdq5 { gap: 14px; padding: 12px 0px 26px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-v-pz4gxq.framer-1vftdq5, .framer-80AfW.framer-v-pz4gxq .framer-1i8uvxx { gap: 0px; } .framer-80AfW.framer-v-pz4gxq.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-80AfW.framer-v-pz4gxq.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-80AfW.framer-v-pz4gxq.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-80AfW.framer-v-pz4gxq .framer-1i8uvxx > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-80AfW.framer-v-pz4gxq .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-80AfW.framer-v-pz4gxq .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-80AfW.framer-v-1hgpdev .framer-1i8uvxx { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-v-1hgpdev.framer-1vftdq5, .framer-80AfW.framer-v-1hgpdev .framer-1i8uvxx { gap: 0px; } .framer-80AfW.framer-v-1hgpdev.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-80AfW.framer-v-1hgpdev.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-80AfW.framer-v-1hgpdev.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-80AfW.framer-v-1hgpdev .framer-1i8uvxx > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-80AfW.framer-v-1hgpdev .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-80AfW.framer-v-1hgpdev .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-80AfW.framer-v-1wdw0ve.framer-1vftdq5 { gap: 14px; padding: 0px 0px 16px 0px; width: 320px; }\",\".framer-80AfW.framer-v-1wdw0ve .framer-1i8uvxx, .framer-80AfW.framer-v-16tri3p .framer-1i8uvxx { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-v-1wdw0ve.framer-1vftdq5, .framer-80AfW.framer-v-1wdw0ve .framer-1i8uvxx { gap: 0px; } .framer-80AfW.framer-v-1wdw0ve.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-80AfW.framer-v-1wdw0ve.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-80AfW.framer-v-1wdw0ve.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-80AfW.framer-v-1wdw0ve .framer-1i8uvxx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-80AfW.framer-v-1wdw0ve .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-80AfW.framer-v-1wdw0ve .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",\".framer-80AfW.framer-v-16tri3p.framer-1vftdq5 { gap: 10px; padding: 0px 0px 16px 0px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-80AfW.framer-v-16tri3p.framer-1vftdq5, .framer-80AfW.framer-v-16tri3p .framer-1i8uvxx { gap: 0px; } .framer-80AfW.framer-v-16tri3p.framer-1vftdq5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-80AfW.framer-v-16tri3p.framer-1vftdq5 > :first-child { margin-top: 0px; } .framer-80AfW.framer-v-16tri3p.framer-1vftdq5 > :last-child { margin-bottom: 0px; } .framer-80AfW.framer-v-16tri3p .framer-1i8uvxx > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-80AfW.framer-v-16tri3p .framer-1i8uvxx > :first-child { margin-left: 0px; } .framer-80AfW.framer-v-16tri3p .framer-1i8uvxx > :last-child { margin-right: 0px; } }\",'.framer-80AfW[data-border=\"true\"]::after, .framer-80AfW [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 142\n * @framerIntrinsicWidth 725\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wNupTgeBX\":{\"layout\":[\"fixed\",\"auto\"]},\"D_0PvXkKg\":{\"layout\":[\"fixed\",\"auto\"]},\"sU_9MvVyf\":{\"layout\":[\"fixed\",\"auto\"]},\"DY4InP0NL\":{\"layout\":[\"fixed\",\"auto\"]},\"OM0T28LIR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fErYKCICq\":\"title\",\"yB44CUche\":\"number\",\"KrXbsPILD\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZkokeclFd=withCSS(Component,css,\"framer-80AfW\");export default FramerZkokeclFd;FramerZkokeclFd.displayName=\"Services / Items / Item\";FramerZkokeclFd.defaultProps={height:142,width:725};addPropertyControls(FramerZkokeclFd,{variant:{options:[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"],optionTitles:[\"Desktop active\",\"Desktop inactive\",\"Tablet active\",\"Tablet inative\",\"Phone active\",\"Phone inactive\"],title:\"Variant\",type:ControlType.Enum},fErYKCICq:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},yB44CUche:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},KrXbsPILD:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerZkokeclFd,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZkokeclFd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wNupTgeBX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D_0PvXkKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sU_9MvVyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DY4InP0NL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OM0T28LIR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"fErYKCICq\\\":\\\"title\\\",\\\"yB44CUche\\\":\\\"number\\\",\\\"KrXbsPILD\\\":\\\"mouseEnter\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"725\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"142\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZkokeclFd.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ServicesItemsDescription from\"https://framerusercontent.com/modules/yNH7mcQ4q5DL4fbHg9hw/7wcDzniw4bMijblT7DyR/JDguMTCRG.js\";import ServicesItemsItem from\"https://framerusercontent.com/modules/bKewEqtBD2CznGvYPPug/uQSSPFX0DY4CjXH4axfb/ZkokeclFd.js\";const ServicesItemsDescriptionFonts=getFonts(ServicesItemsDescription);const MotionDivWithFX=withFX(motion.div);const ServicesItemsItemFonts=getFonts(ServicesItemsItem);const cycleOrder=[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"jupkLvHBO\",\"cHwDp_s5i\",\"fci5zB1JM\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"ueg3wT1lw\",\"UiRdOhXvT\",\"FPEMd0pOj\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\",\"FxHnXRW2z\",\"CYu4a7neK\",\"hpOMYgQXf\"];const serializationHash=\"framer-0a8tV\";const variantClassNames={CDtoZNgtA:\"framer-v-1ur73tn\",cHwDp_s5i:\"framer-v-ganesh\",CYu4a7neK:\"framer-v-mkl476\",fci5zB1JM:\"framer-v-11qo17c\",fNHB6YKk0:\"framer-v-1lhle6x\",FPEMd0pOj:\"framer-v-oq2w7w\",FxHnXRW2z:\"framer-v-lofp2d\",hpOMYgQXf:\"framer-v-dtfqpu\",jupkLvHBO:\"framer-v-x4igo9\",TLxLam4YZ:\"framer-v-1t7ta8b\",ueg3wT1lw:\"framer-v-c7xmxb\",UiRdOhXvT:\"framer-v-hhhalw\",VE5xIiPuL:\"framer-v-mqhzof\",VGwYuVR2s:\"framer-v-pdjrec\",vl7fPkW6x:\"framer-v-dif0uf\",xrEj7YEsU:\"framer-v-1635f9f\",y1cmM3CL5:\"framer-v-aie38q\",YEnTeNdRP:\"framer-v-o3l3yy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,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 isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 2\":\"xrEj7YEsU\",\"Desktop 3\":\"CDtoZNgtA\",\"Desktop 4\":\"jupkLvHBO\",\"Desktop 5\":\"cHwDp_s5i\",\"Desktop 6\":\"fci5zB1JM\",\"Desktop main\":\"vl7fPkW6x\",\"Phone 2\":\"VE5xIiPuL\",\"Phone 3\":\"VGwYuVR2s\",\"Phone 4\":\"FxHnXRW2z\",\"Phone 5\":\"CYu4a7neK\",\"Phone 6\":\"hpOMYgQXf\",\"Phone main\":\"y1cmM3CL5\",\"Tablet 2\":\"YEnTeNdRP\",\"Tablet 3\":\"fNHB6YKk0\",\"Tablet 4\":\"ueg3wT1lw\",\"Tablet 5\":\"UiRdOhXvT\",\"Tablet 6\":\"FPEMd0pOj\",\"Tablet main\":\"TLxLam4YZ\"};const getProps=({_01Description,_01Image,_01Title,_02Description,_02Image,_02Title,_03Description,_03Image,_03Title,_04Description,_04Image,_04Title,_05Description,_05Image,_05Title,_06Description,_06Image,_06Title,height,id,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_humanReadableVariantMap_props_variant,_ref9,_ref10,_ref11,_ref12;return{...props,AChBv6mnx:(_ref=_02Title!==null&&_02Title!==void 0?_02Title:props.AChBv6mnx)!==null&&_ref!==void 0?_ref:\"02 Title\",AtsGqKbqe:_03Image!==null&&_03Image!==void 0?_03Image:props.AtsGqKbqe,DP3k2sIwB:(_ref1=_05Description!==null&&_05Description!==void 0?_05Description:props.DP3k2sIwB)!==null&&_ref1!==void 0?_ref1:\"05 Description\",DvMnYDgLq:(_ref2=_05Title!==null&&_05Title!==void 0?_05Title:props.DvMnYDgLq)!==null&&_ref2!==void 0?_ref2:\"05 Title\",dym8aGlmH:(_ref3=_02Description!==null&&_02Description!==void 0?_02Description:props.dym8aGlmH)!==null&&_ref3!==void 0?_ref3:\"02 Description\",dYspAHvCn:(_ref4=_06Title!==null&&_06Title!==void 0?_06Title:props.dYspAHvCn)!==null&&_ref4!==void 0?_ref4:\"06 Title\",FhHZF40Gc:_05Image!==null&&_05Image!==void 0?_05Image:props.FhHZF40Gc,gRgZAVMwJ:_04Image!==null&&_04Image!==void 0?_04Image:props.gRgZAVMwJ,is0Kmy_LC:_06Image!==null&&_06Image!==void 0?_06Image:props.is0Kmy_LC,kGMjQGWFg:_02Image!==null&&_02Image!==void 0?_02Image:props.kGMjQGWFg,L5bVOjC54:_01Image!==null&&_01Image!==void 0?_01Image:props.L5bVOjC54,nfr3_vd4_:(_ref5=_01Description!==null&&_01Description!==void 0?_01Description:props.nfr3_vd4_)!==null&&_ref5!==void 0?_ref5:\"01 Description\",rd_VK8DcK:(_ref6=_04Title!==null&&_04Title!==void 0?_04Title:props.rd_VK8DcK)!==null&&_ref6!==void 0?_ref6:\"04 Title\",T3Zvj4lLt:(_ref7=_04Description!==null&&_04Description!==void 0?_04Description:props.T3Zvj4lLt)!==null&&_ref7!==void 0?_ref7:\"04 Description\",u2WQNcukZ:(_ref8=_03Description!==null&&_03Description!==void 0?_03Description:props.u2WQNcukZ)!==null&&_ref8!==void 0?_ref8:\"03 Description\",variant:(_ref9=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref9!==void 0?_ref9:\"vl7fPkW6x\",Xgqdpwxoc:(_ref10=_01Title!==null&&_01Title!==void 0?_01Title:props.Xgqdpwxoc)!==null&&_ref10!==void 0?_ref10:\"01 Title\",Y7m9L8sgJ:(_ref11=_03Title!==null&&_03Title!==void 0?_03Title:props.Y7m9L8sgJ)!==null&&_ref11!==void 0?_ref11:\"03 Title\",yIZLGI3IM:(_ref12=_06Description!==null&&_06Description!==void 0?_06Description:props.yIZLGI3IM)!==null&&_ref12!==void 0?_ref12:\"06 Description\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,L5bVOjC54,Xgqdpwxoc,nfr3_vd4_,kGMjQGWFg,AChBv6mnx,dym8aGlmH,AtsGqKbqe,Y7m9L8sgJ,u2WQNcukZ,gRgZAVMwJ,rd_VK8DcK,T3Zvj4lLt,FhHZF40Gc,DvMnYDgLq,DP3k2sIwB,is0Kmy_LC,dYspAHvCn,yIZLGI3IM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vl7fPkW6x\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const KrXbsPILD1xtnafx=activeVariantCallback(async(...args)=>{setVariant(\"vl7fPkW6x\");});const KrXbsPILD1ov8v4r=activeVariantCallback(async(...args)=>{setVariant(\"TLxLam4YZ\");});const KrXbsPILDgko28l=activeVariantCallback(async(...args)=>{setVariant(\"y1cmM3CL5\");});const KrXbsPILDjnvuu0=activeVariantCallback(async(...args)=>{setVariant(\"xrEj7YEsU\");});const KrXbsPILDkhapmg=activeVariantCallback(async(...args)=>{setVariant(\"YEnTeNdRP\");});const KrXbsPILDbr4mb1=activeVariantCallback(async(...args)=>{setVariant(\"VE5xIiPuL\");});const KrXbsPILD11xbel4=activeVariantCallback(async(...args)=>{setVariant(\"CDtoZNgtA\");});const KrXbsPILD8caf5w=activeVariantCallback(async(...args)=>{setVariant(\"fNHB6YKk0\");});const KrXbsPILD1i08jbh=activeVariantCallback(async(...args)=>{setVariant(\"VGwYuVR2s\");});const KrXbsPILD1mf45pp=activeVariantCallback(async(...args)=>{setVariant(\"jupkLvHBO\");});const KrXbsPILD1undss3=activeVariantCallback(async(...args)=>{setVariant(\"ueg3wT1lw\");});const KrXbsPILDyokc1j=activeVariantCallback(async(...args)=>{setVariant(\"FxHnXRW2z\");});const KrXbsPILD1uxowba=activeVariantCallback(async(...args)=>{setVariant(\"cHwDp_s5i\");});const KrXbsPILDnbjzmd=activeVariantCallback(async(...args)=>{setVariant(\"UiRdOhXvT\");});const KrXbsPILDvu4x=activeVariantCallback(async(...args)=>{setVariant(\"CYu4a7neK\");});const KrXbsPILD1ext7ag=activeVariantCallback(async(...args)=>{setVariant(\"fci5zB1JM\");});const KrXbsPILDq1ltx0=activeVariantCallback(async(...args)=>{setVariant(\"FPEMd0pOj\");});const KrXbsPILD46k9fx=activeVariantCallback(async(...args)=>{setVariant(\"hpOMYgQXf\");});const ref1=React.useRef(null);const visible=isSet(AChBv6mnx);const visible1=isSet(Y7m9L8sgJ);const visible2=isSet(rd_VK8DcK);const visible3=isSet(DvMnYDgLq);const visible4=isSet(dYspAHvCn);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-dif0uf\",className,classNames),\"data-framer-name\":\"Desktop main\",layoutDependency:layoutDependency,layoutId:\"vl7fPkW6x\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CDtoZNgtA:{\"data-framer-name\":\"Desktop 3\"},cHwDp_s5i:{\"data-framer-name\":\"Desktop 5\"},CYu4a7neK:{\"data-framer-name\":\"Phone 5\"},fci5zB1JM:{\"data-framer-name\":\"Desktop 6\"},fNHB6YKk0:{\"data-framer-name\":\"Tablet 3\"},FPEMd0pOj:{\"data-framer-name\":\"Tablet 6\"},FxHnXRW2z:{\"data-framer-name\":\"Phone 4\"},hpOMYgQXf:{\"data-framer-name\":\"Phone 6\"},jupkLvHBO:{\"data-framer-name\":\"Desktop 4\"},TLxLam4YZ:{\"data-framer-name\":\"Tablet main\"},ueg3wT1lw:{\"data-framer-name\":\"Tablet 4\"},UiRdOhXvT:{\"data-framer-name\":\"Tablet 5\"},VE5xIiPuL:{\"data-framer-name\":\"Phone 2\"},VGwYuVR2s:{\"data-framer-name\":\"Phone 3\"},xrEj7YEsU:{\"data-framer-name\":\"Desktop 2\"},y1cmM3CL5:{\"data-framer-name\":\"Phone main\"},YEnTeNdRP:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-vqugsr\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"dnnR9KUUK\",...addPropertyOverrides({y1cmM3CL5:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:245,width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 1px) / 2)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,...addPropertyOverrides({CDtoZNgtA:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+100},cHwDp_s5i:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+200},CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},fci5zB1JM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+250},fNHB6YKk0:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},FPEMd0pOj:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},jupkLvHBO:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+150},TLxLam4YZ:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},ueg3wT1lw:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},UiRdOhXvT:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},xrEj7YEsU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+50},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+990+0},YEnTeNdRP:{width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 4, 1px) * 0.8)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6msbh-container\",layoutDependency:layoutDependency,layoutId:\"AxX6jMRFd-container\",children:/*#__PURE__*/_jsx(ServicesItemsDescription,{height:\"100%\",id:\"AxX6jMRFd\",iU68ScBCY:nfr3_vd4_,layoutId:\"AxX6jMRFd\",M6makQZJz:Xgqdpwxoc,OtapoObdF:toResponsiveImage(L5bVOjC54),style:{width:\"100%\"},variant:\"hDbCvcxst\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},cHwDp_s5i:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc)},CYu4a7neK:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc),variant:\"KVvKXtHq9\"},fci5zB1JM:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC)},fNHB6YKk0:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},FPEMd0pOj:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC)},FxHnXRW2z:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ),variant:\"KVvKXtHq9\"},hpOMYgQXf:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC),variant:\"KVvKXtHq9\"},jupkLvHBO:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ)},ueg3wT1lw:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ)},UiRdOhXvT:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc)},VE5xIiPuL:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg),variant:\"KVvKXtHq9\"},VGwYuVR2s:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe),variant:\"KVvKXtHq9\"},xrEj7YEsU:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)},y1cmM3CL5:{variant:\"KVvKXtHq9\"},YEnTeNdRP:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-phl2vz\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"oeh8xrVP_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nd4r9v-container\",layoutDependency:layoutDependency,layoutId:\"xX3J7kRZq-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Xgqdpwxoc,height:\"100%\",id:\"xX3J7kRZq\",KrXbsPILD:KrXbsPILD1xtnafx,layoutId:\"xX3J7kRZq\",style:{width:\"100%\"},variant:\"I5anvyWOt\",width:\"100%\",yB44CUche:\"01\",...addPropertyOverrides({CDtoZNgtA:{variant:\"wNupTgeBX\"},cHwDp_s5i:{variant:\"wNupTgeBX\"},CYu4a7neK:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},fci5zB1JM:{variant:\"wNupTgeBX\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},jupkLvHBO:{variant:\"wNupTgeBX\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"D_0PvXkKg\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},xrEj7YEsU:{variant:\"wNupTgeBX\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDgko28l,variant:\"DY4InP0NL\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+160,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+160},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1blppte-container\",layoutDependency:layoutDependency,layoutId:\"iowul08mJ-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:AChBv6mnx,height:\"100%\",id:\"iowul08mJ\",KrXbsPILD:KrXbsPILDjnvuu0,layoutId:\"iowul08mJ\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",yB44CUche:\"02\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"DY4InP0NL\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},xrEj7YEsU:{variant:\"I5anvyWOt\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"D_0PvXkKg\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+320,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+320},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1lq8o-container\",layoutDependency:layoutDependency,layoutId:\"I6fdJ7qzg-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Y7m9L8sgJ,height:\"100%\",id:\"I6fdJ7qzg\",KrXbsPILD:KrXbsPILD11xbel4,layoutId:\"I6fdJ7qzg\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",yB44CUche:\"03\",...addPropertyOverrides({CDtoZNgtA:{variant:\"I5anvyWOt\"},CYu4a7neK:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"D_0PvXkKg\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"DY4InP0NL\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+480,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+480},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bpv6go-container\",layoutDependency:layoutDependency,layoutId:\"HLaVc2GJP-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:rd_VK8DcK,height:\"100%\",id:\"HLaVc2GJP\",KrXbsPILD:KrXbsPILD1mf45pp,layoutId:\"HLaVc2GJP\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",yB44CUche:\"04\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"DY4InP0NL\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},jupkLvHBO:{variant:\"I5anvyWOt\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD1undss3,variant:\"D_0PvXkKg\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+640,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+640},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sb2gc-container\",layoutDependency:layoutDependency,layoutId:\"lSm5egHE_-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:DvMnYDgLq,height:\"100%\",id:\"lSm5egHE_\",KrXbsPILD:KrXbsPILD1uxowba,layoutId:\"lSm5egHE_\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",yB44CUche:\"05\",...addPropertyOverrides({cHwDp_s5i:{variant:\"I5anvyWOt\"},CYu4a7neK:{KrXbsPILD:KrXbsPILDvu4x,variant:\"DY4InP0NL\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"D_0PvXkKg\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 1.5, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+800,...addPropertyOverrides({CYu4a7neK:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},fNHB6YKk0:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},hpOMYgQXf:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},TLxLam4YZ:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},VGwYuVR2s:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},y1cmM3CL5:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+800},YEnTeNdRP:{width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cteh2s-container\",layoutDependency:layoutDependency,layoutId:\"MnFwFVMnY-container\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:dYspAHvCn,height:\"100%\",id:\"MnFwFVMnY\",KrXbsPILD:KrXbsPILD1ext7ag,layoutId:\"MnFwFVMnY\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",yB44CUche:\"06\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},fci5zB1JM:{variant:\"I5anvyWOt\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"D_0PvXkKg\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"DY4InP0NL\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0a8tV.framer-t4nuy2, .framer-0a8tV .framer-t4nuy2 { display: block; }\",\".framer-0a8tV.framer-dif0uf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1128px; }\",\".framer-0a8tV .framer-vqugsr { align-content: flex-start; align-items: flex-start; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0a8tV .framer-t6msbh-container { flex: none; height: auto; position: relative; width: 50%; }\",\".framer-0a8tV .framer-phl2vz { align-content: flex-start; align-items: flex-start; display: flex; flex: 8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0a8tV .framer-nd4r9v-container, .framer-0a8tV .framer-1blppte-container, .framer-0a8tV .framer-1d1lq8o-container, .framer-0a8tV .framer-bpv6go-container, .framer-0a8tV .framer-sb2gc-container, .framer-0a8tV .framer-cteh2s-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-dif0uf, .framer-0a8tV .framer-vqugsr, .framer-0a8tV .framer-phl2vz { gap: 0px; } .framer-0a8tV.framer-dif0uf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0a8tV.framer-dif0uf > :first-child, .framer-0a8tV .framer-vqugsr > :first-child { margin-left: 0px; } .framer-0a8tV.framer-dif0uf > :last-child, .framer-0a8tV .framer-vqugsr > :last-child { margin-right: 0px; } .framer-0a8tV .framer-vqugsr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0a8tV .framer-phl2vz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0a8tV .framer-phl2vz > :first-child { margin-top: 0px; } .framer-0a8tV .framer-phl2vz > :last-child { margin-bottom: 0px; } }\",\".framer-0a8tV.framer-v-1635f9f .framer-vqugsr { padding: 50px 0px 0px 0px; }\",\".framer-0a8tV.framer-v-1ur73tn .framer-vqugsr { padding: 100px 0px 0px 0px; }\",\".framer-0a8tV.framer-v-x4igo9 .framer-vqugsr { padding: 150px 0px 0px 0px; }\",\".framer-0a8tV.framer-v-ganesh .framer-vqugsr { padding: 200px 0px 0px 0px; }\",\".framer-0a8tV.framer-v-11qo17c .framer-vqugsr { padding: 250px 0px 0px 0px; }\",\".framer-0a8tV.framer-v-1t7ta8b .framer-vqugsr, .framer-0a8tV.framer-v-o3l3yy .framer-vqugsr, .framer-0a8tV.framer-v-1lhle6x .framer-vqugsr, .framer-0a8tV.framer-v-c7xmxb .framer-vqugsr, .framer-0a8tV.framer-v-hhhalw .framer-vqugsr, .framer-0a8tV.framer-v-oq2w7w .framer-vqugsr { flex: 3 0 0px; }\",\".framer-0a8tV.framer-v-1t7ta8b .framer-t6msbh-container, .framer-0a8tV.framer-v-o3l3yy .framer-t6msbh-container, .framer-0a8tV.framer-v-1lhle6x .framer-t6msbh-container, .framer-0a8tV.framer-v-c7xmxb .framer-t6msbh-container, .framer-0a8tV.framer-v-hhhalw .framer-t6msbh-container, .framer-0a8tV.framer-v-oq2w7w .framer-t6msbh-container { width: 80%; }\",\".framer-0a8tV.framer-v-1t7ta8b .framer-phl2vz, .framer-0a8tV.framer-v-o3l3yy .framer-phl2vz, .framer-0a8tV.framer-v-1lhle6x .framer-phl2vz, .framer-0a8tV.framer-v-c7xmxb .framer-phl2vz, .framer-0a8tV.framer-v-hhhalw .framer-phl2vz, .framer-0a8tV.framer-v-oq2w7w .framer-phl2vz { flex: 9 0 0px; }\",\".framer-0a8tV.framer-v-hhhalw .framer-nd4r9v-container, .framer-0a8tV.framer-v-oq2w7w .framer-nd4r9v-container { order: 0; }\",\".framer-0a8tV.framer-v-hhhalw .framer-1blppte-container, .framer-0a8tV.framer-v-oq2w7w .framer-1blppte-container { order: 1; }\",\".framer-0a8tV.framer-v-hhhalw .framer-1d1lq8o-container, .framer-0a8tV.framer-v-oq2w7w .framer-1d1lq8o-container { order: 2; }\",\".framer-0a8tV.framer-v-hhhalw .framer-bpv6go-container, .framer-0a8tV.framer-v-oq2w7w .framer-bpv6go-container { order: 3; }\",\".framer-0a8tV.framer-v-hhhalw .framer-sb2gc-container, .framer-0a8tV.framer-v-oq2w7w .framer-sb2gc-container { order: 4; }\",\".framer-0a8tV.framer-v-hhhalw .framer-cteh2s-container, .framer-0a8tV.framer-v-oq2w7w .framer-cteh2s-container { order: 5; }\",\".framer-0a8tV.framer-v-aie38q.framer-dif0uf, .framer-0a8tV.framer-v-mqhzof.framer-dif0uf, .framer-0a8tV.framer-v-pdjrec.framer-dif0uf, .framer-0a8tV.framer-v-lofp2d.framer-dif0uf, .framer-0a8tV.framer-v-mkl476.framer-dif0uf, .framer-0a8tV.framer-v-dtfqpu.framer-dif0uf { flex-direction: column; gap: 40px; width: 400px; }\",\".framer-0a8tV.framer-v-aie38q .framer-vqugsr, .framer-0a8tV.framer-v-mqhzof .framer-vqugsr, .framer-0a8tV.framer-v-pdjrec .framer-vqugsr, .framer-0a8tV.framer-v-lofp2d .framer-vqugsr, .framer-0a8tV.framer-v-mkl476 .framer-vqugsr, .framer-0a8tV.framer-v-dtfqpu .framer-vqugsr { flex: none; order: 1; width: 100%; }\",\".framer-0a8tV.framer-v-aie38q .framer-t6msbh-container, .framer-0a8tV.framer-v-mqhzof .framer-t6msbh-container, .framer-0a8tV.framer-v-pdjrec .framer-t6msbh-container, .framer-0a8tV.framer-v-lofp2d .framer-t6msbh-container, .framer-0a8tV.framer-v-mkl476 .framer-t6msbh-container, .framer-0a8tV.framer-v-dtfqpu .framer-t6msbh-container { width: 100%; }\",\".framer-0a8tV.framer-v-aie38q .framer-phl2vz, .framer-0a8tV.framer-v-mqhzof .framer-phl2vz, .framer-0a8tV.framer-v-pdjrec .framer-phl2vz, .framer-0a8tV.framer-v-lofp2d .framer-phl2vz, .framer-0a8tV.framer-v-mkl476 .framer-phl2vz, .framer-0a8tV.framer-v-dtfqpu .framer-phl2vz { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-aie38q.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-aie38q.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-aie38q.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-aie38q.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-mqhzof.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-mqhzof.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-mqhzof.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-mqhzof.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-pdjrec.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-pdjrec.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-pdjrec.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-pdjrec.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-lofp2d.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-lofp2d.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-lofp2d.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-lofp2d.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-mkl476.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-mkl476.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-mkl476.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-mkl476.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0a8tV.framer-v-dtfqpu.framer-dif0uf { gap: 0px; } .framer-0a8tV.framer-v-dtfqpu.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0a8tV.framer-v-dtfqpu.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0a8tV.framer-v-dtfqpu.framer-dif0uf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 951\n * @framerIntrinsicWidth 1128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xrEj7YEsU\":{\"layout\":[\"fixed\",\"auto\"]},\"CDtoZNgtA\":{\"layout\":[\"fixed\",\"auto\"]},\"jupkLvHBO\":{\"layout\":[\"fixed\",\"auto\"]},\"cHwDp_s5i\":{\"layout\":[\"fixed\",\"auto\"]},\"fci5zB1JM\":{\"layout\":[\"fixed\",\"auto\"]},\"TLxLam4YZ\":{\"layout\":[\"fixed\",\"auto\"]},\"YEnTeNdRP\":{\"layout\":[\"fixed\",\"auto\"]},\"fNHB6YKk0\":{\"layout\":[\"fixed\",\"auto\"]},\"ueg3wT1lw\":{\"layout\":[\"fixed\",\"auto\"]},\"UiRdOhXvT\":{\"layout\":[\"fixed\",\"auto\"]},\"FPEMd0pOj\":{\"layout\":[\"fixed\",\"auto\"]},\"y1cmM3CL5\":{\"layout\":[\"fixed\",\"auto\"]},\"VE5xIiPuL\":{\"layout\":[\"fixed\",\"auto\"]},\"VGwYuVR2s\":{\"layout\":[\"fixed\",\"auto\"]},\"FxHnXRW2z\":{\"layout\":[\"fixed\",\"auto\"]},\"CYu4a7neK\":{\"layout\":[\"fixed\",\"auto\"]},\"hpOMYgQXf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L5bVOjC54\":\"_01Image\",\"Xgqdpwxoc\":\"_01Title\",\"nfr3_vd4_\":\"_01Description\",\"kGMjQGWFg\":\"_02Image\",\"AChBv6mnx\":\"_02Title\",\"dym8aGlmH\":\"_02Description\",\"AtsGqKbqe\":\"_03Image\",\"Y7m9L8sgJ\":\"_03Title\",\"u2WQNcukZ\":\"_03Description\",\"gRgZAVMwJ\":\"_04Image\",\"rd_VK8DcK\":\"_04Title\",\"T3Zvj4lLt\":\"_04Description\",\"FhHZF40Gc\":\"_05Image\",\"DvMnYDgLq\":\"_05Title\",\"DP3k2sIwB\":\"_05Description\",\"is0Kmy_LC\":\"_06Image\",\"dYspAHvCn\":\"_06Title\",\"yIZLGI3IM\":\"_06Description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereSOfEPmfr=withCSS(Component,css,\"framer-0a8tV\");export default FramereSOfEPmfr;FramereSOfEPmfr.displayName=\"Services / Items\";FramereSOfEPmfr.defaultProps={height:951,width:1128};addPropertyControls(FramereSOfEPmfr,{variant:{options:[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"jupkLvHBO\",\"cHwDp_s5i\",\"fci5zB1JM\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"ueg3wT1lw\",\"UiRdOhXvT\",\"FPEMd0pOj\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\",\"FxHnXRW2z\",\"CYu4a7neK\",\"hpOMYgQXf\"],optionTitles:[\"Desktop main\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Desktop 5\",\"Desktop 6\",\"Tablet main\",\"Tablet 2\",\"Tablet 3\",\"Tablet 4\",\"Tablet 5\",\"Tablet 6\",\"Phone main\",\"Phone 2\",\"Phone 3\",\"Phone 4\",\"Phone 5\",\"Phone 6\"],title:\"Variant\",type:ControlType.Enum},L5bVOjC54:{title:\"01 Image\",type:ControlType.ResponsiveImage},Xgqdpwxoc:{defaultValue:\"01 Title\",displayTextArea:false,placeholder:\"\",title:\"01 Title\",type:ControlType.String},nfr3_vd4_:{defaultValue:\"01 Description\",displayTextArea:false,title:\"01 Description\",type:ControlType.String},kGMjQGWFg:{title:\"02 Image\",type:ControlType.ResponsiveImage},AChBv6mnx:{defaultValue:\"02 Title\",displayTextArea:false,placeholder:\"\",title:\"02 Title\",type:ControlType.String},dym8aGlmH:{defaultValue:\"02 Description\",displayTextArea:false,title:\"02 Description\",type:ControlType.String},AtsGqKbqe:{title:\"03 Image\",type:ControlType.ResponsiveImage},Y7m9L8sgJ:{defaultValue:\"03 Title\",displayTextArea:false,placeholder:\"\",title:\"03 Title\",type:ControlType.String},u2WQNcukZ:{defaultValue:\"03 Description\",description:\"\",displayTextArea:false,title:\"03 Description\",type:ControlType.String},gRgZAVMwJ:{title:\"04 Image\",type:ControlType.ResponsiveImage},rd_VK8DcK:{defaultValue:\"04 Title\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"04 Title\",type:ControlType.String},T3Zvj4lLt:{defaultValue:\"04 Description\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"04 Description\",type:ControlType.String},FhHZF40Gc:{title:\"05 Image\",type:ControlType.ResponsiveImage},DvMnYDgLq:{defaultValue:\"05 Title\",displayTextArea:false,placeholder:\"\",title:\"05 Title\",type:ControlType.String},DP3k2sIwB:{defaultValue:\"05 Description\",description:\"\",displayTextArea:false,title:\"05 Description\",type:ControlType.String},is0Kmy_LC:{title:\"06 Image\",type:ControlType.ResponsiveImage},dYspAHvCn:{defaultValue:\"06 Title\",displayTextArea:false,title:\"06 Title\",type:ControlType.String},yIZLGI3IM:{defaultValue:\"06 Description\",description:\"\",displayTextArea:false,title:\"06 Description\",type:ControlType.String}});addFonts(FramereSOfEPmfr,[{explicitInter:true,fonts:[]},...ServicesItemsDescriptionFonts,...ServicesItemsItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereSOfEPmfr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xrEj7YEsU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CDtoZNgtA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jupkLvHBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cHwDp_s5i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fci5zB1JM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TLxLam4YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YEnTeNdRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fNHB6YKk0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ueg3wT1lw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UiRdOhXvT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FPEMd0pOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y1cmM3CL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VE5xIiPuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VGwYuVR2s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FxHnXRW2z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CYu4a7neK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hpOMYgQXf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1128\",\"framerIntrinsicHeight\":\"951\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"L5bVOjC54\\\":\\\"_01Image\\\",\\\"Xgqdpwxoc\\\":\\\"_01Title\\\",\\\"nfr3_vd4_\\\":\\\"_01Description\\\",\\\"kGMjQGWFg\\\":\\\"_02Image\\\",\\\"AChBv6mnx\\\":\\\"_02Title\\\",\\\"dym8aGlmH\\\":\\\"_02Description\\\",\\\"AtsGqKbqe\\\":\\\"_03Image\\\",\\\"Y7m9L8sgJ\\\":\\\"_03Title\\\",\\\"u2WQNcukZ\\\":\\\"_03Description\\\",\\\"gRgZAVMwJ\\\":\\\"_04Image\\\",\\\"rd_VK8DcK\\\":\\\"_04Title\\\",\\\"T3Zvj4lLt\\\":\\\"_04Description\\\",\\\"FhHZF40Gc\\\":\\\"_05Image\\\",\\\"DvMnYDgLq\\\":\\\"_05Title\\\",\\\"DP3k2sIwB\\\":\\\"_05Description\\\",\\\"is0Kmy_LC\\\":\\\"_06Image\\\",\\\"dYspAHvCn\\\":\\\"_06Title\\\",\\\"yIZLGI3IM\\\":\\\"_06Description\\\"}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Sj07mdZne\",\"wJVFvI_co\"];const serializationHash=\"framer-S095q\";const variantClassNames={Sj07mdZne:\"framer-v-em3b3w\",wJVFvI_co:\"framer-v-1n2r22r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Done:\"Sj07mdZne\",Undone:\"wJVFvI_co\"};const getProps=({height,id,text,width,...props})=>{return{...props,gEVq5jg55:text??props.gEVq5jg55??\"Text\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Sj07mdZne\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gEVq5jg55,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Sj07mdZne\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapyaqsd2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"wJVFvI_co\");});const onTap2q9v5o=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Sj07mdZne\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"wJVFvI_co\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-em3b3w\",className,classNames),\"data-framer-name\":\"Done\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Sj07mdZne\",onTap:onTapyaqsd2,ref:ref??ref1,style:{...style},...addPropertyOverrides({wJVFvI_co:{\"data-framer-name\":\"Undone\",onTap:onTap2q9v5o}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bdhigm\",\"data-framer-name\":\"Input\",layoutDependency:layoutDependency,layoutId:\"U6lUI8l6z\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 2px 6px 0px rgba(248, 68, 45, 0.3499999940395355)\"},variants:{wJVFvI_co:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(207, 207, 207)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"}},...addPropertyOverrides({wJVFvI_co:{\"data-border\":true}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ypaji1\",\"data-framer-name\":\"Tick\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:6,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"TekwdVfVm\",svg:'<svg width=\"8\" height=\"6\" viewBox=\"0 0 8 6\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.81411 0.307686C7.56659 0.0598353 7.16466 0.0599916 6.9168 0.307686L2.8783 4.34635L1.08335 2.55142C0.835501 2.30357 0.433739 2.30357 0.185888 2.55142C-0.0619628 2.79928 -0.0619628 3.20104 0.185888 3.44889L2.42947 5.69247C2.55332 5.81632 2.71571 5.8784 2.87812 5.8784C3.04053 5.8784 3.20309 5.81647 3.32693 5.69247L7.81411 1.20513C8.06196 0.957455 8.06196 0.555522 7.81411 0.307686Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(11, 11, 12, 0.4))\",\"--framer-text-decoration\":\"line-through\"},children:\"Text\"})}),className:\"framer-61s2hz\",\"data-framer-name\":\"Align text margins properly\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Hw4KgfeZ1\",style:{\"--extracted-r6o4lv\":\"rgba(11, 11, 12, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},text:gEVq5jg55,variants:{wJVFvI_co:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wJVFvI_co:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Text\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S095q.framer-13pkn6b, .framer-S095q .framer-13pkn6b { display: block; }\",\".framer-S095q.framer-em3b3w { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 133px; }\",\".framer-S095q .framer-bdhigm { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 18px); justify-content: center; padding: 0px; position: relative; width: 18px; }\",\".framer-S095q .framer-ypaji1 { flex: none; height: 6px; position: relative; width: 8px; }\",\".framer-S095q .framer-61s2hz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S095q.framer-em3b3w, .framer-S095q .framer-bdhigm { gap: 0px; } .framer-S095q.framer-em3b3w > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-S095q.framer-em3b3w > :first-child { margin-left: 0px; } .framer-S095q.framer-em3b3w > :last-child { margin-right: 0px; } .framer-S095q .framer-bdhigm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-S095q .framer-bdhigm > :first-child { margin-top: 0px; } .framer-S095q .framer-bdhigm > :last-child { margin-bottom: 0px; } }\",'.framer-S095q[data-border=\"true\"]::after, .framer-S095q [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 20\n * @framerIntrinsicWidth 133\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wJVFvI_co\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"gEVq5jg55\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGXHhJTtJc=withCSS(Component,css,\"framer-S095q\");export default FramerGXHhJTtJc;FramerGXHhJTtJc.displayName=\"Benefits / Todo item\";FramerGXHhJTtJc.defaultProps={height:20,width:133};addPropertyControls(FramerGXHhJTtJc,{variant:{options:[\"Sj07mdZne\",\"wJVFvI_co\"],optionTitles:[\"Done\",\"Undone\"],title:\"Variant\",type:ControlType.Enum},gEVq5jg55:{defaultValue:\"Text\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerGXHhJTtJc,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGXHhJTtJc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wJVFvI_co\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"20\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"133\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"gEVq5jg55\\\":\\\"text\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GXHhJTtJc.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/1HoGQ6QwD2LyK0GEQDFa/dIKwJomSAtcf6KAJzpfk/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"m9jSyhRqg\",\"gf_Ge1OgG\"];const serializationHash=\"framer-IgBNJ\";const variantClassNames={gf_Ge1OgG:\"framer-v-1g7f7t6\",m9jSyhRqg:\"framer-v-1ebf3lc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:33,delay:.1,mass:1,stiffness:180,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"m9jSyhRqg\",Phone:\"gf_Ge1OgG\"};const getProps=({description,heading,height,id,number,width,...props})=>{return{...props,DeMGKHWWt:description??props.DeMGKHWWt??\"Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"m9jSyhRqg\",XRBqy2pAy:number??props.XRBqy2pAy??\"00\",YEVw3BM0l:heading??props.YEVw3BM0l??\"Heading\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XRBqy2pAy,YEVw3BM0l,DeMGKHWWt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m9jSyhRqg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1ebf3lc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"m9jSyhRqg\",ref:ref??ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(222, 222, 222)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",...style},...addPropertyOverrides({gf_Ge1OgG:{__framer__enter:animation1,\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-107dl2g\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jw2eOFN_2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9eihn\",\"data-border\":true,\"data-framer-name\":\"Number\",layoutDependency:layoutDependency,layoutId:\"QeSAk7dAM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(222, 222, 222)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"01\"})}),className:\"framer-1bj3j2t\",\"data-framer-name\":\"01\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"saNLa9gTO\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\"},text:XRBqy2pAy,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a670wo\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"tttdhmsg0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Heading\"})}),className:\"framer-ofibl1\",\"data-framer-name\":\"Discovery & Strategy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g5rgaZJsZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:YEVw3BM0l,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\"})}),className:\"framer-1lcu0le\",\"data-framer-name\":\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ipp45qvjf\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:DeMGKHWWt,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d976dv\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"BIVxC14ce\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IgBNJ.framer-15rae5b, .framer-IgBNJ .framer-15rae5b { display: block; }\",\".framer-IgBNJ.framer-1ebf3lc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 554px; }\",\".framer-IgBNJ .framer-107dl2g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IgBNJ .framer-l9eihn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 40px; }\",\".framer-IgBNJ .framer-1bj3j2t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IgBNJ .framer-a670wo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-IgBNJ .framer-ofibl1, .framer-IgBNJ .framer-1lcu0le { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IgBNJ .framer-d976dv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 0px; top: 30px; width: 9px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IgBNJ.framer-1ebf3lc, .framer-IgBNJ .framer-107dl2g, .framer-IgBNJ .framer-l9eihn, .framer-IgBNJ .framer-a670wo { gap: 0px; } .framer-IgBNJ.framer-1ebf3lc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-IgBNJ.framer-1ebf3lc > :first-child, .framer-IgBNJ .framer-107dl2g > :first-child { margin-left: 0px; } .framer-IgBNJ.framer-1ebf3lc > :last-child, .framer-IgBNJ .framer-107dl2g > :last-child { margin-right: 0px; } .framer-IgBNJ .framer-107dl2g > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-IgBNJ .framer-l9eihn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IgBNJ .framer-l9eihn > :first-child, .framer-IgBNJ .framer-a670wo > :first-child { margin-top: 0px; } .framer-IgBNJ .framer-l9eihn > :last-child, .framer-IgBNJ .framer-a670wo > :last-child { margin-bottom: 0px; } .framer-IgBNJ .framer-a670wo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-IgBNJ.framer-v-1g7f7t6.framer-1ebf3lc { padding: 30px 0px 0px 0px; }\",\".framer-IgBNJ.framer-v-1g7f7t6 .framer-a670wo { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IgBNJ.framer-v-1g7f7t6 .framer-a670wo { gap: 0px; } .framer-IgBNJ.framer-v-1g7f7t6 .framer-a670wo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-IgBNJ.framer-v-1g7f7t6 .framer-a670wo > :first-child { margin-top: 0px; } .framer-IgBNJ.framer-v-1g7f7t6 .framer-a670wo > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-IgBNJ[data-border=\"true\"]::after, .framer-IgBNJ [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 107\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gf_Ge1OgG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XRBqy2pAy\":\"number\",\"YEVw3BM0l\":\"heading\",\"DeMGKHWWt\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhvQAZuTE8=withCSS(Component,css,\"framer-IgBNJ\");export default FramerhvQAZuTE8;FramerhvQAZuTE8.displayName=\"Process / Item\";FramerhvQAZuTE8.defaultProps={height:107,width:554};addPropertyControls(FramerhvQAZuTE8,{variant:{options:[\"m9jSyhRqg\",\"gf_Ge1OgG\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},XRBqy2pAy:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},YEVw3BM0l:{defaultValue:\"Heading\",displayTextArea:false,title:\"Heading\",type:ControlType.String},DeMGKHWWt:{defaultValue:\"Description\",description:\"\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerhvQAZuTE8,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhvQAZuTE8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gf_Ge1OgG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"554\",\"framerIntrinsicHeight\":\"107\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"XRBqy2pAy\\\":\\\"number\\\",\\\"YEVw3BM0l\\\":\\\"heading\\\",\\\"DeMGKHWWt\\\":\\\"description\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hvQAZuTE8.map", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-7flX5 .framer-styles-preset-1hahlh8:not(.rich-text-wrapper), .framer-7flX5 .framer-styles-preset-1hahlh8.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0b0b0c; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-7flX5\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2bd428)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xXzuCfPncZnDWLrYmtNO/d2zRurFeeTcEsDvokAYB/DPl1XeZ47.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/99CfbQ0g2aHd3wkMunJ6/y1C7t0UV7hgBOIy2DUxd/q35quwzCc.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/0JLPmaxZxenFQzSWFxwu/qJpZiXfAIi1MBZmmNkaC/sw01V2bJD.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"WN0gvTTUg\",\"p0HhGt1NQ\"];const serializationHash=\"framer-lXGbj\";const variantClassNames={p0HhGt1NQ:\"framer-v-7my9cv\",WN0gvTTUg:\"framer-v-1vlo0dx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={delay:0,duration:1.6,ease:[.68,0,0,.99],type:\"tween\"};const transition3={delay:.2,duration:1.6,ease:[.68,0,0,.99],type:\"tween\"};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"WN0gvTTUg\",Phone:\"p0HhGt1NQ\"};const getProps=({_01Description,_01Number,_02Description,_02Number,avatar,bGColor,borderColor,height,id,name1,occupation,starColor,testimonial,textColor,width,...props})=>{return{...props,AM46op7Lx:textColor??props.AM46op7Lx??\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",d4lzmm0YL:_01Description??props.d4lzmm0YL??\"01 description\",DMTP3vKWw:bGColor??props.DMTP3vKWw??\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",F9uW9JjKI:_02Number??props.F9uW9JjKI??\"+00%\",HZi8Dk5hs:_01Number??props.HZi8Dk5hs??\"+00%\",jjg85LuOE:starColor??props.jjg85LuOE??\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",qXDjeqRcY:name1??props.qXDjeqRcY??\"Name\",V5EvMzZAA:occupation??props.V5EvMzZAA??\"Occupation\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WN0gvTTUg\",VZf4KPRV3:borderColor??props.VZf4KPRV3??{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},y8_auQFXP:avatar??props.y8_auQFXP,ysHGQbLqA:testimonial??props.ysHGQbLqA??\"Testimonial\",ZL3Q30CZC:_02Description??props.ZL3Q30CZC??\"02 description\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ysHGQbLqA,HZi8Dk5hs,d4lzmm0YL,F9uW9JjKI,ZL3Q30CZC,y8_auQFXP,qXDjeqRcY,V5EvMzZAA,jjg85LuOE,AM46op7Lx,DMTP3vKWw,VZf4KPRV3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WN0gvTTUg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vlo0dx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WN0gvTTUg\",ref:ref??ref1,style:{backgroundColor:DMTP3vKWw,...style},...addPropertyOverrides({p0HhGt1NQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12mumlp\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"mjI_d21mT\",...addPropertyOverrides({p0HhGt1NQ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ykqw6\",\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"Ey1iEvZvz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ir5b4p-container\",layoutDependency:layoutDependency,layoutId:\"cUgbsyVkQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"cUgbsyVkQ\",layoutId:\"cUgbsyVkQ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hlbcud-container\",layoutDependency:layoutDependency,layoutId:\"WRoglEIhJ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"WRoglEIhJ\",layoutId:\"WRoglEIhJ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11urm9k-container\",layoutDependency:layoutDependency,layoutId:\"m86TiQSbX-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"m86TiQSbX\",layoutId:\"m86TiQSbX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4c742-container\",layoutDependency:layoutDependency,layoutId:\"Z9oQMc4o4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"Z9oQMc4o4\",layoutId:\"Z9oQMc4o4\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-134ikfa-container\",layoutDependency:layoutDependency,layoutId:\"JGIusuIca-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JGIusuIca\",layoutId:\"JGIusuIca\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Testimonial\"})}),className:\"framer-zayyxm\",\"data-framer-name\":\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7EEAb6IP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:ysHGQbLqA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzmwku\",\"data-framer-name\":\"filler\",layoutDependency:layoutDependency,layoutId:\"fbCYn2aeL\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s21afs\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"HY2E_q649\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pxa9se\",\"data-framer-name\":\"Numbers\",layoutDependency:layoutDependency,layoutId:\"zVK_oqsoo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9umr1m\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"dP3Kb0gwr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5jibgy\",\"data-styles-preset\":\"DPl1XeZ47\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"+00%\"})}),className:\"framer-1cukkzp\",\"data-framer-name\":\"+28%\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VC4CuEL2y\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:HZi8Dk5hs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"01 description\"})}),className:\"framer-1x4w3rw\",\"data-framer-name\":\"Customer retention\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZzPj1pnpR\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:d4lzmm0YL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qmhx46\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"TPBFYWaH_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5jibgy\",\"data-styles-preset\":\"DPl1XeZ47\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"+00%\"})}),className:\"framer-1v6icbu\",\"data-framer-name\":\"+61%\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NrSNHJD42\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:F9uW9JjKI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"02 description\"})}),className:\"framer-1vxe87z\",\"data-framer-name\":\"Conversion rate\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IzKtHny8Z\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:ZL3Q30CZC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-agmp4k\",\"data-border\":true,\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"O8SYmcIEa\",style:{\"--border-bottom-width\":`${VZf4KPRV3.borderBottomWidth??VZf4KPRV3.borderWidth}px`,\"--border-color\":VZf4KPRV3.borderColor,\"--border-left-width\":`${VZf4KPRV3.borderLeftWidth??VZf4KPRV3.borderWidth}px`,\"--border-right-width\":`${VZf4KPRV3.borderRightWidth??VZf4KPRV3.borderWidth}px`,\"--border-style\":VZf4KPRV3.borderStyle,\"--border-top-width\":`${VZf4KPRV3.borderTopWidth??VZf4KPRV3.borderWidth}px`},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"44px\",...toResponsiveImage(y8_auQFXP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-p5ewhc\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"IlZko4WFK\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-198z9l7\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"Z17huBw_O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Name\"})}),className:\"framer-y3w5y6\",\"data-framer-name\":\"Anna Karenina\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BZwQtaazR\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:qXDjeqRcY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Occupation\"})}),className:\"framer-swhb0a\",\"data-framer-name\":\"Owner of a clothing E-commerce store\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r9fOMI_KY\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:V5EvMzZAA,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lXGbj.framer-1y36xfz, .framer-lXGbj .framer-1y36xfz { display: block; }\",\".framer-lXGbj.framer-1vlo0dx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 753px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 267px; }\",\".framer-lXGbj .framer-12mumlp { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-8ykqw6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-1ir5b4p-container, .framer-lXGbj .framer-hlbcud-container, .framer-lXGbj .framer-11urm9k-container, .framer-lXGbj .framer-4c742-container, .framer-lXGbj .framer-134ikfa-container { flex: none; height: 13px; position: relative; width: 13px; }\",\".framer-lXGbj .framer-zayyxm, .framer-lXGbj .framer-y3w5y6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lXGbj .framer-1jzmwku { flex: none; height: 40px; overflow: hidden; position: relative; width: 100%; }\",\".framer-lXGbj .framer-s21afs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-1pxa9se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-9umr1m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-1cukkzp, .framer-lXGbj .framer-1x4w3rw, .framer-lXGbj .framer-1v6icbu, .framer-lXGbj .framer-1vxe87z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lXGbj .framer-qmhx46 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-agmp4k { 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: 26px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-p5ewhc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-lXGbj .framer-198z9l7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lXGbj .framer-swhb0a { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lXGbj .framer-12mumlp, .framer-lXGbj .framer-8ykqw6, .framer-lXGbj .framer-s21afs, .framer-lXGbj .framer-1pxa9se, .framer-lXGbj .framer-9umr1m, .framer-lXGbj .framer-qmhx46, .framer-lXGbj .framer-agmp4k, .framer-lXGbj .framer-198z9l7 { gap: 0px; } .framer-lXGbj .framer-12mumlp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lXGbj .framer-12mumlp > :first-child, .framer-lXGbj .framer-s21afs > :first-child, .framer-lXGbj .framer-9umr1m > :first-child, .framer-lXGbj .framer-qmhx46 > :first-child, .framer-lXGbj .framer-198z9l7 > :first-child { margin-top: 0px; } .framer-lXGbj .framer-12mumlp > :last-child, .framer-lXGbj .framer-s21afs > :last-child, .framer-lXGbj .framer-9umr1m > :last-child, .framer-lXGbj .framer-qmhx46 > :last-child, .framer-lXGbj .framer-198z9l7 > :last-child { margin-bottom: 0px; } .framer-lXGbj .framer-8ykqw6 > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-lXGbj .framer-8ykqw6 > :first-child, .framer-lXGbj .framer-1pxa9se > :first-child, .framer-lXGbj .framer-agmp4k > :first-child { margin-left: 0px; } .framer-lXGbj .framer-8ykqw6 > :last-child, .framer-lXGbj .framer-1pxa9se > :last-child, .framer-lXGbj .framer-agmp4k > :last-child { margin-right: 0px; } .framer-lXGbj .framer-s21afs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lXGbj .framer-1pxa9se > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-lXGbj .framer-9umr1m > *, .framer-lXGbj .framer-qmhx46 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-lXGbj .framer-agmp4k > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-lXGbj .framer-198z9l7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-lXGbj.framer-v-7my9cv.framer-1vlo0dx { padding: 30px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-1jzmwku { height: 130px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-s21afs { gap: 30px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-1pxa9se { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lXGbj.framer-v-7my9cv .framer-s21afs, .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se { gap: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > :first-child { margin-top: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > :last-child { margin-bottom: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > :first-child { margin-left: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-lXGbj[data-border=\"true\"]::after, .framer-lXGbj [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 753\n * @framerIntrinsicWidth 267\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"p0HhGt1NQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ysHGQbLqA\":\"testimonial\",\"HZi8Dk5hs\":\"_01Number\",\"d4lzmm0YL\":\"_01Description\",\"F9uW9JjKI\":\"_02Number\",\"ZL3Q30CZC\":\"_02Description\",\"y8_auQFXP\":\"avatar\",\"qXDjeqRcY\":\"name1\",\"V5EvMzZAA\":\"occupation\",\"jjg85LuOE\":\"starColor\",\"AM46op7Lx\":\"textColor\",\"DMTP3vKWw\":\"bGColor\",\"VZf4KPRV3\":\"borderColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjFWuJpyza=withCSS(Component,css,\"framer-lXGbj\");export default FramerjFWuJpyza;FramerjFWuJpyza.displayName=\"Testimoials / Item\";FramerjFWuJpyza.defaultProps={height:753,width:267};addPropertyControls(FramerjFWuJpyza,{variant:{options:[\"WN0gvTTUg\",\"p0HhGt1NQ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ysHGQbLqA:{defaultValue:\"Testimonial\",description:\"\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},HZi8Dk5hs:{defaultValue:\"+00%\",displayTextArea:false,title:\"01 number\",type:ControlType.String},d4lzmm0YL:{defaultValue:\"01 description\",description:\"\",displayTextArea:false,title:\"01 description\",type:ControlType.String},F9uW9JjKI:{defaultValue:\"+00%\",displayTextArea:false,title:\"02 number\",type:ControlType.String},ZL3Q30CZC:{defaultValue:\"02 description\",description:\"\",displayTextArea:false,title:\"02 description\",type:ControlType.String},y8_auQFXP:{title:\"Avatar\",type:ControlType.ResponsiveImage},qXDjeqRcY:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},V5EvMzZAA:{defaultValue:\"Occupation\",displayTextArea:false,title:\"Occupation\",type:ControlType.String},jjg85LuOE:{defaultValue:'var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)) /* {\"name\":\"Primary\"} */',title:\"Star color\",type:ControlType.Color},AM46op7Lx:{defaultValue:'var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Text color\",type:ControlType.Color},DMTP3vKWw:{defaultValue:'var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)) /* {\"name\":\"Black\"} */',title:\"BG color\",type:ControlType.Color},VZf4KPRV3:{defaultValue:{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border color\",type:ControlType.Border}});addFonts(FramerjFWuJpyza,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjFWuJpyza\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"267\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p0HhGt1NQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"ysHGQbLqA\\\":\\\"testimonial\\\",\\\"HZi8Dk5hs\\\":\\\"_01Number\\\",\\\"d4lzmm0YL\\\":\\\"_01Description\\\",\\\"F9uW9JjKI\\\":\\\"_02Number\\\",\\\"ZL3Q30CZC\\\":\\\"_02Description\\\",\\\"y8_auQFXP\\\":\\\"avatar\\\",\\\"qXDjeqRcY\\\":\\\"name1\\\",\\\"V5EvMzZAA\\\":\\\"occupation\\\",\\\"jjg85LuOE\\\":\\\"starColor\\\",\\\"AM46op7Lx\\\":\\\"textColor\\\",\\\"DMTP3vKWw\\\":\\\"bGColor\\\",\\\"VZf4KPRV3\\\":\\\"borderColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"753\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={ZrLd_aOka:{hover:true}};const cycleOrder=[\"ZrLd_aOka\",\"qzxqqvf8C\",\"S6tGcwrte\"];const serializationHash=\"framer-PpFTO\";const variantClassNames={qzxqqvf8C:\"framer-v-154dsiy\",S6tGcwrte:\"framer-v-1u48kc1\",ZrLd_aOka:\"framer-v-rib41z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"ZrLd_aOka\",Phone:\"S6tGcwrte\",Tablet:\"qzxqqvf8C\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,Qkn0srEs4:link!==null&&link!==void 0?link:props.Qkn0srEs4,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ZrLd_aOka\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Qkn0srEs4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZrLd_aOka\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Qkn0srEs4,nodeId:\"ZrLd_aOka\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-rib41z\",className,classNames)} framer-1przubz`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZrLd_aOka\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ZrLd_aOka-hover\":{\"data-framer-name\":undefined},qzxqqvf8C:{\"data-framer-name\":\"Tablet\"},S6tGcwrte:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10vo3ia-container\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Y8AFLwLl5-container\",name:\"Icon\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",height:\"100%\",iconSearch:\"arrow-right\",iconSelection:\"House\",id:\"Y8AFLwLl5\",layoutId:\"Y8AFLwLl5\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11r5vfm\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"zh148iV5G\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"All cases\"})}),className:\"framer-17q93e8\",\"data-framer-name\":\"All cases\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tpaxw1orS\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qzxqqvf8C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"All cases\"})})},S6tGcwrte:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"All cases\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\"},children:\"(17)\"})}),className:\"framer-azn7iu\",\"data-framer-name\":\"(17)\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"yhtm2jsYC\",style:{\"--extracted-r6o4lv\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--framer-paragraph-spacing\":\"0px\",rotate:0},variants:{\"ZrLd_aOka-hover\":{rotate:5}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qzxqqvf8C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\"},children:\"(17)\"})})},S6tGcwrte:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\"},children:\"(17)\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PpFTO.framer-1przubz, .framer-PpFTO .framer-1przubz { display: block; }\",\".framer-PpFTO.framer-rib41z { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PpFTO .framer-10vo3ia-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-PpFTO .framer-11r5vfm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PpFTO .framer-17q93e8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PpFTO .framer-azn7iu { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PpFTO.framer-rib41z, .framer-PpFTO .framer-11r5vfm { gap: 0px; } .framer-PpFTO.framer-rib41z > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-PpFTO.framer-rib41z > :first-child, .framer-PpFTO .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-PpFTO.framer-rib41z > :last-child, .framer-PpFTO .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-PpFTO .framer-11r5vfm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-PpFTO.framer-v-154dsiy.framer-rib41z { cursor: unset; }\",\".framer-PpFTO.framer-v-154dsiy .framer-10vo3ia-container { height: 38px; width: 38px; }\",\".framer-PpFTO.framer-v-154dsiy .framer-11r5vfm, .framer-PpFTO.framer-v-1u48kc1 .framer-11r5vfm { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PpFTO.framer-v-154dsiy .framer-11r5vfm { gap: 0px; } .framer-PpFTO.framer-v-154dsiy .framer-11r5vfm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PpFTO.framer-v-154dsiy .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-PpFTO.framer-v-154dsiy .framer-11r5vfm > :last-child { margin-right: 0px; } }\",\".framer-PpFTO.framer-v-1u48kc1.framer-rib41z { cursor: unset; gap: 10px; }\",\".framer-PpFTO.framer-v-1u48kc1 .framer-10vo3ia-container { height: 28px; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PpFTO.framer-v-1u48kc1.framer-rib41z, .framer-PpFTO.framer-v-1u48kc1 .framer-11r5vfm { gap: 0px; } .framer-PpFTO.framer-v-1u48kc1.framer-rib41z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PpFTO.framer-v-1u48kc1.framer-rib41z > :first-child, .framer-PpFTO.framer-v-1u48kc1 .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-PpFTO.framer-v-1u48kc1.framer-rib41z > :last-child, .framer-PpFTO.framer-v-1u48kc1 .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-PpFTO.framer-v-1u48kc1 .framer-11r5vfm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-PpFTO.framer-v-rib41z.hover.framer-rib41z { gap: 28px; }\",\".framer-PpFTO.framer-v-rib41z.hover .framer-11r5vfm { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PpFTO.framer-v-rib41z.hover.framer-rib41z, .framer-PpFTO.framer-v-rib41z.hover .framer-11r5vfm { gap: 0px; } .framer-PpFTO.framer-v-rib41z.hover.framer-rib41z > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-PpFTO.framer-v-rib41z.hover.framer-rib41z > :first-child, .framer-PpFTO.framer-v-rib41z.hover .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-PpFTO.framer-v-rib41z.hover.framer-rib41z > :last-child, .framer-PpFTO.framer-v-rib41z.hover .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-PpFTO.framer-v-rib41z.hover .framer-11r5vfm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 298\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qzxqqvf8C\":{\"layout\":[\"auto\",\"auto\"]},\"S6tGcwrte\":{\"layout\":[\"auto\",\"auto\"]},\"ofQemSDPO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Qkn0srEs4\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkR2QL9FhD=withCSS(Component,css,\"framer-PpFTO\");export default FramerkR2QL9FhD;FramerkR2QL9FhD.displayName=\"UI / All items\";FramerkR2QL9FhD.defaultProps={height:66,width:298};addPropertyControls(FramerkR2QL9FhD,{variant:{options:[\"ZrLd_aOka\",\"qzxqqvf8C\",\"S6tGcwrte\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Qkn0srEs4:{title:\"Link\",type:ControlType.Link}});addFonts(FramerkR2QL9FhD,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkR2QL9FhD\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"298\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qzxqqvf8C\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S6tGcwrte\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ofQemSDPO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"66\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Qkn0srEs4\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kR2QL9FhD.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/A9YHGXCkDce47I8mn7up/6xRDjKKbh7HKlUUigC87/xNIXLfFSf.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"gGCKUKlHw\",\"EQjPBeGe0\",\"GnN_BPSO1\"];const serializationHash=\"framer-nmw8i\";const variantClassNames={EQjPBeGe0:\"framer-v-qkiwmv\",gGCKUKlHw:\"framer-v-jrv8u9\",GnN_BPSO1:\"framer-v-1srj58c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.96,-.02,.38,1.01],type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:3.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:14};const transition2={bounce:.25,delay:.09,duration:.45,type:\"spring\"};const textEffect={effect:animation2,tokenization:\"character\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const transition3={damping:30,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:25};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"gGCKUKlHw\",\"2\":\"EQjPBeGe0\",\"3\":\"GnN_BPSO1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gGCKUKlHw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gGCKUKlHw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearcudx8a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EQjPBeGe0\"),400);});const onAppearbtcitc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"GnN_BPSO1\"),700);});useOnVariantChange(baseVariant,{default:onAppearcudx8a,EQjPBeGe0:onAppearbtcitc,GnN_BPSO1:undefined});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"GnN_BPSO1\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jrv8u9\",className,classNames),\"data-framer-name\":\"1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gGCKUKlHw\",ref:refBinding,style:{...style},...addPropertyOverrides({EQjPBeGe0:{\"data-framer-name\":\"2\"},GnN_BPSO1:{\"data-framer-name\":\"3\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r5byhj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sjWXRiTqQ\",style:{scale:1},transformTemplate:transformTemplate1,variants:{GnN_BPSO1:{scale:4}},...addPropertyOverrides({GnN_BPSO1:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1ehj7ej\",\"data-framer-appear-id\":\"1ehj7ej\",\"data-framer-name\":\"Logo\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"tTyKpwRIw\",optimized:true,...addPropertyOverrides({GnN_BPSO1:{animate:undefined,initial:undefined,optimized:undefined,transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"49px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.85em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"DIGITALXVISUALS\"})}),className:\"framer-1o9ikga\",\"data-framer-name\":\"DigitalxVisuals\",effect:textEffect,fonts:[\"FS;Bebas Neue-regular\"],layoutDependency:layoutDependency,layoutId:\"VIoISixd_\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.9,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Digital design studio\"})}),className:\"framer-isyott\",\"data-framer-appear-id\":\"isyott\",\"data-framer-name\":\"Why great web design is more than just looks\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"u1sQ0z5c2\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.9},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GnN_BPSO1:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1stl257\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"g0qIACVg4\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",scale:1},variants:{GnN_BPSO1:{backgroundColor:\"rgba(0, 0, 0, 0)\",scale:4}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g084ze\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"M54D6Sqhc\",style:{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aykrtb\",\"data-framer-name\":\"Center\",layoutDependency:layoutDependency,layoutId:\"AOysG_aod\",style:{opacity:0}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b7gcby\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"kCmnZeia8\",style:{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nmw8i.framer-hnijwy, .framer-nmw8i .framer-hnijwy { display: block; }\",\".framer-nmw8i.framer-jrv8u9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 834px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-nmw8i .framer-r5byhj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 18px 0px; position: absolute; right: 0px; top: 50%; z-index: 2; }\",\".framer-nmw8i .framer-1ehj7ej { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 2px 0px 12px; position: relative; width: min-content; z-index: 2; }\",\".framer-nmw8i .framer-1o9ikga { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-nmw8i .framer-isyott { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-nmw8i .framer-1stl257 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-nmw8i .framer-1g084ze, .framer-nmw8i .framer-b7gcby { flex: none; height: 50%; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-nmw8i .framer-1aykrtb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nmw8i.framer-jrv8u9, .framer-nmw8i .framer-r5byhj, .framer-nmw8i .framer-1ehj7ej, .framer-nmw8i .framer-1stl257, .framer-nmw8i .framer-1aykrtb { gap: 0px; } .framer-nmw8i.framer-jrv8u9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-nmw8i.framer-jrv8u9 > :first-child, .framer-nmw8i .framer-r5byhj > :first-child, .framer-nmw8i .framer-1stl257 > :first-child { margin-top: 0px; } .framer-nmw8i.framer-jrv8u9 > :last-child, .framer-nmw8i .framer-r5byhj > :last-child, .framer-nmw8i .framer-1stl257 > :last-child { margin-bottom: 0px; } .framer-nmw8i .framer-r5byhj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nmw8i .framer-1ehj7ej > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-nmw8i .framer-1ehj7ej > :first-child, .framer-nmw8i .framer-1aykrtb > :first-child { margin-left: 0px; } .framer-nmw8i .framer-1ehj7ej > :last-child, .framer-nmw8i .framer-1aykrtb > :last-child { margin-right: 0px; } .framer-nmw8i .framer-1stl257 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nmw8i .framer-1aykrtb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-nmw8i.framer-v-1srj58c .framer-r5byhj { flex: 1 0 0px; height: 1px; top: calc(50.00000000000002% - 1fr / 2); }\",\".framer-nmw8i.framer-v-1srj58c .framer-1ehj7ej { left: 50%; position: absolute; top: -800px; }\",\".framer-nmw8i.framer-v-1srj58c .framer-isyott { bottom: -800px; left: 50%; position: absolute; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 834\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EQjPBeGe0\":{\"layout\":[\"fixed\",\"fixed\"]},\"GnN_BPSO1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerllioleSC9=withCSS(Component,css,\"framer-nmw8i\");export default FramerllioleSC9;FramerllioleSC9.displayName=\"Splash screen\";FramerllioleSC9.defaultProps={height:834,width:1200};addPropertyControls(FramerllioleSC9,{variant:{options:[\"gGCKUKlHw\",\"EQjPBeGe0\",\"GnN_BPSO1\"],optionTitles:[\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerllioleSC9,[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerllioleSC9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EQjPBeGe0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GnN_BPSO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"834\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./llioleSC9.map", "// Generated by Framer (0847096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UMGTZZ0f6\",\"jMWPy6G8Y\"];const serializationHash=\"framer-sT1mY\";const variantClassNames={jMWPy6G8Y:\"framer-v-1vpmlft\",UMGTZZ0f6:\"framer-v-t5m6nn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"UMGTZZ0f6\",Phone:\"jMWPy6G8Y\"};const getProps=({amount,bGColor,border,height,id,image1,image2,image3,image4,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,dGWMhyRCs:(_ref=image1!==null&&image1!==void 0?image1:props.dGWMhyRCs)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/Qx5yBzgjmhI4ZhyOxhgNHDX4L5s.png\"},fwD6acpNS:(_ref1=image3!==null&&image3!==void 0?image3:props.fwD6acpNS)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/zfw44Zk0QT7qeSVw95UW4nDofo.png\"},H0Oo1Mfv9:(_ref2=image2!==null&&image2!==void 0?image2:props.H0Oo1Mfv9)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/GQOltmsmeeYSsbHJ9ijpOx0M.png\"},IYnqoNnsD:(_ref3=amount!==null&&amount!==void 0?amount:props.IYnqoNnsD)!==null&&_ref3!==void 0?_ref3:\"20+\",K01rPaGiO:(_ref4=bGColor!==null&&bGColor!==void 0?bGColor:props.K01rPaGiO)!==null&&_ref4!==void 0?_ref4:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",RDM7oqG69:(_ref5=border!==null&&border!==void 0?border:props.RDM7oqG69)!==null&&_ref5!==void 0?_ref5:{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"UMGTZZ0f6\",vNAo0sswR:(_ref7=image4!==null&&image4!==void 0?image4:props.vNAo0sswR)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/tgyIqFImxk9E0TkgTI36r0dsss.png\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dGWMhyRCs,H0Oo1Mfv9,fwD6acpNS,vNAo0sswR,RDM7oqG69,IYnqoNnsD,K01rPaGiO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UMGTZZ0f6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _RDM7oqG69_borderBottomWidth,_RDM7oqG69_borderLeftWidth,_RDM7oqG69_borderRightWidth,_RDM7oqG69_borderTopWidth,_RDM7oqG69_borderBottomWidth1,_RDM7oqG69_borderLeftWidth1,_RDM7oqG69_borderRightWidth1,_RDM7oqG69_borderTopWidth1,_RDM7oqG69_borderBottomWidth2,_RDM7oqG69_borderLeftWidth2,_RDM7oqG69_borderRightWidth2,_RDM7oqG69_borderTopWidth2,_RDM7oqG69_borderBottomWidth3,_RDM7oqG69_borderLeftWidth3,_RDM7oqG69_borderRightWidth3,_RDM7oqG69_borderTopWidth3;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t5m6nn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UMGTZZ0f6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jMWPy6G8Y:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(dGWMhyRCs),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ju8bs4\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"h_zTsEiaq\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth!==void 0?_RDM7oqG69_borderBottomWidth:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth!==void 0?_RDM7oqG69_borderLeftWidth:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth!==void 0?_RDM7oqG69_borderRightWidth:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth!==void 0?_RDM7oqG69_borderTopWidth:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(dGWMhyRCs),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(H0Oo1Mfv9),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-h0yyxg\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"h3z5cl5hy\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth1=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth1!==void 0?_RDM7oqG69_borderBottomWidth1:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth1=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth1!==void 0?_RDM7oqG69_borderLeftWidth1:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth1=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth1!==void 0?_RDM7oqG69_borderRightWidth1:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth1=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth1!==void 0?_RDM7oqG69_borderTopWidth1:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(H0Oo1Mfv9),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(fwD6acpNS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yr5zjy\",\"data-border\":true,\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"wPzNxeigp\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth2=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth2!==void 0?_RDM7oqG69_borderBottomWidth2:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth2=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth2!==void 0?_RDM7oqG69_borderLeftWidth2:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth2=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth2!==void 0?_RDM7oqG69_borderRightWidth2:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth2=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth2!==void 0?_RDM7oqG69_borderTopWidth2:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(fwD6acpNS),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(vNAo0sswR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rix1l1\",\"data-border\":true,\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"S_S5ZVWiw\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth3=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth3!==void 0?_RDM7oqG69_borderBottomWidth3:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth3=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth3!==void 0?_RDM7oqG69_borderLeftWidth3:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth3=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth3!==void 0?_RDM7oqG69_borderRightWidth3:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth3=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth3!==void 0?_RDM7oqG69_borderTopWidth3:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(vNAo0sswR),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1so9i2b\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"QiRd_uMkj\",style:{backgroundColor:K01rPaGiO,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"20+\"})}),className:\"framer-mhdo1b\",\"data-framer-name\":\"20+\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"OygHkVJqf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:IYnqoNnsD,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jMWPy6G8Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"20+\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sT1mY.framer-3jiffd, .framer-sT1mY .framer-3jiffd { display: block; }\",\".framer-sT1mY.framer-t5m6nn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 65px; overflow: visible; padding: 0px; position: relative; width: 175px; }\",\".framer-sT1mY .framer-1ju8bs4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-h0yyxg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 30px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-yr5zjy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 60px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-rix1l1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 90px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-1so9i2b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 120px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-mhdo1b { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sT1mY.framer-t5m6nn { gap: 0px; } .framer-sT1mY.framer-t5m6nn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sT1mY.framer-t5m6nn > :first-child { margin-left: 0px; } .framer-sT1mY.framer-t5m6nn > :last-child { margin-right: 0px; } }\",\".framer-sT1mY.framer-v-1vpmlft.framer-t5m6nn { height: 48px; min-height: unset; width: 150px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-1ju8bs4 { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-h0yyxg { height: var(--framer-aspect-ratio-supported, 46px); left: 26px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-yr5zjy { height: var(--framer-aspect-ratio-supported, 46px); left: 52px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-rix1l1 { height: var(--framer-aspect-ratio-supported, 46px); left: 78px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-1so9i2b { height: var(--framer-aspect-ratio-supported, 46px); left: 104px; width: 46px; }\",'.framer-sT1mY[data-border=\"true\"]::after, .framer-sT1mY [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 65\n * @framerIntrinsicWidth 175\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jMWPy6G8Y\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dGWMhyRCs\":\"image1\",\"H0Oo1Mfv9\":\"image2\",\"fwD6acpNS\":\"image3\",\"vNAo0sswR\":\"image4\",\"RDM7oqG69\":\"border\",\"IYnqoNnsD\":\"amount\",\"K01rPaGiO\":\"bGColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP9ubNxmwe=withCSS(Component,css,\"framer-sT1mY\");export default FramerP9ubNxmwe;FramerP9ubNxmwe.displayName=\"Team / Avatar\";FramerP9ubNxmwe.defaultProps={height:65,width:175};addPropertyControls(FramerP9ubNxmwe,{variant:{options:[\"UMGTZZ0f6\",\"jMWPy6G8Y\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},dGWMhyRCs:{__defaultAssetReference:\"data:framer/asset-reference,Qx5yBzgjmhI4ZhyOxhgNHDX4L5s.png?originalFilename=Ellipse+9.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},H0Oo1Mfv9:{__defaultAssetReference:\"data:framer/asset-reference,GQOltmsmeeYSsbHJ9ijpOx0M.png?originalFilename=Ellipse+8.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},fwD6acpNS:{__defaultAssetReference:\"data:framer/asset-reference,zfw44Zk0QT7qeSVw95UW4nDofo.png?originalFilename=Ellipse+10.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},vNAo0sswR:{__defaultAssetReference:\"data:framer/asset-reference,tgyIqFImxk9E0TkgTI36r0dsss.png?originalFilename=Ellipse+11.png&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},RDM7oqG69:{defaultValue:{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},title:\"Border\",type:ControlType.Border},IYnqoNnsD:{defaultValue:\"20+\",displayTextArea:false,title:\"Amount\",type:ControlType.String},K01rPaGiO:{defaultValue:'var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)) /* {\"name\":\"Black\"} */',title:\"BG color\",type:ControlType.Color}});addFonts(FramerP9ubNxmwe,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP9ubNxmwe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"dGWMhyRCs\\\":\\\"image1\\\",\\\"H0Oo1Mfv9\\\":\\\"image2\\\",\\\"fwD6acpNS\\\":\\\"image3\\\",\\\"vNAo0sswR\\\":\\\"image4\\\",\\\"RDM7oqG69\\\":\\\"border\\\",\\\"IYnqoNnsD\\\":\\\"amount\\\",\\\"K01rPaGiO\\\":\\\"bGColor\\\"}\",\"framerIntrinsicHeight\":\"65\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jMWPy6G8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"175\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P9ubNxmwe.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const serializationHash=\"framer-tGV17\";const variantClassNames={YKTaoeiNj:\"framer-v-10csmg6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,text,width,...props})=>{return{...props,TVsgllYiM:text??props.TVsgllYiM??\"Text\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TVsgllYiM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YKTaoeiNj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10csmg6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"YKTaoeiNj\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-87eyzz\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"CHeTmIHeK\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cq5117\",\"data-border\":true,\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"mxaepEFAQ\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Everything in the Basic Plan\"})}),className:\"framer-8wk301\",\"data-framer-name\":\"Everything in the Basic Plan\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oHGJn7z0l\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:TVsgllYiM,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tGV17.framer-potnvo, .framer-tGV17 .framer-potnvo { display: block; }\",\".framer-tGV17.framer-10csmg6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 230px; }\",\".framer-tGV17 .framer-87eyzz { 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: 5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-tGV17 .framer-1cq5117 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: relative; width: 9px; }\",\".framer-tGV17 .framer-8wk301 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tGV17.framer-10csmg6, .framer-tGV17 .framer-87eyzz { gap: 0px; } .framer-tGV17.framer-10csmg6 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-tGV17.framer-10csmg6 > :first-child, .framer-tGV17 .framer-87eyzz > :first-child { margin-left: 0px; } .framer-tGV17.framer-10csmg6 > :last-child, .framer-tGV17 .framer-87eyzz > :last-child { margin-right: 0px; } .framer-tGV17 .framer-87eyzz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,'.framer-tGV17[data-border=\"true\"]::after, .framer-tGV17 [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 21\n * @framerIntrinsicWidth 230\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TVsgllYiM\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCE7zNdgHX=withCSS(Component,css,\"framer-tGV17\");export default FramerCE7zNdgHX;FramerCE7zNdgHX.displayName=\"Pricing / Included item\";FramerCE7zNdgHX.defaultProps={height:21,width:230};addPropertyControls(FramerCE7zNdgHX,{TVsgllYiM:{defaultValue:\"Text\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerCE7zNdgHX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCE7zNdgHX\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"TVsgllYiM\\\":\\\"text\\\"}\",\"framerIntrinsicHeight\":\"21\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"230\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CE7zNdgHX.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={dNJ9V7XXT:{hover:true}};const cycleOrder=[\"dNJ9V7XXT\",\"WiYCmp1E9\"];const serializationHash=\"framer-kwLC7\";const variantClassNames={dNJ9V7XXT:\"framer-v-1r8cmpu\",WiYCmp1E9:\"framer-v-fvk6g0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"dNJ9V7XXT\",Phone:\"WiYCmp1E9\"};const getProps=({buttonColor,height,iconColor,iconName,id,link,title,titleColor,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4,_ref5;return{...props,D_kS0OSgm:(_ref=title!==null&&title!==void 0?title:props.D_kS0OSgm)!==null&&_ref!==void 0?_ref:\"Choose this plan\",KvWpFi39a:(_ref1=titleColor!==null&&titleColor!==void 0?titleColor:props.KvWpFi39a)!==null&&_ref1!==void 0?_ref1:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",UvBHTWJGv:(_ref2=buttonColor!==null&&buttonColor!==void 0?buttonColor:props.UvBHTWJGv)!==null&&_ref2!==void 0?_ref2:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"dNJ9V7XXT\",vlpsm77Pq:(_ref4=iconColor!==null&&iconColor!==void 0?iconColor:props.vlpsm77Pq)!==null&&_ref4!==void 0?_ref4:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",VWafCeIGj:(_ref5=iconName!==null&&iconName!==void 0?iconName:props.VWafCeIGj)!==null&&_ref5!==void 0?_ref5:\"arrow-elbow-down-right\",wiHIqrBU5:link!==null&&link!==void 0?link:props.wiHIqrBU5};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,VWafCeIGj,vlpsm77Pq,D_kS0OSgm,KvWpFi39a,UvBHTWJGv,wiHIqrBU5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dNJ9V7XXT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:wiHIqrBU5,nodeId:\"dNJ9V7XXT\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1r8cmpu\",className,classNames)} framer-yx9boa`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dNJ9V7XXT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:UvBHTWJGv,borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({\"dNJ9V7XXT-hover\":{\"data-framer-name\":undefined},WiYCmp1E9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aaebxw-container\",layoutDependency:layoutDependency,layoutId:\"dRfKoqMbo-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:vlpsm77Pq,height:\"100%\",iconSearch:VWafCeIGj,iconSelection:\"House\",id:\"dRfKoqMbo\",layoutId:\"dRfKoqMbo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KvWpFi39a-EWzcwK0dQ))\"},children:\"Choose this plan\"})}),className:\"framer-heisnw\",\"data-framer-name\":\"Choose this plan\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bYQORQNRK\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-KvWpFi39a-EWzcwK0dQ)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-KvWpFi39a-EWzcwK0dQ\":KvWpFi39a},text:D_kS0OSgm,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WiYCmp1E9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KvWpFi39a-EWzcwK0dQ))\"},children:\"Choose this plan\"})})}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kwLC7.framer-yx9boa, .framer-kwLC7 .framer-yx9boa { display: block; }\",\".framer-kwLC7.framer-1r8cmpu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 21px 0px 21px 0px; position: relative; text-decoration: none; width: 230px; }\",\".framer-kwLC7 .framer-1aaebxw-container { flex: none; height: 23px; position: relative; width: 23px; }\",\".framer-kwLC7 .framer-heisnw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kwLC7.framer-1r8cmpu { gap: 0px; } .framer-kwLC7.framer-1r8cmpu > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-kwLC7.framer-1r8cmpu > :first-child { margin-left: 0px; } .framer-kwLC7.framer-1r8cmpu > :last-child { margin-right: 0px; } }\",\".framer-kwLC7.framer-v-fvk6g0.framer-1r8cmpu { cursor: unset; padding: 20px 0px 20px 0px; }\",\".framer-kwLC7.framer-v-fvk6g0 .framer-1aaebxw-container { height: 21px; width: 21px; }\",\".framer-kwLC7.framer-v-1r8cmpu.hover.framer-1r8cmpu { gap: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kwLC7.framer-v-1r8cmpu.hover.framer-1r8cmpu { gap: 0px; } .framer-kwLC7.framer-v-1r8cmpu.hover.framer-1r8cmpu > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-kwLC7.framer-v-1r8cmpu.hover.framer-1r8cmpu > :first-child { margin-left: 0px; } .framer-kwLC7.framer-v-1r8cmpu.hover.framer-1r8cmpu > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 68\n * @framerIntrinsicWidth 230\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WiYCmp1E9\":{\"layout\":[\"fixed\",\"auto\"]},\"gEBrg0OK0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"VWafCeIGj\":\"iconName\",\"vlpsm77Pq\":\"iconColor\",\"D_kS0OSgm\":\"title\",\"KvWpFi39a\":\"titleColor\",\"UvBHTWJGv\":\"buttonColor\",\"wiHIqrBU5\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEWzcwK0dQ=withCSS(Component,css,\"framer-kwLC7\");export default FramerEWzcwK0dQ;FramerEWzcwK0dQ.displayName=\"Pricing / Button\";FramerEWzcwK0dQ.defaultProps={height:68,width:230};addPropertyControls(FramerEWzcwK0dQ,{variant:{options:[\"dNJ9V7XXT\",\"WiYCmp1E9\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},VWafCeIGj:{defaultValue:\"arrow-elbow-down-right\",placeholder:\"\",title:\"Icon name\",type:ControlType.String},vlpsm77Pq:{defaultValue:'var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Icon color\",type:ControlType.Color},D_kS0OSgm:{defaultValue:\"Choose this plan\",displayTextArea:false,title:\"Title\",type:ControlType.String},KvWpFi39a:{defaultValue:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",title:\"Title color\",type:ControlType.Color},UvBHTWJGv:{defaultValue:'var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)) /* {\"name\":\"Primary\"} */',title:\"Button color\",type:ControlType.Color},wiHIqrBU5:{title:\"Link\",type:ControlType.Link}});addFonts(FramerEWzcwK0dQ,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEWzcwK0dQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"68\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"230\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"VWafCeIGj\\\":\\\"iconName\\\",\\\"vlpsm77Pq\\\":\\\"iconColor\\\",\\\"D_kS0OSgm\\\":\\\"title\\\",\\\"KvWpFi39a\\\":\\\"titleColor\\\",\\\"UvBHTWJGv\\\":\\\"buttonColor\\\",\\\"wiHIqrBU5\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WiYCmp1E9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gEBrg0OK0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EWzcwK0dQ.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-vENHC\";const variantClassNames={HfiWj2ujF:\"framer-v-1e58aod\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({badgeBGOpacity,badgeIconName,bGColor,color,height,id,text,width,...props})=>{return{...props,fNIfKedye:text??props.fNIfKedye??\"Text\",lbHyc7_1a:badgeIconName??props.lbHyc7_1a??\"fire\",M43wJ6KEW:bGColor??props.M43wJ6KEW??\"rgb(255, 243, 241)\",tlTcxOvUU:color??props.tlTcxOvUU??\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",ZK6JFFNEQ:badgeBGOpacity??props.ZK6JFFNEQ??.08};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fNIfKedye,tlTcxOvUU,M43wJ6KEW,ZK6JFFNEQ,lbHyc7_1a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HfiWj2ujF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1e58aod\",className,classNames),\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"HfiWj2ujF\",ref:ref??ref1,style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wepynj-container\",layoutDependency:layoutDependency,layoutId:\"pFOiDOJ_D-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:tlTcxOvUU,height:\"100%\",iconSearch:lbHyc7_1a,iconSelection:\"House\",id:\"pFOiDOJ_D\",layoutId:\"pFOiDOJ_D\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-tlTcxOvUU-MAxy_g2Et))\"},children:\"Text\"})}),className:\"framer-8mpvl0\",\"data-framer-name\":\"Most popular\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"rpD7Hrvkl\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-tlTcxOvUU-MAxy_g2Et)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-tlTcxOvUU-MAxy_g2Et\":tlTcxOvUU},text:fNIfKedye,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15qi64y\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"y9xe6kKwI\",style:{backgroundColor:M43wJ6KEW,opacity:ZK6JFFNEQ}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vENHC.framer-b6xpjr, .framer-vENHC .framer-b6xpjr { display: block; }\",\".framer-vENHC.framer-1e58aod { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vENHC .framer-wepynj-container { flex: none; height: 17px; position: relative; width: 17px; z-index: 1; }\",\".framer-vENHC .framer-8mpvl0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-vENHC .framer-15qi64y { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vENHC.framer-1e58aod { gap: 0px; } .framer-vENHC.framer-1e58aod > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-vENHC.framer-1e58aod > :first-child { margin-left: 0px; } .framer-vENHC.framer-1e58aod > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 66\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"fNIfKedye\":\"text\",\"tlTcxOvUU\":\"color\",\"M43wJ6KEW\":\"bGColor\",\"ZK6JFFNEQ\":\"badgeBGOpacity\",\"lbHyc7_1a\":\"badgeIconName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMAxy_g2Et=withCSS(Component,css,\"framer-vENHC\");export default FramerMAxy_g2Et;FramerMAxy_g2Et.displayName=\"Pricing / Badge\";FramerMAxy_g2Et.defaultProps={height:27,width:66};addPropertyControls(FramerMAxy_g2Et,{fNIfKedye:{defaultValue:\"Text\",description:\"\",displayTextArea:false,title:\"Text\",type:ControlType.String},tlTcxOvUU:{defaultValue:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",title:\"Color\",type:ControlType.Color},M43wJ6KEW:{defaultValue:\"rgb(255, 243, 241)\",title:\"BG color\",type:ControlType.Color},ZK6JFFNEQ:{defaultValue:.08,max:1,min:0,step:.01,title:\"Badge BG opacity\",type:ControlType.Number},lbHyc7_1a:{defaultValue:\"fire\",description:\"\",placeholder:\"\",title:\"Badge icon name\",type:ControlType.String}});addFonts(FramerMAxy_g2Et,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMAxy_g2Et\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"66\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"27\",\"framerVariables\":\"{\\\"fNIfKedye\\\":\\\"text\\\",\\\"tlTcxOvUU\\\":\\\"color\\\",\\\"M43wJ6KEW\\\":\\\"bGColor\\\",\\\"ZK6JFFNEQ\\\":\\\"badgeBGOpacity\\\",\\\"lbHyc7_1a\\\":\\\"badgeIconName\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MAxy_g2Et.map", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"VnC56JFIK\",\"cU2p1EhV2\"];const serializationHash=\"framer-Dj8SZ\";const variantClassNames={cU2p1EhV2:\"framer-v-1rqw8fm\",VnC56JFIK:\"framer-v-1hbv3t7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"VnC56JFIK\",\"2\":\"cU2p1EhV2\"};const getProps=({height,id,price,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,T0YZmqdsr:(_ref=price!==null&&price!==void 0?price:props.T0YZmqdsr)!==null&&_ref!==void 0?_ref:\"Price\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"VnC56JFIK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,T0YZmqdsr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VnC56JFIK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hbv3t7\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"VnC56JFIK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cU2p1EhV2:{\"data-framer-name\":\"2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"$2,499\"})}),className:\"framer-1lhyxw5\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"fniBrc54x\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\"},text:T0YZmqdsr,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cU2p1EhV2:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"text\"})}),className:\"framer-rqd5wq\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"TjDOZRQqE\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\"},text:T0YZmqdsr,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Dj8SZ.framer-1jbinyv, .framer-Dj8SZ .framer-1jbinyv { display: block; }\",\".framer-Dj8SZ.framer-1hbv3t7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 46px; justify-content: center; overflow: hidden; padding: 0px 2px 0px 0px; position: relative; width: min-content; }\",\".framer-Dj8SZ .framer-1lhyxw5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Dj8SZ .framer-rqd5wq { flex: none; height: auto; position: absolute; right: 0px; top: -46px; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Dj8SZ.framer-1hbv3t7 { gap: 0px; } .framer-Dj8SZ.framer-1hbv3t7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Dj8SZ.framer-1hbv3t7 > :first-child { margin-top: 0px; } .framer-Dj8SZ.framer-1hbv3t7 > :last-child { margin-bottom: 0px; } }\",\".framer-Dj8SZ.framer-v-1rqw8fm .framer-1lhyxw5 { bottom: -46px; left: 50%; position: absolute; z-index: 1; }\",\".framer-Dj8SZ.framer-v-1rqw8fm .framer-rqd5wq { position: relative; right: unset; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 92\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"cU2p1EhV2\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"T0YZmqdsr\":\"price\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertC_tj2qbE=withCSS(Component,css,\"framer-Dj8SZ\");export default FramertC_tj2qbE;FramertC_tj2qbE.displayName=\"Pricing / Price\";FramertC_tj2qbE.defaultProps={height:46,width:92};addPropertyControls(FramertC_tj2qbE,{variant:{options:[\"VnC56JFIK\",\"cU2p1EhV2\"],optionTitles:[\"1\",\"2\"],title:\"Variant\",type:ControlType.Enum},T0YZmqdsr:{defaultValue:\"Price\",displayTextArea:false,title:\"Price\",type:ControlType.String}});addFonts(FramertC_tj2qbE,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertC_tj2qbE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"92\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"T0YZmqdsr\\\":\\\"price\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"cU2p1EhV2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"46\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tC_tj2qbE.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/0JLPmaxZxenFQzSWFxwu/qJpZiXfAIi1MBZmmNkaC/sw01V2bJD.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";import PricingIncludedItem from\"https://framerusercontent.com/modules/vtz0iS69ynt208ca7Qtc/By3l6FxvOTD52SBDuNpp/CE7zNdgHX.js\";import PricingButton from\"https://framerusercontent.com/modules/npMw3XI4wyzppUg3INB4/LMwB0lvN6TTU9ylBuzYr/EWzcwK0dQ.js\";import PricingBadge from\"https://framerusercontent.com/modules/W5PQeEuzGxe67pBDCIUJ/I1Any45vHubjW6wpNRtJ/MAxy_g2Et.js\";import PricingPrice from\"https://framerusercontent.com/modules/CXQwhXl6pHw1wFiPFWjW/FPJqC98sapDIxOCic2IT/tC_tj2qbE.js\";const PricingBadgeFonts=getFonts(PricingBadge);const PricingPriceFonts=getFonts(PricingPrice);const MotionDivWithFX=withFX(motion.div);const PricingButtonFonts=getFonts(PricingButton);const PricingIncludedItemFonts=getFonts(PricingIncludedItem);const PricingPriceControls=getPropertyControls(PricingPrice);const cycleOrder=[\"c4A8ie2ZE\",\"oG15KyVqZ\",\"rZ5GGKMaQ\"];const serializationHash=\"framer-B1zac\";const variantClassNames={c4A8ie2ZE:\"framer-v-12p8c8l\",oG15KyVqZ:\"framer-v-s31e9u\",rZ5GGKMaQ:\"framer-v-17vh9db\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"1\":\"VnC56JFIK\",\"2\":\"cU2p1EhV2\"};const humanReadableVariantMap={Desktop:\"c4A8ie2ZE\",Phone:\"rZ5GGKMaQ\",Tablet:\"oG15KyVqZ\"};const getProps=({_01Item,_02Item,_03Item,_04Item,_05Item,_06Item,_07Item,_08Item,badgeBGColor,badgeBGOpacity,badgeColor,badgeIconName,badgeText,bGColor,buttonColor,buttonIconColor,buttonIconName,buttonLink,buttonTitle,buttonTitleColor,corner,description,height,id,included,oldPrice,period,price,priceAnimation,title,width,...props})=>{return{...props,BZUS7Yok2:_03Item??props.BZUS7Yok2??\"03 item\",DHbncmPbm:period??props.DHbncmPbm??\"/Period\",djxZivlJX:_08Item??props.djxZivlJX??\"08 item\",DRXq2CA0R:badgeBGColor??props.DRXq2CA0R??\"rgb(255, 243, 241)\",e1Qtj6Buf:price??props.e1Qtj6Buf??\"Price\",E4l7WXm44:bGColor??props.E4l7WXm44??\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",F0SJvkAIO:buttonColor??props.F0SJvkAIO??\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",fWFFPpiNH:title??props.fWFFPpiNH??\"Title\",fX1Kko_Pw:buttonIconName??props.fX1Kko_Pw??\"arrow-elbow-down-right\",gKl4XJ6TP:included??props.gKl4XJ6TP??\"What's Included:\",gkTCll13m:badgeBGOpacity??props.gkTCll13m??.08,H80N7nNWU:badgeColor??props.H80N7nNWU??\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",Ib_jSGmxj:badgeIconName??props.Ib_jSGmxj??\"fire\",JkvOs4nXW:buttonTitle??props.JkvOs4nXW??\"Button title\",KG7qH92rR:buttonTitleColor??props.KG7qH92rR??\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",KSYJFft7Q:badgeText??props.KSYJFft7Q??\"Most popular\",mlWl2mSjJ:oldPrice??props.mlWl2mSjJ??\"Old price\",p3LN5hAsJ:_05Item??props.p3LN5hAsJ??\"05 item\",pswJBNYyr:_07Item??props.pswJBNYyr??\"07 item\",qhMj7xIXc:_01Item??props.qhMj7xIXc??\"01 item\",RknEJ7V9I:corner??props.RknEJ7V9I??true,tegf3lo8s:_04Item??props.tegf3lo8s??\"04 item\",variant:humanReadableVariantMap[props.variant]??props.variant??\"c4A8ie2ZE\",X2qnDvuoF:buttonIconColor??props.X2qnDvuoF??\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",X8yfJNZKa:_02Item??props.X8yfJNZKa??\"02 item\",xozNZ2iu9:description??props.xozNZ2iu9??\"Description\",xpBOsytlV:_06Item??props.xpBOsytlV??\"06 item\",YAYtd5eAN:buttonLink??props.YAYtd5eAN,z9bebLOr6:humanReadableEnumMap[priceAnimation]??priceAnimation??props.z9bebLOr6??\"VnC56JFIK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RknEJ7V9I,E4l7WXm44,fWFFPpiNH,KSYJFft7Q,H80N7nNWU,DRXq2CA0R,gkTCll13m,Ib_jSGmxj,mlWl2mSjJ,e1Qtj6Buf,DHbncmPbm,xozNZ2iu9,fX1Kko_Pw,X2qnDvuoF,JkvOs4nXW,KG7qH92rR,F0SJvkAIO,YAYtd5eAN,gKl4XJ6TP,qhMj7xIXc,X8yfJNZKa,BZUS7Yok2,tegf3lo8s,p3LN5hAsJ,xpBOsytlV,pswJBNYyr,djxZivlJX,z9bebLOr6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"c4A8ie2ZE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=isSet(KSYJFft7Q);const visible1=isSet(mlWl2mSjJ);const visible2=isSet(DHbncmPbm);const visible3=isSet(gKl4XJ6TP);const visible4=isSet(qhMj7xIXc);const visible5=isSet(X8yfJNZKa);const visible6=isSet(BZUS7Yok2);const visible7=isSet(tegf3lo8s);const visible8=isSet(p3LN5hAsJ);const visible9=isSet(xpBOsytlV);const visible10=isSet(pswJBNYyr);const visible11=isSet(djxZivlJX);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-12p8c8l\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"c4A8ie2ZE\",ref:ref??ref1,style:{backgroundColor:E4l7WXm44,...style},...addPropertyOverrides({oG15KyVqZ:{\"data-framer-name\":\"Tablet\"},rZ5GGKMaQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[RknEJ7V9I&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zjivbb\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"lPwv7LCRh\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mejdnf\",\"data-framer-name\":\"Plan\",layoutDependency:layoutDependency,layoutId:\"A9BvlpTov\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Professional Plan\"})}),className:\"framer-1spc7tg\",\"data-framer-name\":\"Professional Plan\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bTIU489Jp\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\"},text:fWFFPpiNH,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xh6dw8-container\",layoutDependency:layoutDependency,layoutId:\"MQd_zt0jH-container\",nodeId:\"MQd_zt0jH\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingBadge,{fNIfKedye:KSYJFft7Q,height:\"100%\",id:\"MQd_zt0jH\",layoutId:\"MQd_zt0jH\",lbHyc7_1a:Ib_jSGmxj,M43wJ6KEW:DRXq2CA0R,tlTcxOvUU:H80N7nNWU,width:\"100%\",ZK6JFFNEQ:gkTCll13m})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ad7mvv\",\"data-framer-name\":\"Pricing\",layoutDependency:layoutDependency,layoutId:\"r3gFNhHWO\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1ovxv2m\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"OmigWATVU\",...addPropertyOverrides({rZ5GGKMaQ:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:[visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzu6cm\",\"data-framer-name\":\"Old\",layoutDependency:layoutDependency,layoutId:\"bpANpY_sY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\",\"--framer-text-decoration\":\"line-through\"},children:\"$2,999\"})}),className:\"framer-agagu0\",\"data-framer-name\":\"$2,999\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"SqHQ8izd9\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.3},text:mlWl2mSjJ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rZ5GGKMaQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\",\"--framer-text-decoration\":\"line-through\"},children:\"Old price\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1olkgud\",\"data-framer-name\":\"New\",layoutDependency:layoutDependency,layoutId:\"erN0MxHiD\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10q4zxc-container\",layoutDependency:layoutDependency,layoutId:\"Y98snzSlz-container\",nodeId:\"Y98snzSlz\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingPrice,{height:\"100%\",id:\"Y98snzSlz\",layoutId:\"Y98snzSlz\",style:{height:\"100%\"},T0YZmqdsr:e1Qtj6Buf,variant:z9bebLOr6,width:\"100%\"})})}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"/month\"})}),className:\"framer-jxh2kp\",\"data-framer-name\":\"/month\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"emKyFPXPP\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:DHbncmPbm,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rZ5GGKMaQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"/Period\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"For growing businesses needing more features and flexibility.\"})}),className:\"framer-k5f6js\",\"data-framer-name\":\"For growing businesses needing more features and flexibility.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vg2uRNefQ\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:xozNZ2iu9,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xhnyrp-container\",layoutDependency:layoutDependency,layoutId:\"jIkdYUWh6-container\",nodeId:\"jIkdYUWh6\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingButton,{D_kS0OSgm:JkvOs4nXW,height:\"100%\",id:\"jIkdYUWh6\",KvWpFi39a:KG7qH92rR,layoutId:\"jIkdYUWh6\",style:{width:\"100%\"},UvBHTWJGv:F0SJvkAIO,variant:\"dNJ9V7XXT\",vlpsm77Pq:X2qnDvuoF,VWafCeIGj:fX1Kko_Pw,width:\"100%\",wiHIqrBU5:YAYtd5eAN,...addPropertyOverrides({rZ5GGKMaQ:{variant:\"WiYCmp1E9\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cquy2p\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"rh9i3K_ID\",children:[visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",children:\"What's Included:\"})}),className:\"framer-1m2sioh\",\"data-framer-name\":\"What's Included:\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gGtIqip28\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:gKl4XJ6TP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jgz8ko\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"NQLtyiJpL\",children:[visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9k3zxj-container\",layoutDependency:layoutDependency,layoutId:\"OVxbCT2ZH-container\",nodeId:\"OVxbCT2ZH\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"OVxbCT2ZH\",layoutId:\"OVxbCT2ZH\",style:{width:\"100%\"},TVsgllYiM:qhMj7xIXc,width:\"100%\"})})}),visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rm448q-container\",layoutDependency:layoutDependency,layoutId:\"Uf434Z38r-container\",nodeId:\"Uf434Z38r\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"Uf434Z38r\",layoutId:\"Uf434Z38r\",style:{width:\"100%\"},TVsgllYiM:X8yfJNZKa,width:\"100%\"})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mngb9y-container\",layoutDependency:layoutDependency,layoutId:\"deB2U7sNs-container\",nodeId:\"deB2U7sNs\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"deB2U7sNs\",layoutId:\"deB2U7sNs\",style:{width:\"100%\"},TVsgllYiM:BZUS7Yok2,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y6kz7j-container\",layoutDependency:layoutDependency,layoutId:\"HQDalw8S_-container\",nodeId:\"HQDalw8S_\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"HQDalw8S_\",layoutId:\"HQDalw8S_\",style:{width:\"100%\"},TVsgllYiM:tegf3lo8s,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oii99b-container\",layoutDependency:layoutDependency,layoutId:\"g4msfvXQn-container\",nodeId:\"g4msfvXQn\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"g4msfvXQn\",layoutId:\"g4msfvXQn\",style:{width:\"100%\"},TVsgllYiM:p3LN5hAsJ,width:\"100%\"})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mmimd7-container\",layoutDependency:layoutDependency,layoutId:\"kxp3I30UD-container\",nodeId:\"kxp3I30UD\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"kxp3I30UD\",layoutId:\"kxp3I30UD\",style:{width:\"100%\"},TVsgllYiM:xpBOsytlV,width:\"100%\"})})}),visible10&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q5i8f2-container\",layoutDependency:layoutDependency,layoutId:\"Y6bR8pgzv-container\",nodeId:\"Y6bR8pgzv\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"Y6bR8pgzv\",layoutId:\"Y6bR8pgzv\",style:{width:\"100%\"},TVsgllYiM:pswJBNYyr,width:\"100%\"})})}),visible11&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,...addPropertyOverrides({oG15KyVqZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 92px)`},rZ5GGKMaQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 68px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n6g7mq-container\",layoutDependency:layoutDependency,layoutId:\"W1h9JuMIS-container\",nodeId:\"W1h9JuMIS\",rendersWithMotion:true,scopeId:\"DCs41GB7F\",children:/*#__PURE__*/_jsx(PricingIncludedItem,{height:\"100%\",id:\"W1h9JuMIS\",layoutId:\"W1h9JuMIS\",style:{width:\"100%\"},TVsgllYiM:djxZivlJX,width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B1zac.framer-1it4p1c, .framer-B1zac .framer-1it4p1c { display: block; }\",\".framer-B1zac.framer-12p8c8l { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px; position: relative; width: 330px; }\",\".framer-B1zac .framer-zjivbb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-B1zac .framer-mejdnf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B1zac .framer-1spc7tg, .framer-B1zac .framer-agagu0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B1zac .framer-xh6dw8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-B1zac .framer-ad7mvv { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B1zac .framer-1ovxv2m { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B1zac .framer-1mzu6cm { 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 10px 0px 0px; position: relative; width: min-content; }\",\".framer-B1zac .framer-1olkgud { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B1zac .framer-10q4zxc-container { flex: none; height: 46px; position: relative; width: auto; }\",\".framer-B1zac .framer-jxh2kp { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-B1zac .framer-k5f6js { flex: none; height: auto; max-width: 264px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-B1zac .framer-xhnyrp-container, .framer-B1zac .framer-9k3zxj-container, .framer-B1zac .framer-rm448q-container, .framer-B1zac .framer-mngb9y-container, .framer-B1zac .framer-y6kz7j-container, .framer-B1zac .framer-oii99b-container, .framer-B1zac .framer-1mmimd7-container, .framer-B1zac .framer-q5i8f2-container, .framer-B1zac .framer-1n6g7mq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-B1zac .framer-1cquy2p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B1zac .framer-1m2sioh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-B1zac .framer-1jgz8ko { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B1zac.framer-12p8c8l, .framer-B1zac .framer-mejdnf, .framer-B1zac .framer-ad7mvv, .framer-B1zac .framer-1ovxv2m, .framer-B1zac .framer-1mzu6cm, .framer-B1zac .framer-1olkgud, .framer-B1zac .framer-1cquy2p, .framer-B1zac .framer-1jgz8ko { gap: 0px; } .framer-B1zac.framer-12p8c8l > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-B1zac.framer-12p8c8l > :first-child, .framer-B1zac .framer-ad7mvv > :first-child, .framer-B1zac .framer-1cquy2p > :first-child, .framer-B1zac .framer-1jgz8ko > :first-child { margin-top: 0px; } .framer-B1zac.framer-12p8c8l > :last-child, .framer-B1zac .framer-ad7mvv > :last-child, .framer-B1zac .framer-1cquy2p > :last-child, .framer-B1zac .framer-1jgz8ko > :last-child { margin-bottom: 0px; } .framer-B1zac .framer-mejdnf > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-B1zac .framer-mejdnf > :first-child, .framer-B1zac .framer-1ovxv2m > :first-child, .framer-B1zac .framer-1mzu6cm > :first-child, .framer-B1zac .framer-1olkgud > :first-child { margin-left: 0px; } .framer-B1zac .framer-mejdnf > :last-child, .framer-B1zac .framer-1ovxv2m > :last-child, .framer-B1zac .framer-1mzu6cm > :last-child, .framer-B1zac .framer-1olkgud > :last-child { margin-right: 0px; } .framer-B1zac .framer-ad7mvv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-B1zac .framer-1ovxv2m > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-B1zac .framer-1mzu6cm > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-B1zac .framer-1olkgud > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-B1zac .framer-1cquy2p > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-B1zac .framer-1jgz8ko > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-B1zac.framer-v-s31e9u.framer-12p8c8l { gap: 30px; padding: 46px; }\",\".framer-B1zac.framer-v-s31e9u .framer-ad7mvv, .framer-B1zac.framer-v-17vh9db .framer-ad7mvv { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B1zac.framer-v-s31e9u.framer-12p8c8l, .framer-B1zac.framer-v-s31e9u .framer-ad7mvv { gap: 0px; } .framer-B1zac.framer-v-s31e9u.framer-12p8c8l > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-B1zac.framer-v-s31e9u.framer-12p8c8l > :first-child, .framer-B1zac.framer-v-s31e9u .framer-ad7mvv > :first-child { margin-top: 0px; } .framer-B1zac.framer-v-s31e9u.framer-12p8c8l > :last-child, .framer-B1zac.framer-v-s31e9u .framer-ad7mvv > :last-child { margin-bottom: 0px; } .framer-B1zac.framer-v-s31e9u .framer-ad7mvv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-B1zac.framer-v-17vh9db.framer-12p8c8l { gap: 28px; padding: 34px; }\",\".framer-B1zac.framer-v-17vh9db .framer-1ovxv2m { align-content: flex-start; align-items: flex-start; flex-direction: column; flex-wrap: nowrap; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-B1zac.framer-v-17vh9db.framer-12p8c8l, .framer-B1zac.framer-v-17vh9db .framer-ad7mvv, .framer-B1zac.framer-v-17vh9db .framer-1ovxv2m { gap: 0px; } .framer-B1zac.framer-v-17vh9db.framer-12p8c8l > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-B1zac.framer-v-17vh9db.framer-12p8c8l > :first-child, .framer-B1zac.framer-v-17vh9db .framer-ad7mvv > :first-child, .framer-B1zac.framer-v-17vh9db .framer-1ovxv2m > :first-child { margin-top: 0px; } .framer-B1zac.framer-v-17vh9db.framer-12p8c8l > :last-child, .framer-B1zac.framer-v-17vh9db .framer-ad7mvv > :last-child, .framer-B1zac.framer-v-17vh9db .framer-1ovxv2m > :last-child { margin-bottom: 0px; } .framer-B1zac.framer-v-17vh9db .framer-ad7mvv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-B1zac.framer-v-17vh9db .framer-1ovxv2m > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-B1zac[data-border=\"true\"]::after, .framer-B1zac [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 736\n * @framerIntrinsicWidth 330\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oG15KyVqZ\":{\"layout\":[\"fixed\",\"auto\"]},\"rZ5GGKMaQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RknEJ7V9I\":\"corner\",\"E4l7WXm44\":\"bGColor\",\"fWFFPpiNH\":\"title\",\"KSYJFft7Q\":\"badgeText\",\"H80N7nNWU\":\"badgeColor\",\"DRXq2CA0R\":\"badgeBGColor\",\"gkTCll13m\":\"badgeBGOpacity\",\"Ib_jSGmxj\":\"badgeIconName\",\"mlWl2mSjJ\":\"oldPrice\",\"e1Qtj6Buf\":\"price\",\"DHbncmPbm\":\"period\",\"xozNZ2iu9\":\"description\",\"fX1Kko_Pw\":\"buttonIconName\",\"X2qnDvuoF\":\"buttonIconColor\",\"JkvOs4nXW\":\"buttonTitle\",\"KG7qH92rR\":\"buttonTitleColor\",\"F0SJvkAIO\":\"buttonColor\",\"YAYtd5eAN\":\"buttonLink\",\"gKl4XJ6TP\":\"included\",\"qhMj7xIXc\":\"_01Item\",\"X8yfJNZKa\":\"_02Item\",\"BZUS7Yok2\":\"_03Item\",\"tegf3lo8s\":\"_04Item\",\"p3LN5hAsJ\":\"_05Item\",\"xpBOsytlV\":\"_06Item\",\"pswJBNYyr\":\"_07Item\",\"djxZivlJX\":\"_08Item\",\"z9bebLOr6\":\"priceAnimation\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDCs41GB7F=withCSS(Component,css,\"framer-B1zac\");export default FramerDCs41GB7F;FramerDCs41GB7F.displayName=\"Pricing / Card\";FramerDCs41GB7F.defaultProps={height:736,width:330};addPropertyControls(FramerDCs41GB7F,{variant:{options:[\"c4A8ie2ZE\",\"oG15KyVqZ\",\"rZ5GGKMaQ\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},RknEJ7V9I:{defaultValue:true,title:\"Corner\",type:ControlType.Boolean},E4l7WXm44:{defaultValue:'var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"BG color\",type:ControlType.Color},fWFFPpiNH:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},KSYJFft7Q:{defaultValue:\"Most popular\",displayTextArea:false,title:\"Badge text\",type:ControlType.String},H80N7nNWU:{defaultValue:'var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)) /* {\"name\":\"Primary\"} */',title:\"Badge color\",type:ControlType.Color},DRXq2CA0R:{defaultValue:\"rgb(255, 243, 241)\",title:\"Badge BG Color\",type:ControlType.Color},gkTCll13m:{defaultValue:.08,max:1,min:0,step:.01,title:\"Badge BG Opacity\",type:ControlType.Number},Ib_jSGmxj:{defaultValue:\"fire\",description:\"Find list of icons on phosphoricons.com\",placeholder:\"\",title:\"Badge Icon name\",type:ControlType.String},mlWl2mSjJ:{defaultValue:\"Old price\",displayTextArea:false,title:\"Old price\",type:ControlType.String},e1Qtj6Buf:{defaultValue:\"Price\",displayTextArea:false,title:\"Price\",type:ControlType.String},DHbncmPbm:{defaultValue:\"/Period\",displayTextArea:false,title:\"Period\",type:ControlType.String},xozNZ2iu9:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String},fX1Kko_Pw:{defaultValue:\"arrow-elbow-down-right\",placeholder:\"\",title:\"Button Icon Name\",type:ControlType.String},X2qnDvuoF:{defaultValue:'var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Button Icon Color\",type:ControlType.Color},JkvOs4nXW:{defaultValue:\"Button title\",displayTextArea:false,title:\"Button title\",type:ControlType.String},KG7qH92rR:{defaultValue:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",description:\"\",title:\"Button title Color\",type:ControlType.Color},F0SJvkAIO:{defaultValue:'var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)) /* {\"name\":\"Primary\"} */',title:\"Button Color\",type:ControlType.Color},YAYtd5eAN:{title:\"Button link\",type:ControlType.Link},gKl4XJ6TP:{defaultValue:\"What's Included:\",displayTextArea:false,title:\"Included\",type:ControlType.String},qhMj7xIXc:{defaultValue:\"01 item\",displayTextArea:false,title:\"01 item\",type:ControlType.String},X8yfJNZKa:{defaultValue:\"02 item\",displayTextArea:false,title:\"02 item\",type:ControlType.String},BZUS7Yok2:{defaultValue:\"03 item\",displayTextArea:false,title:\"03 item\",type:ControlType.String},tegf3lo8s:{defaultValue:\"04 item\",displayTextArea:false,title:\"04 item\",type:ControlType.String},p3LN5hAsJ:{defaultValue:\"05 item\",displayTextArea:false,title:\"05 item\",type:ControlType.String},xpBOsytlV:{defaultValue:\"06 item\",displayTextArea:false,title:\"06 item\",type:ControlType.String},pswJBNYyr:{defaultValue:\"07 item\",displayTextArea:false,title:\"07 item\",type:ControlType.String},djxZivlJX:{defaultValue:\"08 item\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"08 item\",type:ControlType.String},z9bebLOr6:PricingPriceControls?.[\"variant\"]&&{...PricingPriceControls[\"variant\"],defaultValue:\"VnC56JFIK\",description:\"Please, don't edit this\",hidden:undefined,title:\"Price animation\"}});addFonts(FramerDCs41GB7F,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PricingBadgeFonts,...PricingPriceFonts,...PricingButtonFonts,...PricingIncludedItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDCs41GB7F\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"RknEJ7V9I\\\":\\\"corner\\\",\\\"E4l7WXm44\\\":\\\"bGColor\\\",\\\"fWFFPpiNH\\\":\\\"title\\\",\\\"KSYJFft7Q\\\":\\\"badgeText\\\",\\\"H80N7nNWU\\\":\\\"badgeColor\\\",\\\"DRXq2CA0R\\\":\\\"badgeBGColor\\\",\\\"gkTCll13m\\\":\\\"badgeBGOpacity\\\",\\\"Ib_jSGmxj\\\":\\\"badgeIconName\\\",\\\"mlWl2mSjJ\\\":\\\"oldPrice\\\",\\\"e1Qtj6Buf\\\":\\\"price\\\",\\\"DHbncmPbm\\\":\\\"period\\\",\\\"xozNZ2iu9\\\":\\\"description\\\",\\\"fX1Kko_Pw\\\":\\\"buttonIconName\\\",\\\"X2qnDvuoF\\\":\\\"buttonIconColor\\\",\\\"JkvOs4nXW\\\":\\\"buttonTitle\\\",\\\"KG7qH92rR\\\":\\\"buttonTitleColor\\\",\\\"F0SJvkAIO\\\":\\\"buttonColor\\\",\\\"YAYtd5eAN\\\":\\\"buttonLink\\\",\\\"gKl4XJ6TP\\\":\\\"included\\\",\\\"qhMj7xIXc\\\":\\\"_01Item\\\",\\\"X8yfJNZKa\\\":\\\"_02Item\\\",\\\"BZUS7Yok2\\\":\\\"_03Item\\\",\\\"tegf3lo8s\\\":\\\"_04Item\\\",\\\"p3LN5hAsJ\\\":\\\"_05Item\\\",\\\"xpBOsytlV\\\":\\\"_06Item\\\",\\\"pswJBNYyr\\\":\\\"_07Item\\\",\\\"djxZivlJX\\\":\\\"_08Item\\\",\\\"z9bebLOr6\\\":\\\"priceAnimation\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oG15KyVqZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rZ5GGKMaQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"736\",\"framerIntrinsicWidth\":\"330\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DCs41GB7F.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={dfaLtY4Rt:{hover:true},RxExz_UAS:{hover:true}};const cycleOrder=[\"RxExz_UAS\",\"dfaLtY4Rt\"];const serializationHash=\"framer-uu04s\";const variantClassNames={dfaLtY4Rt:\"framer-v-satoj\",RxExz_UAS:\"framer-v-1yd2cr3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Left:\"RxExz_UAS\",Right:\"dfaLtY4Rt\"};const getProps=({click,height,id,width,...props})=>{return{...props,jvpLcpfrA:click??props.jvpLcpfrA,variant:humanReadableVariantMap[props.variant]??props.variant??\"RxExz_UAS\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jvpLcpfrA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RxExz_UAS\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1intngp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(jvpLcpfrA){const res=await jvpLcpfrA(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yd2cr3\",className,classNames),\"data-framer-name\":\"Left\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RxExz_UAS\",onTap:onTap1intngp,ref:ref??ref1,style:{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({\"dfaLtY4Rt-hover\":{\"data-framer-name\":undefined},\"RxExz_UAS-hover\":{\"data-framer-name\":undefined},dfaLtY4Rt:{\"data-framer-name\":\"Right\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x6mii9\",\"data-framer-name\":\"Ellipse\",layoutDependency:layoutDependency,layoutId:\"VxZTvHehg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uu04s.framer-1ln0zh2, .framer-uu04s .framer-1ln0zh2 { display: block; }\",\".framer-uu04s.framer-1yd2cr3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: flex-start; overflow: visible; padding: 5px; position: relative; width: 78px; }\",\".framer-uu04s .framer-1x6mii9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 34px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uu04s.framer-1yd2cr3 { gap: 0px; } .framer-uu04s.framer-1yd2cr3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-uu04s.framer-1yd2cr3 > :first-child { margin-left: 0px; } .framer-uu04s.framer-1yd2cr3 > :last-child { margin-right: 0px; } }\",\".framer-uu04s.framer-v-satoj.framer-1yd2cr3 { justify-content: flex-end; }\",\".framer-uu04s.framer-v-1yd2cr3.hover .framer-1x6mii9, .framer-uu04s.framer-v-satoj.hover .framer-1x6mii9 { aspect-ratio: unset; height: 34px; width: 36px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 78\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dfaLtY4Rt\":{\"layout\":[\"fixed\",\"fixed\"]},\"TP3adWAN6\":{\"layout\":[\"fixed\",\"fixed\"]},\"u4qcHye2M\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jvpLcpfrA\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKUEyOwyvM=withCSS(Component,css,\"framer-uu04s\");export default FramerKUEyOwyvM;FramerKUEyOwyvM.displayName=\"Pricing / toggle\";FramerKUEyOwyvM.defaultProps={height:44,width:78};addPropertyControls(FramerKUEyOwyvM,{variant:{options:[\"RxExz_UAS\",\"dfaLtY4Rt\"],optionTitles:[\"Left\",\"Right\"],title:\"Variant\",type:ControlType.Enum},jvpLcpfrA:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerKUEyOwyvM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKUEyOwyvM\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"44\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"jvpLcpfrA\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dfaLtY4Rt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TP3adWAN6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u4qcHye2M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"78\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KUEyOwyvM.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xgiP0Zoj65cWAxE4xrIv/PjW6BnCDg1Ka2aKuXfoV/sw01V2bJD.js\";import PricingCard from\"https://framerusercontent.com/modules/aa7Sc4jzXFi2Ou0khbvf/o2JYIfJOVa3IrlZoDu1q/DCs41GB7F.js\";import PricingToggle from\"https://framerusercontent.com/modules/eRDQRr4J7JOm4UjbcH62/6Ai7IHM5PODaUlNLtil1/KUEyOwyvM.js\";const PricingToggleFonts=getFonts(PricingToggle);const MotionDivWithFX=withFX(motion.div);const PricingCardFonts=getFonts(PricingCard);const PricingCardControls=getPropertyControls(PricingCard);const cycleOrder=[\"lhjgvDpbl\",\"sxZCoNmFS\"];const serializationHash=\"framer-ubhhh\";const variantClassNames={lhjgvDpbl:\"framer-v-1oro7vu\",sxZCoNmFS:\"framer-v-2jqcvh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:20,delay:0,mass:3,stiffness:600,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:4,y:0};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableEnumMap1={Desktop:\"c4A8ie2ZE\",Phone:\"rZ5GGKMaQ\",Tablet:\"oG15KyVqZ\"};const humanReadableVariantMap={Annually:\"sxZCoNmFS\",Monthly:\"lhjgvDpbl\"};const getProps=({cardVariant,direction,gap,height,id,padding,width,...props})=>{return{...props,bAuB7le7t:humanReadableEnumMap1[cardVariant]??cardVariant??props.bAuB7le7t??\"c4A8ie2ZE\",rwyc6NF6W:humanReadableEnumMap[direction]??direction??props.rwyc6NF6W??\"row\",variant:humanReadableVariantMap[props.variant]??props.variant??\"lhjgvDpbl\",wP464GpMB:gap??props.wP464GpMB??50,zNy6M4eyf:padding??props.zNy6M4eyf??\"50px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zNy6M4eyf,rwyc6NF6W,bAuB7le7t,wP464GpMB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lhjgvDpbl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const jvpLcpfrA6oqa3g=activeVariantCallback(async(...args)=>{setVariant(\"sxZCoNmFS\");});const jvpLcpfrAx86yh7=activeVariantCallback(async(...args)=>{setVariant(\"lhjgvDpbl\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1oro7vu\",className,classNames),\"data-framer-name\":\"Monthly\",layoutDependency:layoutDependency,layoutId:\"lhjgvDpbl\",ref:refBinding,style:{\"--7c4hxi\":wP464GpMB,...style},...addPropertyOverrides({sxZCoNmFS:{\"data-framer-name\":\"Annually\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r8qcj8\",\"data-framer-name\":\"Period\",layoutDependency:layoutDependency,layoutId:\"l_PW4CR47\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Monthly\"})}),className:\"framer-1hy5pe2\",\"data-framer-name\":\"Monthly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kxoozUiET\",style:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{sxZCoNmFS:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sxZCoNmFS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Monthly\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"78px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vqvykn-container\",layoutDependency:layoutDependency,layoutId:\"xLJm3OI4e-container\",nodeId:\"xLJm3OI4e\",rendersWithMotion:true,scopeId:\"S_9OuWIAJ\",children:/*#__PURE__*/_jsx(PricingToggle,{height:\"100%\",id:\"xLJm3OI4e\",jvpLcpfrA:jvpLcpfrA6oqa3g,layoutId:\"xLJm3OI4e\",style:{height:\"100%\",width:\"100%\"},variant:\"RxExz_UAS\",width:\"100%\",...addPropertyOverrides({sxZCoNmFS:{jvpLcpfrA:jvpLcpfrAx86yh7,variant:\"dfaLtY4Rt\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Annual\"})}),className:\"framer-tltf8k\",\"data-framer-name\":\"Annual\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ywNddGtvn\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{sxZCoNmFS:{\"--extracted-r6o4lv\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sxZCoNmFS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)))\"},children:\"Annual\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1lkg5ro\",\"data-framer-name\":\"Save\",layoutDependency:layoutDependency,layoutId:\"J1YXvp1Uf\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)))\"},children:\"Save 30%\"})}),className:\"framer-fr7fkh\",\"data-framer-name\":\"Save 30%\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ui_FtbBy0\",style:{\"--extracted-r6o4lv\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cbtpfp\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"ob8kqDAW9\",style:{backgroundColor:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",opacity:.08}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nhy4dz\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"hsjG9JYSb\",style:{\"--163do\":rwyc6NF6W===\"column\"?\"100%\":\"1px\",\"--181b5wm\":rwyc6NF6W===\"row\"?0:\"calc(20px / 2)\",\"--1rzdqfc\":rwyc6NF6W===\"column\"?undefined:\"1 0 0px\",\"--9xjepx\":numberToPixelString(zNy6M4eyf),\"--jui1k9\":rwyc6NF6W===\"column\"?0:\"calc(20px / 2)\",\"--p1yva9\":rwyc6NF6W,backgroundColor:\"var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, rgb(245, 245, 245))\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:736,width:rwyc6NF6W===\"row\"?`max(((${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px) - 40px) / 3, 1px)`:`calc(${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11kdwaj-container\",layoutDependency:layoutDependency,layoutId:\"HCFMekIgH-container\",nodeId:\"HCFMekIgH\",rendersWithMotion:true,scopeId:\"S_9OuWIAJ\",children:/*#__PURE__*/_jsx(PricingCard,{BZUS7Yok2:\"Creation of custom page prototypes\",DHbncmPbm:\"/month\",djxZivlJX:\"\",DRXq2CA0R:\"rgb(255, 243, 241)\",e1Qtj6Buf:\"$999\",E4l7WXm44:\"var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, rgb(245, 245, 245))\",F0SJvkAIO:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",fWFFPpiNH:\"Basic\",fX1Kko_Pw:\"arrow-elbow-down-right\",gKl4XJ6TP:\"What's Included:\",gkTCll13m:.08,H80N7nNWU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",height:\"100%\",Ib_jSGmxj:\"\",id:\"HCFMekIgH\",JkvOs4nXW:\"Choose this plan\",KG7qH92rR:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",KSYJFft7Q:\"\",layoutId:\"HCFMekIgH\",mlWl2mSjJ:\"\",p3LN5hAsJ:\"Setup of a basic contact form\",pswJBNYyr:\"\",qhMj7xIXc:\"Competitor analysis\",RknEJ7V9I:false,style:{width:\"100%\"},tegf3lo8s:\"Basic analytics setup (e.g., Google Analytics)\",variant:bAuB7le7t,width:\"100%\",X2qnDvuoF:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",X8yfJNZKa:\"Design of homepage + up to 4 inner pages\",xozNZ2iu9:\"For small businesses or startups building their first digital presence.\",xpBOsytlV:\"Bug fixing and testing support\",YAYtd5eAN:resolvedLinks[0],z9bebLOr6:\"VnC56JFIK\",...addPropertyOverrides({sxZCoNmFS:{BZUS7Yok2:\"Brand alignment\",e1Qtj6Buf:\"$799\",qhMj7xIXc:\"Brand Analysis\",X8yfJNZKa:\"Design of homepage\",YAYtd5eAN:resolvedLinks[1],z9bebLOr6:\"cU2p1EhV2\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:736,width:rwyc6NF6W===\"row\"?`max(((${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px) - 40px) / 3, 1px)`:`calc(${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o2ae5c-container\",layoutDependency:layoutDependency,layoutId:\"UW369PUKm-container\",nodeId:\"UW369PUKm\",rendersWithMotion:true,scopeId:\"S_9OuWIAJ\",children:/*#__PURE__*/_jsx(PricingCard,{BZUS7Yok2:\"Social media integration\",DHbncmPbm:\"/month\",djxZivlJX:\"\",DRXq2CA0R:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",e1Qtj6Buf:\"$2,499\",E4l7WXm44:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",F0SJvkAIO:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",fWFFPpiNH:\"Pro\",fX1Kko_Pw:\"arrow-elbow-down-right\",gKl4XJ6TP:\"What's Included:\",gkTCll13m:.08,H80N7nNWU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",height:\"100%\",Ib_jSGmxj:\"fire\",id:\"UW369PUKm\",JkvOs4nXW:\"Choose this plan\",KG7qH92rR:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",KSYJFft7Q:\"Most popular\",layoutId:\"UW369PUKm\",mlWl2mSjJ:\"$2,999\",p3LN5hAsJ:\"Enhanced SEO for core pages\",pswJBNYyr:\"\",qhMj7xIXc:\"Everything in the Basic Plan\",RknEJ7V9I:true,style:{width:\"100%\"},tegf3lo8s:\"Optimized mobile and tablet versions\",variant:bAuB7le7t,width:\"100%\",X2qnDvuoF:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",X8yfJNZKa:\"Up to 10 pages, fully customized\",xozNZ2iu9:\"For growing businesses needing more features and flexibility.\",xpBOsytlV:\"Custom email template design for leads\",YAYtd5eAN:resolvedLinks1[0],z9bebLOr6:\"VnC56JFIK\",...addPropertyOverrides({sxZCoNmFS:{e1Qtj6Buf:\"$1,999\",mlWl2mSjJ:\"$2,599\",YAYtd5eAN:resolvedLinks1[1],z9bebLOr6:\"cU2p1EhV2\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:736,width:rwyc6NF6W===\"row\"?`max(((${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px) - 40px) / 3, 1px)`:`calc(${componentViewport?.width||\"100vw\"} - ${zNy6M4eyf*2}px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xcuzl7-container\",layoutDependency:layoutDependency,layoutId:\"HqYoH2IuP-container\",nodeId:\"HqYoH2IuP\",rendersWithMotion:true,scopeId:\"S_9OuWIAJ\",children:/*#__PURE__*/_jsx(PricingCard,{BZUS7Yok2:\"Monthly analytics + performance reporting\",DHbncmPbm:\"/month\",djxZivlJX:\"\",DRXq2CA0R:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",e1Qtj6Buf:\"$4,999\",E4l7WXm44:\"var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, rgb(245, 245, 245))\",F0SJvkAIO:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",fWFFPpiNH:\"Max\",fX1Kko_Pw:\"arrow-elbow-down-right\",gKl4XJ6TP:\"What's Included:\",gkTCll13m:1,H80N7nNWU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",Ib_jSGmxj:\"sketch-logo\",id:\"HqYoH2IuP\",JkvOs4nXW:\"Choose this plan\",KG7qH92rR:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",KSYJFft7Q:\"Premium\",layoutId:\"HqYoH2IuP\",mlWl2mSjJ:\"\",p3LN5hAsJ:\"Unlimited revisions during the design phase\",pswJBNYyr:\"\",qhMj7xIXc:\"Everything in the Professional Plan\",RknEJ7V9I:false,style:{width:\"100%\"},tegf3lo8s:\"E-commerce functionality (if needed)\",variant:bAuB7le7t,width:\"100%\",X2qnDvuoF:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",X8yfJNZKa:\"Custom blog design + setup\",xozNZ2iu9:\"For established brands looking for a fully tailored experience.\",xpBOsytlV:\"Priority support for 6 months post-launch\",YAYtd5eAN:resolvedLinks2[0],z9bebLOr6:\"VnC56JFIK\",...addPropertyOverrides({sxZCoNmFS:{e1Qtj6Buf:\"$3,999\",YAYtd5eAN:resolvedLinks2[1],z9bebLOr6:\"cU2p1EhV2\"}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ubhhh.framer-1e9bbp3, .framer-ubhhh .framer-1e9bbp3 { display: block; }\",\".framer-ubhhh.framer-1oro7vu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--7c4hxi)) * 1px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1128px; }\",\".framer-ubhhh .framer-r8qcj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ubhhh .framer-1hy5pe2, .framer-ubhhh .framer-tltf8k, .framer-ubhhh .framer-fr7fkh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ubhhh .framer-1vqvykn-container { flex: none; height: 44px; position: relative; width: 78px; }\",\".framer-ubhhh .framer-1lkg5ro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ubhhh .framer-cbtpfp { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-ubhhh .framer-nhy4dz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: var(--p1yva9); flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: var(--9xjepx); position: relative; width: 100%; }\",\".framer-ubhhh .framer-11kdwaj-container, .framer-ubhhh .framer-1o2ae5c-container, .framer-ubhhh .framer-xcuzl7-container { flex: var(--1rzdqfc); height: auto; position: relative; width: var(--163do); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ubhhh.framer-1oro7vu, .framer-ubhhh .framer-r8qcj8, .framer-ubhhh .framer-1lkg5ro, .framer-ubhhh .framer-nhy4dz { gap: 0px; } .framer-ubhhh.framer-1oro7vu > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--7c4hxi)) * 1px) / 2); margin-top: calc(calc(max(0, var(--7c4hxi)) * 1px) / 2); } .framer-ubhhh.framer-1oro7vu > :first-child { margin-top: 0px; } .framer-ubhhh.framer-1oro7vu > :last-child { margin-bottom: 0px; } .framer-ubhhh .framer-r8qcj8 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ubhhh .framer-r8qcj8 > :first-child, .framer-ubhhh .framer-1lkg5ro > :first-child { margin-left: 0px; } .framer-ubhhh .framer-r8qcj8 > :last-child, .framer-ubhhh .framer-1lkg5ro > :last-child { margin-right: 0px; } .framer-ubhhh .framer-1lkg5ro > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ubhhh .framer-nhy4dz > * { margin-bottom: var(--181b5wm); margin-left: var(--jui1k9); margin-right: var(--jui1k9); margin-top: var(--181b5wm); } .framer-ubhhh .framer-nhy4dz > :first-child { margin-left: 0px; margin-top: 0px; } .framer-ubhhh .framer-nhy4dz > :last-child { margin-bottom: 0px; margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 957\n * @framerIntrinsicWidth 1128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"sxZCoNmFS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zNy6M4eyf\":\"padding\",\"rwyc6NF6W\":\"direction\",\"bAuB7le7t\":\"cardVariant\",\"wP464GpMB\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerS_9OuWIAJ=withCSS(Component,css,\"framer-ubhhh\");export default FramerS_9OuWIAJ;FramerS_9OuWIAJ.displayName=\"Pricing / Table\";FramerS_9OuWIAJ.defaultProps={height:957,width:1128};addPropertyControls(FramerS_9OuWIAJ,{variant:{options:[\"lhjgvDpbl\",\"sxZCoNmFS\"],optionTitles:[\"Monthly\",\"Annually\"],title:\"Variant\",type:ControlType.Enum},zNy6M4eyf:{defaultValue:\"50px\",title:\"Padding\",type:ControlType.Padding},rwyc6NF6W:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum},bAuB7le7t:PricingCardControls?.[\"variant\"]&&{...PricingCardControls[\"variant\"],defaultValue:\"c4A8ie2ZE\",description:undefined,hidden:undefined,title:\"Card variant\"},wP464GpMB:{defaultValue:50,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FramerS_9OuWIAJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...PricingToggleFonts,...PricingCardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS_9OuWIAJ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"957\",\"framerIntrinsicWidth\":\"1128\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sxZCoNmFS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"zNy6M4eyf\\\":\\\"padding\\\",\\\"rwyc6NF6W\\\":\\\"direction\\\",\\\"bAuB7le7t\\\":\\\"cardVariant\\\",\\\"wP464GpMB\\\":\\\"gap\\\"}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S_9OuWIAJ.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const cycleOrder=[\"sARX1h65q\",\"k8_Zk7qCw\"];const serializationHash=\"framer-xxbTv\";const variantClassNames={k8_Zk7qCw:\"framer-v-jmrins\",sARX1h65q:\"framer-v-1o5z7d9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"sARX1h65q\",Phone:\"k8_Zk7qCw\"};const getProps=({bottom,height,id,number,top,width,...props})=>{return{...props,s0pskHPgi:number??props.s0pskHPgi??\"3\",sUuW11Svk:bottom??props.sUuW11Svk??\"and strategists\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sARX1h65q\",xdRQ8fRTN:top??props.xdRQ8fRTN??\"Creative thinkers\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,s0pskHPgi,xdRQ8fRTN,sUuW11Svk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sARX1h65q\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1o5z7d9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sARX1h65q\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({k8_Zk7qCw:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ruqygu\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"kAA91XuSg\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-15n043j\",\"data-framer-name\":\"3\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gRWOUUlXv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:s0pskHPgi,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k8_Zk7qCw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18eodud\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"otIWNx5Ph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Creative thinkers\"})}),className:\"framer-t4kels\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"emPg231dB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:xdRQ8fRTN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"and strategists\"})}),className:\"framer-138v28h\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNk0V5XcF\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:sUuW11Svk,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xxbTv.framer-85t7wa, .framer-xxbTv .framer-85t7wa { display: block; }\",\".framer-xxbTv.framer-1o5z7d9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 500px; }\",\".framer-xxbTv .framer-ruqygu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 0px; top: 0px; width: 9px; z-index: 1; }\",\".framer-xxbTv .framer-15n043j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xxbTv .framer-18eodud { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xxbTv .framer-t4kels, .framer-xxbTv .framer-138v28h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxbTv.framer-1o5z7d9, .framer-xxbTv .framer-18eodud { gap: 0px; } .framer-xxbTv.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-xxbTv.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-xxbTv.framer-1o5z7d9 > :last-child { margin-right: 0px; } .framer-xxbTv .framer-18eodud > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-xxbTv .framer-18eodud > :first-child { margin-top: 0px; } .framer-xxbTv .framer-18eodud > :last-child { margin-bottom: 0px; } }\",\".framer-xxbTv.framer-v-jmrins.framer-1o5z7d9 { gap: 14px; padding: 0px 0px 18px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xxbTv.framer-v-jmrins.framer-1o5z7d9 { gap: 0px; } .framer-xxbTv.framer-v-jmrins.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-xxbTv.framer-v-jmrins.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-xxbTv.framer-v-jmrins.framer-1o5z7d9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-xxbTv[data-border=\"true\"]::after, .framer-xxbTv [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 82\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k8_Zk7qCw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"s0pskHPgi\":\"number\",\"xdRQ8fRTN\":\"top\",\"sUuW11Svk\":\"bottom\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW96ZH6Gnz=withCSS(Component,css,\"framer-xxbTv\");export default FramerW96ZH6Gnz;FramerW96ZH6Gnz.displayName=\"Team / Item\";FramerW96ZH6Gnz.defaultProps={height:82,width:500};addPropertyControls(FramerW96ZH6Gnz,{variant:{options:[\"sARX1h65q\",\"k8_Zk7qCw\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},s0pskHPgi:{defaultValue:\"3\",displayTextArea:false,title:\"Number\",type:ControlType.String},xdRQ8fRTN:{defaultValue:\"Creative thinkers\",displayTextArea:false,title:\"Top\",type:ControlType.String},sUuW11Svk:{defaultValue:\"and strategists\",displayTextArea:false,title:\"Bottom\",type:ControlType.String}});addFonts(FramerW96ZH6Gnz,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW96ZH6Gnz\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k8_Zk7qCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"500\",\"framerVariables\":\"{\\\"s0pskHPgi\\\":\\\"number\\\",\\\"xdRQ8fRTN\\\":\\\"top\\\",\\\"sUuW11Svk\\\":\\\"bottom\\\"}\",\"framerIntrinsicHeight\":\"82\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W96ZH6Gnz.map", "// Generated by Framer (c163575)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Bebas Neue-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"}]}];export const css=['.framer-aRH0t .framer-styles-preset-1f7rx9a:not(.rich-text-wrapper), .framer-aRH0t .framer-styles-preset-1f7rx9a.rich-text-wrapper p { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-aRH0t .framer-styles-preset-1f7rx9a:not(.rich-text-wrapper), .framer-aRH0t .framer-styles-preset-1f7rx9a.rich-text-wrapper p { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-aRH0t .framer-styles-preset-1f7rx9a:not(.rich-text-wrapper), .framer-aRH0t .framer-styles-preset-1f7rx9a.rich-text-wrapper p { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-aRH0t\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-wOGvT .framer-styles-preset-1b2vby3:not(.rich-text-wrapper), .framer-wOGvT .framer-styles-preset-1b2vby3.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 54px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.07em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0b0b0c; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-wOGvT .framer-styles-preset-1b2vby3:not(.rich-text-wrapper), .framer-wOGvT .framer-styles-preset-1b2vby3.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.07em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0b0b0c; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-wOGvT .framer-styles-preset-1b2vby3:not(.rich-text-wrapper), .framer-wOGvT .framer-styles-preset-1b2vby3.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.07em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #0b0b0c; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-wOGvT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-tQrMV .framer-styles-preset-1hxhobn:not(.rich-text-wrapper), .framer-tQrMV .framer-styles-preset-1hxhobn.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tQrMV .framer-styles-preset-1hxhobn:not(.rich-text-wrapper), .framer-tQrMV .framer-styles-preset-1hxhobn.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tQrMV .framer-styles-preset-1hxhobn:not(.rich-text-wrapper), .framer-tQrMV .framer-styles-preset-1hxhobn.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tQrMV\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nNZda\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import NumbersItem from\"#framer/local/canvasComponent/aH7yeXBVj/aH7yeXBVj.js\";import ServicesItems from\"#framer/local/canvasComponent/eSOfEPmfr/eSOfEPmfr.js\";import LogoCarousel from\"#framer/local/canvasComponent/fuxa0eFsG/fuxa0eFsG.js\";import BenefitsTodoItem from\"#framer/local/canvasComponent/GXHhJTtJc/GXHhJTtJc.js\";import ProcessItem from\"#framer/local/canvasComponent/hvQAZuTE8/hvQAZuTE8.js\";import TestimoialsItem from\"#framer/local/canvasComponent/jFWuJpyza/jFWuJpyza.js\";import UIAllItems from\"#framer/local/canvasComponent/kR2QL9FhD/kR2QL9FhD.js\";import SplashScreen from\"#framer/local/canvasComponent/llioleSC9/llioleSC9.js\";import Contact from\"#framer/local/canvasComponent/McSGfJuih/McSGfJuih.js\";import FAQQuestions from\"#framer/local/canvasComponent/MNTz_j57q/MNTz_j57q.js\";import HeaderHeader from\"#framer/local/canvasComponent/O1fMzCErz/O1fMzCErz.js\";import Logo from\"#framer/local/canvasComponent/OY8jC43hH/OY8jC43hH.js\";import UIArrowButton from\"#framer/local/canvasComponent/ozPjcS5mp/ozPjcS5mp.js\";import TeamAvatar from\"#framer/local/canvasComponent/P9ubNxmwe/P9ubNxmwe.js\";import PricingTable from\"#framer/local/canvasComponent/S_9OuWIAJ/S_9OuWIAJ.js\";import TeamItem from\"#framer/local/canvasComponent/W96ZH6Gnz/W96ZH6Gnz.js\";import UICategory from\"#framer/local/canvasComponent/wVLyqC_6X/wVLyqC_6X.js\";import ProjetcsProjectItemLight from\"#framer/local/canvasComponent/Zn0HI2r8i/Zn0HI2r8i.js\";import Project from\"#framer/local/collection/RwM1qgENQ/RwM1qgENQ.js\";import Category from\"#framer/local/collection/rXPb48_DN/rXPb48_DN.js\";import*as sharedStyle2 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle1 from\"#framer/local/css/IAEAiqtru/IAEAiqtru.js\";import*as sharedStyle6 from\"#framer/local/css/O6R2SIoIO/O6R2SIoIO.js\";import*as sharedStyle7 from\"#framer/local/css/pfYUjS6Ot/pfYUjS6Ot.js\";import*as sharedStyle8 from\"#framer/local/css/q35quwzCc/q35quwzCc.js\";import*as sharedStyle5 from\"#framer/local/css/qKzOUOhz5/qKzOUOhz5.js\";import*as sharedStyle9 from\"#framer/local/css/sw01V2bJD/sw01V2bJD.js\";import*as sharedStyle4 from\"#framer/local/css/uQRBhygQf/uQRBhygQf.js\";import*as sharedStyle from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle3 from\"#framer/local/css/zSSdVVb1R/zSSdVVb1R.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SplashScreenFonts=getFonts(SplashScreen);const HeaderHeaderFonts=getFonts(HeaderHeader);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionSectionWithFX=withFX(motion.section);const UIArrowButtonFonts=getFonts(UIArrowButton);const RichTextWithFX=withFX(RichText);const NumbersItemFonts=getFonts(NumbersItem);const MotionDivWithFX=withFX(motion.div);const LogoFonts=getFonts(Logo);const ContainerWithFX=withFX(Container);const PhosphorFonts=getFonts(Phosphor);const ImageWithFX=withFX(Image);const BenefitsTodoItemFonts=getFonts(BenefitsTodoItem);const UICategoryFonts=getFonts(UICategory);const ProjetcsProjectItemLightFonts=getFonts(ProjetcsProjectItemLight);const UIAllItemsFonts=getFonts(UIAllItems);const ServicesItemsFonts=getFonts(ServicesItems);const LogoCarouselFonts=getFonts(LogoCarousel);const TeamAvatarFonts=getFonts(TeamAvatar);const TeamItemFonts=getFonts(TeamItem);const PricingTableFonts=getFonts(PricingTable);const PricingTableWithVariantAppearEffect=withVariantAppearEffect(PricingTable);const ProcessItemFonts=getFonts(ProcessItem);const TestimoialsItemFonts=getFonts(TestimoialsItem);const FAQQuestionsFonts=getFonts(FAQQuestions);const ContactFonts=getFonts(Contact);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={p4sQvxEP4:\"(max-width: 809px)\",toDtyncsd:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-He3Um\";const variantClassNames={p4sQvxEP4:\"framer-v-233qk8\",toDtyncsd:\"framer-v-13dhfrl\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:27,delay:1.75,mass:.3,stiffness:121,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={damping:27,delay:.5,mass:.3,stiffness:121,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:27,delay:1.7,mass:.3,stiffness:121,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:27,delay:1.5,mass:.3,stiffness:121,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition5={damping:27,delay:.4,mass:.3,stiffness:121,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition6={damping:27,delay:1.33,mass:.3,stiffness:121,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transition7={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition8={damping:27,delay:1.35,mass:.3,stiffness:121,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:27,delay:.3,mass:.3,stiffness:121,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:27,delay:1.8,mass:.3,stiffness:121,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation15={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition11={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation17={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const transition12={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={delay:1.15,duration:1.2,ease:[.05,.65,.22,.96],type:\"tween\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:160};const transition14={delay:0,duration:1.2,ease:[.05,.65,.59,1],type:\"tween\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:100};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition15={bounce:.1,delay:.2,duration:1.2,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:10};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition16={damping:33,delay:0,mass:1,stiffness:180,type:\"spring\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition17={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:0,y:0};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:0,y:0};const transition18={delay:0,duration:1.6,ease:[.68,0,0,.99],type:\"tween\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:0};const transition19={delay:.1,duration:1,ease:[.68,0,0,.99],type:\"tween\"};const transition20={delay:.2,duration:1,ease:[.68,0,0,.99],type:\"tween\"};const transition21={delay:.3,duration:1,ease:[.68,0,0,.99],type:\"tween\"};const transition22={delay:.4,duration:1,ease:[.68,0,0,.99],type:\"tween\"};const transition23={delay:0,duration:1.4,ease:[.68,0,0,.99],type:\"tween\"};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:510};const transition24={delay:.08,duration:1.5,ease:[.68,0,0,.99],type:\"tween\"};const animation37={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:530};const transition25={delay:.14,duration:1.5,ease:[.68,0,0,.99],type:\"tween\"};const transition26={delay:.15,duration:1.5,ease:[.68,0,0,.99],type:\"tween\"};const animation38={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:490};const transition27={delay:.2,duration:1.5,ease:[.68,0,0,.99],type:\"tween\"};const animation39={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:570};const animation40={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:110};const animation41={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,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 animation42={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const animation43={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:-40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation44={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:7};const transition28={delay:.005,duration:.9,ease:[.44,0,.13,.96],type:\"tween\"};const textEffect={effect:animation44,repeat:false,startDelay:0,threshold:0,tokenization:\"character\",transition:transition28,trigger:\"onInView\",type:\"appear\"};const animation45={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition29={bounce:.1,delay:.4,duration:1.2,type:\"spring\"};const animation46={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition29,x:0,y:0};const transition30={bounce:.1,delay:.6,duration:1.2,type:\"spring\"};const animation47={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition30,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"p4sQvxEP4\",Tablet:\"toDtyncsd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,EvxErjRB0R1l4KJ6q9,G5Mz1FFPUR1l4KJ6q9,fcLdTQRWuR1l4KJ6q9,jjZ9ReRduR1l4KJ6q9,UoGh11fYeR1l4KJ6q9,idR1l4KJ6q9,EvxErjRB0qP1mjwHOX,G5Mz1FFPUqP1mjwHOX,fcLdTQRWuqP1mjwHOX,jjZ9ReRduqP1mjwHOX,UoGh11fYeqP1mjwHOX,idqP1mjwHOX,EvxErjRB0GfnuKxpzH,G5Mz1FFPUGfnuKxpzH,fcLdTQRWuGfnuKxpzH,jjZ9ReRduGfnuKxpzH,UoGh11fYeGfnuKxpzH,idGfnuKxpzH,EvxErjRB0rdXGgOgkR,G5Mz1FFPUrdXGgOgkR,fcLdTQRWurdXGgOgkR,jjZ9ReRdurdXGgOgkR,UoGh11fYerdXGgOgkR,idrdXGgOgkR,EvxErjRB0QgALtqtfz,G5Mz1FFPUQgALtqtfz,fcLdTQRWuQgALtqtfz,jjZ9ReRduQgALtqtfz,UoGh11fYeQgALtqtfz,idQgALtqtfz,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"p4sQvxEP4\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"toDtyncsd\",\"p4sQvxEP4\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"uhPAu4sKG\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"xS34N4gbY\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"dQ2OT4jvd\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"S6U36AThY\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1euzf18-container hidden-233qk8\",layoutScroll:true,nodeId:\"osSeHtXbN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SplashScreen,{height:\"100%\",id:\"osSeHtXbN\",layoutId:\"osSeHtXbN\",style:{height:\"100%\",width:\"100%\"},variant:\"gGCKUKlHw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation2,initial:animation3}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-fyydzk-container\",\"data-framer-appear-id\":\"fyydzk\",initial:animation1,nodeId:\"zUjl5Cw3s\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"XPCVor9Ih\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{GcgGR2ESN:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zUjl5Cw3s\",layoutId:\"zUjl5Cw3s\",style:{width:\"100%\"},variant:\"LoRRTE51b\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-18ia252 hidden-233qk8\",\"data-framer-appear-id\":\"18ia252\",\"data-framer-name\":\"Projects number\",initial:animation1,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{toDtyncsd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(17)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"96px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(17)\"})}),className:\"framer-1ft9wiu\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ojost9\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",positionX:\"58%\",positionY:\"49.8%\"},className:\"framer-fbtq8l\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa919-25\"})}),initial:animation3}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xa919-25\"})}),className:\"framer-5s8aef\",\"data-framer-appear-id\":\"5s8aef\",\"data-framer-name\":\"\\xa919-24\",fonts:[\"FS;Bebas Neue-regular\"],initial:animation6,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4wfg3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8uq1m\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlm8z3\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),viewBox:\"0 0 1177.62 384\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),className:\"framer-8xowj5\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 1177.62 342\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation10,initial:animation11}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),className:\"framer-17f7gii\",\"data-framer-appear-id\":\"17f7gii\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 1177.62 504\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation10,initial:animation11}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),className:\"framer-l0tfed\",\"data-framer-appear-id\":\"l0tfed\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 1177.62 504\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation13,initial:animation3}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-15rlu0l\",\"data-framer-appear-id\":\"15rlu0l\",\"data-framer-name\":\"Categories\",initial:animation9,optimized:true,children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yjyy3q hidden-13dhfrl hidden-233qk8\",\"data-framer-name\":\"filler\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-etaps5\",\"data-framer-name\":\"Catgories\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX/UI Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Development\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Brand Identity Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ongoing Support\"})]})},toDtyncsd:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX/UI Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Development\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Brand Identity Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ongoing Support\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX/UI Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Development\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Brand Identity Design\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ongoing Support\"})]}),className:\"framer-c1jovp\",\"data-framer-name\":\"UX/UI Design Development Brand Identity Design Ongoing Support\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8axwti\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7ihmp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation16,initial:animation3}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"             We create digital designs that help brands move faster and convert better. Your business deserves more than just a website. It needs results.\"})}),className:\"framer-1srzfh1\",\"data-framer-appear-id\":\"1srzfh1\",\"data-framer-name\":\"We create digital designs that help brands move faster and convert better. Your business deserves more than just a website. It needs results.\",fonts:[\"Inter\"],initial:animation15,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8tsb6 hidden-233qk8\",\"data-framer-name\":\"Filler\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmi8eo\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{viewBox:\"0 0 2595.62 491\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Studio\"})}),className:\"framer-1po5jnl\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 2595.62 342\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation18,initial:animation11}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Studio\"})}),className:\"framer-skcre\",\"data-framer-appear-id\":\"skcre\",fonts:[\"Inter-Bold\"],initial:animation17,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 2595.62 512\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation18,initial:animation11}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"427px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Studio\"})}),className:\"framer-13h7p30\",\"data-framer-appear-id\":\"13h7p30\",fonts:[\"Inter-Bold\"],initial:animation17,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 2595.62 512\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+700-700),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"}},toDtyncsd:{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+900-900),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:2,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+1e3-1e3),pixelHeight:150,pixelWidth:150,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/WXwwArEbCEXxVkbbiaI5FD2o.png\"},className:\"framer-22mi0a\",\"data-framer-name\":\"noise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation21,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:1500,pixelWidth:2500,positionX:\"59.6%\",positionY:\"50%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg\",srcSet:\"https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg 2500w\"},initial:animation22}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation19,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:1500,pixelWidth:2500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg\",srcSet:\"https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MRuoFuMbnw5FFImDwyAVxU4sYs.jpg 2500w\"},className:\"framer-1tl276o\",\"data-framer-appear-id\":\"1tl276o\",\"data-framer-name\":\"BG\",initial:animation20,optimized:true})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7wclla\",\"data-framer-name\":\"Numbers\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cu0ogy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7u8fwv\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+700+50+0+0+0+0+76.6},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+900+120+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63ob45-container\",nodeId:\"EJhWJXtz7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks[0],height:\"100%\",id:\"EJhWJXtz7\",layoutId:\"EJhWJXtz7\",NeQkVIvJM:\"Let\u2019s talk\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1szlu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\"})}),className:\"framer-5hxscb\",\"data-framer-name\":\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tn9b2u\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+700+50+0+0+137.6+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+900+120+0+0+120.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135b06k-container\",nodeId:\"uKIp8RF8y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:100,ezNYwgiIW:\"Websites launched\",height:\"100%\",id:\"uKIp8RF8y\",layoutId:\"uKIp8RF8y\",MTE4RiHaV:\"Helping brands make their mark online.\",OhLeOem3o:80,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+700+50+0+0+137.6+0+258},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+900+120+0+0+120.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bof1so-container\",nodeId:\"yTnHgnGCA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:15,ezNYwgiIW:\"Major projects\",height:\"100%\",id:\"yTnHgnGCA\",layoutId:\"yTnHgnGCA\",MTE4RiHaV:\"Our designs engage millions globally.\",OhLeOem3o:80,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+700+50+0+0+137.6+0+516},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+900+120+0+0+120.6+0+262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zt7bn-container\",nodeId:\"cimfQ68Io\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:98,ezNYwgiIW:\"Client satisfaction rate\",height:\"100%\",id:\"cimfQ68Io\",layoutId:\"cimfQ68Io\",MTE4RiHaV:\"We build long-term partnerships through proven results.\",OhLeOem3o:15,style:{width:\"100%\"},uvfNqUND5:\"%\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:(componentViewport?.y||0)+0+0+0+700+50+0+0+137.6+0+774},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+900+120+0+0+120.6+0+262}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asny8-container\",nodeId:\"xbfCL0csL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:10,ezNYwgiIW:\"Years of expertise\",height:\"100%\",id:\"xbfCL0csL\",layoutId:\"xbfCL0csL\",MTE4RiHaV:\"Decades of experience in delivering impactful digital solutions.\",OhLeOem3o:150,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})})]})]})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1p8js24\",\"data-framer-name\":\"Description\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-zs3m79\",\"data-framer-name\":\"Img\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"175.65770834052694px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"From ordinary\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"175.65770834052694px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"to extraordinary\"})]}),viewBox:\"0 0 1199.5394625004317 351\",viewBoxScale:.86}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"175.65770834052694px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"94%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"From ordinary\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"175.65770834052694px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"94%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"to extraordinary\"})]}),className:\"framer-1fgrdxc\",fonts:[\"Inter-SemiBold\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 1199.5394625004317 330\",viewBoxScale:.82,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:160}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-llm233\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Black cosmetic product bottle against a dark background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1953.6+0+0+0+0+0),pixelHeight:888,pixelWidth:1284,sizes:`min(${componentViewport?.width||\"100vw\"}, 1848px)`,src:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png\",srcSet:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png 1284w\"}},toDtyncsd:{background:{alt:\"Black cosmetic product bottle against a dark background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1764.6+0+0+0+0+0),pixelHeight:888,pixelWidth:1284,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1848px) / 2)`,src:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png\",srcSet:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Black cosmetic product bottle against a dark background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1792.6+0+0+0+0+0),pixelHeight:888,pixelWidth:1284,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1848px) / 2)`,src:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png\",srcSet:\"https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dh4i1WAoPhLd6gkszCg03UmsVQ.png 1284w\"},className:\"framer-p2fn6x\",\"data-framer-name\":\"BG\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-egi9db\",\"data-border\":true,\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1detlqp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nr51yd\",\"data-border\":true,\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Design that\u2019s built to last and grow with your business\"})}),className:\"framer-fa8y8x\",\"data-framer-name\":\"Design that\u2019s built to last and grow with your business\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+1953.6+0+430+0+0+40+-3},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+1764.6+0+430+0+0+80+-43}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+1792.6+0+430+0+0+110+-98,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rc7biq-container\",nodeId:\"ffqskGUQL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{bkkXyXBrz:\"0px 0px 0px 11px\",C1iAXOkn1:40}},children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px 0px 0px 16px\",C1iAXOkn1:50,height:\"100%\",id:\"ffqskGUQL\",layoutId:\"ffqskGUQL\",V3Qt9yDai:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ae63dj\",\"data-border\":true,\"data-framer-name\":\"Arrow\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hbmua5\",\"data-framer-name\":\"Ellipse\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eghmoe-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ws3N7VE4Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"arrow-down\",iconSelection:\"House\",id:\"Ws3N7VE4Y\",layoutId:\"Ws3N7VE4Y\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-ksawuv\",\"data-framer-name\":\"Benefits\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ragvoy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation25,__framer__exit:animation26,__framer__threshold:0}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qndxqu\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",children:\"Your goals, our priority\"})}),className:\"framer-ry550e\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\"})}),className:\"framer-1kb0su\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation28,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16nelpw\",\"data-framer-name\":\"Grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mctc4k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-r0aubq\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__enter:animation31,__framer__targets:undefined,background:{alt:\"Two hands in an elegant gesture, one above the other, against a dark background\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+0+40+0),pixelHeight:534,pixelWidth:671,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,src:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png\",srcSet:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png 671w\"}},toDtyncsd:{background:{alt:\"Two hands in an elegant gesture, one above the other, against a dark background\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+40+0),pixelHeight:534,pixelWidth:671,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png\",srcSet:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png 671w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation30,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Two hands in an elegant gesture, one above the other, against a dark background\",fit:\"fill\",intrinsicHeight:534,intrinsicWidth:671,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+0),pixelHeight:534,pixelWidth:671,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px)`,src:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png\",srcSet:\"https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lpb2prDXL2p8hnnWcYXnIO6f0Q.png 671w\"},className:\"framer-18hef2e\",\"data-framer-name\":\"Hands\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fyhbjy\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"24/7 priority care\"})}),className:\"framer-125eqsu\",\"data-framer-name\":\"24/7 priority care\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:[\"Receive priority treatment for urgent tasks, with an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"average response time of 24 hours \"}),\"for high-priority clients.\"]})}),className:\"framer-1osdfza\",\"data-framer-name\":\"Receive priority treatment for urgent tasks, with an average response time of 24 hours for high-priority clients.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",backgroundSize:1.88,fit:\"tile\",intrinsicHeight:475,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+0+-.0096),pixelHeight:475,pixelWidth:911,positionX:\"left\",positionY:\"top\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) * 0.9991)`,src:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg\",srcSet:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg 911w\"}},toDtyncsd:{background:{alt:\"\",backgroundSize:1.88,fit:\"tile\",intrinsicHeight:475,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+-.0174),pixelHeight:475,pixelWidth:911,positionX:\"left\",positionY:\"top\",sizes:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) * 0.9991)`,src:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg\",srcSet:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg 911w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.88,fit:\"tile\",intrinsicHeight:475,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+-.0177),pixelHeight:475,pixelWidth:911,positionX:\"left\",positionY:\"top\",sizes:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) * 0.9991)`,src:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg\",srcSet:\"https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/febsTulDmLM5GKKVYjsE85lLAk.svg 911w\"},className:\"framer-i3tpor\",\"data-framer-name\":\"Dots\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1488row\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-y9uiq1\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ttjwx6\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Tailored tweaks for perfection\"})}),className:\"framer-1jzqj4p\",\"data-framer-name\":\"24/7 priority care\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:[\"Request custom revisions at any time. We provide \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"up to 5 minor revisions\"}),\" post-launch to keep things looking fresh.\"]})}),className:\"framer-1pt9tp8\",\"data-framer-name\":\"Receive priority treatment for urgent tasks, with an average response time of 24 hours for high-priority clients.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xhy6u8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o8mgwa\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/2AYuIsYxoyH0AB4UH3OZXNPNbAo.jpg\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/2AYuIsYxoyH0AB4UH3OZXNPNbAo.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation32,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/2AYuIsYxoyH0AB4UH3OZXNPNbAo.jpg\"},className:\"framer-1v9d61s\",\"data-border\":true,\"data-framer-name\":\"Rectangle 22\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/o8dFjBzWHUDItoXVX8r1Ndzlk.jpg\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/o8dFjBzWHUDItoXVX8r1Ndzlk.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation32,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/o8dFjBzWHUDItoXVX8r1Ndzlk.jpg\"},className:\"framer-qr8233\",\"data-border\":true,\"data-framer-name\":\"Rectangle 23\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/0pDtIhqRHGNuPAzd4BSRF7WMlXk.jpg\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/0pDtIhqRHGNuPAzd4BSRF7WMlXk.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation32,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/0pDtIhqRHGNuPAzd4BSRF7WMlXk.jpg\"},className:\"framer-szi60v\",\"data-border\":true,\"data-framer-name\":\"Rectangle 24\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/EagZOs8hT2OPs3zEGfOxlGf3Bc8.jpg\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/EagZOs8hT2OPs3zEGfOxlGf3Bc8.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation32,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+0+0),pixelHeight:63,pixelWidth:63,src:\"https://framerusercontent.com/images/EagZOs8hT2OPs3zEGfOxlGf3Bc8.jpg\"},className:\"framer-1mztxhn\",\"data-border\":true,\"data-framer-name\":\"Rectangle 25\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation33,__framer__targets:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u6b2j0\",\"data-framer-name\":\"Requests\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176kxt8\",\"data-framer-name\":\"Frame 117\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(11, 11, 12)\"},children:\"Post-Launch requests \"})}),className:\"framer-10dewtd\",\"data-framer-name\":\"Post-Launch requests\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ast2h5\",\"data-border\":true,\"data-framer-name\":\"Frame 116\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) - 114px)`,y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+58+28+0+0+144+0+0},toDtyncsd:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) - 122px)`,y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+60+28+0+0+146+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) - 134px)`,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+60+28+0+0+146+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13g744w-container\",nodeId:\"f0rmH1cLE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitsTodoItem,{gEVq5jg55:\"Align text margins properly\",height:\"100%\",id:\"f0rmH1cLE\",layoutId:\"f0rmH1cLE\",style:{width:\"100%\"},variant:\"Sj07mdZne\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) - 114px)`,y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+58+28+0+0+144+0+28},toDtyncsd:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) - 122px)`,y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+60+28+0+0+146+0+28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) - 134px)`,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+60+28+0+0+146+0+28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dcup3j-container\",nodeId:\"s9HjEeUL7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitsTodoItem,{gEVq5jg55:\"Increase mobile menu font size\",height:\"100%\",id:\"s9HjEeUL7\",layoutId:\"s9HjEeUL7\",style:{width:\"100%\"},variant:\"Sj07mdZne\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) - 114px)`,y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+58+28+0+0+144+0+56},toDtyncsd:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) - 122px)`,y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+60+28+0+0+146+0+56}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) - 134px)`,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+60+28+0+0+146+0+56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h1vef-container\",nodeId:\"ODlPnjpTs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitsTodoItem,{gEVq5jg55:\"Replace images\",height:\"100%\",id:\"ODlPnjpTs\",layoutId:\"ODlPnjpTs\",style:{width:\"100%\"},variant:\"Sj07mdZne\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) - 114px)`,y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+58+28+0+0+144+0+84},toDtyncsd:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) - 122px)`,y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+60+28+0+0+146+0+84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) - 134px)`,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+60+28+0+0+146+0+84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1js80nn-container\",nodeId:\"gi3yjWpfY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitsTodoItem,{gEVq5jg55:\"Fix button color: #F9452D\",height:\"100%\",id:\"gi3yjWpfY\",layoutId:\"gi3yjWpfY\",style:{width:\"100%\"},variant:\"wJVFvI_co\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px) - 114px)`,y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+452.8+30+173.8+0+58+28+0+0+144+0+112},toDtyncsd:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px) - 122px)`,y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+0+34+179.8+0+60+28+0+0+146+0+112}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px) - 134px)`,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+179.8+0+60+28+0+0+146+0+112,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hm7ved-container\",nodeId:\"xYN8TQ7mt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BenefitsTodoItem,{gEVq5jg55:\"Speed up page loading\",height:\"100%\",id:\"xYN8TQ7mt\",layoutId:\"xYN8TQ7mt\",style:{width:\"100%\"},variant:\"wJVFvI_co\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w71me8\",\"data-framer-name\":\"Valid\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d6sixz\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\">\\n<path d=\"M14.625 2.25012H12.9375V1.68762C12.9375 1.53844 12.8782 1.39536 12.7727 1.28987C12.6673 1.18439 12.5242 1.12512 12.375 1.12512C12.2258 1.12512 12.0827 1.18439 11.9773 1.28987C11.8718 1.39536 11.8125 1.53844 11.8125 1.68762V2.25012H6.1875V1.68762C6.1875 1.53844 6.12824 1.39536 6.02275 1.28987C5.91726 1.18439 5.77418 1.12512 5.625 1.12512C5.47582 1.12512 5.33274 1.18439 5.22725 1.28987C5.12176 1.39536 5.0625 1.53844 5.0625 1.68762V2.25012H3.375C3.07663 2.25012 2.79048 2.36865 2.5795 2.57963C2.36853 2.79061 2.25 3.07675 2.25 3.37512V14.6251C2.25 14.9235 2.36853 15.2096 2.5795 15.4206C2.79048 15.6316 3.07663 15.7501 3.375 15.7501H14.625C14.9234 15.7501 15.2095 15.6316 15.4205 15.4206C15.6315 15.2096 15.75 14.9235 15.75 14.6251V3.37512C15.75 3.07675 15.6315 2.79061 15.4205 2.57963C15.2095 2.36865 14.9234 2.25012 14.625 2.25012ZM5.0625 3.37512V3.93762C5.0625 4.08681 5.12176 4.22988 5.22725 4.33537C5.33274 4.44086 5.47582 4.50012 5.625 4.50012C5.77418 4.50012 5.91726 4.44086 6.02275 4.33537C6.12824 4.22988 6.1875 4.08681 6.1875 3.93762V3.37512H11.8125V3.93762C11.8125 4.08681 11.8718 4.22988 11.9773 4.33537C12.0827 4.44086 12.2258 4.50012 12.375 4.50012C12.5242 4.50012 12.6673 4.44086 12.7727 4.33537C12.8782 4.22988 12.9375 4.08681 12.9375 3.93762V3.37512H14.625V5.62512H3.375V3.37512H5.0625ZM14.625 14.6251H3.375V6.75012H14.625V14.6251ZM9.84375 9.28137C9.84375 9.44825 9.79426 9.61138 9.70155 9.75013C9.60884 9.88889 9.47706 9.99703 9.32289 10.0609C9.16871 10.1248 8.99906 10.1415 8.83539 10.1089C8.67172 10.0764 8.52138 9.99599 8.40338 9.87799C8.28538 9.75999 8.20502 9.60965 8.17246 9.44598C8.13991 9.28231 8.15662 9.11266 8.22048 8.95848C8.28434 8.80431 8.39248 8.67253 8.53124 8.57982C8.66999 8.48711 8.83312 8.43762 9 8.43762C9.22378 8.43762 9.43839 8.52652 9.59662 8.68475C9.75485 8.84298 9.84375 9.0576 9.84375 9.28137ZM12.9375 9.28137C12.9375 9.44825 12.888 9.61138 12.7953 9.75013C12.7026 9.88889 12.5708 9.99703 12.4166 10.0609C12.2625 10.1248 12.0928 10.1415 11.9291 10.1089C11.7655 10.0764 11.6151 9.99599 11.4971 9.87799C11.3791 9.75999 11.2988 9.60965 11.2662 9.44598C11.2337 9.28231 11.2504 9.11266 11.3142 8.95848C11.3781 8.80431 11.4862 8.67253 11.625 8.57982C11.7637 8.48711 11.9269 8.43762 12.0938 8.43762C12.3175 8.43762 12.5321 8.52652 12.6904 8.68475C12.8486 8.84298 12.9375 9.0576 12.9375 9.28137ZM6.75 12.0939C6.75 12.2608 6.70052 12.4239 6.6078 12.5626C6.51509 12.7014 6.38331 12.8095 6.22914 12.8734C6.07496 12.9373 5.90531 12.954 5.74164 12.9214C5.57797 12.8889 5.42763 12.8085 5.30963 12.6905C5.19163 12.5725 5.11127 12.4222 5.07871 12.2585C5.04616 12.0948 5.06287 11.9252 5.12673 11.771C5.19059 11.6168 5.29873 11.485 5.43749 11.3923C5.57624 11.2996 5.73937 11.2501 5.90625 11.2501C6.13003 11.2501 6.34464 11.339 6.50287 11.4973C6.66111 11.6555 6.75 11.8701 6.75 12.0939ZM9.84375 12.0939C9.84375 12.2608 9.79426 12.4239 9.70155 12.5626C9.60884 12.7014 9.47706 12.8095 9.32289 12.8734C9.16871 12.9373 8.99906 12.954 8.83539 12.9214C8.67172 12.8889 8.52138 12.8085 8.40338 12.6905C8.28538 12.5725 8.20502 12.4222 8.17246 12.2585C8.13991 12.0948 8.15662 11.9252 8.22048 11.771C8.28434 11.6168 8.39248 11.485 8.53124 11.3923C8.66999 11.2996 8.83312 11.2501 9 11.2501C9.22378 11.2501 9.43839 11.339 9.59662 11.4973C9.75485 11.6555 9.84375 11.8701 9.84375 12.0939ZM12.9375 12.0939C12.9375 12.2608 12.888 12.4239 12.7953 12.5626C12.7026 12.7014 12.5708 12.8095 12.4166 12.8734C12.2625 12.9373 12.0928 12.954 11.9291 12.9214C11.7655 12.8889 11.6151 12.8085 11.4971 12.6905C11.3791 12.5725 11.2988 12.4222 11.2662 12.2585C11.2337 12.0948 11.2504 11.9252 11.3142 11.771C11.3781 11.6168 11.4862 11.485 11.625 11.3923C11.7637 11.2996 11.9269 11.2501 12.0938 11.2501C12.3175 11.2501 12.5321 11.339 12.6904 11.4973C12.8486 11.6555 12.9375 11.8701 12.9375 12.0939Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\"},children:\"Valid for 3 months after launch\"})}),className:\"framer-18j8ur9\",\"data-framer-name\":\"Valid for 3 months after launch\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-osxu8x\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12khblq\",\"data-framer-name\":\"line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dahfcy\",\"data-framer-name\":\"line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nfsuki\",\"data-framer-name\":\"line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hyqh9k\",\"data-framer-name\":\"line\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfarcv\",\"data-framer-name\":\"Continer\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation34,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-py83wg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hxhobn\",\"data-styles-preset\":\"qKzOUOhz5\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Download brand kit\"})}),className:\"framer-1ok0s9y\",\"data-framer-name\":\"Download brand kit\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvrkh\",\"data-framer-name\":\"Icons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fqo9ae-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TcfG07Pif\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"folders\",iconSelection:\"House\",id:\"TcfG07Pif\",layoutId:\"TcfG07Pif\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m7cp88-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xFobH2sFR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"eyedropper\",iconSelection:\"House\",id:\"xFobH2sFR\",layoutId:\"xFobH2sFR\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mpb4p7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h7WOaTIpv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"images-square\",iconSelection:\"House\",id:\"h7WOaTIpv\",layoutId:\"h7WOaTIpv\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mj2nyf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MnN0Icbd4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"text-aa\",iconSelection:\"House\",id:\"MnN0Icbd4\",layoutId:\"MnN0Icbd4\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rl31yc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OfYy1A_Ca\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"text-outdent\",iconSelection:\"House\",id:\"OfYy1A_Ca\",layoutId:\"OfYy1A_Ca\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-an8474-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"i25K_vuLc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"stack\",iconSelection:\"House\",id:\"i25K_vuLc\",layoutId:\"i25K_vuLc\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation35,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o6g5r9\",\"data-border\":true,\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t9ynj0\",\"data-framer-name\":\"Ellipse\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ygnxxm\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"26\" viewBox=\"0 0 34 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.875 13.0001C33.8821 15.6793 33.0129 18.2873 31.4 20.4265C31.3112 20.5447 31.1999 20.6442 31.0726 20.7195C30.9453 20.7947 30.8045 20.844 30.6581 20.8648C30.5117 20.8856 30.3627 20.8773 30.2195 20.8405C30.0763 20.8036 29.9418 20.7389 29.8236 20.6501C29.7054 20.5613 29.6059 20.4501 29.5307 20.3228C29.4555 20.1955 29.4061 20.0546 29.3853 19.9082C29.3645 19.7618 29.3728 19.6128 29.4097 19.4696C29.4465 19.3264 29.5112 19.1919 29.6 19.0737C30.9202 17.3247 31.6314 15.1915 31.625 13.0001C31.625 10.3148 30.5583 7.73947 28.6594 5.84066C26.7606 3.94185 24.1853 2.87512 21.5 2.87512C18.8147 2.87512 16.2393 3.94185 14.3405 5.84066C12.4417 7.73947 11.375 10.3148 11.375 13.0001C11.375 13.2985 11.2565 13.5846 11.0455 13.7956C10.8345 14.0066 10.5484 14.1251 10.25 14.1251C9.95162 14.1251 9.66548 14.0066 9.4545 13.7956C9.24352 13.5846 9.12499 13.2985 9.12499 13.0001C9.12444 11.8648 9.28012 10.7348 9.58765 9.64199C9.43437 9.62512 9.27968 9.62512 9.12499 9.62512C7.33478 9.62512 5.61789 10.3363 4.35202 11.6021C3.08615 12.868 2.37499 14.5849 2.37499 16.3751C2.37499 18.1653 3.08615 19.8822 4.35202 21.1481C5.61789 22.414 7.33478 23.1251 9.12499 23.1251H12.5C12.7984 23.1251 13.0845 23.2436 13.2955 23.4546C13.5065 23.6656 13.625 23.9517 13.625 24.2501C13.625 24.5485 13.5065 24.8346 13.2955 25.0456C13.0845 25.2566 12.7984 25.3751 12.5 25.3751H9.12499C7.88774 25.3754 6.66371 25.1206 5.52937 24.6266C4.39502 24.1325 3.37471 23.41 2.53217 22.5039C1.68963 21.5979 1.04296 20.5278 0.632533 19.3606C0.222108 18.1934 0.0567506 16.9541 0.146788 15.7202C0.236826 14.4862 0.580325 13.284 1.15583 12.1888C1.73134 11.0935 2.52649 10.1287 3.49163 9.35454C4.45676 8.58039 5.57115 8.01355 6.7652 7.68943C7.95924 7.36531 9.20729 7.29086 10.4314 7.47074C11.6779 4.97768 13.7295 2.97844 16.254 1.79685C18.7785 0.615257 21.6279 0.320518 24.3408 0.960374C27.0537 1.60023 29.4711 3.1372 31.2015 5.32234C32.9319 7.50748 33.8739 10.2128 33.875 13.0001ZM24.0791 18.9542L21.5 21.5346V13.0001C21.5 12.7017 21.3815 12.4156 21.1705 12.2046C20.9595 11.9936 20.6734 11.8751 20.375 11.8751C20.0766 11.8751 19.7905 11.9936 19.5795 12.2046C19.3685 12.4156 19.25 12.7017 19.25 13.0001V21.5346L16.6709 18.9542C16.4598 18.7431 16.1735 18.6245 15.875 18.6245C15.5765 18.6245 15.2901 18.7431 15.0791 18.9542C14.868 19.1653 14.7494 19.4516 14.7494 19.7501C14.7494 20.0487 14.868 20.335 15.0791 20.5461L19.5791 25.0461C19.6835 25.1507 19.8076 25.2336 19.9442 25.2902C20.0808 25.3469 20.2272 25.376 20.375 25.376C20.5228 25.376 20.6692 25.3469 20.8058 25.2902C20.9424 25.2336 21.0664 25.1507 21.1709 25.0461L25.6709 20.5461C25.882 20.335 26.0006 20.0487 26.0006 19.7501C26.0006 19.4516 25.882 19.1653 25.6709 18.9542C25.4598 18.7431 25.1735 18.6245 24.875 18.6245C24.5765 18.6245 24.2902 18.7431 24.0791 18.9542Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1955q7q\",\"data-framer-name\":\"Counter\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"},children:\"6\"})}),className:\"framer-14ovlnh\",\"data-framer-name\":\"6\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__targets:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation27,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jfy36t\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Brand kit at your fingertips\"})}),className:\"framer-1lls29p\",\"data-framer-name\":\"24/7 priority care\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:[\"Receive a full branding toolkit, from logos to color schemes and typography, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"download all assets\"}),\" or share them with your team.\"]})}),className:\"framer-wnw27b\",\"data-framer-name\":\"Receive priority treatment for urgent tasks, with an average response time of 24 hours for high-priority clients.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{background:{alt:\"\",fit:\"fill\"},className:\"framer-17ms6gs\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ht1g3j\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation33,__framer__targets:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation36,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10:45\"})}),className:\"framer-1o4dk07\",\"data-framer-name\":\"10:45\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u0o9ya\",\"data-framer-name\":\"Notifications\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ml6g1f\",\"data-framer-name\":\"Notification\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation37,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uurzh0\",\"data-framer-name\":\"Bubble\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31emch\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+1765.6+120+0+0+103.2+0+0+0+16+0+32.9),src:\"https://framerusercontent.com/images/IOGg7ZpaneY0TlHE5oJ2WoVALk4.jpg\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+802.8+40+108.8+0+108.2+0+0+0+16+0+32.9),src:\"https://framerusercontent.com/images/IOGg7ZpaneY0TlHE5oJ2WoVALk4.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+80.8+0+118.2+0+0+0+16+0+32.9),src:\"https://framerusercontent.com/images/IOGg7ZpaneY0TlHE5oJ2WoVALk4.jpg\"},className:\"framer-14eheuv\",\"data-framer-name\":\"img\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yo823b\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asc0t1\",\"data-framer-name\":\"Sender\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(11, 11, 12)\"},children:\"Designer\"})}),className:\"framer-1naulfj\",\"data-framer-name\":\"Designer\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(17, 17, 18)\"},children:\"Today 09:17\"})}),className:\"framer-akxuec\",\"data-framer-name\":\"Today 09:17\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hxhobn\",\"data-styles-preset\":\"qKzOUOhz5\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Logo update complete, ready for your review!\"})}),className:\"framer-1xbmym3\",\"data-framer-name\":\"Logo update complete, ready for your review!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition26},__framer__animateOnce:true,__framer__enter:animation37,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q0gjr6\",\"data-framer-name\":\"Bubble\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition27},__framer__animateOnce:true,__framer__enter:animation38,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gjdrgu\",\"data-framer-name\":\"Logo text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+1765.6+120+0+0+103.2+0+202.8+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+802.8+40+108.8+0+108.2+0+212.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+40+80.8+0+118.2+0+232.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h10jq8-container\",nodeId:\"S0c9Fi_ve\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{C1iAXOkn1:46}},children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",C1iAXOkn1:50,height:\"100%\",id:\"S0c9Fi_ve\",layoutId:\"S0c9Fi_ve\",V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Real-Time\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Support\"})]}),className:\"framer-nxl0gz\",\"data-framer-name\":\"Real-Time Support\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation33,__framer__targets:undefined,__framer__threshold:0,background:{alt:\"\",fit:\"fill\",intrinsicHeight:845,intrinsicWidth:525,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+1765.6+739-479.6381),pixelHeight:845,pixelWidth:525,sizes:\"298px\",src:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png\",srcSet:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png 525w\"}},toDtyncsd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:845,intrinsicWidth:525,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+802.8+782.8-531.1429),pixelHeight:845,pixelWidth:525,sizes:\"330px\",src:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png\",srcSet:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png 525w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation39,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:845,intrinsicWidth:525,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+794.8-555.2857),pixelHeight:845,pixelWidth:525,sizes:\"345px\",src:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png\",srcSet:\"https://framerusercontent.com/images/zqhjvenuB6JlWRw3MCGzn16Xs.png 525w\"},className:\"framer-8zvxo6\",\"data-framer-name\":\"Iphone\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation33,__framer__targets:undefined,__framer__threshold:0,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation39,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lwr0ib\",\"data-framer-name\":\"blur\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yp5xru\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__enter:animation41,__framer__targets:undefined,background:{alt:\"Close-up portrait with neutral expression and light hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2383.6+90+0+0+285.52+0+0+1765.6+0),pixelHeight:748,pixelWidth:537,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,src:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg\",srcSet:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg 537w\"}},toDtyncsd:{background:{alt:\"Close-up portrait with neutral expression and light hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2194.6+130+0+0+343.52+0+0+802.8+0),pixelHeight:748,pixelWidth:537,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px), 1px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg\",srcSet:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg 537w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation40,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Close-up portrait with neutral expression and light hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2222.6+200+0+0+373.52+0+0+0+0),pixelHeight:748,pixelWidth:537,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px), 1px) - 60px) / 4, 50px)`,src:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg\",srcSet:\"https://framerusercontent.com/images/Ttm9L1HJZLgD0GMqwHKZ0YOw.jpg 537w\"},className:\"framer-11vjexa\",\"data-framer-name\":\"BG\"})})]})})]})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4sxcx1\",\"data-framer-name\":\"Work\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysebzx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation25,__framer__exit:undefined,__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.3,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xkr3by\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hvxmsu\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+0+0+0+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s8xeto-container\",nodeId:\"SuUBnbi8u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UICategory,{ce3V1WO4y:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",height:\"100%\",id:\"SuUBnbi8u\",layoutId:\"SuUBnbi8u\",N3gNITbco:\"Selected work\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"Proven results,\"}),/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-color\":\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},children:\"stunning designs\"})]}),className:\"framer-1y2l0wz\",\"data-framer-name\":\"Proven results, stunning designs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f7rx9a\",\"data-styles-preset\":\"O6R2SIoIO\",children:\"2K24\"})}),className:\"framer-1u6laj4\",\"data-framer-name\":\"2K24\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uud8ad\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0q7ac\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:250}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x35gf1\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1odsxbf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"R1l4KJ6q9\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"R1l4KJ6q9\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"R1l4KJ6q9\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"R1l4KJ6q9\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"R1l4KJ6q9\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"R1l4KJ6q9\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"R1l4KJ6q9\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"R1l4KJ6q9\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({EvxErjRB0:EvxErjRB0R1l4KJ6q9,fcLdTQRWu:fcLdTQRWuR1l4KJ6q9,G5Mz1FFPU:G5Mz1FFPUR1l4KJ6q9,id:idR1l4KJ6q9,jjZ9ReRdu:jjZ9ReRduR1l4KJ6q9,UoGh11fYe:UoGh11fYeR1l4KJ6q9},index)=>{EvxErjRB0R1l4KJ6q9??=\"\";fcLdTQRWuR1l4KJ6q9??=\"\";jjZ9ReRduR1l4KJ6q9??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`R1l4KJ6q9-${idR1l4KJ6q9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0R1l4KJ6q9},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0R1l4KJ6q9},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"eAbvI3qjb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16jjfzu framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+0+0+0+0+0+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zfzidc-container\",nodeId:\"LJDuLqREP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"b1SQmw_vc\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItemLight,{Amt5RCa4w:fcLdTQRWuR1l4KJ6q9,EDyjka_tA:\"0px\",Evwde5RGu:UoGh11fYeR1l4KJ6q9,height:\"100%\",id:\"LJDuLqREP\",layoutId:\"LJDuLqREP\",style:{width:\"100%\"},variant:\"dk79TZPmR\",width:\"100%\",y1k3Le1PS:jjZ9ReRduR1l4KJ6q9,zlwOopuYm:toResponsiveImage(G5Mz1FFPUR1l4KJ6q9)})})})})})})})})},idR1l4KJ6q9);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1l01njr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qP1mjwHOX\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"qP1mjwHOX\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"qP1mjwHOX\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"qP1mjwHOX\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"qP1mjwHOX\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"qP1mjwHOX\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"qP1mjwHOX\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"qP1mjwHOX\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({EvxErjRB0:EvxErjRB0qP1mjwHOX,fcLdTQRWu:fcLdTQRWuqP1mjwHOX,G5Mz1FFPU:G5Mz1FFPUqP1mjwHOX,id:idqP1mjwHOX,jjZ9ReRdu:jjZ9ReRduqP1mjwHOX,UoGh11fYe:UoGh11fYeqP1mjwHOX},index1)=>{EvxErjRB0qP1mjwHOX??=\"\";fcLdTQRWuqP1mjwHOX??=\"\";jjZ9ReRduqP1mjwHOX??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qP1mjwHOX-${idqP1mjwHOX}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0qP1mjwHOX},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0qP1mjwHOX},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"mE3Pl7MVw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xr3l9 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+0+0+0+0+544+0+0+0+0},toDtyncsd:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px) * 0.74)`,y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px) * 0.66)`,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10sba47-container\",nodeId:\"steHO1FQ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"b1SQmw_vc\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItemLight,{Amt5RCa4w:fcLdTQRWuqP1mjwHOX,EDyjka_tA:\"0px\",Evwde5RGu:UoGh11fYeqP1mjwHOX,height:\"100%\",id:\"steHO1FQ0\",layoutId:\"steHO1FQ0\",style:{width:\"100%\"},variant:\"dk79TZPmR\",width:\"100%\",y1k3Le1PS:jjZ9ReRduqP1mjwHOX,zlwOopuYm:toResponsiveImage(G5Mz1FFPUqP1mjwHOX)})})})})})})})})},idqP1mjwHOX);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3x7hh\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dlnmo2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GfnuKxpzH\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"GfnuKxpzH\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"GfnuKxpzH\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"GfnuKxpzH\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"GfnuKxpzH\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"GfnuKxpzH\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"GfnuKxpzH\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"GfnuKxpzH\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({EvxErjRB0:EvxErjRB0GfnuKxpzH,fcLdTQRWu:fcLdTQRWuGfnuKxpzH,G5Mz1FFPU:G5Mz1FFPUGfnuKxpzH,id:idGfnuKxpzH,jjZ9ReRdu:jjZ9ReRduGfnuKxpzH,UoGh11fYe:UoGh11fYeGfnuKxpzH},index2)=>{EvxErjRB0GfnuKxpzH??=\"\";fcLdTQRWuGfnuKxpzH??=\"\";jjZ9ReRduGfnuKxpzH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GfnuKxpzH-${idGfnuKxpzH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0GfnuKxpzH},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0GfnuKxpzH},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"SCLMZzzI1\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r6ii73 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+0+0+1092+0+0+0+0+0+0},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+0+0+584+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`calc(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) / 2)`,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+0+0+644+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1358vfw-container\",nodeId:\"boFVEpKmI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"b1SQmw_vc\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItemLight,{Amt5RCa4w:fcLdTQRWuGfnuKxpzH,EDyjka_tA:\"0px\",Evwde5RGu:UoGh11fYeGfnuKxpzH,height:\"100%\",id:\"boFVEpKmI\",layoutId:\"boFVEpKmI\",style:{width:\"100%\"},variant:\"dk79TZPmR\",width:\"100%\",y1k3Le1PS:jjZ9ReRduGfnuKxpzH,zlwOopuYm:toResponsiveImage(G5Mz1FFPUGfnuKxpzH)})})})})})})})})},idGfnuKxpzH);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qi15zk\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tmox7z\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rdXGgOgkR\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"rdXGgOgkR\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"rdXGgOgkR\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"rdXGgOgkR\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"rdXGgOgkR\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"rdXGgOgkR\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"rdXGgOgkR\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"rdXGgOgkR\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({EvxErjRB0:EvxErjRB0rdXGgOgkR,fcLdTQRWu:fcLdTQRWurdXGgOgkR,G5Mz1FFPU:G5Mz1FFPUrdXGgOgkR,id:idrdXGgOgkR,jjZ9ReRdu:jjZ9ReRdurdXGgOgkR,UoGh11fYe:UoGh11fYerdXGgOgkR},index3)=>{EvxErjRB0rdXGgOgkR??=\"\";fcLdTQRWurdXGgOgkR??=\"\";jjZ9ReRdurdXGgOgkR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`rdXGgOgkR-${idrdXGgOgkR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0rdXGgOgkR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0rdXGgOgkR},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"DtumFkO7C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n7n394 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+0+0+1640+0+0+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+0+0+1168+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+0+0+1288+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19qpvzs-container\",nodeId:\"C368C7LD1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"b1SQmw_vc\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItemLight,{Amt5RCa4w:fcLdTQRWurdXGgOgkR,EDyjka_tA:\"0px\",Evwde5RGu:UoGh11fYerdXGgOgkR,height:\"100%\",id:\"C368C7LD1\",layoutId:\"C368C7LD1\",style:{width:\"100%\"},variant:\"dk79TZPmR\",width:\"100%\",y1k3Le1PS:jjZ9ReRdurdXGgOgkR,zlwOopuYm:toResponsiveImage(G5Mz1FFPUrdXGgOgkR)})})})})})})})})},idrdXGgOgkR);})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pr0o55\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QgALtqtfz\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"QgALtqtfz\",name:\"EvxErjRB0\",type:\"Identifier\"},{collection:\"QgALtqtfz\",name:\"G5Mz1FFPU\",type:\"Identifier\"},{collection:\"QgALtqtfz\",name:\"fcLdTQRWu\",type:\"Identifier\"},{collection:\"QgALtqtfz\",name:\"jjZ9ReRdu\",type:\"Identifier\"},{alias:\"UoGh11fYe\",arguments:[{from:{alias:\"UoGh11fYe\",data:Category,type:\"Collection\"},orderBy:[{arguments:[{collection:\"QgALtqtfz\",name:\"UoGh11fYe\",type:\"Identifier\"},{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"UoGh11fYe\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"QgALtqtfz\",name:\"UoGh11fYe\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"QgALtqtfz\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({EvxErjRB0:EvxErjRB0QgALtqtfz,fcLdTQRWu:fcLdTQRWuQgALtqtfz,G5Mz1FFPU:G5Mz1FFPUQgALtqtfz,id:idQgALtqtfz,jjZ9ReRdu:jjZ9ReRduQgALtqtfz,UoGh11fYe:UoGh11fYeQgALtqtfz},index4)=>{EvxErjRB0QgALtqtfz??=\"\";fcLdTQRWuQgALtqtfz??=\"\";jjZ9ReRduQgALtqtfz??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QgALtqtfz-${idQgALtqtfz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EvxErjRB0:EvxErjRB0QgALtqtfz},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{EvxErjRB0:EvxErjRB0QgALtqtfz},webPageId:\"v75Tpw1Yr\"},motionChild:true,nodeId:\"HF9_NCv1C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dy10k6 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+0+0+1640+0+544+0+0+0+0},toDtyncsd:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px) * 0.74)`,y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+0+0+1168+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px) * 0.66)`,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+0+0+1288+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12hmfv4-container\",nodeId:\"h5jGnpN9P\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"b1SQmw_vc\"}},children:/*#__PURE__*/_jsx(ProjetcsProjectItemLight,{Amt5RCa4w:fcLdTQRWuQgALtqtfz,EDyjka_tA:\"0px\",Evwde5RGu:UoGh11fYeQgALtqtfz,height:\"100%\",id:\"h5jGnpN9P\",layoutId:\"h5jGnpN9P\",style:{width:\"100%\"},variant:\"dk79TZPmR\",width:\"100%\",y1k3Le1PS:jjZ9ReRduQgALtqtfz,zlwOopuYm:toResponsiveImage(G5Mz1FFPUQgALtqtfz)})})})})})})})})},idQgALtqtfz);})})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined},{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined},{href:{webPageId:\"JsWSQcZ5w\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+5323.72+0+0+0+363.04+0+2728},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+4373.72+0+0+0+413.04+0+1752}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+0+0+3750.92+0+0+0+479.04+0+1802,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g4zgca-container\",nodeId:\"nOASKlkAS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{Qkn0srEs4:resolvedLinks1[2],variant:\"S6tGcwrte\"},toDtyncsd:{Qkn0srEs4:resolvedLinks1[1],variant:\"qzxqqvf8C\"}},children:/*#__PURE__*/_jsx(UIAllItems,{height:\"100%\",id:\"nOASKlkAS\",layoutId:\"nOASKlkAS\",Qkn0srEs4:resolvedLinks1[0],variant:\"ZrLd_aOka\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11e6ovy\",\"data-framer-name\":\"Fade in gradient\"})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xch8uj\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49x5cw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation42,__framer__exit:animation43,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15w7kz1\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+8530.76+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+6724.76+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+6257.96+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9ei7f-container\",nodeId:\"WPjzPOuqn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{C1iAXOkn1:40}},children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",C1iAXOkn1:50,height:\"100%\",id:\"WPjzPOuqn\",layoutId:\"WPjzPOuqn\",V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+8530.76+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+6724.76+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+6257.96+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7npay-container\",nodeId:\"T_R8Vr5uA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UICategory,{ce3V1WO4y:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",id:\"T_R8Vr5uA\",layoutId:\"T_R8Vr5uA\",N3gNITbco:\"Services\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uo7po2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+8530.76+0+0+36+112+0+0},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+6724.76+0+0+36+142+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:951,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+6257.96+0+0+36+192+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8jh6fz-container\",nodeId:\"TP6VXojlv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"y1cmM3CL5\"},toDtyncsd:{variant:\"TLxLam4YZ\"}},children:/*#__PURE__*/_jsx(ServicesItems,{AChBv6mnx:\"Development\",AtsGqKbqe:addImageAlt({src:\"https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg\",srcSet:\"https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg 599w\"},\"\"),DP3k2sIwB:\"\",DvMnYDgLq:\"\",dym8aGlmH:\"From front-end interactions to back-end functionality, we deliver robust solutions that grow with your business.\",dYspAHvCn:\"\",gRgZAVMwJ:addImageAlt({src:\"https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg\",srcSet:\"https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg 599w\"},\"\"),height:\"100%\",id:\"TP6VXojlv\",kGMjQGWFg:addImageAlt({src:\"https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg\",srcSet:\"https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg 599w\"},\"\"),L5bVOjC54:addImageAlt({src:\"https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg\",srcSet:\"https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg 599w\"},\"\"),layoutId:\"TP6VXojlv\",nfr3_vd4_:\"We create impactful brand identities that differentiate your business and connect with your audience.\",rd_VK8DcK:\"Design support\",style:{width:\"100%\"},T3Zvj4lLt:\"We\u2019re here to help with everything from small updates to full-scale redesigns, tailored to your evolving needs.\",u2WQNcukZ:\"We build custom websites that go beyond aesthetics, balancing design and functionality to captivate your audience and drive engagement.\",variant:\"vl7fPkW6x\",width:\"100%\",Xgqdpwxoc:\"Branding\",Y7m9L8sgJ:\"Websites\",yIZLGI3IM:\"\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12o9qbd\",\"data-framer-name\":\"Link\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcjrvm hidden-233qk8\",\"data-framer-name\":\"filler\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkgyhh\",\"data-framer-name\":\"Link container\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":S6U36AThY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":S6U36AThY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":S6U36AThY\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,y:(componentViewport?.y||0)+0+0+0+8530.76+0+0+36+112+0+991+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+6724.76+0+0+36+142+0+1031+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+6257.96+0+0+36+192+0+1061+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vibtue-container\",nodeId:\"iTmtUcjOu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks2[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks2[0],height:\"100%\",id:\"iTmtUcjOu\",layoutId:\"iTmtUcjOu\",NeQkVIvJM:\"See pricing\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"})})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1xw6eyy\",\"data-framer-name\":\"Quote\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3whgq\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-c5wri3\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Black and white portrait of a smiling person with curly hair\",fit:\"fill\",intrinsicHeight:908,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9748.76+60+0+0+527+0),pixelHeight:1008,pixelWidth:700,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 1px)`,src:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg\",srcSet:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg 700w\"}},toDtyncsd:{background:{alt:\"Black and white portrait of a smiling person with curly hair\",fit:\"fill\",intrinsicHeight:908,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8082.76+120+0+0+0+0),pixelHeight:1008,pixelWidth:700,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 80px) / 3, 1px)`,src:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg\",srcSet:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg 700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Black and white portrait of a smiling person with curly hair\",fit:\"fill\",intrinsicHeight:908,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7755.96+160+0+0+0+0),pixelHeight:1008,pixelWidth:700,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 40px) / 4, 1px)`,src:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg\",srcSet:\"https://framerusercontent.com/images/p6uKiRRmrSWVClkbGE5m5ebicc.jpg 700w\"},className:\"framer-13fa9aj\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eh51b8\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hgfb86 hidden-13dhfrl hidden-233qk8\",\"data-framer-name\":\"Filler\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y6195m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmlwi5\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w65a3y\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37 23\"><path d=\"M 3.98 0 L 17.361 0 L 8.793 20.365 L 0 20.365 Z M 21.34 0 L 34.721 0 L 26.171 20.365 L 17.361 20.365 Z\" fill=\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"></path></svg>',svgContentId:11839108631}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1am5f9q\",\"data-framer-name\":\"quote\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 25\"><path d=\"M 4.585 0 L 20 0 L 10.13 25 L 0 25 Z M 24.585 0 L 40 0 L 30.15 25 L 20 25 Z\" fill=\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\"></path></svg>',svgContentId:12745700882,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b2vby3\",\"data-styles-preset\":\"pfYUjS6Ot\",children:\"                 DigitalxVisuals helps companies create stunning and strategically sound experiences that engage audiences. Our experts work closely with you to ensure that every detail is aligned with your goals.\"})}),className:\"framer-y694ty\",\"data-framer-name\":\"Lyniq helps companies create visually stunning and strategically sound digital experiences that captivate audiences. Our team of experts works closely with you to ensure every detail aligns with your vision and goals.\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h31omp\",\"data-framer-name\":\"Bottom\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"From concept to launch, we craft digital solutions that not only look exceptional but also drive results, building connections that last.\"})}),className:\"framer-45q7ay\",\"data-framer-name\":\"From concept to launch, we craft digital solutions that not only look exceptional but also drive results, building connections that last.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+10547.76},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+8829.76}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+8682.96,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6e3kvj-container\",nodeId:\"ySPyJARcU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"JQZ30bDwJ\"}},children:/*#__PURE__*/_jsx(LogoCarousel,{height:\"100%\",id:\"ySPyJARcU\",layoutId:\"ySPyJARcU\",style:{width:\"100%\"},variant:\"TyCkGq4e0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-wfeje\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1doveij\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation42,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mh4amm\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uw1s80-container\",nodeId:\"dzPTO_M8i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{C1iAXOkn1:40}},children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",C1iAXOkn1:50,height:\"100%\",id:\"dzPTO_M8i\",layoutId:\"dzPTO_M8i\",V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-493y8r-container\",nodeId:\"NLc7Jg1G5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"jMWPy6G8Y\"}},children:/*#__PURE__*/_jsx(TeamAvatar,{dGWMhyRCs:addImageAlt({src:\"https://framerusercontent.com/images/ZXCpA0RMgk9zRirfK6axVANy0.jpg\"},\"Fashion portrait photography\"),fwD6acpNS:addImageAlt({src:\"https://framerusercontent.com/images/ayt0nYDzrIv9bDydrpvgxci9tQ.jpg\"},\"Fashion portrait photography\"),H0Oo1Mfv9:addImageAlt({src:\"https://framerusercontent.com/images/WrKcjAfnmz73TNCDVcgUr6Xe1I.jpg\"},\"Fashion portrait photography\"),height:\"100%\",id:\"NLc7Jg1G5\",IYnqoNnsD:\"20+\",K01rPaGiO:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",layoutId:\"NLc7Jg1G5\",RDM7oqG69:{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},variant:\"UMGTZZ0f6\",vNAo0sswR:addImageAlt({src:\"https://framerusercontent.com/images/ZckrSs9on0I8ygbtlBrvICVxt0.jpg\"},\"Fashion portrait photography\"),width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unwsa7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation25,__framer__exit:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nnrt9k\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Roots in connection\"})}),className:\"framer-1bhof22\",\"data-framer-name\":\"Meet our team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:[\"A diverse group of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"creators, strategists, and developers\"}),\" driven by a shared passion for crafting impactful digital experiences.\"]})}),className:\"framer-1oqoo67\",\"data-framer-name\":\"A diverse group of creators, strategists, and developers driven by a shared passion for crafting impactful digital experiences.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation45,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-129dri9\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csplbm\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+145+0+313.52+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+309.48+0+313.52+0+109+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-4wsqim-container\",nodeId:\"d41uwvl_s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"d41uwvl_s\",layoutId:\"d41uwvl_s\",s0pskHPgi:\"0\",style:{width:\"100%\"},sUuW11Svk:\"Years of business experience to meet the market\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Limits to options\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+145+0+313.52+0+0+0+108},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+309.48+0+313.52+0+109+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-tndojr-container\",nodeId:\"e_YQTlNav\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"e_YQTlNav\",layoutId:\"e_YQTlNav\",s0pskHPgi:\"7\",style:{width:\"100%\"},sUuW11Svk:\"We work where it makes sense for you\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Platforms \"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+145+0+313.52+0+0+0+216},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+309.48+0+313.52+0+109+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-au6363-container\",nodeId:\"yfllcsdtN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"yfllcsdtN\",layoutId:\"yfllcsdtN\",s0pskHPgi:\"10+\",style:{width:\"100%\"},sUuW11Svk:\"focused on user experience\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Years of Design and Development\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpau29\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+10747.76+0+0+36+145+0+313.52+0+348+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+9029.76+0+0+36+309.48+0+313.52+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+8882.96+0+0+36+268.48+0+403.52+0+0+53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lgm3t3-container\",nodeId:\"ICw3miWdo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks3[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks3[0],height:\"100%\",id:\"ICw3miWdo\",layoutId:\"ICw3miWdo\",NeQkVIvJM:\"Connect with us\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"})})})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+10747.76+0),pixelHeight:1274,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg\",srcSet:\"https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg 1920w\"}},toDtyncsd:{background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+9029.76+0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg\",srcSet:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-270}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8882.96+0),pixelHeight:1274,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg\",srcSet:\"https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YlEKlxLXS5eEKd4QlVitTh30A.jpg 1920w\"},className:\"framer-u8frfl\"})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-5vqbm2\",\"data-framer-name\":\"Pricing\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t12b7i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation25,__framer__exit:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yv0h2k\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",children:\"Flexible pricing\"})}),className:\"framer-hxizpm\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:[\"Choose the plan that best fits your needs.\",/*#__PURE__*/_jsx(\"br\",{}),\"From a solid foundation to a fully optimized solution\"]})}),className:\"framer-1ylpae7\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+11669.28+60+0+0+285.52},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+9929.76+120+0+0+313.52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:957,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+9732.96+170+0+0+333.52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c3wtj7-container\",nodeId:\"B1e5MbD1f\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{bAuB7le7t:\"rZ5GGKMaQ\",rwyc6NF6W:\"column\",wP464GpMB:34,zNy6M4eyf:\"10px\"},toDtyncsd:{bAuB7le7t:\"oG15KyVqZ\",rwyc6NF6W:\"column\",zNy6M4eyf:\"26px\"}},children:/*#__PURE__*/_jsx(PricingTableWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"lhjgvDpbl\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"sxZCoNmFS\",bAuB7le7t:\"c4A8ie2ZE\",height:\"100%\",id:\"B1e5MbD1f\",layoutId:\"B1e5MbD1f\",rwyc6NF6W:\"row\",style:{width:\"100%\"},variant:\"sxZCoNmFS\",width:\"100%\",wP464GpMB:50,zNy6M4eyf:\"50px\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-9uktbq\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1ykxh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wpoupd\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1ebndbp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our process\"})}),className:\"framer-4mz7x9\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Our four-step process keeps you informed and involved at every stage, ensuring the final result meets your goals and resonates with your audience.\"})}),className:\"framer-ia1bsg\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+12971.8+50+0+0+0+0+287.52},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+11320.28+120+0+0+0+343.52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+11193.48+160+0+0+0+353.52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-768sct-container\",nodeId:\"B3cxR060r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks4[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks4[0],height:\"100%\",id:\"B3cxR060r\",layoutId:\"B3cxR060r\",NeQkVIvJM:\"Schedule a consultation\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uagoo\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+12971.8+50+0+0+366.52+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11320.28+120+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11193.48+160+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zvvnvk-container\",nodeId:\"f57N7CsQ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\",height:\"100%\",id:\"f57N7CsQ0\",layoutId:\"f57N7CsQ0\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"01\",YEVw3BM0l:\"Discovery & Strategy\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+12971.8+50+0+0+366.52+0+141},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11320.28+120+0+0+0+147}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11193.48+160+0+0+0+157,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ibmsa-container\",nodeId:\"B_AByxHcJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Our designers bring your vision to life with wireframes and prototypes, focusing on an engaging user experience.\",height:\"100%\",id:\"B_AByxHcJ\",layoutId:\"B_AByxHcJ\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"02\",YEVw3BM0l:\"Design & Prototyping\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+12971.8+50+0+0+366.52+0+282},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11320.28+120+0+0+0+294}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11193.48+160+0+0+0+314,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgjz6z-container\",nodeId:\"g7XfD8nZL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution.\",height:\"100%\",id:\"g7XfD8nZL\",layoutId:\"g7XfD8nZL\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"03\",YEVw3BM0l:\"Development & Integration\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+12971.8+50+0+0+366.52+0+423},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11320.28+120+0+0+0+441}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+11193.48+160+0+0+0+471,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2fii4d-container\",nodeId:\"pYM3oE4kB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"After testing and final approvals, we launch the site and provide ongoing support.\",height:\"100%\",id:\"pYM3oE4kB\",layoutId:\"pYM3oE4kB\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"04\",YEVw3BM0l:\"Launch & Support\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-a91qzl\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-160yarg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__threshold:.5}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ebhyme\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v1iijn\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jbd1ze\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+13918.32+60+0+0+0+30+0+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+11988.28+130+0+0+0+40+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+11931.48+160+0+0+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkn05x-container\",nodeId:\"ptxjEM8e0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",C1iAXOkn1:35,height:\"100%\",id:\"ptxjEM8e0\",layoutId:\"ptxjEM8e0\",V3Qt9yDai:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",children:[\"Success\",/*#__PURE__*/_jsx(\"br\",{}),\"stories\"]})}),className:\"framer-bd46t4\",\"data-framer-name\":\"Success stories\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Our work speaks for itself, but our clients say it even better.\"})}),className:\"framer-wglgnj\",\"data-framer-name\":\"Our work speaks for itself, but our clients say it even better.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__exit:animation29,__framer__threshold:.5}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x2ck6z\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf2dkq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",children:\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\"})}),className:\"framer-1m9kmth\",\"data-framer-name\":\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlt8us\",\"data-border\":true,\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Sarah Morgan\"})}),className:\"framer-13so4od\",\"data-framer-name\":\"Sarah Morgan\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Founder of a Tech Startup\"})}),className:\"framer-1a5wuxk\",\"data-framer-name\":\"Founder of a Tech Startup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1nyu7\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13918.32+60+0+0+520+16),pixelHeight:773,pixelWidth:562,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px) - 32px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"}},toDtyncsd:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11988.28+130+0+0+0+20),pixelHeight:773,pixelWidth:562,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px) - 40px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11931.48+160+0+0+0+20),pixelHeight:773,pixelWidth:562,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px) - 40px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"},className:\"framer-1fhjvah\",\"data-framer-name\":\"BG 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13918.32+60+0+0+520+0),pixelHeight:773,pixelWidth:562,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"}},toDtyncsd:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11988.28+130+0+0+0+0),pixelHeight:773,pixelWidth:562,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11931.48+160+0+0+0+0),pixelHeight:773,pixelWidth:562,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,src:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg\",srcSet:\"https://framerusercontent.com/images/LXqiw60wOK1vHnGm0uYyST90q5A.jpg 562w\"},className:\"framer-1gbwsde\",\"data-framer-name\":\"BG 1\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:60,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+13918.32+60+0+0+1040},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+11988.28+130+0+0+620}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+11931.48+160+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__exit:animation29,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation46,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zk3tam-container\",nodeId:\"If9IWUqPY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"p0HhGt1NQ\"}},children:/*#__PURE__*/_jsx(TestimoialsItem,{AM46op7Lx:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",d4lzmm0YL:\"Customer retention\",DMTP3vKWw:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",F9uW9JjKI:\"+61%\",height:\"100%\",HZi8Dk5hs:\"+28%\",id:\"If9IWUqPY\",jjg85LuOE:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",layoutId:\"If9IWUqPY\",qXDjeqRcY:\"Anna Karenina\",style:{height:\"100%\",width:\"100%\"},V5EvMzZAA:\"Owner of a clothing E-commerce store\",variant:\"WN0gvTTUg\",VZf4KPRV3:{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},width:\"100%\",y8_auQFXP:addImageAlt({src:\"https://framerusercontent.com/images/aWcD3Iz6LWFQERknQy3rwYGQBI.jpg\"},\"\"),ysHGQbLqA:\"We needed a full rebranding, and this agency delivered beyond our expectations. From the new logo to the website design, everything feels cohesive and professional.\",ZL3Q30CZC:\"Conversion rate\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:60,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+13918.32+60+0+0+1120},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+11988.28+130+0+0+620}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+11931.48+160+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition17},__framer__exit:animation29,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation47,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v0ypxc-container\",nodeId:\"dQFb4xsQD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"p0HhGt1NQ\"}},children:/*#__PURE__*/_jsx(TestimoialsItem,{AM46op7Lx:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",d4lzmm0YL:\"Customer retention\",DMTP3vKWw:\"var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, rgb(245, 245, 245))\",F9uW9JjKI:\"+52%\",height:\"100%\",HZi8Dk5hs:\"+11%\",id:\"dQFb4xsQD\",jjg85LuOE:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",layoutId:\"dQFb4xsQD\",qXDjeqRcY:\"Andy Styles\",style:{height:\"100%\",width:\"100%\"},V5EvMzZAA:\"Founder of a Tech Startup\",variant:\"WN0gvTTUg\",VZf4KPRV3:{borderBottomWidth:0,borderColor:\"rgba(0, 0, 0, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},width:\"100%\",y8_auQFXP:addImageAlt({src:\"https://framerusercontent.com/images/nDtXYMMvDJ6YMQxXZSaJjxXSb8c.jpg\"},\"\"),ysHGQbLqA:\"Working with this team was a pleasure! Our sales increased by 30% in the first month. Thank you for the amazing job!\",ZL3Q30CZC:\"Conversion rate\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1spq6kv\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njq9fb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__enter:animation25,__framer__exit:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation23,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15uqw69\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18d5d7v\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"FAQ\"})}),className:\"framer-19y6m3f\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"We\u2019ve heard it all. Here\u2019s everything you need to know before working with us.\"})}),className:\"framer-17eu4nw\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+14038.32+50+0+0+0+0+283.52},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+13491.28+120+0+0+0+343.52}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+12844.48+160+0+0+0+353.52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0ecn5-container\",nodeId:\"Otmi47eiA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks5[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks5[0],height:\"100%\",id:\"Otmi47eiA\",layoutId:\"Otmi47eiA\",NeQkVIvJM:\"Ask a question\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+14038.32+50+0+0+342.52},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+13491.28+120+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px)`,y:(componentViewport?.y||0)+0+0+0+12844.48+160+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16nqj2d-container\",nodeId:\"GIqpsjxd5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"eIoDnVeFX\"},toDtyncsd:{variant:\"eIoDnVeFX\"}},children:/*#__PURE__*/_jsx(FAQQuestions,{height:\"100%\",id:\"GIqpsjxd5\",layoutId:\"GIqpsjxd5\",style:{width:\"100%\"},variant:\"NUXeHitT3\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1m7zetc\",\"data-framer-name\":\"Latest Insights\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1grbgua\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-12yqnnv\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Latest Insights\"})}),className:\"framer-1pxotkc\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kaz94y\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gocqtv\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Explore industry news and creative strategies to keep your website ahead of the curve.\"})}),className:\"framer-108nq7m\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+14896.84+50+0+132+0+0+137.52+0+156},toDtyncsd:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 30px) / 4, 50px) * 4 + 30px)`,y:(componentViewport?.y||0)+0+0+0+14077.28+120+0+132+0+0+195+0+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px) * 2 - 0px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+13470.48+0+0+132+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ai74nf-container\",nodeId:\"XseTBBnLS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks6[2],variant:\"zf2fmntWl\"},toDtyncsd:{DmH_FL2P8:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks6[0],height:\"100%\",id:\"XseTBBnLS\",layoutId:\"XseTBBnLS\",NeQkVIvJM:\"Check out more\",style:{width:\"100%\"},variant:\"Ie74EE_Xj\",vvMz6sarU:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"})})})})})})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+15533.36},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+14841.28}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:948,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+13860.48,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-170}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-w4b1sc-container\",nodeId:\"q_nQjd7tn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"nqWgwdImM\"},toDtyncsd:{variant:\"fEKWViVLS\"}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"q_nQjd7tn\",layoutId:\"q_nQjd7tn\",style:{width:\"100%\"},variant:\"Il7efBbw5\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dsur25-container hidden-233qk8\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ET5iqXTes\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ET5iqXTes\",intensity:10,layoutId:\"ET5iqXTes\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-He3Um.framer-lux5qc, .framer-He3Um .framer-lux5qc { display: block; }\",\".framer-He3Um.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-He3Um .framer-1euzf18-container { -webkit-user-select: none; flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: fixed; top: 0px; user-select: none; width: 100%; z-index: 10; }\",\".framer-He3Um .framer-fyydzk-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-He3Um .framer-18ia252 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; left: 50%; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: absolute; top: 22px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-He3Um .framer-1ft9wiu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 49%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-He3Um .framer-1ojost9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-fbtq8l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px 36px 56px 36px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-5s8aef { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-He3Um .framer-1n4wfg3 { 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: 100%; }\",\".framer-He3Um .framer-1s8uq1m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1hlm8z3 { 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: 0px; position: relative; width: 60%; }\",\".framer-He3Um .framer-8xowj5, .framer-He3Um .framer-1po5jnl { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; opacity: 0; position: relative; user-select: none; white-space: pre; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-17f7gii, .framer-He3Um .framer-skcre { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: difference; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-He3Um .framer-l0tfed, .framer-He3Um .framer-13h7p30 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: overlay; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-He3Um .framer-15rlu0l { 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: 8px 0px 0px 0px; position: relative; width: 40%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-He3Um .framer-1yjyy3q { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 30%; }\",\".framer-He3Um .framer-etaps5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-He3Um .framer-c1jovp, .framer-He3Um .framer-14ovlnh, .framer-He3Um .framer-1naulfj, .framer-He3Um .framer-1u6laj4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-He3Um .framer-8axwti { 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-He3Um .framer-1d7ihmp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-He3Um .framer-1srzfh1 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 1px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1r8tsb6 { align-self: stretch; flex: none; height: auto; overflow: hidden; pointer-events: none; position: relative; width: 15%; }\",\".framer-He3Um .framer-1bmi8eo { 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: 0px; position: relative; width: 68%; }\",\".framer-He3Um .framer-22mi0a { -webkit-user-select: none; bottom: 0px; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; pointer-events: none; position: absolute; user-select: none; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-1tl276o { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-He3Um .framer-7wclla { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 220px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-cu0ogy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-7u8fwv { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-63ob45-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-He3Um .framer-v1szlu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: auto / span 3; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-5hxscb { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; max-width: 840px; position: relative; width: 1px; }\",\".framer-He3Um .framer-1tn9b2u, .framer-He3Um .framer-12yqnnv { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-135b06k-container, .framer-He3Um .framer-1bof1so-container, .framer-He3Um .framer-11zt7bn-container, .framer-He3Um .framer-1asny8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-He3Um .framer-1p8js24 { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); 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: 100%; z-index: 3; }\",\".framer-He3Um .framer-zs3m79 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1fgrdxc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); white-space: pre; z-index: 2; }\",\".framer-He3Um .framer-llm233 { align-content: center; align-items: center; aspect-ratio: 1.3953488372093024 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 430px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; z-index: 1; }\",\".framer-He3Um .framer-p2fn6x { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-egi9db { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1detlqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1nr51yd { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 110px 0px 210px 0px; position: relative; width: 50%; }\",\".framer-He3Um .framer-fa8y8x { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 290px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1rc7biq-container, .framer-He3Um .framer-1s8xeto-container, .framer-He3Um .framer-1l9ei7f-container, .framer-He3Um .framer-o7npay-container, .framer-He3Um .framer-vibtue-container, .framer-He3Um .framer-1uw1s80-container, .framer-He3Um .framer-493y8r-container, .framer-He3Um .framer-1lgm3t3-container, .framer-He3Um .framer-768sct-container, .framer-He3Um .framer-1hkn05x-container, .framer-He3Um .framer-q0ecn5-container, .framer-He3Um .framer-1dsur25-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-He3Um .framer-ae63dj { --border-bottom-width: 1px; --border-color: #e4e4e4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -42px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 84px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-He3Um .framer-hbmua5 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 66px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 66px; will-change: var(--framer-will-change-override, transform); }\",\".framer-He3Um .framer-1eghmoe-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-He3Um .framer-ksawuv { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 200px 36px 160px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1ragvoy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-qndxqu, .framer-He3Um .framer-yv0h2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-ry550e, .framer-He3Um .framer-125eqsu, .framer-He3Um .framer-1osdfza, .framer-He3Um .framer-1pt9tp8, .framer-He3Um .framer-10dewtd, .framer-He3Um .framer-1ok0s9y, .framer-He3Um .framer-1lls29p, .framer-He3Um .framer-wnw27b, .framer-He3Um .framer-nxl0gz, .framer-He3Um .framer-1bhof22, .framer-He3Um .framer-hxizpm, .framer-He3Um .framer-4mz7x9, .framer-He3Um .framer-bd46t4, .framer-He3Um .framer-1m9kmth, .framer-He3Um .framer-13so4od, .framer-He3Um .framer-19y6m3f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1kb0su, .framer-He3Um .framer-1ylpae7, .framer-He3Um .framer-ia1bsg { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 510px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-16nelpw { 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: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1mctc4k { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-He3Um .framer-r0aubq { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.13); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-18hef2e { aspect-ratio: 1.256554307116105 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 213px); overflow: visible; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1fyhbjy { 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 40px 40px 40px; position: relative; width: 100%; }\",\".framer-He3Um .framer-i3tpor { flex: none; height: 100%; left: calc(50.00000000000002% - 99.91134751773049% / 2); opacity: 0.2; overflow: visible; pointer-events: none; position: absolute; top: calc(49.8727735368957% - 99.74554707379136% / 2); width: 100%; z-index: 1; }\",\".framer-He3Um .framer-1488row { align-content: center; align-items: center; align-self: start; background-color: var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-He3Um .framer-y9uiq1, .framer-He3Um .framer-1eh51b8 { --border-bottom-width: 2px; --border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 30px; top: 30px; width: 9px; z-index: 1; }\",\".framer-He3Um .framer-1ttjwx6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1jzqj4p { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1xhy6u8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-o8mgwa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-He3Um .framer-1v9d61s { --border-bottom-width: 3px; --border-color: #ffffff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-He3Um .framer-qr8233, .framer-He3Um .framer-szi60v, .framer-He3Um .framer-1mztxhn { --border-bottom-width: 3px; --border-color: #ffffff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 42px); opacity: 0.3; position: relative; width: 42px; }\",\".framer-He3Um .framer-1u6b2j0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 28px 26px 28px 28px; position: relative; width: 100%; }\",\".framer-He3Um .framer-176kxt8 { 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-He3Um .framer-ast2h5 { --border-bottom-width: 1px; --border-color: #dedede; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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 30px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-13g744w-container, .framer-He3Um .framer-dcup3j-container, .framer-He3Um .framer-1h1vef-container, .framer-He3Um .framer-1js80nn-container, .framer-He3Um .framer-1hm7ved-container, .framer-He3Um .framer-zfzidc-container, .framer-He3Um .framer-10sba47-container, .framer-He3Um .framer-1358vfw-container, .framer-He3Um .framer-19qpvzs-container, .framer-He3Um .framer-12hmfv4-container, .framer-He3Um .framer-8jh6fz-container, .framer-He3Um .framer-c3wtj7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-He3Um .framer-w71me8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-d6sixz { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-He3Um .framer-18j8ur9 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-osxu8x { align-content: center; align-items: center; align-self: start; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-12khblq { background-color: #323232; flex: none; height: 1px; left: calc(49.81273408239703% - 100% / 2); overflow: hidden; position: absolute; top: 40px; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-1dahfcy { background-color: #323232; bottom: 40px; flex: none; height: 1px; left: calc(49.81273408239703% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-nfsuki { background-color: #323232; bottom: 0px; flex: none; height: 100%; overflow: hidden; position: absolute; right: 40px; width: 1px; z-index: 1; }\",\".framer-He3Um .framer-1hyqh9k { background-color: #323232; flex: none; height: 100%; left: 40px; overflow: hidden; position: absolute; top: calc(49.935483870967765% - 100% / 2); width: 1px; z-index: 1; }\",\".framer-He3Um .framer-mfarcv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 80px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-He3Um .framer-py83wg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-zvrkh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-fqo9ae-container, .framer-He3Um .framer-1m7cp88-container, .framer-He3Um .framer-mpb4p7-container, .framer-He3Um .framer-1mj2nyf-container, .framer-He3Um .framer-1rl31yc-container, .framer-He3Um .framer-an8474-container { flex: none; height: 22px; opacity: 0.5; position: relative; width: 22px; }\",\".framer-He3Um .framer-1o6g5r9 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 136px); justify-content: center; padding: 0px; position: relative; width: 136px; }\",\".framer-He3Um .framer-t9ynj0 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; box-shadow: 0px 12px 75.80000305175781px 12px rgba(248, 68, 45, 0.59); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 116px); justify-content: center; padding: 0px; position: relative; width: 116px; }\",\".framer-He3Um .framer-1ygnxxm { flex: none; height: 26px; position: relative; width: 34px; }\",\".framer-He3Um .framer-1955q7q { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 16px; top: 16px; width: 24px; z-index: 1; }\",\".framer-He3Um .framer-1jfy36t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-17ms6gs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; justify-self: start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1ht1g3j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 65px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1o4dk07 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 3; }\",\".framer-He3Um .framer-u0o9ya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-ml6g1f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 374px; overflow: visible; padding: 0px; position: relative; width: 94%; z-index: 3; }\",\".framer-He3Um .framer-uurzh0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-31emch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-14eheuv { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 45px; }\",\".framer-He3Um .framer-yo823b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-asc0t1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-He3Um .framer-akxuec { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-He3Um .framer-1xbmym3, .framer-He3Um .framer-1y2l0wz, .framer-He3Um .framer-wglgnj { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-He3Um .framer-q0gjr6 { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -13px; box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.09); flex: none; height: 88px; left: calc(50.18726591760302% - min(374px, 91%) / 2); max-width: 374px; overflow: visible; position: absolute; width: 91%; z-index: 0; }\",\".framer-He3Um .framer-gjdrgu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-He3Um .framer-h10jq8-container { flex: none; height: auto; position: relative; width: auto; z-index: 3; }\",\".framer-He3Um .framer-8zvxo6 { aspect-ratio: 0.621301775147929 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 556px); left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); width: 345px; z-index: 2; }\",\".framer-He3Um .framer-1lwr0ib { -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); background-color: rgba(255, 255, 255, 0.24); border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 0px; flex: none; height: 544px; left: calc(50.18726591760302% - 332px / 2); position: absolute; width: 332px; z-index: 1; }\",\".framer-He3Um .framer-yp5xru { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 8.898155968468469%, rgba(0, 0, 0, 0.8) 100%) add; background-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); bottom: 0px; flex: none; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 8.898155968468469%, rgba(0, 0, 0, 0.8) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-He3Um .framer-11vjexa { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-He3Um .framer-4sxcx1 { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 160px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1ysebzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-xkr3by { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 76px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 160px; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-hvxmsu { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-uud8ad { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1w0q7ac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-1x35gf1, .framer-He3Um .framer-1w3x7hh, .framer-He3Um .framer-1qi15zk { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1odsxbf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-16jjfzu, .framer-He3Um .framer-1r6ii73, .framer-He3Um .framer-n7n394 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-He3Um .framer-1l01njr { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-xr3l9, .framer-He3Um .framer-dy10k6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 66%; }\",\".framer-He3Um .framer-dlnmo2 { 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: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-He3Um .framer-1tmox7z { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-pr0o55 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-1g4zgca-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-He3Um .framer-11e6ovy { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 20.4638231981982%, rgb(255, 255, 255) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-He3Um .framer-xch8uj { align-content: center; align-items: center; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 180px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-49x5cw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-15w7kz1, .framer-He3Um .framer-mh4amm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-uo7po2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-12o9qbd, .framer-He3Um .framer-129dri9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-mcjrvm { align-self: stretch; flex: 4 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-He3Um .framer-1lkgyhh { align-content: center; align-items: center; display: flex; flex: 8 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-1xw6eyy { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 160px 36px; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-1e3whgq { 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; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-c5wri3 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-13fa9aj { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-He3Um .framer-hgfb86 { align-self: stretch; flex: 1 0 0px; height: auto; overflow: hidden; pointer-events: none; position: relative; width: 1px; }\",\".framer-He3Um .framer-1y6195m { align-content: flex-start; align-items: flex-start; display: flex; flex: 8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-lmlwi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-w65a3y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 9px; width: min-content; z-index: 1; }\",\".framer-He3Um .framer-1am5f9q { background-color: rgba(0, 0, 0, 0); flex: none; height: 25px; position: relative; width: 40px; }\",\".framer-He3Um .framer-y694ty { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 1111px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1h31omp, .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18d5d7v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-45q7ay { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-6e3kvj-container, .framer-He3Um .framer-w4b1sc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-wfeje { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 85vh; justify-content: flex-start; overflow: hidden; padding: 0px 36px 60px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1doveij { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-unwsa7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1nnrt9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1oqoo67 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 520px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1csplbm { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-4wsqim-container, .framer-He3Um .framer-tndojr-container, .framer-He3Um .framer-au6363-container, .framer-He3Um .framer-1ai74nf-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-He3Um .framer-tpau29 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; bottom: 0px; flex: none; left: 0px; mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-He3Um .framer-5vqbm2 { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 170px 36px 0px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-1t12b7i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-9uktbq, .framer-He3Um .framer-a91qzl { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 0px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-He3Um .framer-z1ykxh, .framer-He3Um .framer-njq9fb { 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: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-wpoupd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-18uagoo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-zvvnvk-container, .framer-He3Um .framer-14ibmsa-container, .framer-He3Um .framer-zgjz6z-container, .framer-He3Um .framer-2fii4d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-He3Um .framer-160yarg { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-ebhyme { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.13); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; min-height: 600px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1v1iijn { --border-bottom-width: 2px; --border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); left: 228px; position: absolute; top: 30px; width: 9px; z-index: 1; }\",\".framer-He3Um .framer-1jbd1ze { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-x2ck6z { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; justify-self: start; min-height: 600px; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-He3Um .framer-rf2dkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-He3Um .framer-zlt8us { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; 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: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1a5wuxk { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-o1nyu7 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.000000000000002%, rgba(0, 0, 0, 0.9) 100%) add; background-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); bottom: 20px; flex: none; left: 20px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.000000000000002%, rgba(0, 0, 0, 0.9) 100%) add; overflow: hidden; position: absolute; right: 20px; top: 20px; z-index: 2; }\",\".framer-He3Um .framer-1fhjvah { bottom: 20px; flex: none; left: 20px; overflow: hidden; position: absolute; right: 20px; top: 20px; z-index: 1; }\",\".framer-He3Um .framer-1gbwsde { bottom: 0px; flex: none; left: 0px; opacity: 0.87; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-He3Um .framer-zk3tam-container, .framer-He3Um .framer-v0ypxc-container { align-self: start; flex: none; height: 100%; justify-self: start; min-height: 600px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1spq6kv { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 0px 36px; position: relative; width: 100%; z-index: 4; }\",\".framer-He3Um .framer-15uqw69 { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-17eu4nw { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 350px; position: relative; width: 100%; }\",\".framer-He3Um .framer-16nqj2d-container { flex: 9 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-He3Um .framer-1m7zetc { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 0px 36px; position: relative; width: 100%; z-index: 4; }\",\".framer-He3Um .framer-1grbgua { align-content: flex-start; align-items: flex-start; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 132px 0px 132px 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-1pxotkc { --framer-paragraph-spacing: 0px; align-self: start; flex: none; grid-column: auto / span 2; height: 100%; justify-self: start; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-He3Um .framer-1kaz94y { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; grid-column: auto / span 2; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-He3Um .framer-gocqtv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-He3Um .framer-108nq7m { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 290px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-He3Um.framer-72rtr7, .framer-He3Um .framer-18ia252, .framer-He3Um .framer-1ojost9, .framer-He3Um .framer-fbtq8l, .framer-He3Um .framer-1n4wfg3, .framer-He3Um .framer-1s8uq1m, .framer-He3Um .framer-1hlm8z3, .framer-He3Um .framer-15rlu0l, .framer-He3Um .framer-etaps5, .framer-He3Um .framer-1d7ihmp, .framer-He3Um .framer-1bmi8eo, .framer-He3Um .framer-7wclla, .framer-He3Um .framer-cu0ogy, .framer-He3Um .framer-v1szlu, .framer-He3Um .framer-1p8js24, .framer-He3Um .framer-zs3m79, .framer-He3Um .framer-llm233, .framer-He3Um .framer-egi9db, .framer-He3Um .framer-1detlqp, .framer-He3Um .framer-1nr51yd, .framer-He3Um .framer-ae63dj, .framer-He3Um .framer-hbmua5, .framer-He3Um .framer-ksawuv, .framer-He3Um .framer-1ragvoy, .framer-He3Um .framer-qndxqu, .framer-He3Um .framer-16nelpw, .framer-He3Um .framer-1fyhbjy, .framer-He3Um .framer-1488row, .framer-He3Um .framer-1ttjwx6, .framer-He3Um .framer-1xhy6u8, .framer-He3Um .framer-o8mgwa, .framer-He3Um .framer-1u6b2j0, .framer-He3Um .framer-176kxt8, .framer-He3Um .framer-ast2h5, .framer-He3Um .framer-w71me8, .framer-He3Um .framer-py83wg, .framer-He3Um .framer-zvrkh, .framer-He3Um .framer-1o6g5r9, .framer-He3Um .framer-t9ynj0, .framer-He3Um .framer-1955q7q, .framer-He3Um .framer-1jfy36t, .framer-He3Um .framer-17ms6gs, .framer-He3Um .framer-1ht1g3j, .framer-He3Um .framer-u0o9ya, .framer-He3Um .framer-ml6g1f, .framer-He3Um .framer-uurzh0, .framer-He3Um .framer-31emch, .framer-He3Um .framer-yo823b, .framer-He3Um .framer-asc0t1, .framer-He3Um .framer-gjdrgu, .framer-He3Um .framer-4sxcx1, .framer-He3Um .framer-1ysebzx, .framer-He3Um .framer-xkr3by, .framer-He3Um .framer-hvxmsu, .framer-He3Um .framer-uud8ad, .framer-He3Um .framer-1w0q7ac, .framer-He3Um .framer-1x35gf1, .framer-He3Um .framer-1odsxbf, .framer-He3Um .framer-16jjfzu, .framer-He3Um .framer-1l01njr, .framer-He3Um .framer-xr3l9, .framer-He3Um .framer-1w3x7hh, .framer-He3Um .framer-dlnmo2, .framer-He3Um .framer-1r6ii73, .framer-He3Um .framer-1qi15zk, .framer-He3Um .framer-1tmox7z, .framer-He3Um .framer-n7n394, .framer-He3Um .framer-pr0o55, .framer-He3Um .framer-dy10k6, .framer-He3Um .framer-xch8uj, .framer-He3Um .framer-49x5cw, .framer-He3Um .framer-uo7po2, .framer-He3Um .framer-12o9qbd, .framer-He3Um .framer-1lkgyhh, .framer-He3Um .framer-1xw6eyy, .framer-He3Um .framer-1e3whgq, .framer-He3Um .framer-c5wri3, .framer-He3Um .framer-1y6195m, .framer-He3Um .framer-lmlwi5, .framer-He3Um .framer-w65a3y, .framer-He3Um .framer-1h31omp, .framer-He3Um .framer-wfeje, .framer-He3Um .framer-unwsa7, .framer-He3Um .framer-1nnrt9k, .framer-He3Um .framer-129dri9, .framer-He3Um .framer-1csplbm, .framer-He3Um .framer-tpau29, .framer-He3Um .framer-5vqbm2, .framer-He3Um .framer-1t12b7i, .framer-He3Um .framer-yv0h2k, .framer-He3Um .framer-9uktbq, .framer-He3Um .framer-z1ykxh, .framer-He3Um .framer-wpoupd, .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18uagoo, .framer-He3Um .framer-a91qzl, .framer-He3Um .framer-1jbd1ze, .framer-He3Um .framer-x2ck6z, .framer-He3Um .framer-rf2dkq, .framer-He3Um .framer-zlt8us, .framer-He3Um .framer-1spq6kv, .framer-He3Um .framer-njq9fb, .framer-He3Um .framer-15uqw69, .framer-He3Um .framer-18d5d7v, .framer-He3Um .framer-1m7zetc, .framer-He3Um .framer-1grbgua, .framer-He3Um .framer-1kaz94y, .framer-He3Um .framer-gocqtv { gap: 0px; } .framer-He3Um.framer-72rtr7 > *, .framer-He3Um .framer-1ojost9 > *, .framer-He3Um .framer-fbtq8l > *, .framer-He3Um .framer-1n4wfg3 > *, .framer-He3Um .framer-1hlm8z3 > *, .framer-He3Um .framer-1bmi8eo > *, .framer-He3Um .framer-7wclla > *, .framer-He3Um .framer-1p8js24 > *, .framer-He3Um .framer-zs3m79 > *, .framer-He3Um .framer-ae63dj > *, .framer-He3Um .framer-ksawuv > *, .framer-He3Um .framer-17ms6gs > *, .framer-He3Um .framer-4sxcx1 > *, .framer-He3Um .framer-xch8uj > *, .framer-He3Um .framer-1xw6eyy > *, .framer-He3Um .framer-wfeje > *, .framer-He3Um .framer-5vqbm2 > *, .framer-He3Um .framer-9uktbq > *, .framer-He3Um .framer-a91qzl > *, .framer-He3Um .framer-1spq6kv > *, .framer-He3Um .framer-1m7zetc > *, .framer-He3Um .framer-1grbgua > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-He3Um.framer-72rtr7 > :first-child, .framer-He3Um .framer-1ojost9 > :first-child, .framer-He3Um .framer-fbtq8l > :first-child, .framer-He3Um .framer-1n4wfg3 > :first-child, .framer-He3Um .framer-1hlm8z3 > :first-child, .framer-He3Um .framer-1bmi8eo > :first-child, .framer-He3Um .framer-7wclla > :first-child, .framer-He3Um .framer-cu0ogy > :first-child, .framer-He3Um .framer-1p8js24 > :first-child, .framer-He3Um .framer-zs3m79 > :first-child, .framer-He3Um .framer-1nr51yd > :first-child, .framer-He3Um .framer-ae63dj > :first-child, .framer-He3Um .framer-ksawuv > :first-child, .framer-He3Um .framer-1ragvoy > :first-child, .framer-He3Um .framer-qndxqu > :first-child, .framer-He3Um .framer-1fyhbjy > :first-child, .framer-He3Um .framer-1488row > :first-child, .framer-He3Um .framer-1ttjwx6 > :first-child, .framer-He3Um .framer-1xhy6u8 > :first-child, .framer-He3Um .framer-1u6b2j0 > :first-child, .framer-He3Um .framer-176kxt8 > :first-child, .framer-He3Um .framer-ast2h5 > :first-child, .framer-He3Um .framer-py83wg > :first-child, .framer-He3Um .framer-t9ynj0 > :first-child, .framer-He3Um .framer-1jfy36t > :first-child, .framer-He3Um .framer-17ms6gs > :first-child, .framer-He3Um .framer-1ht1g3j > :first-child, .framer-He3Um .framer-u0o9ya > :first-child, .framer-He3Um .framer-uurzh0 > :first-child, .framer-He3Um .framer-yo823b > :first-child, .framer-He3Um .framer-gjdrgu > :first-child, .framer-He3Um .framer-4sxcx1 > :first-child, .framer-He3Um .framer-1ysebzx > :first-child, .framer-He3Um .framer-xkr3by > :first-child, .framer-He3Um .framer-hvxmsu > :first-child, .framer-He3Um .framer-uud8ad > :first-child, .framer-He3Um .framer-1w0q7ac > :first-child, .framer-He3Um .framer-1odsxbf > :first-child, .framer-He3Um .framer-16jjfzu > :first-child, .framer-He3Um .framer-1l01njr > :first-child, .framer-He3Um .framer-xr3l9 > :first-child, .framer-He3Um .framer-dlnmo2 > :first-child, .framer-He3Um .framer-1r6ii73 > :first-child, .framer-He3Um .framer-1tmox7z > :first-child, .framer-He3Um .framer-n7n394 > :first-child, .framer-He3Um .framer-pr0o55 > :first-child, .framer-He3Um .framer-dy10k6 > :first-child, .framer-He3Um .framer-xch8uj > :first-child, .framer-He3Um .framer-49x5cw > :first-child, .framer-He3Um .framer-uo7po2 > :first-child, .framer-He3Um .framer-1xw6eyy > :first-child, .framer-He3Um .framer-c5wri3 > :first-child, .framer-He3Um .framer-1y6195m > :first-child, .framer-He3Um .framer-1h31omp > :first-child, .framer-He3Um .framer-wfeje > :first-child, .framer-He3Um .framer-unwsa7 > :first-child, .framer-He3Um .framer-1nnrt9k > :first-child, .framer-He3Um .framer-tpau29 > :first-child, .framer-He3Um .framer-5vqbm2 > :first-child, .framer-He3Um .framer-1t12b7i > :first-child, .framer-He3Um .framer-yv0h2k > :first-child, .framer-He3Um .framer-9uktbq > :first-child, .framer-He3Um .framer-wpoupd > :first-child, .framer-He3Um .framer-1ebndbp > :first-child, .framer-He3Um .framer-18uagoo > :first-child, .framer-He3Um .framer-a91qzl > :first-child, .framer-He3Um .framer-1jbd1ze > :first-child, .framer-He3Um .framer-x2ck6z > :first-child, .framer-He3Um .framer-rf2dkq > :first-child, .framer-He3Um .framer-zlt8us > :first-child, .framer-He3Um .framer-1spq6kv > :first-child, .framer-He3Um .framer-15uqw69 > :first-child, .framer-He3Um .framer-18d5d7v > :first-child, .framer-He3Um .framer-1m7zetc > :first-child, .framer-He3Um .framer-1grbgua > :first-child { margin-top: 0px; } .framer-He3Um.framer-72rtr7 > :last-child, .framer-He3Um .framer-1ojost9 > :last-child, .framer-He3Um .framer-fbtq8l > :last-child, .framer-He3Um .framer-1n4wfg3 > :last-child, .framer-He3Um .framer-1hlm8z3 > :last-child, .framer-He3Um .framer-1bmi8eo > :last-child, .framer-He3Um .framer-7wclla > :last-child, .framer-He3Um .framer-cu0ogy > :last-child, .framer-He3Um .framer-1p8js24 > :last-child, .framer-He3Um .framer-zs3m79 > :last-child, .framer-He3Um .framer-1nr51yd > :last-child, .framer-He3Um .framer-ae63dj > :last-child, .framer-He3Um .framer-ksawuv > :last-child, .framer-He3Um .framer-1ragvoy > :last-child, .framer-He3Um .framer-qndxqu > :last-child, .framer-He3Um .framer-1fyhbjy > :last-child, .framer-He3Um .framer-1488row > :last-child, .framer-He3Um .framer-1ttjwx6 > :last-child, .framer-He3Um .framer-1xhy6u8 > :last-child, .framer-He3Um .framer-1u6b2j0 > :last-child, .framer-He3Um .framer-176kxt8 > :last-child, .framer-He3Um .framer-ast2h5 > :last-child, .framer-He3Um .framer-py83wg > :last-child, .framer-He3Um .framer-t9ynj0 > :last-child, .framer-He3Um .framer-1jfy36t > :last-child, .framer-He3Um .framer-17ms6gs > :last-child, .framer-He3Um .framer-1ht1g3j > :last-child, .framer-He3Um .framer-u0o9ya > :last-child, .framer-He3Um .framer-uurzh0 > :last-child, .framer-He3Um .framer-yo823b > :last-child, .framer-He3Um .framer-gjdrgu > :last-child, .framer-He3Um .framer-4sxcx1 > :last-child, .framer-He3Um .framer-1ysebzx > :last-child, .framer-He3Um .framer-xkr3by > :last-child, .framer-He3Um .framer-hvxmsu > :last-child, .framer-He3Um .framer-uud8ad > :last-child, .framer-He3Um .framer-1w0q7ac > :last-child, .framer-He3Um .framer-1odsxbf > :last-child, .framer-He3Um .framer-16jjfzu > :last-child, .framer-He3Um .framer-1l01njr > :last-child, .framer-He3Um .framer-xr3l9 > :last-child, .framer-He3Um .framer-dlnmo2 > :last-child, .framer-He3Um .framer-1r6ii73 > :last-child, .framer-He3Um .framer-1tmox7z > :last-child, .framer-He3Um .framer-n7n394 > :last-child, .framer-He3Um .framer-pr0o55 > :last-child, .framer-He3Um .framer-dy10k6 > :last-child, .framer-He3Um .framer-xch8uj > :last-child, .framer-He3Um .framer-49x5cw > :last-child, .framer-He3Um .framer-uo7po2 > :last-child, .framer-He3Um .framer-1xw6eyy > :last-child, .framer-He3Um .framer-c5wri3 > :last-child, .framer-He3Um .framer-1y6195m > :last-child, .framer-He3Um .framer-1h31omp > :last-child, .framer-He3Um .framer-wfeje > :last-child, .framer-He3Um .framer-unwsa7 > :last-child, .framer-He3Um .framer-1nnrt9k > :last-child, .framer-He3Um .framer-tpau29 > :last-child, .framer-He3Um .framer-5vqbm2 > :last-child, .framer-He3Um .framer-1t12b7i > :last-child, .framer-He3Um .framer-yv0h2k > :last-child, .framer-He3Um .framer-9uktbq > :last-child, .framer-He3Um .framer-wpoupd > :last-child, .framer-He3Um .framer-1ebndbp > :last-child, .framer-He3Um .framer-18uagoo > :last-child, .framer-He3Um .framer-a91qzl > :last-child, .framer-He3Um .framer-1jbd1ze > :last-child, .framer-He3Um .framer-x2ck6z > :last-child, .framer-He3Um .framer-rf2dkq > :last-child, .framer-He3Um .framer-zlt8us > :last-child, .framer-He3Um .framer-1spq6kv > :last-child, .framer-He3Um .framer-15uqw69 > :last-child, .framer-He3Um .framer-18d5d7v > :last-child, .framer-He3Um .framer-1m7zetc > :last-child, .framer-He3Um .framer-1grbgua > :last-child { margin-bottom: 0px; } .framer-He3Um .framer-18ia252 > *, .framer-He3Um .framer-1s8uq1m > *, .framer-He3Um .framer-15rlu0l > *, .framer-He3Um .framer-etaps5 > *, .framer-He3Um .framer-1d7ihmp > *, .framer-He3Um .framer-v1szlu > *, .framer-He3Um .framer-llm233 > *, .framer-He3Um .framer-egi9db > *, .framer-He3Um .framer-1detlqp > *, .framer-He3Um .framer-hbmua5 > *, .framer-He3Um .framer-16nelpw > *, .framer-He3Um .framer-1lkgyhh > *, .framer-He3Um .framer-lmlwi5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-He3Um .framer-18ia252 > :first-child, .framer-He3Um .framer-1s8uq1m > :first-child, .framer-He3Um .framer-15rlu0l > :first-child, .framer-He3Um .framer-etaps5 > :first-child, .framer-He3Um .framer-1d7ihmp > :first-child, .framer-He3Um .framer-v1szlu > :first-child, .framer-He3Um .framer-llm233 > :first-child, .framer-He3Um .framer-egi9db > :first-child, .framer-He3Um .framer-1detlqp > :first-child, .framer-He3Um .framer-hbmua5 > :first-child, .framer-He3Um .framer-16nelpw > :first-child, .framer-He3Um .framer-o8mgwa > :first-child, .framer-He3Um .framer-w71me8 > :first-child, .framer-He3Um .framer-zvrkh > :first-child, .framer-He3Um .framer-1o6g5r9 > :first-child, .framer-He3Um .framer-1955q7q > :first-child, .framer-He3Um .framer-ml6g1f > :first-child, .framer-He3Um .framer-31emch > :first-child, .framer-He3Um .framer-asc0t1 > :first-child, .framer-He3Um .framer-1x35gf1 > :first-child, .framer-He3Um .framer-1w3x7hh > :first-child, .framer-He3Um .framer-1qi15zk > :first-child, .framer-He3Um .framer-12o9qbd > :first-child, .framer-He3Um .framer-1lkgyhh > :first-child, .framer-He3Um .framer-1e3whgq > :first-child, .framer-He3Um .framer-lmlwi5 > :first-child, .framer-He3Um .framer-w65a3y > :first-child, .framer-He3Um .framer-129dri9 > :first-child, .framer-He3Um .framer-1csplbm > :first-child, .framer-He3Um .framer-z1ykxh > :first-child, .framer-He3Um .framer-njq9fb > :first-child, .framer-He3Um .framer-1kaz94y > :first-child, .framer-He3Um .framer-gocqtv > :first-child { margin-left: 0px; } .framer-He3Um .framer-18ia252 > :last-child, .framer-He3Um .framer-1s8uq1m > :last-child, .framer-He3Um .framer-15rlu0l > :last-child, .framer-He3Um .framer-etaps5 > :last-child, .framer-He3Um .framer-1d7ihmp > :last-child, .framer-He3Um .framer-v1szlu > :last-child, .framer-He3Um .framer-llm233 > :last-child, .framer-He3Um .framer-egi9db > :last-child, .framer-He3Um .framer-1detlqp > :last-child, .framer-He3Um .framer-hbmua5 > :last-child, .framer-He3Um .framer-16nelpw > :last-child, .framer-He3Um .framer-o8mgwa > :last-child, .framer-He3Um .framer-w71me8 > :last-child, .framer-He3Um .framer-zvrkh > :last-child, .framer-He3Um .framer-1o6g5r9 > :last-child, .framer-He3Um .framer-1955q7q > :last-child, .framer-He3Um .framer-ml6g1f > :last-child, .framer-He3Um .framer-31emch > :last-child, .framer-He3Um .framer-asc0t1 > :last-child, .framer-He3Um .framer-1x35gf1 > :last-child, .framer-He3Um .framer-1w3x7hh > :last-child, .framer-He3Um .framer-1qi15zk > :last-child, .framer-He3Um .framer-12o9qbd > :last-child, .framer-He3Um .framer-1lkgyhh > :last-child, .framer-He3Um .framer-1e3whgq > :last-child, .framer-He3Um .framer-lmlwi5 > :last-child, .framer-He3Um .framer-w65a3y > :last-child, .framer-He3Um .framer-129dri9 > :last-child, .framer-He3Um .framer-1csplbm > :last-child, .framer-He3Um .framer-z1ykxh > :last-child, .framer-He3Um .framer-njq9fb > :last-child, .framer-He3Um .framer-1kaz94y > :last-child, .framer-He3Um .framer-gocqtv > :last-child { margin-right: 0px; } .framer-He3Um .framer-cu0ogy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-He3Um .framer-1nr51yd > *, .framer-He3Um .framer-1y6195m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-He3Um .framer-1ragvoy > *, .framer-He3Um .framer-u0o9ya > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-He3Um .framer-qndxqu > *, .framer-He3Um .framer-1ht1g3j > *, .framer-He3Um .framer-1h31omp > *, .framer-He3Um .framer-1t12b7i > *, .framer-He3Um .framer-yv0h2k > *, .framer-He3Um .framer-1ebndbp > *, .framer-He3Um .framer-18uagoo > *, .framer-He3Um .framer-18d5d7v > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-He3Um .framer-1fyhbjy > *, .framer-He3Um .framer-1ttjwx6 > *, .framer-He3Um .framer-1jfy36t > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-He3Um .framer-1488row > *, .framer-He3Um .framer-c5wri3 > *, .framer-He3Um .framer-1nnrt9k > *, .framer-He3Um .framer-rf2dkq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-He3Um .framer-1xhy6u8 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-He3Um .framer-o8mgwa > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-He3Um .framer-1u6b2j0 > *, .framer-He3Um .framer-uurzh0 > *, .framer-He3Um .framer-hvxmsu > *, .framer-He3Um .framer-uud8ad > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-He3Um .framer-176kxt8 > *, .framer-He3Um .framer-py83wg > *, .framer-He3Um .framer-t9ynj0 > *, .framer-He3Um .framer-gjdrgu > *, .framer-He3Um .framer-1odsxbf > *, .framer-He3Um .framer-1l01njr > *, .framer-He3Um .framer-dlnmo2 > *, .framer-He3Um .framer-1tmox7z > *, .framer-He3Um .framer-pr0o55 > *, .framer-He3Um .framer-tpau29 > *, .framer-He3Um .framer-x2ck6z > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-He3Um .framer-ast2h5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-He3Um .framer-w71me8 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-He3Um .framer-zvrkh > *, .framer-He3Um .framer-asc0t1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-He3Um .framer-1o6g5r9 > *, .framer-He3Um .framer-1955q7q > *, .framer-He3Um .framer-ml6g1f > *, .framer-He3Um .framer-1x35gf1 > *, .framer-He3Um .framer-1w3x7hh > *, .framer-He3Um .framer-1qi15zk > *, .framer-He3Um .framer-12o9qbd > *, .framer-He3Um .framer-1e3whgq > *, .framer-He3Um .framer-w65a3y > *, .framer-He3Um .framer-129dri9 > *, .framer-He3Um .framer-1csplbm > *, .framer-He3Um .framer-z1ykxh > *, .framer-He3Um .framer-njq9fb > *, .framer-He3Um .framer-1kaz94y > *, .framer-He3Um .framer-gocqtv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-He3Um .framer-31emch > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-He3Um .framer-yo823b > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-He3Um .framer-1ysebzx > *, .framer-He3Um .framer-uo7po2 > * { margin: 0px; margin-bottom: calc(110px / 2); margin-top: calc(110px / 2); } .framer-He3Um .framer-xkr3by > * { margin: 0px; margin-bottom: calc(76px / 2); margin-top: calc(76px / 2); } .framer-He3Um .framer-1w0q7ac > *, .framer-He3Um .framer-unwsa7 > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-He3Um .framer-16jjfzu > *, .framer-He3Um .framer-xr3l9 > *, .framer-He3Um .framer-1r6ii73 > *, .framer-He3Um .framer-n7n394 > *, .framer-He3Um .framer-dy10k6 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-He3Um .framer-49x5cw > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-He3Um .framer-wpoupd > *, .framer-He3Um .framer-15uqw69 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-He3Um .framer-1jbd1ze > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-He3Um .framer-zlt8us > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-He3Um[data-border=\"true\"]::after, .framer-He3Um [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-He3Um.framer-72rtr7 { width: 810px; } .framer-He3Um .framer-fbtq8l { gap: 10px; height: 90vh; padding: 0px 32px 40px 32px; } .framer-He3Um .framer-1n4wfg3 { gap: 16px; } .framer-He3Um .framer-1hlm8z3 { order: 0; width: 70%; } .framer-He3Um .framer-15rlu0l { justify-content: flex-end; order: 1; width: 30%; } .framer-He3Um .framer-etaps5 { justify-content: flex-end; width: 100%; } .framer-He3Um .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-He3Um .framer-1d7ihmp, .framer-He3Um .framer-1csplbm { flex: none; order: 1; width: 100%; } .framer-He3Um .framer-1bmi8eo { order: 0; width: 100%; } .framer-He3Um .framer-7wclla, .framer-He3Um .framer-1xw6eyy { padding: 120px 32px 120px 32px; } .framer-He3Um .framer-cu0ogy, .framer-He3Um .framer-1ragvoy, .framer-He3Um .framer-u0o9ya, .framer-He3Um .framer-1ysebzx { gap: 70px; } .framer-He3Um .framer-7u8fwv { grid-template-rows: repeat(1, min-content); } .framer-He3Um .framer-1tn9b2u, .framer-He3Um .framer-1mctc4k, .framer-He3Um .framer-160yarg { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-He3Um .framer-llm233 { height: var(--framer-aspect-ratio-supported, 291px); } .framer-He3Um .framer-1nr51yd { padding: 80px 0px 130px 0px; } .framer-He3Um .framer-ksawuv { padding: 130px 32px 120px 32px; } .framer-He3Um .framer-qndxqu, .framer-He3Um .framer-1t12b7i, .framer-He3Um .framer-yv0h2k, .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18uagoo, .framer-He3Um .framer-18d5d7v { gap: 40px; } .framer-He3Um .framer-18hef2e { height: var(--framer-aspect-ratio-supported, 289px); } .framer-He3Um .framer-1fyhbjy { padding: 0px 34px 34px 34px; } .framer-He3Um .framer-1488row { padding: 34px; } .framer-He3Um .framer-y9uiq1, .framer-He3Um .framer-1eh51b8 { right: 24px; top: 24px; } .framer-He3Um .framer-1jzqj4p { max-width: 180px; } .framer-He3Um .framer-12khblq { left: calc(49.862258953168066% - 100% / 2); top: 34px; } .framer-He3Um .framer-1dahfcy { bottom: 34px; left: calc(49.862258953168066% - 100% / 2); } .framer-He3Um .framer-nfsuki { right: 34px; } .framer-He3Um .framer-1hyqh9k { height: 100%; left: 34px; top: calc(50.00000000000002% - 99.83221476510067% / 2); } .framer-He3Um .framer-mfarcv { padding: 70px 34px 60px 34px; } .framer-He3Um .framer-1ht1g3j { gap: 40px; padding: 0px 0px 55px 0px; } .framer-He3Um .framer-ml6g1f { width: 96%; } .framer-He3Um .framer-8zvxo6 { height: var(--framer-aspect-ratio-supported, 532px); width: 330px; } .framer-He3Um .framer-1lwr0ib { height: 518px; left: calc(50.18726591760302% - 316px / 2); width: 316px; } .framer-He3Um .framer-4sxcx1, .framer-He3Um .framer-xch8uj { padding: 0px 32px 120px 32px; } .framer-He3Um .framer-xkr3by, .framer-He3Um .framer-unwsa7, .framer-He3Um .framer-1jbd1ze { gap: 50px; } .framer-He3Um .framer-uud8ad { align-content: flex-start; align-items: flex-start; gap: 80px; } .framer-He3Um .framer-1w0q7ac, .framer-He3Um .framer-uo7po2, .framer-He3Um .framer-1e3whgq { gap: 80px; } .framer-He3Um .framer-xr3l9, .framer-He3Um .framer-dy10k6 { width: 74%; } .framer-He3Um .framer-dlnmo2 { width: 100%; } .framer-He3Um .framer-49x5cw { gap: 100px; } .framer-He3Um .framer-mcjrvm { flex: 3 0 0px; } .framer-He3Um .framer-1lkgyhh { flex: 9 0 0px; } .framer-He3Um .framer-c5wri3, .framer-He3Um .framer-15uqw69, .framer-He3Um .framer-16nqj2d-container { flex: 1 0 0px; } .framer-He3Um .framer-1y6195m { flex: 2 0 0px; padding: 0px; } .framer-He3Um .framer-1h31omp { gap: 30px; } .framer-He3Um .framer-wfeje { height: 90vh; padding: 0px 32px 50px 32px; } .framer-He3Um .framer-129dri9 { flex-direction: column; gap: 80px; } .framer-He3Um .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; justify-content: flex-start; order: 0; width: 100%; } .framer-He3Um .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; } .framer-He3Um .framer-5vqbm2, .framer-He3Um .framer-9uktbq, .framer-He3Um .framer-1spq6kv, .framer-He3Um .framer-1m7zetc { padding: 120px 32px 0px 32px; } .framer-He3Um .framer-a91qzl { padding: 130px 32px 0px 32px; } .framer-He3Um .framer-1v1iijn { left: unset; right: 30px; } .framer-He3Um .framer-1grbgua { gap: 60px; } .framer-He3Um .framer-12yqnnv { gap: 10px; } .framer-He3Um .framer-1pxotkc { grid-column: auto / span 4; height: auto; } .framer-He3Um .framer-1kaz94y { flex-direction: column; gap: 30px; grid-column: auto / span 4; } .framer-He3Um .framer-gocqtv, .framer-He3Um .framer-1ai74nf-container { flex: none; width: 100%; } .framer-He3Um .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 440px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-He3Um .framer-fbtq8l, .framer-He3Um .framer-1n4wfg3, .framer-He3Um .framer-8axwti, .framer-He3Um .framer-cu0ogy, .framer-He3Um .framer-1ragvoy, .framer-He3Um .framer-qndxqu, .framer-He3Um .framer-1ht1g3j, .framer-He3Um .framer-u0o9ya, .framer-He3Um .framer-1ysebzx, .framer-He3Um .framer-xkr3by, .framer-He3Um .framer-uud8ad, .framer-He3Um .framer-1w0q7ac, .framer-He3Um .framer-49x5cw, .framer-He3Um .framer-uo7po2, .framer-He3Um .framer-1e3whgq, .framer-He3Um .framer-1h31omp, .framer-He3Um .framer-unwsa7, .framer-He3Um .framer-129dri9, .framer-He3Um .framer-1t12b7i, .framer-He3Um .framer-yv0h2k, .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18uagoo, .framer-He3Um .framer-1jbd1ze, .framer-He3Um .framer-18d5d7v, .framer-He3Um .framer-1grbgua, .framer-He3Um .framer-12yqnnv, .framer-He3Um .framer-1kaz94y { gap: 0px; } .framer-He3Um .framer-fbtq8l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-He3Um .framer-fbtq8l > :first-child, .framer-He3Um .framer-1n4wfg3 > :first-child, .framer-He3Um .framer-8axwti > :first-child, .framer-He3Um .framer-cu0ogy > :first-child, .framer-He3Um .framer-1ragvoy > :first-child, .framer-He3Um .framer-qndxqu > :first-child, .framer-He3Um .framer-1ht1g3j > :first-child, .framer-He3Um .framer-u0o9ya > :first-child, .framer-He3Um .framer-1ysebzx > :first-child, .framer-He3Um .framer-xkr3by > :first-child, .framer-He3Um .framer-uud8ad > :first-child, .framer-He3Um .framer-1w0q7ac > :first-child, .framer-He3Um .framer-49x5cw > :first-child, .framer-He3Um .framer-uo7po2 > :first-child, .framer-He3Um .framer-1h31omp > :first-child, .framer-He3Um .framer-unwsa7 > :first-child, .framer-He3Um .framer-129dri9 > :first-child, .framer-He3Um .framer-1t12b7i > :first-child, .framer-He3Um .framer-yv0h2k > :first-child, .framer-He3Um .framer-1ebndbp > :first-child, .framer-He3Um .framer-18uagoo > :first-child, .framer-He3Um .framer-1jbd1ze > :first-child, .framer-He3Um .framer-18d5d7v > :first-child, .framer-He3Um .framer-1grbgua > :first-child, .framer-He3Um .framer-1kaz94y > :first-child { margin-top: 0px; } .framer-He3Um .framer-fbtq8l > :last-child, .framer-He3Um .framer-1n4wfg3 > :last-child, .framer-He3Um .framer-8axwti > :last-child, .framer-He3Um .framer-cu0ogy > :last-child, .framer-He3Um .framer-1ragvoy > :last-child, .framer-He3Um .framer-qndxqu > :last-child, .framer-He3Um .framer-1ht1g3j > :last-child, .framer-He3Um .framer-u0o9ya > :last-child, .framer-He3Um .framer-1ysebzx > :last-child, .framer-He3Um .framer-xkr3by > :last-child, .framer-He3Um .framer-uud8ad > :last-child, .framer-He3Um .framer-1w0q7ac > :last-child, .framer-He3Um .framer-49x5cw > :last-child, .framer-He3Um .framer-uo7po2 > :last-child, .framer-He3Um .framer-1h31omp > :last-child, .framer-He3Um .framer-unwsa7 > :last-child, .framer-He3Um .framer-129dri9 > :last-child, .framer-He3Um .framer-1t12b7i > :last-child, .framer-He3Um .framer-yv0h2k > :last-child, .framer-He3Um .framer-1ebndbp > :last-child, .framer-He3Um .framer-18uagoo > :last-child, .framer-He3Um .framer-1jbd1ze > :last-child, .framer-He3Um .framer-18d5d7v > :last-child, .framer-He3Um .framer-1grbgua > :last-child, .framer-He3Um .framer-1kaz94y > :last-child { margin-bottom: 0px; } .framer-He3Um .framer-1n4wfg3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-He3Um .framer-8axwti > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-He3Um .framer-cu0ogy > *, .framer-He3Um .framer-1ragvoy > *, .framer-He3Um .framer-u0o9ya > *, .framer-He3Um .framer-1ysebzx > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-He3Um .framer-qndxqu > *, .framer-He3Um .framer-1ht1g3j > *, .framer-He3Um .framer-1t12b7i > *, .framer-He3Um .framer-yv0h2k > *, .framer-He3Um .framer-1ebndbp > *, .framer-He3Um .framer-18uagoo > *, .framer-He3Um .framer-18d5d7v > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-He3Um .framer-xkr3by > *, .framer-He3Um .framer-unwsa7 > *, .framer-He3Um .framer-1jbd1ze > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-He3Um .framer-uud8ad > *, .framer-He3Um .framer-1w0q7ac > *, .framer-He3Um .framer-uo7po2 > *, .framer-He3Um .framer-129dri9 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-He3Um .framer-49x5cw > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-He3Um .framer-1e3whgq > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-He3Um .framer-1e3whgq > :first-child { margin-left: 0px; } .framer-He3Um .framer-1e3whgq > :last-child { margin-right: 0px; } .framer-He3Um .framer-1h31omp > *, .framer-He3Um .framer-1kaz94y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-He3Um .framer-1grbgua > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-He3Um .framer-12yqnnv > *, .framer-He3Um .framer-12yqnnv > :first-child, .framer-He3Um .framer-12yqnnv > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-He3Um.framer-72rtr7 { width: 390px; } .framer-He3Um .framer-fbtq8l { height: 700px; padding: 0px 24px 34px 24px; position: relative; top: unset; } .framer-He3Um .framer-5s8aef, .framer-He3Um .framer-lmlwi5, .framer-He3Um .framer-45q7ay { order: 0; } .framer-He3Um .framer-1n4wfg3 { order: 1; } .framer-He3Um .framer-1s8uq1m, .framer-He3Um .framer-1x35gf1, .framer-He3Um .framer-1w3x7hh, .framer-He3Um .framer-1qi15zk { flex-direction: column; gap: 40px; } .framer-He3Um .framer-1hlm8z3, .framer-He3Um .framer-63ob45-container, .framer-He3Um .framer-768sct-container, .framer-He3Um .framer-q0ecn5-container { order: 1; width: 100%; } .framer-He3Um .framer-15rlu0l { justify-content: flex-end; order: 0; width: 100%; } .framer-He3Um .framer-etaps5 { justify-content: flex-end; width: 100%; } .framer-He3Um .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-He3Um .framer-1d7ihmp { flex: none; order: 1; width: 100%; } .framer-He3Um .framer-1srzfh1, .framer-He3Um .framer-1ylpae7 { max-width: unset; } .framer-He3Um .framer-1bmi8eo { order: 0; width: 100%; } .framer-He3Um .framer-22mi0a { order: 2; } .framer-He3Um .framer-1tl276o { order: 3; } .framer-He3Um .framer-7wclla { padding: 50px 24px 50px 24px; } .framer-He3Um .framer-cu0ogy, .framer-He3Um .framer-1ragvoy, .framer-He3Um .framer-1t12b7i { gap: 32px; } .framer-He3Um .framer-7u8fwv { gap: 26px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-He3Um .framer-v1szlu { grid-column: auto / span 1; order: 0; } .framer-He3Um .framer-1tn9b2u { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-He3Um .framer-1fgrdxc { right: unset; width: 100%; } .framer-He3Um .framer-llm233 { height: var(--framer-aspect-ratio-supported, 280px); width: 100%; } .framer-He3Um .framer-1nr51yd { --border-left-width: 0px; --border-right-width: 0px; padding: 40px 0px 90px 0px; width: 100%; } .framer-He3Um .framer-fa8y8x { max-width: 268px; } .framer-He3Um .framer-ae63dj { bottom: -32px; height: var(--framer-aspect-ratio-supported, 66px); width: 66px; } .framer-He3Um .framer-hbmua5 { height: var(--framer-aspect-ratio-supported, 52px); width: 52px; } .framer-He3Um .framer-1eghmoe-container { height: 18px; width: 18px; } .framer-He3Um .framer-ksawuv { padding: 90px 24px 60px 24px; } .framer-He3Um .framer-qndxqu, .framer-He3Um .framer-yv0h2k { gap: 20px; } .framer-He3Um .framer-ry550e, .framer-He3Um .framer-hxizpm, .framer-He3Um .framer-4mz7x9 { max-width: 270px; } .framer-He3Um .framer-1mctc4k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-He3Um .framer-r0aubq { align-self: unset; height: min-content; } .framer-He3Um .framer-18hef2e { height: var(--framer-aspect-ratio-supported, 272px); } .framer-He3Um .framer-1fyhbjy { padding: 0px 30px 30px 30px; } .framer-He3Um .framer-1488row { align-self: unset; gap: 24px; height: min-content; padding: 30px; } .framer-He3Um .framer-y9uiq1, .framer-He3Um .framer-1eh51b8 { right: 24px; top: 24px; } .framer-He3Um .framer-1jzqj4p { max-width: 150px; } .framer-He3Um .framer-1xhy6u8 { gap: 16px; } .framer-He3Um .framer-176kxt8, .framer-He3Um .framer-hvxmsu { gap: 18px; } .framer-He3Um .framer-ast2h5 { padding: 0px 0px 20px 0px; } .framer-He3Um .framer-osxu8x { align-self: unset; height: 520px; } .framer-He3Um .framer-12khblq { left: calc(49.70760233918131% - 100% / 2); top: 24px; } .framer-He3Um .framer-1dahfcy { bottom: 24px; left: calc(49.70760233918131% - 100% / 2); } .framer-He3Um .framer-nfsuki { right: 24px; } .framer-He3Um .framer-1hyqh9k { left: 24px; top: calc(49.919743178170165% - 100% / 2); } .framer-He3Um .framer-mfarcv { padding: 60px 24px 50px 24px; } .framer-He3Um .framer-17ms6gs { align-self: unset; height: min-content; padding: 120px 0px 0px 0px; } .framer-He3Um .framer-1ht1g3j { gap: 35px; padding: 0px 0px 55px 0px; } .framer-He3Um .framer-u0o9ya { gap: 60px; } .framer-He3Um .framer-ml6g1f { width: 95%; } .framer-He3Um .framer-8zvxo6 { height: var(--framer-aspect-ratio-supported, 480px); width: 298px; } .framer-He3Um .framer-1lwr0ib { aspect-ratio: 0.6127049180327869 / 1; height: var(--framer-aspect-ratio-supported, 470px); left: 50%; transform: translateX(-50%); width: 288px; } .framer-He3Um .framer-4sxcx1, .framer-He3Um .framer-xch8uj { padding: 0px 24px 50px 24px; } .framer-He3Um .framer-1ysebzx { gap: 34px; } .framer-He3Um .framer-xkr3by { gap: 28px; position: relative; top: unset; } .framer-He3Um .framer-uud8ad, .framer-He3Um .framer-1jbd1ze { gap: 40px; } .framer-He3Um .framer-1w0q7ac { gap: 44px; } .framer-He3Um .framer-1odsxbf, .framer-He3Um .framer-1l01njr, .framer-He3Um .framer-1tmox7z, .framer-He3Um .framer-pr0o55, .framer-He3Um .framer-4wsqim-container, .framer-He3Um .framer-tndojr-container, .framer-He3Um .framer-au6363-container, .framer-He3Um .framer-16nqj2d-container, .framer-He3Um .framer-gocqtv, .framer-He3Um .framer-1ai74nf-container { flex: none; width: 100%; } .framer-He3Um .framer-16jjfzu, .framer-He3Um .framer-1r6ii73, .framer-He3Um .framer-n7n394 { gap: 30px; } .framer-He3Um .framer-xr3l9, .framer-He3Um .framer-dy10k6 { gap: 30px; width: 100%; } .framer-He3Um .framer-dlnmo2, .framer-He3Um .framer-1lgm3t3-container { width: 100%; } .framer-He3Um .framer-49x5cw { gap: 70px; } .framer-He3Um .framer-15w7kz1, .framer-He3Um .framer-mh4amm { overflow: visible; } .framer-He3Um .framer-uo7po2 { gap: 40px; overflow: visible; } .framer-He3Um .framer-1lkgyhh { flex: 1 0 0px; } .framer-He3Um .framer-vibtue-container { flex: 1 0 0px; width: 1px; } .framer-He3Um .framer-1xw6eyy { padding: 60px 24px 60px 24px; } .framer-He3Um .framer-1e3whgq { flex-direction: column; gap: 34px; } .framer-He3Um .framer-c5wri3 { align-self: unset; aspect-ratio: 0.7368421052631579 / 1; flex: none; flex-direction: row; gap: 18px; height: var(--framer-aspect-ratio-supported, 464px); order: 2; width: 100%; } .framer-He3Um .framer-13fa9aj { height: 100%; width: 1px; } .framer-He3Um .framer-1y6195m { flex: none; gap: 26px; order: 1; padding: 0px; width: 100%; } .framer-He3Um .framer-w65a3y { top: 4px; } .framer-He3Um .framer-1am5f9q { height: 23px; width: 37px; } .framer-He3Um .framer-1h31omp { gap: 30px; order: 1; } .framer-He3Um .framer-wfeje { height: min-content; padding: 0px 24px 50px 24px; } .framer-He3Um .framer-1doveij { flex: none; gap: 80px; height: min-content; justify-content: center; } .framer-He3Um .framer-unwsa7 { gap: 50px; overflow: visible; } .framer-He3Um .framer-129dri9, .framer-He3Um .framer-z1ykxh { flex-direction: column; gap: 50px; } .framer-He3Um .framer-1csplbm { flex: none; flex-direction: column; gap: 26px; order: 0; width: 100%; } .framer-He3Um .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-He3Um .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; } .framer-He3Um .framer-5vqbm2, .framer-He3Um .framer-a91qzl { padding: 60px 24px 0px 24px; } .framer-He3Um .framer-9uktbq, .framer-He3Um .framer-1spq6kv, .framer-He3Um .framer-1m7zetc { padding: 50px 24px 0px 24px; } .framer-He3Um .framer-wpoupd, .framer-He3Um .framer-18uagoo { flex: none; gap: 34px; width: 100%; } .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18d5d7v { gap: 20px; order: 0; } .framer-He3Um .framer-160yarg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-He3Um .framer-ebhyme { align-self: unset; min-height: 500px; padding: 30px; } .framer-He3Um .framer-1v1iijn { left: unset; right: 30px; } .framer-He3Um .framer-x2ck6z { align-self: unset; min-height: 500px; padding: 40px; } .framer-He3Um .framer-o1nyu7, .framer-He3Um .framer-1fhjvah { bottom: 16px; left: 16px; right: 16px; top: 16px; } .framer-He3Um .framer-zk3tam-container, .framer-He3Um .framer-v0ypxc-container { align-self: unset; min-height: unset; } .framer-He3Um .framer-njq9fb { flex-direction: column; gap: 30px; } .framer-He3Um .framer-15uqw69 { flex: none; gap: 30px; width: 100%; } .framer-He3Um .framer-1grbgua { gap: 36px; } .framer-He3Um .framer-12yqnnv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; } .framer-He3Um .framer-1pxotkc { align-self: unset; height: auto; max-width: 270px; order: 0; } .framer-He3Um .framer-1kaz94y { align-self: unset; flex-direction: column; gap: 30px; height: min-content; order: 1; } .framer-He3Um .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 340px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-He3Um .framer-1s8uq1m, .framer-He3Um .framer-8axwti, .framer-He3Um .framer-cu0ogy, .framer-He3Um .framer-7u8fwv, .framer-He3Um .framer-1tn9b2u, .framer-He3Um .framer-1ragvoy, .framer-He3Um .framer-qndxqu, .framer-He3Um .framer-1mctc4k, .framer-He3Um .framer-1488row, .framer-He3Um .framer-1xhy6u8, .framer-He3Um .framer-176kxt8, .framer-He3Um .framer-1ht1g3j, .framer-He3Um .framer-u0o9ya, .framer-He3Um .framer-1ysebzx, .framer-He3Um .framer-xkr3by, .framer-He3Um .framer-hvxmsu, .framer-He3Um .framer-uud8ad, .framer-He3Um .framer-1w0q7ac, .framer-He3Um .framer-1x35gf1, .framer-He3Um .framer-16jjfzu, .framer-He3Um .framer-xr3l9, .framer-He3Um .framer-1w3x7hh, .framer-He3Um .framer-1r6ii73, .framer-He3Um .framer-1qi15zk, .framer-He3Um .framer-n7n394, .framer-He3Um .framer-dy10k6, .framer-He3Um .framer-49x5cw, .framer-He3Um .framer-uo7po2, .framer-He3Um .framer-1e3whgq, .framer-He3Um .framer-c5wri3, .framer-He3Um .framer-1y6195m, .framer-He3Um .framer-1h31omp, .framer-He3Um .framer-1doveij, .framer-He3Um .framer-unwsa7, .framer-He3Um .framer-129dri9, .framer-He3Um .framer-1csplbm, .framer-He3Um .framer-1t12b7i, .framer-He3Um .framer-yv0h2k, .framer-He3Um .framer-z1ykxh, .framer-He3Um .framer-wpoupd, .framer-He3Um .framer-1ebndbp, .framer-He3Um .framer-18uagoo, .framer-He3Um .framer-160yarg, .framer-He3Um .framer-1jbd1ze, .framer-He3Um .framer-njq9fb, .framer-He3Um .framer-15uqw69, .framer-He3Um .framer-18d5d7v, .framer-He3Um .framer-1grbgua, .framer-He3Um .framer-12yqnnv, .framer-He3Um .framer-1kaz94y { gap: 0px; } .framer-He3Um .framer-1s8uq1m > *, .framer-He3Um .framer-uud8ad > *, .framer-He3Um .framer-1x35gf1 > *, .framer-He3Um .framer-1w3x7hh > *, .framer-He3Um .framer-1qi15zk > *, .framer-He3Um .framer-uo7po2 > *, .framer-He3Um .framer-1jbd1ze > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-He3Um .framer-1s8uq1m > :first-child, .framer-He3Um .framer-8axwti > :first-child, .framer-He3Um .framer-cu0ogy > :first-child, .framer-He3Um .framer-1ragvoy > :first-child, .framer-He3Um .framer-qndxqu > :first-child, .framer-He3Um .framer-1mctc4k > :first-child, .framer-He3Um .framer-1488row > :first-child, .framer-He3Um .framer-1xhy6u8 > :first-child, .framer-He3Um .framer-176kxt8 > :first-child, .framer-He3Um .framer-1ht1g3j > :first-child, .framer-He3Um .framer-u0o9ya > :first-child, .framer-He3Um .framer-1ysebzx > :first-child, .framer-He3Um .framer-xkr3by > :first-child, .framer-He3Um .framer-hvxmsu > :first-child, .framer-He3Um .framer-uud8ad > :first-child, .framer-He3Um .framer-1w0q7ac > :first-child, .framer-He3Um .framer-1x35gf1 > :first-child, .framer-He3Um .framer-16jjfzu > :first-child, .framer-He3Um .framer-xr3l9 > :first-child, .framer-He3Um .framer-1w3x7hh > :first-child, .framer-He3Um .framer-1r6ii73 > :first-child, .framer-He3Um .framer-1qi15zk > :first-child, .framer-He3Um .framer-n7n394 > :first-child, .framer-He3Um .framer-dy10k6 > :first-child, .framer-He3Um .framer-49x5cw > :first-child, .framer-He3Um .framer-uo7po2 > :first-child, .framer-He3Um .framer-1e3whgq > :first-child, .framer-He3Um .framer-1y6195m > :first-child, .framer-He3Um .framer-1h31omp > :first-child, .framer-He3Um .framer-1doveij > :first-child, .framer-He3Um .framer-unwsa7 > :first-child, .framer-He3Um .framer-129dri9 > :first-child, .framer-He3Um .framer-1csplbm > :first-child, .framer-He3Um .framer-1t12b7i > :first-child, .framer-He3Um .framer-yv0h2k > :first-child, .framer-He3Um .framer-z1ykxh > :first-child, .framer-He3Um .framer-wpoupd > :first-child, .framer-He3Um .framer-1ebndbp > :first-child, .framer-He3Um .framer-18uagoo > :first-child, .framer-He3Um .framer-160yarg > :first-child, .framer-He3Um .framer-1jbd1ze > :first-child, .framer-He3Um .framer-njq9fb > :first-child, .framer-He3Um .framer-15uqw69 > :first-child, .framer-He3Um .framer-18d5d7v > :first-child, .framer-He3Um .framer-1grbgua > :first-child, .framer-He3Um .framer-12yqnnv > :first-child, .framer-He3Um .framer-1kaz94y > :first-child { margin-top: 0px; } .framer-He3Um .framer-1s8uq1m > :last-child, .framer-He3Um .framer-8axwti > :last-child, .framer-He3Um .framer-cu0ogy > :last-child, .framer-He3Um .framer-1ragvoy > :last-child, .framer-He3Um .framer-qndxqu > :last-child, .framer-He3Um .framer-1mctc4k > :last-child, .framer-He3Um .framer-1488row > :last-child, .framer-He3Um .framer-1xhy6u8 > :last-child, .framer-He3Um .framer-176kxt8 > :last-child, .framer-He3Um .framer-1ht1g3j > :last-child, .framer-He3Um .framer-u0o9ya > :last-child, .framer-He3Um .framer-1ysebzx > :last-child, .framer-He3Um .framer-xkr3by > :last-child, .framer-He3Um .framer-hvxmsu > :last-child, .framer-He3Um .framer-uud8ad > :last-child, .framer-He3Um .framer-1w0q7ac > :last-child, .framer-He3Um .framer-1x35gf1 > :last-child, .framer-He3Um .framer-16jjfzu > :last-child, .framer-He3Um .framer-xr3l9 > :last-child, .framer-He3Um .framer-1w3x7hh > :last-child, .framer-He3Um .framer-1r6ii73 > :last-child, .framer-He3Um .framer-1qi15zk > :last-child, .framer-He3Um .framer-n7n394 > :last-child, .framer-He3Um .framer-dy10k6 > :last-child, .framer-He3Um .framer-49x5cw > :last-child, .framer-He3Um .framer-uo7po2 > :last-child, .framer-He3Um .framer-1e3whgq > :last-child, .framer-He3Um .framer-1y6195m > :last-child, .framer-He3Um .framer-1h31omp > :last-child, .framer-He3Um .framer-1doveij > :last-child, .framer-He3Um .framer-unwsa7 > :last-child, .framer-He3Um .framer-129dri9 > :last-child, .framer-He3Um .framer-1csplbm > :last-child, .framer-He3Um .framer-1t12b7i > :last-child, .framer-He3Um .framer-yv0h2k > :last-child, .framer-He3Um .framer-z1ykxh > :last-child, .framer-He3Um .framer-wpoupd > :last-child, .framer-He3Um .framer-1ebndbp > :last-child, .framer-He3Um .framer-18uagoo > :last-child, .framer-He3Um .framer-160yarg > :last-child, .framer-He3Um .framer-1jbd1ze > :last-child, .framer-He3Um .framer-njq9fb > :last-child, .framer-He3Um .framer-15uqw69 > :last-child, .framer-He3Um .framer-18d5d7v > :last-child, .framer-He3Um .framer-1grbgua > :last-child, .framer-He3Um .framer-12yqnnv > :last-child, .framer-He3Um .framer-1kaz94y > :last-child { margin-bottom: 0px; } .framer-He3Um .framer-8axwti > *, .framer-He3Um .framer-1y6195m > *, .framer-He3Um .framer-1csplbm > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-He3Um .framer-cu0ogy > *, .framer-He3Um .framer-1ragvoy > *, .framer-He3Um .framer-1t12b7i > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-He3Um .framer-7u8fwv > *, .framer-He3Um .framer-7u8fwv > :first-child, .framer-He3Um .framer-7u8fwv > :last-child, .framer-He3Um .framer-1tn9b2u > *, .framer-He3Um .framer-1tn9b2u > :first-child, .framer-He3Um .framer-1tn9b2u > :last-child { margin: 0px; } .framer-He3Um .framer-qndxqu > *, .framer-He3Um .framer-1mctc4k > *, .framer-He3Um .framer-yv0h2k > *, .framer-He3Um .framer-1ebndbp > *, .framer-He3Um .framer-160yarg > *, .framer-He3Um .framer-18d5d7v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-He3Um .framer-1488row > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-He3Um .framer-1xhy6u8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-He3Um .framer-176kxt8 > *, .framer-He3Um .framer-hvxmsu > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-He3Um .framer-1ht1g3j > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-He3Um .framer-u0o9ya > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-He3Um .framer-1ysebzx > *, .framer-He3Um .framer-1e3whgq > *, .framer-He3Um .framer-wpoupd > *, .framer-He3Um .framer-18uagoo > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-He3Um .framer-xkr3by > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-He3Um .framer-1w0q7ac > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-He3Um .framer-16jjfzu > *, .framer-He3Um .framer-xr3l9 > *, .framer-He3Um .framer-1r6ii73 > *, .framer-He3Um .framer-n7n394 > *, .framer-He3Um .framer-dy10k6 > *, .framer-He3Um .framer-1h31omp > *, .framer-He3Um .framer-njq9fb > *, .framer-He3Um .framer-15uqw69 > *, .framer-He3Um .framer-12yqnnv > *, .framer-He3Um .framer-1kaz94y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-He3Um .framer-49x5cw > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-He3Um .framer-c5wri3 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-He3Um .framer-c5wri3 > :first-child { margin-left: 0px; } .framer-He3Um .framer-c5wri3 > :last-child { margin-right: 0px; } .framer-He3Um .framer-1doveij > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-He3Um .framer-unwsa7 > *, .framer-He3Um .framer-129dri9 > *, .framer-He3Um .framer-z1ykxh > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-He3Um .framer-1grbgua > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15552\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"toDtyncsd\":{\"layout\":[\"fixed\",\"auto\"]},\"p4sQvxEP4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uhPAu4sKG\":{\"pattern\":\":uhPAu4sKG\",\"name\":\"description\"},\"xS34N4gbY\":{\"pattern\":\":xS34N4gbY\",\"name\":\"benefits\"},\"dQ2OT4jvd\":{\"pattern\":\":dQ2OT4jvd\",\"name\":\"work\"},\"S6U36AThY\":{\"pattern\":\":S6U36AThY\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-He3Um\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:15552,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SplashScreenFonts,...HeaderHeaderFonts,...UIArrowButtonFonts,...NumbersItemFonts,...LogoFonts,...PhosphorFonts,...BenefitsTodoItemFonts,...UICategoryFonts,...ProjetcsProjectItemLightFonts,...UIAllItemsFonts,...ServicesItemsFonts,...LogoCarouselFonts,...TeamAvatarFonts,...TeamItemFonts,...PricingTableFonts,...ProcessItemFonts,...TestimoialsItemFonts,...FAQQuestionsFonts,...ContactFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"15552\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"uhPAu4sKG\\\":{\\\"pattern\\\":\\\":uhPAu4sKG\\\",\\\"name\\\":\\\"description\\\"},\\\"xS34N4gbY\\\":{\\\"pattern\\\":\\\":xS34N4gbY\\\",\\\"name\\\":\\\"benefits\\\"},\\\"dQ2OT4jvd\\\":{\\\"pattern\\\":\\\":dQ2OT4jvd\\\",\\\"name\\\":\\\"work\\\"},\\\"S6U36AThY\\\":{\\\"pattern\\\":\\\":S6U36AThY\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"toDtyncsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4sQvxEP4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Counter", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entry", "increment", "intervalId", "prev", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "CounterFonts", "getFonts", "Counter", "CounterControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "description", "h3Title", "height", "id", "incrementType", "number", "speedMs", "suffix", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BU4_wyR9A", "uvfNqUND5", "XbDSLtZLO", "OhLeOem3o", "ezNYwgiIW", "MTE4RiHaV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FrameraH7yeXBVj", "withCSS", "aH7yeXBVj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OtapoObdF", "M6makQZJz", "iU68ScBCY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerJDguMTCRG", "withCSS", "JDguMTCRG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "mouseEnter", "number", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fErYKCICq", "yB44CUche", "KrXbsPILD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter10pbwk0", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "FramerZkokeclFd", "withCSS", "ZkokeclFd_default", "addPropertyControls", "ControlType", "addFonts", "ServicesItemsDescriptionFonts", "getFonts", "JDguMTCRG_default", "MotionDivWithFX", "withFX", "motion", "ServicesItemsItemFonts", "ZkokeclFd_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Image", "_01Title", "_02Description", "_02Image", "_02Title", "_03Description", "_03Image", "_03Title", "_04Description", "_04Image", "_04Title", "_05Description", "_05Image", "_05Title", "_06Description", "_06Image", "_06Title", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_humanReadableVariantMap_props_variant", "_ref9", "_ref10", "_ref11", "_ref12", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "L5bVOjC54", "Xgqdpwxoc", "nfr3_vd4_", "kGMjQGWFg", "AChBv6mnx", "dym8aGlmH", "AtsGqKbqe", "Y7m9L8sgJ", "u2WQNcukZ", "gRgZAVMwJ", "rd_VK8DcK", "T3Zvj4lLt", "FhHZF40Gc", "DvMnYDgLq", "DP3k2sIwB", "is0Kmy_LC", "dYspAHvCn", "yIZLGI3IM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "KrXbsPILD1xtnafx", "args", "KrXbsPILD1ov8v4r", "KrXbsPILDgko28l", "KrXbsPILDjnvuu0", "KrXbsPILDkhapmg", "KrXbsPILDbr4mb1", "KrXbsPILD11xbel4", "KrXbsPILD8caf5w", "KrXbsPILD1i08jbh", "KrXbsPILD1mf45pp", "KrXbsPILD1undss3", "KrXbsPILDyokc1j", "KrXbsPILD1uxowba", "KrXbsPILDnbjzmd", "KrXbsPILDvu4x", "KrXbsPILD1ext7ag", "KrXbsPILDq1ltx0", "KrXbsPILD46k9fx", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramereSOfEPmfr", "withCSS", "eSOfEPmfr_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gEVq5jg55", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapyaqsd2", "args", "onTap2q9v5o", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerGXHhJTtJc", "withCSS", "GXHhJTtJc_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "description", "heading", "height", "id", "number", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XRBqy2pAy", "YEVw3BM0l", "DeMGKHWWt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerhvQAZuTE8", "withCSS", "hvQAZuTE8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Number", "_02Description", "_02Number", "avatar", "bGColor", "borderColor", "height", "id", "name1", "occupation", "starColor", "testimonial", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ysHGQbLqA", "HZi8Dk5hs", "d4lzmm0YL", "F9uW9JjKI", "ZL3Q30CZC", "y8_auQFXP", "qXDjeqRcY", "V5EvMzZAA", "jjg85LuOE", "AM46op7Lx", "DMTP3vKWw", "VZf4KPRV3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "css", "FramerjFWuJpyza", "withCSS", "jFWuJpyza_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Qkn0srEs4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerkR2QL9FhD", "withCSS", "kR2QL9FhD_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "RichTextWithFXWithOptimizedAppearEffect", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "animation", "animation1", "transformTemplate2", "animation2", "transition2", "textEffect", "transition3", "animation3", "animation4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearcudx8a", "args", "onAppearbtcitc", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "css", "FramerllioleSC9", "withCSS", "llioleSC9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "bGColor", "border", "height", "id", "image1", "image2", "image3", "image4", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dGWMhyRCs", "H0Oo1Mfv9", "fwD6acpNS", "vNAo0sswR", "RDM7oqG69", "IYnqoNnsD", "K01rPaGiO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_RDM7oqG69_borderBottomWidth", "_RDM7oqG69_borderLeftWidth", "_RDM7oqG69_borderRightWidth", "_RDM7oqG69_borderTopWidth", "_RDM7oqG69_borderBottomWidth1", "_RDM7oqG69_borderLeftWidth1", "_RDM7oqG69_borderRightWidth1", "_RDM7oqG69_borderTopWidth1", "_RDM7oqG69_borderBottomWidth2", "_RDM7oqG69_borderLeftWidth2", "_RDM7oqG69_borderRightWidth2", "_RDM7oqG69_borderTopWidth2", "_RDM7oqG69_borderBottomWidth3", "_RDM7oqG69_borderLeftWidth3", "_RDM7oqG69_borderRightWidth3", "_RDM7oqG69_borderTopWidth3", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerP9ubNxmwe", "withCSS", "P9ubNxmwe_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "TVsgllYiM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerCE7zNdgHX", "withCSS", "CE7zNdgHX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonColor", "height", "iconColor", "iconName", "id", "link", "title", "titleColor", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "VWafCeIGj", "vlpsm77Pq", "D_kS0OSgm", "KvWpFi39a", "UvBHTWJGv", "wiHIqrBU5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerEWzcwK0dQ", "withCSS", "EWzcwK0dQ_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "badgeBGOpacity", "badgeIconName", "bGColor", "color", "height", "id", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "fNIfKedye", "tlTcxOvUU", "M43wJ6KEW", "ZK6JFFNEQ", "lbHyc7_1a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerMAxy_g2Et", "withCSS", "MAxy_g2Et_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "price", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "T0YZmqdsr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramertC_tj2qbE", "withCSS", "tC_tj2qbE_default", "addPropertyControls", "ControlType", "addFonts", "PricingBadgeFonts", "getFonts", "MAxy_g2Et_default", "PricingPriceFonts", "tC_tj2qbE_default", "MotionDivWithFX", "withFX", "motion", "PricingButtonFonts", "EWzcwK0dQ_default", "PricingIncludedItemFonts", "CE7zNdgHX_default", "PricingPriceControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "animation", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "_01Item", "_02Item", "_03Item", "_04Item", "_05Item", "_06Item", "_07Item", "_08Item", "badgeBGColor", "badgeBGOpacity", "badgeColor", "badgeIconName", "badgeText", "bGColor", "buttonColor", "buttonIconColor", "buttonIconName", "buttonLink", "buttonTitle", "buttonTitleColor", "corner", "description", "height", "id", "included", "oldPrice", "period", "price", "priceAnimation", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RknEJ7V9I", "E4l7WXm44", "fWFFPpiNH", "KSYJFft7Q", "H80N7nNWU", "DRXq2CA0R", "gkTCll13m", "Ib_jSGmxj", "mlWl2mSjJ", "e1Qtj6Buf", "DHbncmPbm", "xozNZ2iu9", "fX1Kko_Pw", "X2qnDvuoF", "JkvOs4nXW", "KG7qH92rR", "F0SJvkAIO", "YAYtd5eAN", "gKl4XJ6TP", "qhMj7xIXc", "X8yfJNZKa", "BZUS7Yok2", "tegf3lo8s", "p3LN5hAsJ", "xpBOsytlV", "pswJBNYyr", "djxZivlJX", "z9bebLOr6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "visible8", "visible9", "visible10", "visible11", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDCs41GB7F", "withCSS", "DCs41GB7F_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jvpLcpfrA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1intngp", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "css", "FramerKUEyOwyvM", "withCSS", "KUEyOwyvM_default", "addPropertyControls", "ControlType", "addFonts", "PricingToggleFonts", "getFonts", "KUEyOwyvM_default", "MotionDivWithFX", "withFX", "motion", "PricingCardFonts", "DCs41GB7F_default", "PricingCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "cardVariant", "direction", "gap", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zNy6M4eyf", "rwyc6NF6W", "bAuB7le7t", "wP464GpMB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "jvpLcpfrA6oqa3g", "args", "jvpLcpfrAx86yh7", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerS_9OuWIAJ", "withCSS", "S_9OuWIAJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bottom", "height", "id", "number", "top", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "s0pskHPgi", "xdRQ8fRTN", "sUuW11Svk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerW96ZH6Gnz", "withCSS", "W96ZH6Gnz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "SplashScreenFonts", "getFonts", "llioleSC9_default", "HeaderHeaderFonts", "O1fMzCErz_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "ImageWithOptimizedAppearEffect", "Image2", "MotionSectionWithFX", "withFX", "UIArrowButtonFonts", "ozPjcS5mp_default", "RichTextWithFX", "NumbersItemFonts", "aH7yeXBVj_default", "MotionDivWithFX", "LogoFonts", "OY8jC43hH_default", "ContainerWithFX", "PhosphorFonts", "Icon", "ImageWithFX", "BenefitsTodoItemFonts", "GXHhJTtJc_default", "UICategoryFonts", "wVLyqC_6X_default", "ProjetcsProjectItemLightFonts", "Zn0HI2r8i_default", "UIAllItemsFonts", "kR2QL9FhD_default", "ServicesItemsFonts", "eSOfEPmfr_default", "LogoCarouselFonts", "fuxa0eFsG_default", "TeamAvatarFonts", "P9ubNxmwe_default", "TeamItemFonts", "W96ZH6Gnz_default", "PricingTableFonts", "S_9OuWIAJ_default", "PricingTableWithVariantAppearEffect", "withVariantAppearEffect", "ProcessItemFonts", "hvQAZuTE8_default", "TestimoialsItemFonts", "jFWuJpyza_default", "FAQQuestionsFonts", "MNTz_j57q_default", "ContactFonts", "McSGfJuih_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "t", "transition3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "transformTemplate2", "transition6", "animation8", "animation9", "transition7", "animation10", "animation11", "transition8", "animation12", "transition9", "animation13", "transition10", "animation14", "animation15", "transition11", "animation16", "animation17", "transition12", "animation18", "transition13", "animation19", "animation20", "transition14", "animation21", "animation22", "animation23", "transition15", "animation24", "animation25", "animation26", "animation27", "transition16", "animation28", "transition17", "animation29", "animation30", "transition18", "animation31", "animation32", "transition19", "transition20", "transition21", "transition22", "transition23", "animation33", "animation34", "animation35", "animation36", "transition24", "animation37", "transition25", "transition26", "animation38", "transition27", "animation39", "animation40", "animation41", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation42", "animation43", "addImageAlt", "image", "alt", "animation44", "transition28", "textEffect", "animation45", "transition29", "animation46", "transition30", "animation47", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "EvxErjRB0R1l4KJ6q9", "G5Mz1FFPUR1l4KJ6q9", "fcLdTQRWuR1l4KJ6q9", "jjZ9ReRduR1l4KJ6q9", "UoGh11fYeR1l4KJ6q9", "idR1l4KJ6q9", "EvxErjRB0qP1mjwHOX", "G5Mz1FFPUqP1mjwHOX", "fcLdTQRWuqP1mjwHOX", "jjZ9ReRduqP1mjwHOX", "UoGh11fYeqP1mjwHOX", "idqP1mjwHOX", "EvxErjRB0GfnuKxpzH", "G5Mz1FFPUGfnuKxpzH", "fcLdTQRWuGfnuKxpzH", "jjZ9ReRduGfnuKxpzH", "UoGh11fYeGfnuKxpzH", "idGfnuKxpzH", "EvxErjRB0rdXGgOgkR", "G5Mz1FFPUrdXGgOgkR", "fcLdTQRWurdXGgOgkR", "jjZ9ReRdurdXGgOgkR", "UoGh11fYerdXGgOgkR", "idrdXGgOgkR", "EvxErjRB0QgALtqtfz", "G5Mz1FFPUQgALtqtfz", "fcLdTQRWuQgALtqtfz", "jjZ9ReRduQgALtqtfz", "UoGh11fYeQgALtqtfz", "idQgALtqtfz", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "SVG", "ChildrenCanSuspend", "RwM1qgENQ_default", "rXPb48_DN_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
