{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/jKvlNVftecyIC4FupqDm/4e8ZRj3E5WWwN0YVksGk/Counter.js", "ssg:https://framerusercontent.com/modules/jt4f2vIvMjw6Mgf8T7VH/rNk6k3GlDqNfatQSrqDs/aH7yeXBVj.js", "ssg:https://framerusercontent.com/modules/bwUvRPqSiYypWL00ROZq/4dGNT2a2btk86YNJcKMC/JDguMTCRG.js", "ssg:https://framerusercontent.com/modules/4oA7R5XkcRdSMTg7aT5r/CNc2WwtiXIoJ1evQ36Gf/ZkokeclFd.js", "ssg:https://framerusercontent.com/modules/5e64bKZIjO7c5eC7W0Tk/azvSpkkcH9SPgKgZVZBe/eSOfEPmfr.js", "ssg:https://framerusercontent.com/modules/5tCEsGytVf8zn8SaTdR5/luAez8l8RRKKLOyeGNeQ/kR2QL9FhD.js", "ssg:https://framerusercontent.com/modules/tg9OjrA7I37Guzhs1q9q/QCQ3ZPcDB6QmJE5XjBow/llioleSC9.js", "ssg:https://framerusercontent.com/modules/aTIJahabh94nola4hgYs/wBdZC52Zh3ZoECIW4OQz/P9ubNxmwe.js", "ssg:https://framerusercontent.com/modules/5qgrgqQ2RGZKfhYlyptE/p7zyMkI15AoZ47yUJfFh/W96ZH6Gnz.js", "ssg:https://framerusercontent.com/modules/qNWFkXrnSB7LQFpGnqnR/mD2qPCPFTVQkJdK4fKyE/O6R2SIoIO.js", "ssg:https://framerusercontent.com/modules/bk058rFyz5L3FoYieeeN/dJnPuLw1MaPM2zwjMI5a/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\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor,letterSpacing:\"-0.07em\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},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,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\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/jKvlNVftecyIC4FupqDm/4e8ZRj3E5WWwN0YVksGk/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pQaxDxA0Md4BvttpctBZ/6tZ2vvZsHvCwVz4ZlFVH/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qxwXZ8hdOt1sbMHLliIr/PIrMpzjSpgn7iG0ItBrd/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\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BU4_wyR9A\\\":\\\"number\\\",\\\"uvfNqUND5\\\":\\\"suffix\\\",\\\"XbDSLtZLO\\\":\\\"incrementType\\\",\\\"OhLeOem3o\\\":\\\"speedMs\\\",\\\"ezNYwgiIW\\\":\\\"h3Title\\\",\\\"MTE4RiHaV\\\":\\\"description\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgtZ872x4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GafEYaEBD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"242\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/eOd8zT76vgR8vrDvpV3P/jCHnoY89wNr0U6TbVXa2/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/j8c9iBzEhvWs0SAtewnt/RQ7kHc8jq9WilrAHqgIZ/mwKQuIQiM.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/s141qHfZiSGUMBfxZCbM/s73d92oe6LQwVd6EXOk2/ngnCvtz15.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a1mQ4YSChPNXG2cF8DnK/pDoX2MGdwqZliyrSSEJ7/q35quwzCc.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qxwXZ8hdOt1sbMHLliIr/PIrMpzjSpgn7iG0ItBrd/xNIXLfFSf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/rM28HnDQcWmwyjafGDZL/scar5fw1404sPJBxplPd/xvT9rFlrg.js\";const cycleOrder=[\"hDbCvcxst\",\"KVvKXtHq9\"];const serializationHash=\"framer-PocGF\";const variantClassNames={hDbCvcxst:\"framer-v-145ktc9\",KVvKXtHq9:\"framer-v-yd3s1d\"};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={Phone:\"KVvKXtHq9\",Primary:\"hDbCvcxst\"};const getProps=({bulletpoints1,click,description,height,id,title,width,...props})=>{return{...props,iU68ScBCY:description??props.iU68ScBCY??\"Description\",KcEBT1GFr:click??props.KcEBT1GFr,M6makQZJz:title??props.M6makQZJz??\"Title\",rb4u8bIQ5:bulletpoints1??props.rb4u8bIQ5??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 1\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"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 fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,M6makQZJz,iU68ScBCY,KcEBT1GFr,rb4u8bIQ5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hDbCvcxst\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapv362gq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KcEBT1GFr){const res=await KcEBT1GFr(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-145ktc9\",className,classNames),\"data-framer-name\":\"Primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hDbCvcxst\",onTap:onTapv362gq,ref:refBinding,style:{...style},...addPropertyOverrides({KVvKXtHq9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__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,{style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-1qxv4mt\",\"data-framer-name\":\"Branding\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2S116wtB\",style:{\"--extracted-r6o4lv\":\"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}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"WqMCowJwu\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:rb4u8bIQ5,className:\"framer-1yygwlm\",\"data-framer-name\":\"We create impactful brand identities that differentiate your business and connect with your audience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HUw2uQWTY\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{blockquote:\"framer-styles-preset-spty0r\",h5:\"framer-styles-preset-112cnkr\",img:\"framer-styles-preset-n8fjpq\",p:\"framer-styles-preset-jnye1g\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PocGF.framer-g71a2p, .framer-PocGF .framer-g71a2p { display: block; }\",\".framer-PocGF.framer-145ktc9 { align-content: center; align-items: center; cursor: pointer; 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-PocGF .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-PocGF .framer-1qxv4mt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PocGF .framer-1q2ai5c, .framer-PocGF .framer-1yygwlm { 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-PocGF.framer-145ktc9, .framer-PocGF .framer-11zx5yf { gap: 0px; } .framer-PocGF.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-PocGF.framer-145ktc9 > :first-child, .framer-PocGF .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-PocGF.framer-145ktc9 > :last-child, .framer-PocGF .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-PocGF .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-PocGF.framer-v-yd3s1d.framer-145ktc9 { gap: 32px; }\",\".framer-PocGF.framer-v-yd3s1d .framer-11zx5yf { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PocGF.framer-v-yd3s1d.framer-145ktc9, .framer-PocGF.framer-v-yd3s1d .framer-11zx5yf { gap: 0px; } .framer-PocGF.framer-v-yd3s1d.framer-145ktc9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PocGF.framer-v-yd3s1d.framer-145ktc9 > :first-child, .framer-PocGF.framer-v-yd3s1d .framer-11zx5yf > :first-child { margin-top: 0px; } .framer-PocGF.framer-v-yd3s1d.framer-145ktc9 > :last-child, .framer-PocGF.framer-v-yd3s1d .framer-11zx5yf > :last-child { margin-bottom: 0px; } .framer-PocGF.framer-v-yd3s1d .framer-11zx5yf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 97\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KVvKXtHq9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"M6makQZJz\":\"title\",\"iU68ScBCY\":\"description\",\"KcEBT1GFr\":\"click\",\"rb4u8bIQ5\":\"bulletpoints1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJDguMTCRG=withCSS(Component,css,\"framer-PocGF\");export default FramerJDguMTCRG;FramerJDguMTCRG.displayName=\"Services / Items / Description\";FramerJDguMTCRG.defaultProps={height:97,width:180};addPropertyControls(FramerJDguMTCRG,{variant:{options:[\"hDbCvcxst\",\"KVvKXtHq9\"],optionTitles:[\"Primary\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},M6makQZJz:{defaultValue:\"Title\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},iU68ScBCY:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String},KcEBT1GFr:{title:\"Click\",type:ControlType.EventHandler},rb4u8bIQ5:{defaultValue:\"<p>Bulletpoints 1</p>\",description:\"Bulletpoints 1\",title:\"Bulletpoints 1\",type:ControlType.RichText}});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),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...componentPresets.fonts?.[\"WqMCowJwu\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"WqMCowJwu\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDguMTCRG\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"M6makQZJz\\\":\\\"title\\\",\\\"iU68ScBCY\\\":\\\"description\\\",\\\"KcEBT1GFr\\\":\\\"click\\\",\\\"rb4u8bIQ5\\\":\\\"bulletpoints1\\\"}\",\"framerIntrinsicWidth\":\"180\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KVvKXtHq9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"97\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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 (e1a43d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServicesItemsDescription from\"https://framerusercontent.com/modules/bwUvRPqSiYypWL00ROZq/4dGNT2a2btk86YNJcKMC/JDguMTCRG.js\";import ServicesItemsItem from\"https://framerusercontent.com/modules/4oA7R5XkcRdSMTg7aT5r/CNc2WwtiXIoJ1evQ36Gf/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-0ih2R\";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?.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 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??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,_01Title,_02Description,_02Title,_03Description,_03Title,_04Description,_04Title,_05Description,_05Title,_06Description,_06Title,bulletpoints1,bulletpoints2,bulletpoints3,bulletpoints4,bulletpoints5,bulletpoints6,height,id,width,...props})=>{return{...props,AChBv6mnx:_02Title??props.AChBv6mnx??\"02 Title\",bCzHpbaLj:bulletpoints1??props.bCzHpbaLj??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 1\"})}),DP3k2sIwB:_05Description??props.DP3k2sIwB??\"05 Description\",DvMnYDgLq:_05Title??props.DvMnYDgLq??\"05 Title\",dym8aGlmH:_02Description??props.dym8aGlmH??\"02 Description\",dYspAHvCn:_06Title??props.dYspAHvCn??\"06 Title\",k_JSyjBLA:bulletpoints3??props.k_JSyjBLA??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 3\"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),nfr3_vd4_:_01Description??props.nfr3_vd4_??\"01 Description\",p3Eq8ImvR:bulletpoints6??props.p3Eq8ImvR??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 6\"})}),rd_VK8DcK:_04Title??props.rd_VK8DcK??\"04 Title\",T3Zvj4lLt:_04Description??props.T3Zvj4lLt??\"04 Description\",teKSqI_3S:bulletpoints2??props.teKSqI_3S??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 2\"}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),u2WQNcukZ:_03Description??props.u2WQNcukZ??\"03 Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vl7fPkW6x\",XAHQcw5bL:bulletpoints5??props.XAHQcw5bL??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 5\"})}),Xgqdpwxoc:_01Title??props.Xgqdpwxoc??\"01 Title\",Y7m9L8sgJ:_03Title??props.Y7m9L8sgJ??\"03 Title\",yIZLGI3IM:_06Description??props.yIZLGI3IM??\"06 Description\",ZRe4M1eiq:bulletpoints4??props.ZRe4M1eiq??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Bulletpoints 4\"})})};};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,nfr3_vd4_,Xgqdpwxoc,AChBv6mnx,dym8aGlmH,Y7m9L8sgJ,u2WQNcukZ,rd_VK8DcK,T3Zvj4lLt,DvMnYDgLq,DP3k2sIwB,dYspAHvCn,yIZLGI3IM,teKSqI_3S,k_JSyjBLA,ZRe4M1eiq,XAHQcw5bL,p3Eq8ImvR,bCzHpbaLj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vl7fPkW6x\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const KcEBT1GFr1ov8v4r=activeVariantCallback(async(...args)=>{setVariant(\"TLxLam4YZ\");});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 sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(AChBv6mnx);const visible1=isSet(Y7m9L8sgJ);const visible2=isSet(rd_VK8DcK);const visible3=isSet(DvMnYDgLq);const visible4=isSet(dYspAHvCn);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-dif0uf\",className,classNames),\"data-framer-name\":\"Desktop main\",layoutDependency:layoutDependency,layoutId:\"vl7fPkW6x\",ref:refBinding,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:97,width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 3, 1px) * 0.9947)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({CDtoZNgtA:{y:(componentViewport?.y||0)+0+100},cHwDp_s5i:{y:(componentViewport?.y||0)+0+200},CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},fci5zB1JM:{y:(componentViewport?.y||0)+0+250},fNHB6YKk0:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 4, 1px) * 0.8)`},FPEMd0pOj:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 4, 1px) * 0.8)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},jupkLvHBO:{y:(componentViewport?.y||0)+0+150},TLxLam4YZ:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 33px) / 4, 1px) * 1.0109)`},ueg3wT1lw:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 4, 1px) * 0.8)`},UiRdOhXvT:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 4, 1px) * 0.8)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},xrEj7YEsU:{y:(componentViewport?.y||0)+0+50},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},YEnTeNdRP:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 6px) / 4, 1px) * 0.847)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t6msbh-container\",layoutDependency:layoutDependency,layoutId:\"AxX6jMRFd-container\",nodeId:\"AxX6jMRFd\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsDescription,{height:\"100%\",id:\"AxX6jMRFd\",iU68ScBCY:nfr3_vd4_,layoutId:\"AxX6jMRFd\",M6makQZJz:Xgqdpwxoc,rb4u8bIQ5:bCzHpbaLj,style:{width:\"100%\"},variant:\"hDbCvcxst\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,rb4u8bIQ5:k_JSyjBLA},cHwDp_s5i:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,rb4u8bIQ5:XAHQcw5bL},CYu4a7neK:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,rb4u8bIQ5:XAHQcw5bL,variant:\"KVvKXtHq9\"},fci5zB1JM:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,rb4u8bIQ5:p3Eq8ImvR},fNHB6YKk0:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,rb4u8bIQ5:teKSqI_3S},FPEMd0pOj:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,rb4u8bIQ5:p3Eq8ImvR},FxHnXRW2z:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,rb4u8bIQ5:ZRe4M1eiq,variant:\"KVvKXtHq9\"},hpOMYgQXf:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,rb4u8bIQ5:p3Eq8ImvR,variant:\"KVvKXtHq9\"},jupkLvHBO:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,rb4u8bIQ5:ZRe4M1eiq},TLxLam4YZ:{KcEBT1GFr:KcEBT1GFr1ov8v4r},ueg3wT1lw:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,rb4u8bIQ5:ZRe4M1eiq},UiRdOhXvT:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,rb4u8bIQ5:XAHQcw5bL},VE5xIiPuL:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,rb4u8bIQ5:teKSqI_3S,variant:\"KVvKXtHq9\"},VGwYuVR2s:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,rb4u8bIQ5:k_JSyjBLA,variant:\"KVvKXtHq9\"},xrEj7YEsU:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,rb4u8bIQ5:teKSqI_3S},y1cmM3CL5:{variant:\"KVvKXtHq9\"},YEnTeNdRP:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,rb4u8bIQ5:teKSqI_3S}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-phl2vz\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"oeh8xrVP_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nd4r9v-container\",layoutDependency:layoutDependency,layoutId:\"xX3J7kRZq-container\",nodeId:\"xX3J7kRZq\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+152,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1blppte-container\",layoutDependency:layoutDependency,layoutId:\"iowul08mJ-container\",nodeId:\"iowul08mJ\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+304,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1lq8o-container\",layoutDependency:layoutDependency,layoutId:\"I6fdJ7qzg-container\",nodeId:\"I6fdJ7qzg\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+456,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bpv6go-container\",layoutDependency:layoutDependency,layoutId:\"HLaVc2GJP-container\",nodeId:\"HLaVc2GJP\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+608,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sb2gc-container\",layoutDependency:layoutDependency,layoutId:\"lSm5egHE_-container\",nodeId:\"lSm5egHE_\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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:142,width:`max((${componentViewport?.width||\"100vw\"} - 6px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+760,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 33px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 6px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cteh2s-container\",layoutDependency:layoutDependency,layoutId:\"MnFwFVMnY-container\",nodeId:\"MnFwFVMnY\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",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-0ih2R.framer-t4nuy2, .framer-0ih2R .framer-t4nuy2 { display: block; }\",\".framer-0ih2R.framer-dif0uf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1128px; }\",\".framer-0ih2R .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-0ih2R .framer-t6msbh-container { flex: none; height: auto; position: relative; width: 99%; }\",\".framer-0ih2R .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-0ih2R .framer-nd4r9v-container, .framer-0ih2R .framer-1blppte-container, .framer-0ih2R .framer-1d1lq8o-container, .framer-0ih2R .framer-bpv6go-container, .framer-0ih2R .framer-sb2gc-container, .framer-0ih2R .framer-cteh2s-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-dif0uf, .framer-0ih2R .framer-vqugsr, .framer-0ih2R .framer-phl2vz { gap: 0px; } .framer-0ih2R.framer-dif0uf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-0ih2R.framer-dif0uf > :first-child, .framer-0ih2R .framer-vqugsr > :first-child { margin-left: 0px; } .framer-0ih2R.framer-dif0uf > :last-child, .framer-0ih2R .framer-vqugsr > :last-child { margin-right: 0px; } .framer-0ih2R .framer-vqugsr > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0ih2R .framer-phl2vz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0ih2R .framer-phl2vz > :first-child { margin-top: 0px; } .framer-0ih2R .framer-phl2vz > :last-child { margin-bottom: 0px; } }\",\".framer-0ih2R.framer-v-1635f9f .framer-vqugsr { padding: 50px 0px 0px 0px; }\",\".framer-0ih2R.framer-v-1ur73tn .framer-vqugsr { padding: 100px 0px 0px 0px; }\",\".framer-0ih2R.framer-v-x4igo9 .framer-vqugsr { padding: 150px 0px 0px 0px; }\",\".framer-0ih2R.framer-v-ganesh .framer-vqugsr { padding: 200px 0px 0px 0px; }\",\".framer-0ih2R.framer-v-11qo17c .framer-vqugsr { padding: 250px 0px 0px 0px; }\",\".framer-0ih2R.framer-v-1t7ta8b.framer-dif0uf { gap: 33px; }\",\".framer-0ih2R.framer-v-1t7ta8b .framer-vqugsr, .framer-0ih2R.framer-v-o3l3yy .framer-vqugsr, .framer-0ih2R.framer-v-1lhle6x .framer-vqugsr, .framer-0ih2R.framer-v-c7xmxb .framer-vqugsr, .framer-0ih2R.framer-v-hhhalw .framer-vqugsr, .framer-0ih2R.framer-v-oq2w7w .framer-vqugsr { flex: 3 0 0px; }\",\".framer-0ih2R.framer-v-1t7ta8b .framer-t6msbh-container { width: 101%; }\",\".framer-0ih2R.framer-v-1t7ta8b .framer-phl2vz, .framer-0ih2R.framer-v-o3l3yy .framer-phl2vz, .framer-0ih2R.framer-v-1lhle6x .framer-phl2vz, .framer-0ih2R.framer-v-c7xmxb .framer-phl2vz, .framer-0ih2R.framer-v-hhhalw .framer-phl2vz, .framer-0ih2R.framer-v-oq2w7w .framer-phl2vz { flex: 9 0 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-1t7ta8b.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-1t7ta8b.framer-dif0uf > * { margin: 0px; margin-left: calc(33px / 2); margin-right: calc(33px / 2); } .framer-0ih2R.framer-v-1t7ta8b.framer-dif0uf > :first-child { margin-left: 0px; } .framer-0ih2R.framer-v-1t7ta8b.framer-dif0uf > :last-child { margin-right: 0px; } }\",\".framer-0ih2R.framer-v-o3l3yy .framer-t6msbh-container { width: 85%; }\",\".framer-0ih2R.framer-v-1lhle6x .framer-t6msbh-container, .framer-0ih2R.framer-v-c7xmxb .framer-t6msbh-container, .framer-0ih2R.framer-v-hhhalw .framer-t6msbh-container, .framer-0ih2R.framer-v-oq2w7w .framer-t6msbh-container { width: 80%; }\",\".framer-0ih2R.framer-v-hhhalw .framer-nd4r9v-container, .framer-0ih2R.framer-v-oq2w7w .framer-nd4r9v-container { order: 0; }\",\".framer-0ih2R.framer-v-hhhalw .framer-1blppte-container, .framer-0ih2R.framer-v-oq2w7w .framer-1blppte-container { order: 1; }\",\".framer-0ih2R.framer-v-hhhalw .framer-1d1lq8o-container, .framer-0ih2R.framer-v-oq2w7w .framer-1d1lq8o-container { order: 2; }\",\".framer-0ih2R.framer-v-hhhalw .framer-bpv6go-container, .framer-0ih2R.framer-v-oq2w7w .framer-bpv6go-container { order: 3; }\",\".framer-0ih2R.framer-v-hhhalw .framer-sb2gc-container, .framer-0ih2R.framer-v-oq2w7w .framer-sb2gc-container { order: 4; }\",\".framer-0ih2R.framer-v-hhhalw .framer-cteh2s-container, .framer-0ih2R.framer-v-oq2w7w .framer-cteh2s-container { order: 5; }\",\".framer-0ih2R.framer-v-aie38q.framer-dif0uf, .framer-0ih2R.framer-v-mqhzof.framer-dif0uf, .framer-0ih2R.framer-v-pdjrec.framer-dif0uf, .framer-0ih2R.framer-v-lofp2d.framer-dif0uf, .framer-0ih2R.framer-v-mkl476.framer-dif0uf, .framer-0ih2R.framer-v-dtfqpu.framer-dif0uf { flex-direction: column; gap: 40px; width: 400px; }\",\".framer-0ih2R.framer-v-aie38q .framer-vqugsr, .framer-0ih2R.framer-v-mqhzof .framer-vqugsr, .framer-0ih2R.framer-v-pdjrec .framer-vqugsr, .framer-0ih2R.framer-v-lofp2d .framer-vqugsr, .framer-0ih2R.framer-v-mkl476 .framer-vqugsr, .framer-0ih2R.framer-v-dtfqpu .framer-vqugsr { flex: none; order: 1; width: 100%; }\",\".framer-0ih2R.framer-v-aie38q .framer-t6msbh-container, .framer-0ih2R.framer-v-mqhzof .framer-t6msbh-container, .framer-0ih2R.framer-v-pdjrec .framer-t6msbh-container, .framer-0ih2R.framer-v-lofp2d .framer-t6msbh-container, .framer-0ih2R.framer-v-mkl476 .framer-t6msbh-container, .framer-0ih2R.framer-v-dtfqpu .framer-t6msbh-container { width: 100%; }\",\".framer-0ih2R.framer-v-aie38q .framer-phl2vz, .framer-0ih2R.framer-v-mqhzof .framer-phl2vz, .framer-0ih2R.framer-v-pdjrec .framer-phl2vz, .framer-0ih2R.framer-v-lofp2d .framer-phl2vz, .framer-0ih2R.framer-v-mkl476 .framer-phl2vz, .framer-0ih2R.framer-v-dtfqpu .framer-phl2vz { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-aie38q.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-aie38q.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-aie38q.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-aie38q.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-mqhzof.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-mqhzof.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-mqhzof.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-mqhzof.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-pdjrec.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-pdjrec.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-pdjrec.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-pdjrec.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-lofp2d.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-lofp2d.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-lofp2d.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-lofp2d.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-mkl476.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-mkl476.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-mkl476.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-mkl476.framer-dif0uf > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0ih2R.framer-v-dtfqpu.framer-dif0uf { gap: 0px; } .framer-0ih2R.framer-v-dtfqpu.framer-dif0uf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-0ih2R.framer-v-dtfqpu.framer-dif0uf > :first-child { margin-top: 0px; } .framer-0ih2R.framer-v-dtfqpu.framer-dif0uf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 903\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 {\"nfr3_vd4_\":\"_01Description\",\"Xgqdpwxoc\":\"_01Title\",\"AChBv6mnx\":\"_02Title\",\"dym8aGlmH\":\"_02Description\",\"Y7m9L8sgJ\":\"_03Title\",\"u2WQNcukZ\":\"_03Description\",\"rd_VK8DcK\":\"_04Title\",\"T3Zvj4lLt\":\"_04Description\",\"DvMnYDgLq\":\"_05Title\",\"DP3k2sIwB\":\"_05Description\",\"dYspAHvCn\":\"_06Title\",\"yIZLGI3IM\":\"_06Description\",\"teKSqI_3S\":\"bulletpoints2\",\"k_JSyjBLA\":\"bulletpoints3\",\"ZRe4M1eiq\":\"bulletpoints4\",\"XAHQcw5bL\":\"bulletpoints5\",\"p3Eq8ImvR\":\"bulletpoints6\",\"bCzHpbaLj\":\"bulletpoints1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereSOfEPmfr=withCSS(Component,css,\"framer-0ih2R\");export default FramereSOfEPmfr;FramereSOfEPmfr.displayName=\"Services / Items\";FramereSOfEPmfr.defaultProps={height:903,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},nfr3_vd4_:{defaultValue:\"01 Description\",displayTextArea:false,title:\"01 Description\",type:ControlType.String},Xgqdpwxoc:{defaultValue:\"01 Title\",displayTextArea:false,placeholder:\"\",title:\"01 Title\",type:ControlType.String},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},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},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},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},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},teKSqI_3S:{defaultValue:'<p>Bulletpoints 2</p><p><br class=\"trailing-break\"></p>',title:\"Bulletpoints 2\",type:ControlType.RichText},k_JSyjBLA:{defaultValue:'<p>Bulletpoints 3</p><p><br class=\"trailing-break\"></p>',title:\"Bulletpoints 3\",type:ControlType.RichText},ZRe4M1eiq:{defaultValue:\"<p>Bulletpoints 4</p>\",title:\"Bulletpoints 4\",type:ControlType.RichText},XAHQcw5bL:{defaultValue:\"<p>Bulletpoints 5</p>\",title:\"Bulletpoints 5\",type:ControlType.RichText},p3Eq8ImvR:{defaultValue:\"<p>Bulletpoints 6</p>\",title:\"Bulletpoints 6\",type:ControlType.RichText},bCzHpbaLj:{defaultValue:\"<p>Bulletpoints 1</p>\",title:\"Bulletpoints 1\",type:ControlType.RichText}});addFonts(FramereSOfEPmfr,[{explicitInter:true,fonts:[]},...ServicesItemsDescriptionFonts,...ServicesItemsItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereSOfEPmfr\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1128\",\"framerVariables\":\"{\\\"nfr3_vd4_\\\":\\\"_01Description\\\",\\\"Xgqdpwxoc\\\":\\\"_01Title\\\",\\\"AChBv6mnx\\\":\\\"_02Title\\\",\\\"dym8aGlmH\\\":\\\"_02Description\\\",\\\"Y7m9L8sgJ\\\":\\\"_03Title\\\",\\\"u2WQNcukZ\\\":\\\"_03Description\\\",\\\"rd_VK8DcK\\\":\\\"_04Title\\\",\\\"T3Zvj4lLt\\\":\\\"_04Description\\\",\\\"DvMnYDgLq\\\":\\\"_05Title\\\",\\\"DP3k2sIwB\\\":\\\"_05Description\\\",\\\"dYspAHvCn\\\":\\\"_06Title\\\",\\\"yIZLGI3IM\\\":\\\"_06Description\\\",\\\"teKSqI_3S\\\":\\\"bulletpoints2\\\",\\\"k_JSyjBLA\\\":\\\"bulletpoints3\\\",\\\"ZRe4M1eiq\\\":\\\"bulletpoints4\\\",\\\"XAHQcw5bL\\\":\\\"bulletpoints5\\\",\\\"p3Eq8ImvR\\\":\\\"bulletpoints6\\\",\\\"bCzHpbaLj\\\":\\\"bulletpoints1\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"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\\\"]}}}\",\"framerIntrinsicHeight\":\"903\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\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-H5h44\";const variantClassNames={qzxqqvf8C:\"framer-v-154dsiy\",S6tGcwrte:\"framer-v-1u48kc1\",ZrLd_aOka:\"framer-v-rib41z\"};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:\"ZrLd_aOka\",Phone:\"S6tGcwrte\",Tablet:\"qzxqqvf8C\"};const getProps=({height,id,link,width,...props})=>{return{...props,Qkn0srEs4:link??props.Qkn0srEs4,variant:humanReadableVariantMap[props.variant]??props.variant??\"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 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(Link,{href:Qkn0srEs4,nodeId:\"ZrLd_aOka\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-rib41z\",className,classNames)} framer-1przubz`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ZrLd_aOka\",ref: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__*/_jsx(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)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-H5h44.framer-1przubz, .framer-H5h44 .framer-1przubz { display: block; }\",\".framer-H5h44.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-H5h44 .framer-10vo3ia-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-H5h44 .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-H5h44 .framer-17q93e8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H5h44.framer-rib41z, .framer-H5h44 .framer-11r5vfm { gap: 0px; } .framer-H5h44.framer-rib41z > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-H5h44.framer-rib41z > :first-child, .framer-H5h44 .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-H5h44.framer-rib41z > :last-child, .framer-H5h44 .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-H5h44 .framer-11r5vfm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-H5h44.framer-v-154dsiy.framer-rib41z { cursor: unset; }\",\".framer-H5h44.framer-v-154dsiy .framer-10vo3ia-container { height: 38px; width: 38px; }\",\".framer-H5h44.framer-v-154dsiy .framer-11r5vfm, .framer-H5h44.framer-v-1u48kc1 .framer-11r5vfm { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H5h44.framer-v-154dsiy .framer-11r5vfm { gap: 0px; } .framer-H5h44.framer-v-154dsiy .framer-11r5vfm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-H5h44.framer-v-154dsiy .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-H5h44.framer-v-154dsiy .framer-11r5vfm > :last-child { margin-right: 0px; } }\",\".framer-H5h44.framer-v-1u48kc1.framer-rib41z { cursor: unset; gap: 10px; }\",\".framer-H5h44.framer-v-1u48kc1 .framer-10vo3ia-container { height: 28px; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H5h44.framer-v-1u48kc1.framer-rib41z, .framer-H5h44.framer-v-1u48kc1 .framer-11r5vfm { gap: 0px; } .framer-H5h44.framer-v-1u48kc1.framer-rib41z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-H5h44.framer-v-1u48kc1.framer-rib41z > :first-child, .framer-H5h44.framer-v-1u48kc1 .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-H5h44.framer-v-1u48kc1.framer-rib41z > :last-child, .framer-H5h44.framer-v-1u48kc1 .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-H5h44.framer-v-1u48kc1 .framer-11r5vfm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-H5h44.framer-v-rib41z.hover.framer-rib41z { gap: 28px; }\",\".framer-H5h44.framer-v-rib41z.hover .framer-11r5vfm { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-H5h44.framer-v-rib41z.hover.framer-rib41z, .framer-H5h44.framer-v-rib41z.hover .framer-11r5vfm { gap: 0px; } .framer-H5h44.framer-v-rib41z.hover.framer-rib41z > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-H5h44.framer-v-rib41z.hover.framer-rib41z > :first-child, .framer-H5h44.framer-v-rib41z.hover .framer-11r5vfm > :first-child { margin-left: 0px; } .framer-H5h44.framer-v-rib41z.hover.framer-rib41z > :last-child, .framer-H5h44.framer-v-rib41z.hover .framer-11r5vfm > :last-child { margin-right: 0px; } .framer-H5h44.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 263\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-H5h44\");export default FramerkR2QL9FhD;FramerkR2QL9FhD.displayName=\"UI / All items\";FramerkR2QL9FhD.defaultProps={height:66,width:263};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\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkR2QL9FhD\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qzxqqvf8C\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S6tGcwrte\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ofQemSDPO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Qkn0srEs4\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"263\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"66\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kR2QL9FhD.map", "// Generated by Framer (ab692b1)\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/qxwXZ8hdOt1sbMHLliIr/PIrMpzjSpgn7iG0ItBrd/xNIXLfFSf.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"gGCKUKlHw\",\"EQjPBeGe0\",\"GnN_BPSO1\"];const serializationHash=\"framer-dHC7Q\";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 transition2={damping:30,delay:.6,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:.9,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:0,y:25};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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);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__*/_jsx(motion.div,{className:\"framer-r5byhj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sjWXRiTqQ\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.9,animate:animation,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, rgb(59, 59, 59))\"},children:\"RZLT - GROWING THE BRANDS OF THE FUTURE\"})}),className:\"framer-isyott\",\"data-framer-appear-id\":\"isyott\",\"data-framer-name\":\"Why great web design is more than just looks\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"u1sQ0z5c2\",optimized:true,style:{\"--extracted-r6o4lv\":\"rgb(59, 59, 59)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.9},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GnN_BPSO1:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vjwgrt\",\"data-framer-name\":\"BG\",layoutDependency:layoutDependency,layoutId:\"VmSCcyNmG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1961wfn\",layoutDependency:layoutDependency,layoutId:\"HCg8JJcFF\",style:{backgroundColor:\"rgb(237, 237, 237)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w4dk01\",layoutDependency:layoutDependency,layoutId:\"SX3mKG5wE\",style:{backgroundColor:\"rgb(237, 237, 237)\"}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dHC7Q.framer-hnijwy, .framer-dHC7Q .framer-hnijwy { display: block; }\",\".framer-dHC7Q.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-dHC7Q .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; overflow: visible; padding: 0px 0px 18px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-dHC7Q .framer-isyott { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-dHC7Q .framer-vjwgrt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-dHC7Q .framer-1961wfn, .framer-dHC7Q .framer-1w4dk01 { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dHC7Q.framer-jrv8u9, .framer-dHC7Q .framer-r5byhj, .framer-dHC7Q .framer-vjwgrt { gap: 0px; } .framer-dHC7Q.framer-jrv8u9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-dHC7Q.framer-jrv8u9 > :first-child, .framer-dHC7Q .framer-r5byhj > :first-child, .framer-dHC7Q .framer-vjwgrt > :first-child { margin-top: 0px; } .framer-dHC7Q.framer-jrv8u9 > :last-child, .framer-dHC7Q .framer-r5byhj > :last-child, .framer-dHC7Q .framer-vjwgrt > :last-child { margin-bottom: 0px; } .framer-dHC7Q .framer-r5byhj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dHC7Q .framer-vjwgrt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-dHC7Q.framer-v-1srj58c .framer-r5byhj { flex: 1 0 0px; height: 1px; }\",\".framer-dHC7Q.framer-v-1srj58c .framer-isyott { bottom: -60px; left: 50%; position: absolute; }\",\".framer-dHC7Q.framer-v-1srj58c .framer-vjwgrt { bottom: -1px; gap: unset; height: unset; justify-content: space-between; top: -1px; }\",\".framer-dHC7Q.framer-v-1srj58c .framer-1961wfn, .framer-dHC7Q.framer-v-1srj58c .framer-1w4dk01 { flex: none; height: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dHC7Q.framer-v-1srj58c .framer-vjwgrt { gap: 0px; } .framer-dHC7Q.framer-v-1srj58c .framer-vjwgrt > *, .framer-dHC7Q.framer-v-1srj58c .framer-vjwgrt > :first-child, .framer-dHC7Q.framer-v-1srj58c .framer-vjwgrt > :last-child { margin: 0px; } }\",...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-dHC7Q\");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:\"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\":\"FramerllioleSC9\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EQjPBeGe0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GnN_BPSO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"834\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./llioleSC9.map", "// Generated by Framer (48da836)\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-zyJdh\";const variantClassNames={jMWPy6G8Y:\"framer-v-1vpmlft\",UMGTZZ0f6:\"framer-v-t5m6nn\"};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 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??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=({albertinaNikolova,alexLopez,alvaroRodriguez,amount,bGColor,border,daniloPolovina,height,id,width,...props})=>{return{...props,dGWMhyRCs:albertinaNikolova??props.dGWMhyRCs??{src:\"https://framerusercontent.com/images/8gVo6FLKp6ztmBwY6P3hWFURm8A.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8gVo6FLKp6ztmBwY6P3hWFURm8A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/8gVo6FLKp6ztmBwY6P3hWFURm8A.webp 940w\"},fwD6acpNS:alexLopez??props.fwD6acpNS??{src:\"https://framerusercontent.com/images/jM72MiufeO1gDPgyFtmnX7g4fg.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jM72MiufeO1gDPgyFtmnX7g4fg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jM72MiufeO1gDPgyFtmnX7g4fg.webp 940w\"},H0Oo1Mfv9:daniloPolovina??props.H0Oo1Mfv9??{src:\"https://framerusercontent.com/images/0DAIKOBRYbG5FlMkDAscD5Jw8k.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0DAIKOBRYbG5FlMkDAscD5Jw8k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0DAIKOBRYbG5FlMkDAscD5Jw8k.webp 940w\"},IYnqoNnsD:amount??props.IYnqoNnsD??\"20+\",K01rPaGiO:bGColor??props.K01rPaGiO??\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",RDM7oqG69:border??props.RDM7oqG69??{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},variant:humanReadableVariantMap[props.variant]??props.variant??\"UMGTZZ0f6\",vNAo0sswR:alvaroRodriguez??props.vNAo0sswR??{src:\"https://framerusercontent.com/images/bBlbzwajrHkKJyZROEp0xJo.webp?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bBlbzwajrHkKJyZROEp0xJo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bBlbzwajrHkKJyZROEp0xJo.webp 940w\"}};};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,fwD6acpNS,H0Oo1Mfv9,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 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-t5m6nn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UMGTZZ0f6\",ref:ref??ref1,style:{...style},...addPropertyOverrides({jMWPy6G8Y:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||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.borderWidth)+\"px\",\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":(RDM7oqG69.borderLeftWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-right-width\":(RDM7oqG69.borderRightWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":(RDM7oqG69.borderTopWidth??RDM7oqG69.borderWidth)+\"px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||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?.y||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.borderBottomWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":(RDM7oqG69.borderLeftWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-right-width\":(RDM7oqG69.borderRightWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":(RDM7oqG69.borderTopWidth??RDM7oqG69.borderWidth)+\"px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||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?.y||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.borderBottomWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":(RDM7oqG69.borderLeftWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-right-width\":(RDM7oqG69.borderRightWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":(RDM7oqG69.borderTopWidth??RDM7oqG69.borderWidth)+\"px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||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?.y||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.borderBottomWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":(RDM7oqG69.borderLeftWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-right-width\":(RDM7oqG69.borderRightWidth??RDM7oqG69.borderWidth)+\"px\",\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":(RDM7oqG69.borderTopWidth??RDM7oqG69.borderWidth)+\"px\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||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-zyJdh.framer-3jiffd, .framer-zyJdh .framer-3jiffd { display: block; }\",\".framer-zyJdh.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-zyJdh .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-zyJdh .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-zyJdh .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-zyJdh .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-zyJdh .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-zyJdh .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-zyJdh.framer-t5m6nn { gap: 0px; } .framer-zyJdh.framer-t5m6nn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zyJdh.framer-t5m6nn > :first-child { margin-left: 0px; } .framer-zyJdh.framer-t5m6nn > :last-child { margin-right: 0px; } }\",\".framer-zyJdh.framer-v-1vpmlft.framer-t5m6nn { height: 48px; min-height: unset; width: 150px; }\",\".framer-zyJdh.framer-v-1vpmlft .framer-1ju8bs4 { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; }\",\".framer-zyJdh.framer-v-1vpmlft .framer-h0yyxg { height: var(--framer-aspect-ratio-supported, 46px); left: 26px; width: 46px; }\",\".framer-zyJdh.framer-v-1vpmlft .framer-yr5zjy { height: var(--framer-aspect-ratio-supported, 46px); left: 52px; width: 46px; }\",\".framer-zyJdh.framer-v-1vpmlft .framer-rix1l1 { height: var(--framer-aspect-ratio-supported, 46px); left: 78px; width: 46px; }\",\".framer-zyJdh.framer-v-1vpmlft .framer-1so9i2b { height: var(--framer-aspect-ratio-supported, 46px); left: 104px; width: 46px; }\",'.framer-zyJdh[data-border=\"true\"]::after, .framer-zyJdh [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\":\"albertinaNikolova\",\"fwD6acpNS\":\"alexLopez\",\"H0Oo1Mfv9\":\"daniloPolovina\",\"vNAo0sswR\":\"alvaroRodriguez\",\"RDM7oqG69\":\"border\",\"IYnqoNnsD\":\"amount\",\"K01rPaGiO\":\"bGColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP9ubNxmwe=withCSS(Component,css,\"framer-zyJdh\");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,8gVo6FLKp6ztmBwY6P3hWFURm8A.webp?originalFilename=Albertina-940x940.webp&preferredSize=auto\",title:\"Albertina Nikolova\",type:ControlType.ResponsiveImage},fwD6acpNS:{__defaultAssetReference:\"data:framer/asset-reference,jM72MiufeO1gDPgyFtmnX7g4fg.webp?originalFilename=Alex-940x940.webp&preferredSize=auto\",title:\"Alex Lopez\",type:ControlType.ResponsiveImage},H0Oo1Mfv9:{__defaultAssetReference:\"data:framer/asset-reference,0DAIKOBRYbG5FlMkDAscD5Jw8k.webp?originalFilename=Danilo1-940x940.webp&preferredSize=auto\",title:\"Danilo Polovina\",type:ControlType.ResponsiveImage},vNAo0sswR:{__defaultAssetReference:\"data:framer/asset-reference,bBlbzwajrHkKJyZROEp0xJo.webp?originalFilename=Alvaro-940x940.webp&preferredSize=auto\",title:\"Alvaro Rodriguez\",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\":{\"framerVariables\":\"{\\\"dGWMhyRCs\\\":\\\"albertinaNikolova\\\",\\\"fwD6acpNS\\\":\\\"alexLopez\\\",\\\"H0Oo1Mfv9\\\":\\\"daniloPolovina\\\",\\\"vNAo0sswR\\\":\\\"alvaroRodriguez\\\",\\\"RDM7oqG69\\\":\\\"border\\\",\\\"IYnqoNnsD\\\":\\\"amount\\\",\\\"K01rPaGiO\\\":\\\"bGColor\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jMWPy6G8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"175\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"65\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P9ubNxmwe.map", "// Generated by Framer (6f76210)\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/qxwXZ8hdOt1sbMHLliIr/PIrMpzjSpgn7iG0ItBrd/xNIXLfFSf.js\";const cycleOrder=[\"sARX1h65q\",\"k8_Zk7qCw\"];const serializationHash=\"framer-Ka4uX\";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 ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.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-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-Ka4uX.framer-85t7wa, .framer-Ka4uX .framer-85t7wa { display: block; }\",\".framer-Ka4uX.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-Ka4uX .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-Ka4uX .framer-15n043j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ka4uX .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-Ka4uX .framer-t4kels, .framer-Ka4uX .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-Ka4uX.framer-1o5z7d9, .framer-Ka4uX .framer-18eodud { gap: 0px; } .framer-Ka4uX.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ka4uX.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-Ka4uX.framer-1o5z7d9 > :last-child { margin-right: 0px; } .framer-Ka4uX .framer-18eodud > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-Ka4uX .framer-18eodud > :first-child { margin-top: 0px; } .framer-Ka4uX .framer-18eodud > :last-child { margin-bottom: 0px; } }\",\".framer-Ka4uX.framer-v-jmrins.framer-1o5z7d9 { gap: 14px; padding: 0px 0px 18px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ka4uX.framer-v-jmrins.framer-1o5z7d9 { gap: 0px; } .framer-Ka4uX.framer-v-jmrins.framer-1o5z7d9 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-Ka4uX.framer-v-jmrins.framer-1o5z7d9 > :first-child { margin-left: 0px; } .framer-Ka4uX.framer-v-jmrins.framer-1o5z7d9 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-Ka4uX[data-border=\"true\"]::after, .framer-Ka4uX [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-Ka4uX\");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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW96ZH6Gnz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"s0pskHPgi\\\":\\\"number\\\",\\\"xdRQ8fRTN\\\":\\\"top\\\",\\\"sUuW11Svk\\\":\\\"bottom\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k8_Zk7qCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"82\",\"framerIntrinsicWidth\":\"500\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// 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 (ab692b1)\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,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import NumbersItem from\"#framer/local/canvasComponent/aH7yeXBVj/aH7yeXBVj.js\";import BlogArticle from\"#framer/local/canvasComponent/DyECzRfVJ/DyECzRfVJ.js\";import ServicesItems from\"#framer/local/canvasComponent/eSOfEPmfr/eSOfEPmfr.js\";import LogoCarousel from\"#framer/local/canvasComponent/fuxa0eFsG/fuxa0eFsG.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 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 FooterFooter from\"#framer/local/canvasComponent/pCkRDSIIx/pCkRDSIIx.js\";import TestimonalSection from\"#framer/local/canvasComponent/qbOho3WFi/qbOho3WFi.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 Article from\"#framer/local/collection/YIWnW45d9/YIWnW45d9.js\";import*as sharedStyle4 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle1 from\"#framer/local/css/IAEAiqtru/IAEAiqtru.js\";import*as sharedStyle3 from\"#framer/local/css/O6R2SIoIO/O6R2SIoIO.js\";import*as sharedStyle from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle2 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 RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);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 LogoCarouselFonts=getFonts(LogoCarousel);const LogoFonts=getFonts(Logo);const UICategoryFonts=getFonts(UICategory);const ServicesItemsFonts=getFonts(ServicesItems);const ProjetcsProjectItemLightFonts=getFonts(ProjetcsProjectItemLight);const UIAllItemsFonts=getFonts(UIAllItems);const TeamAvatarFonts=getFonts(TeamAvatar);const TeamItemFonts=getFonts(TeamItem);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const TestimonalSectionFonts=getFonts(TestimonalSection);const BlogArticleFonts=getFonts(BlogArticle);const ContactFonts=getFonts(Contact);const FooterFooterFonts=getFonts(FooterFooter);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-9zeuC\";const variantClassNames={p4sQvxEP4:\"framer-v-233qk8\",toDtyncsd:\"framer-v-13dhfrl\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:1.4,duration:1.1,ease:[.68,0,.16,.97],type:\"tween\"};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:1.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:20};const transition3={damping:27,delay:.4,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 animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition4={damping:27,delay:1.33,mass:.3,stiffness:121,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transition5={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition6={damping:27,delay:1.35,mass:.3,stiffness:121,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:27,delay:.3,mass:.3,stiffness:121,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:27,delay:1.8,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 animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition9={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation14={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.7,mass:.3,stiffness:121,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation16={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const transition11={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={delay:1.15,duration:1.2,ease:[.05,.65,.22,.96],type:\"tween\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:160};const transition13={delay:0,duration:1.2,ease:[.05,.65,.59,1],type:\"tween\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:100};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition14={bounce:.1,delay:.2,duration:1.2,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:-40};const transition15={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,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 animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition16={bounce:.1,delay:.3,duration:1.2,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,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,g1I5MiAVjVCBUdP7yK,idVCBUdP7yK,g1I5MiAVjd3u7aLgIl,r01Ash4Kud3u7aLgIl,wxze6Ee9Fd3u7aLgIl,idd3u7aLgIl,...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];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(baseVariant===\"p4sQvxEP4\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"toDtyncsd\",\"p4sQvxEP4\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"dQ2OT4jvd\");const ref1=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(PropertyOverrides,{breakpoint:baseVariant,overrides:{toDtyncsd:{height:932.4074}},children:/*#__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:542,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:undefined,initial:undefined,optimized:undefined}},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\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"XPCVor9Ih\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{height:\"100%\",id:\"zUjl5Cw3s\",layoutId:\"zUjl5Cw3s\",style:{width:\"100%\"},variant:\"LoRRTE51b\",width:\"100%\"})})})})}),/*#__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:animation4,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:\"\\xa918-25\"})}),initial:animation5}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,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:\"\\xa918-25\"})}),className:\"framer-5s8aef\",\"data-framer-appear-id\":\"5s8aef\",\"data-framer-name\":\"\\xa918-25\",fonts:[\"FS;Bebas Neue-regular\"],initial:animation3,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:[isDisplayed()&&/*#__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:\"AI-Native\"})}),className:\"framer-uqkgp9 hidden-233qk8\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 1781.62 342\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,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:\"AI-Native\"})}),className:\"framer-t9io2e hidden-233qk8\",\"data-framer-appear-id\":\"t9io2e\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation7,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 1781.62 504\",withExternalLayout:true}),isDisplayed1()&&/*#__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\":\"123.82644656170922px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI Native\"})}),className:\"framer-1emty0g hidden-72rtr7 hidden-13dhfrl\",\"data-framer-appear-id\":\"1emty0g\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 488.4295867937025 146\",withExternalLayout:true}),isDisplayed1()&&/*#__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:\"AI Native\"})}),className:\"framer-1pfoult hidden-72rtr7 hidden-13dhfrl\",\"data-framer-appear-id\":\"1pfoult\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 1682.62 504\",withExternalLayout:true}),isDisplayed1()&&/*#__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\":\"90%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI Native\"})}),className:\"framer-10iteog hidden-72rtr7 hidden-13dhfrl\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 1682.62 384\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"165.04106886746533px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI-Native\"})}),className:\"framer-1l1l8gv hidden-233qk8\",\"data-framer-appear-id\":\"1l1l8gv\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation7,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 688.902464132048 195\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation11,initial:animation5}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation10,className:\"framer-15rlu0l\",\"data-framer-appear-id\":\"15rlu0l\",\"data-framer-name\":\"Categories\",initial:animation7,optimized:true,children:[isDisplayed2()&&/*#__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:\"Go-To-Market \"}),/*#__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:\"Growth & Performance\"}),/*#__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:\"Social & Content\"}),/*#__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:\"Community & Guerrilla\"})]})},toDtyncsd:{children:/*#__PURE__*/_jsx(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:\"Go-To-Market         Growth & Performance                Social & Content  Community & Guerrilla\"})})}},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\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Go-To-Market         Growth & Performance                Social & Content  Community & Guerrilla\"})}),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:animation14,initial:animation5}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation12,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:\"GROWING THE BRANDS OF THE FUTURE\"})}),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:animation13,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:[isDisplayed()&&/*#__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:\"Marketing House\"})}),className:\"framer-1po5jnl hidden-233qk8\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 3209.62 342\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,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:\"Marketing House\"})}),className:\"framer-skcre hidden-233qk8\",\"data-framer-appear-id\":\"skcre\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation16,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 3209.62 512\",withExternalLayout:true}),isDisplayed()&&/*#__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\":\"88.10536694528918px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marketing House\"})}),viewBox:\"0 0 662.2863220167173 106\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation15,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:\"Marketing House\"})}),className:\"framer-13h7p30 hidden-233qk8\",\"data-framer-appear-id\":\"13h7p30\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation16,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 3209.62 512\",withExternalLayout:true})}),isDisplayed1()&&/*#__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:\"Marketing House\"})}),className:\"framer-19r49aq hidden-72rtr7 hidden-13dhfrl\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 3209.62 342\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation17,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:\"Marketing House\"})}),className:\"framer-kvizf0 hidden-72rtr7 hidden-13dhfrl\",\"data-framer-appear-id\":\"kvizf0\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 3209.62 512\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation17,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:\"Marketing House\"})}),className:\"framer-1abprbp hidden-72rtr7 hidden-13dhfrl\",\"data-framer-appear-id\":\"1abprbp\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 3209.62 512\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation20,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:2336,pixelWidth:3500,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg\",srcSet:\"https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg 3500w\"},initial:animation21}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation18,className:\"framer-1tl276o\",\"data-framer-appear-id\":\"1tl276o\",\"data-framer-name\":\"BG\",initial:animation19,optimized:true,children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k05m9x-container hidden-233qk8\",isModuleExternal:true,nodeId:\"IpM2nLfzr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IpM2nLfzr\",isMixedBorderRadius:false,layoutId:\"IpM2nLfzr\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/4Ba56cbpMc80OdHmFapv8vwGwI.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/6WwHQIXMd5hlBN4cXxTP3Wq7qyw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})}),/*#__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:transition14},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation23,__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+47+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+0+0+1e3+76+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:\"rgb(255, 47, 0)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"rgb(255, 255, 255)\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1szlu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__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:/*#__PURE__*/_jsx(\"strong\",{children:\"We don\u2019t follow trends. We start them.\"})})}),className:\"framer-5hxscb\",\"data-framer-name\":\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\",fonts:[\"Inter\",\"Inter-Bold\"],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+47+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+76+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:55,ezNYwgiIW:\"Campaigns Executed\",height:\"100%\",id:\"uKIp8RF8y\",layoutId:\"uKIp8RF8y\",MTE4RiHaV:\"Crafting some of the most renowned campaigns seen. \",OhLeOem3o:200,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+47+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+76+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:{BU4_wyR9A:100,variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:20,ezNYwgiIW:\"Users reached\",height:\"100%\",id:\"yTnHgnGCA\",layoutId:\"yTnHgnGCA\",MTE4RiHaV:\"All across the globe, through a wide-array of channels.\",OhLeOem3o:200,style:{width:\"100%\"},uvfNqUND5:\"M+\",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+47+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+76+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:10,ezNYwgiIW:\"Industry Awards\",height:\"100%\",id:\"cimfQ68Io\",layoutId:\"cimfQ68Io\",MTE4RiHaV:\"Thankful to be recognized by our colleagues and partners.\",OhLeOem3o:200,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+47+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+76+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:15,ezNYwgiIW:\"Years of expertise\",height:\"100%\",id:\"xbfCL0csL\",layoutId:\"xbfCL0csL\",MTE4RiHaV:\"Decades of experience in growing the unicorns of tomorrow.\",OhLeOem3o:200,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:111,y:(componentViewport?.y||0)+0+0+0+1953.6},toDtyncsd:{height:184,y:(componentViewport?.y||0)+0+0+0+1618.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:230,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1551.6,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:{height:\"100%\",width:\"100%\"},variant:\"TyCkGq4e0\",width:\"100%\"})})})})}),/*#__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:transition14},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation26,__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+2064.6+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+1802.6+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+0+1781.6+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\",variant:\"Fel6wEcWG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+2064.6+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+1802.6+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+1781.6+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:\"Where we Excel\",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+2064.6+0+0+36+113+0+0},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1802.6+0+0+36+143+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:903,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1781.6+0+0+36+193+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:\"Creative\",bCzHpbaLj:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Go-To-Market, Sentiment Analysis, Market Research, Ideal Customer Profile Creation, Positioning, Competitive Analysis.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),DP3k2sIwB:\"Community-building through strategic incentives and hands-on engagement, fostering loyalty and advocacy.\",DvMnYDgLq:\"Community\",dym8aGlmH:\"Attention-grabbing creative designed to resonate with the narrative, spark engagement, and craft defining brand moments.\",dYspAHvCn:\"\",height:\"100%\",id:\"TP6VXojlv\",k_JSyjBLA:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Strategy Creation, Social Media Management, Content Production, Copywriting, Design, Community Interactions, Distribution.\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),layoutId:\"TP6VXojlv\",nfr3_vd4_:\"Go-to-market strategies built for scale - targeting new audiences, onboarding users, and driving long-term retention with a compelling narrative.\",p3Eq8ImvR:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Bulletpoints 6\"})}),rd_VK8DcK:\"Paid\",style:{width:\"100%\"},T3Zvj4lLt:\"Performance-driven campaigns that cut through the noise, delivering impact with precision and industry relevance.\",teKSqI_3S:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Brand Storytelling, Campaign Ideation, Visual Design, Motion Graphics, Viral Marketing.\"})}),u2WQNcukZ:\"Content and social media strategies that amplify visibility, strengthen brand presence, and engage audiences, both online and in real life.\",variant:\"vl7fPkW6x\",width:\"100%\",XAHQcw5bL:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Community Growth, Engagement Strategies, Incentive Programs, Moderation, Loyalty Programs.\"})}),Xgqdpwxoc:\"Strategy\",Y7m9L8sgJ:\"Social & Content\",yIZLGI3IM:\"\",ZRe4M1eiq:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Performance Marketing, Ad Strategy, Audience Targeting, Campaign Optimization, A/B Testing, Conversion Tracking.\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12o9qbd\",\"data-framer-name\":\"Link\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcjrvm hidden-233qk8\",\"data-framer-name\":\"filler\"})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4sxcx1\",\"data-framer-name\":\"Work\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysebzx\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__enter:animation24,__framer__exit:undefined,__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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:ref1,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+3206.6+48+0+0+0+0+0+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+3084.6+48+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+3036.6+48+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__*/_jsx(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:\"Here's what we have been up to recently.\"})}),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:\"2k25\"})}),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:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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+3206.6+48+0+0+255.52+0+0+0+0+0+0+0+0+0+0},toDtyncsd:{width:`max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3084.6+48+0+0+358.52+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3036.6+48+0+0+424.52+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:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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+3206.6+48+0+0+255.52+0+0+0+0+0+544+0+0+0+0},toDtyncsd:{width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) / 2, 1px) * 0.74)`,y:(componentViewport?.y||0)+0+0+0+3084.6+48+0+0+358.52+0+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) / 2, 1px) * 0.66)`,y:(componentViewport?.y||0)+0+0+0+3036.6+48+0+0+424.52+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:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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+3206.6+48+0+0+255.52+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+3084.6+48+0+0+358.52+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+3036.6+48+0+0+424.52+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:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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+3206.6+48+0+0+255.52+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+3084.6+48+0+0+358.52+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+3036.6+48+0+0+424.52+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:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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+3206.6+48+0+0+255.52+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+3084.6+48+0+0+358.52+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+3036.6+48+0+0+424.52+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+3206.6+48+0+0+255.52+0+2728},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+3084.6+48+0+0+358.52+0+1752}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,y:(componentViewport?.y||0)+0+0+0+3036.6+48+0+0+424.52+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__*/_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:transition14},__framer__animateOnce:true,__framer__enter:animation25,__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+6308.12+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+5345.12+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+0+0+5431.12+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\",variant:\"Fel6wEcWG\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+6308.12+0+0+36+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+5345.12+0+0+36+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+0+0+5431.12+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,{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\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unwsa7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__enter:animation24,__framer__exit:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__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:\"Our Culture\"})}),className:\"framer-1bhof22\",\"data-framer-name\":\"Meet our team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"A diverse group of senior creatives, strategists, and growth leads driven by a shared passion for scaling the next unicorns. \"})})}},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-color\":\"rgba(255, 255, 255, 0.96)\"},children:\"We're a collective of forward-thinking strategists, creatives, and growth specialists united by our passion for transforming ambitious brands into tomorrow's market leaders.\"})}),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:transition14},__framer__animateOnce:true,__framer__enter:animation28,__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+6308.12+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+5345.12+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+5431.12+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__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:\"10\",style:{width:\"100%\"},sUuW11Svk:\"and strategists\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Growth leads  \"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+6308.12+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+5345.12+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+5431.12+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__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:\"Marketing Managers\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Detail-Oriented\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+6308.12+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+5345.12+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+5431.12+0+0+36+268.48+0+403.52+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__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:\"20+\",style:{width:\"100%\"},sUuW11Svk:\"growing the startups of tomorrow. \",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Diverse team members\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpau29\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined},{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined},{href:{webPageId:\"hT5vq0S94\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+6308.12+0+0+36+145+0+313.52+0+348+0+0},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+5345.12+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+5431.12+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: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:\"ICw3miWdo\",layoutId:\"ICw3miWdo\",NeQkVIvJM:\"Meet our team\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"rgb(255, 47, 0)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"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+6308.12+0),pixelHeight:3412,pixelWidth:2357,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg\",srcSet:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=1024 707w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=2048 1414w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg 2357w\"}},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+5345.12+0),pixelHeight:3412,pixelWidth:2357,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg\",srcSet:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=1024 707w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=2048 1414w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg 2357w\"}}},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+5431.12+0),pixelHeight:3412,pixelWidth:2357,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg\",srcSet:\"https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=1024 707w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg?scale-down-to=2048 1414w,https://framerusercontent.com/images/mEvXYj2ZcF7z7gifVLB9qcsO7A.jpg 2357w\"},className:\"framer-u8frfl\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+7229.64},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+6245.12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1130,width:`min(${componentViewport?.width||\"100vw\"}, 1480px)`,y:(componentViewport?.y||0)+0+0+0+6281.12,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n9u4k1-container\",nodeId:\"eB2fYguOc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"q4KSQZd0P\"}},children:/*#__PURE__*/_jsx(TestimonalSection,{djtc6kFj5:\"011\",ERgd6ig58:\"Voices\",height:\"100%\",id:\"eB2fYguOc\",layoutId:\"eB2fYguOc\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"n5kusj8ku\",width:\"100%\",zsIYfDrKI:\"//Testimonial\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-10loe5g\",\"data-framer-name\":\"Blog\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1grbgua\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation24,__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\"},children:\"These are our insights, opinions and strategies, written in plain sight. For Disruptors by Disruptors.\"})}),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:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+8359.64+60+0+0+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+7375.12+120+0+0+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+7411.12+160+0+0+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:resolvedLinks3[2],variant:\"zf2fmntWl\",zvTGbXZx3:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks3[0],height:\"100%\",id:\"XseTBBnLS\",layoutId:\"XseTBBnLS\",NeQkVIvJM:\"Check out more\",style:{width:\"100%\"},variant:\"Ie74EE_Xj\",vvMz6sarU:\"rgb(255, 47, 0)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"rgb(255, 255, 255)\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1siogyx\",\"data-framer-name\":\"Articles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1oe2gp0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"VCBUdP7yK\",data:Article,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"VCBUdP7yK\",name:\"g1I5MiAVj\",type:\"Identifier\"},{collection:\"VCBUdP7yK\",name:\"id\",type:\"Identifier\"}]},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({g1I5MiAVj:g1I5MiAVjVCBUdP7yK,id:idVCBUdP7yK},index5)=>{g1I5MiAVjVCBUdP7yK??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VCBUdP7yK-${idVCBUdP7yK}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{g1I5MiAVj:g1I5MiAVjVCBUdP7yK},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{g1I5MiAVj:\"developer-relations-in-web3\"},unresolvedPathSlugs:{g1I5MiAVj:{collectionId:\"YIWnW45d9\",collectionItemId:\"XhCon4Ht6\"}},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{g1I5MiAVj:\"developer-relations-in-web3\"},unresolvedPathSlugs:{g1I5MiAVj:{collectionId:\"YIWnW45d9\",collectionItemId:\"XhCon4Ht6\"}},webPageId:\"xQXJQlpI9\"},implicitPathVariables:undefined},{href:{pathVariables:{g1I5MiAVj:\"developer-relations-in-web3\"},unresolvedPathSlugs:{g1I5MiAVj:{collectionId:\"YIWnW45d9\",collectionItemId:\"XhCon4Ht6\"}},webPageId:\"xQXJQlpI9\"},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+8359.64+60+0+0+358.52+0+0+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+7375.12+120+0+0+440+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:396,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+7411.12+160+0+0+206+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mslxlp-container\",nodeId:\"KjoABzyB0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{WI12JNuXh:resolvedLinks4[2]},toDtyncsd:{variant:\"roaxSULFZ\",WI12JNuXh:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(BlogArticle,{DVHVfGqy9:addImageAlt({src:\"https://framerusercontent.com/images/uCh9fNsTYzqrNg2TwrqMbQcvxs.png\",srcSet:\"https://framerusercontent.com/images/uCh9fNsTYzqrNg2TwrqMbQcvxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/uCh9fNsTYzqrNg2TwrqMbQcvxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uCh9fNsTYzqrNg2TwrqMbQcvxs.png 1920w\"},\"\"),edqf_I0NI:\"0px\",height:\"100%\",id:\"KjoABzyB0\",layoutId:\"KjoABzyB0\",LlAOGF3rl:\"Developer Relations in Web3\",style:{width:\"100%\"},variant:\"kJtfSsDGp\",WI12JNuXh:resolvedLinks4[0],width:\"100%\"})})})})})})})},idVCBUdP7yK);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation22,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wffo4g\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"d3u7aLgIl\",data:Article,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"d3u7aLgIl\",direction:\"desc\",name:\"l79ytPVv8\",type:\"Identifier\"}],select:[{collection:\"d3u7aLgIl\",name:\"g1I5MiAVj\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"r01Ash4Ku\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"wxze6Ee9F\",type:\"Identifier\"},{collection:\"d3u7aLgIl\",name:\"id\",type:\"Identifier\"}]},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({g1I5MiAVj:g1I5MiAVjd3u7aLgIl,id:idd3u7aLgIl,r01Ash4Ku:r01Ash4Kud3u7aLgIl,wxze6Ee9F:wxze6Ee9Fd3u7aLgIl},index6)=>{g1I5MiAVjd3u7aLgIl??=\"\";wxze6Ee9Fd3u7aLgIl??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`d3u7aLgIl-${idd3u7aLgIl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{g1I5MiAVj:g1I5MiAVjd3u7aLgIl},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},implicitPathVariables:undefined},{href:{webPageId:\"z5iOUqH0r\"},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+8359.64+60+0+0+358.52+0+430+0+0},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+7375.12+120+0+0+440+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:396,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+7411.12+160+0+0+206+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p5po58-container\",nodeId:\"igBodFX76\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"kJtfSsDGp\",WI12JNuXh:resolvedLinks5[2]},toDtyncsd:{variant:\"roaxSULFZ\",WI12JNuXh:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(BlogArticle,{DVHVfGqy9:toResponsiveImage(r01Ash4Kud3u7aLgIl),edqf_I0NI:\"0px\",height:\"100%\",id:\"igBodFX76\",layoutId:\"igBodFX76\",LlAOGF3rl:wxze6Ee9Fd3u7aLgIl,style:{width:\"100%\"},variant:\"PXfeYnR9u\",WI12JNuXh:resolvedLinks5[0],width:\"100%\"})})})})})})})},idd3u7aLgIl);})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+0+0+9654.16},toDtyncsd:{y:(componentViewport?.y||0)+0+0+0+8391.12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:969,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+8233.12,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%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:(componentViewport?.y||0)+0+10623.16},toDtyncsd:{y:(componentViewport?.y||0)+0+9360.12}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:628,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9202.12,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-k9l58-container\",nodeId:\"knb257tFB\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"j_Wa_NyZf\"},toDtyncsd:{variant:\"Zqhe2SOK3\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"knb257tFB\",layoutId:\"knb257tFB\",style:{width:\"100%\"},variant:\"MNs46yKnk\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y1imds-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jyH9TzIC0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"jyH9TzIC0\",intensity:8,layoutId:\"jyH9TzIC0\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9zeuC.framer-lux5qc, .framer-9zeuC .framer-lux5qc { display: block; }\",\".framer-9zeuC.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-9zeuC .framer-1euzf18-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); pointer-events: none; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-9zeuC .framer-fyydzk-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .framer-uqkgp9, .framer-9zeuC .framer-10iteog, .framer-9zeuC .framer-1po5jnl, .framer-9zeuC .framer-19r49aq { --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-9zeuC .framer-t9io2e, .framer-9zeuC .framer-1emty0g, .framer-9zeuC .framer-13h7p30, .framer-9zeuC .framer-1abprbp { --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-9zeuC .framer-1pfoult, .framer-9zeuC .framer-1l1l8gv { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; 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-9zeuC .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-9zeuC .framer-1yjyy3q { align-self: stretch; flex: none; height: auto; overflow: visible; position: relative; width: 30%; }\",\".framer-9zeuC .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-9zeuC .framer-c1jovp { --framer-paragraph-spacing: 0px; flex: none; height: 141px; position: relative; white-space: pre-wrap; width: 188px; word-break: break-word; word-wrap: break-word; }\",\".framer-9zeuC .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: 25px 0px 25px 0px; position: relative; width: 100%; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-1r8tsb6 { align-self: stretch; flex: none; height: auto; overflow: hidden; pointer-events: none; position: relative; width: 15%; }\",\".framer-9zeuC .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-9zeuC .framer-skcre, .framer-9zeuC .framer-kvizf0 { --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-9zeuC .framer-1tl276o { background-color: rgba(153, 238, 255, 0); 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-9zeuC .framer-k05m9x-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-9zeuC .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: 76px 36px 63px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-63ob45-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-1tn9b2u, .framer-9zeuC .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-9zeuC .framer-135b06k-container, .framer-9zeuC .framer-1bof1so-container, .framer-9zeuC .framer-11zt7bn-container, .framer-9zeuC .framer-1asny8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-9zeuC .framer-6e3kvj-container { flex: none; height: 230px; position: relative; width: 100%; z-index: 2; }\",\".framer-9zeuC .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 13px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-9zeuC .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-9zeuC .framer-15w7kz1, .framer-9zeuC .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-9zeuC .framer-1l9ei7f-container, .framer-9zeuC .framer-o7npay-container, .framer-9zeuC .framer-1s8xeto-container, .framer-9zeuC .framer-1uw1s80-container, .framer-9zeuC .framer-493y8r-container, .framer-9zeuC .framer-1lgm3t3-container, .framer-9zeuC .framer-1y1imds-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9zeuC .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-9zeuC .framer-8jh6fz-container, .framer-9zeuC .framer-zfzidc-container, .framer-9zeuC .framer-10sba47-container, .framer-9zeuC .framer-1358vfw-container, .framer-9zeuC .framer-19qpvzs-container, .framer-9zeuC .framer-12hmfv4-container, .framer-9zeuC .framer-1mslxlp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9zeuC .framer-12o9qbd, .framer-9zeuC .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-9zeuC .framer-mcjrvm { align-self: stretch; background-color: #44ccff; flex: 4 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-9zeuC .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: 48px 36px 54px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-hvxmsu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9zeuC .framer-1y2l0wz { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9zeuC .framer-1u6laj4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-1x35gf1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9zeuC .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-9zeuC .framer-16jjfzu, .framer-9zeuC .framer-1r6ii73, .framer-9zeuC .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-9zeuC .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-9zeuC .framer-xr3l9, .framer-9zeuC .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-9zeuC .framer-1w3x7hh, .framer-9zeuC .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-9zeuC .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-9zeuC .framer-1tmox7z, .framer-9zeuC .framer-1oe2gp0 { 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-9zeuC .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-9zeuC .framer-1g4zgca-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-9zeuC .framer-11e6ovy { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 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-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .framer-1bhof22 { --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-9zeuC .framer-1oqoo67 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 520px; position: relative; width: 100%; }\",\".framer-9zeuC .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-9zeuC .framer-4wsqim-container, .framer-9zeuC .framer-tndojr-container, .framer-9zeuC .framer-au6363-container, .framer-9zeuC .framer-1ai74nf-container, .framer-9zeuC .framer-1p5po58-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .framer-1n9u4k1-container { flex: none; height: auto; max-width: 1480px; position: relative; width: 100%; z-index: 1; }\",\".framer-9zeuC .framer-10loe5g { 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 60px 36px; position: relative; width: 100%; z-index: 3; }\",\".framer-9zeuC .framer-1grbgua { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9zeuC .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-9zeuC .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-9zeuC .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-9zeuC .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; }\",\".framer-9zeuC .framer-1siogyx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9zeuC .framer-wffo4g { 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: center; padding: 0px; position: relative; width: 1px; }\",\".framer-9zeuC .framer-w4b1sc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-9zeuC .framer-k9l58-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9zeuC.framer-72rtr7, .framer-9zeuC .framer-1ojost9, .framer-9zeuC .framer-fbtq8l, .framer-9zeuC .framer-1n4wfg3, .framer-9zeuC .framer-1s8uq1m, .framer-9zeuC .framer-1hlm8z3, .framer-9zeuC .framer-15rlu0l, .framer-9zeuC .framer-etaps5, .framer-9zeuC .framer-1d7ihmp, .framer-9zeuC .framer-1bmi8eo, .framer-9zeuC .framer-7wclla, .framer-9zeuC .framer-cu0ogy, .framer-9zeuC .framer-v1szlu, .framer-9zeuC .framer-xch8uj, .framer-9zeuC .framer-49x5cw, .framer-9zeuC .framer-uo7po2, .framer-9zeuC .framer-12o9qbd, .framer-9zeuC .framer-4sxcx1, .framer-9zeuC .framer-1ysebzx, .framer-9zeuC .framer-xkr3by, .framer-9zeuC .framer-hvxmsu, .framer-9zeuC .framer-uud8ad, .framer-9zeuC .framer-1w0q7ac, .framer-9zeuC .framer-1x35gf1, .framer-9zeuC .framer-1odsxbf, .framer-9zeuC .framer-16jjfzu, .framer-9zeuC .framer-1l01njr, .framer-9zeuC .framer-xr3l9, .framer-9zeuC .framer-1w3x7hh, .framer-9zeuC .framer-dlnmo2, .framer-9zeuC .framer-1r6ii73, .framer-9zeuC .framer-1qi15zk, .framer-9zeuC .framer-1tmox7z, .framer-9zeuC .framer-n7n394, .framer-9zeuC .framer-pr0o55, .framer-9zeuC .framer-dy10k6, .framer-9zeuC .framer-wfeje, .framer-9zeuC .framer-unwsa7, .framer-9zeuC .framer-1nnrt9k, .framer-9zeuC .framer-129dri9, .framer-9zeuC .framer-1csplbm, .framer-9zeuC .framer-tpau29, .framer-9zeuC .framer-10loe5g, .framer-9zeuC .framer-1grbgua, .framer-9zeuC .framer-1kaz94y, .framer-9zeuC .framer-gocqtv, .framer-9zeuC .framer-1siogyx, .framer-9zeuC .framer-1oe2gp0, .framer-9zeuC .framer-wffo4g { gap: 0px; } .framer-9zeuC.framer-72rtr7 > *, .framer-9zeuC .framer-1ojost9 > *, .framer-9zeuC .framer-fbtq8l > *, .framer-9zeuC .framer-1n4wfg3 > *, .framer-9zeuC .framer-1hlm8z3 > *, .framer-9zeuC .framer-1bmi8eo > *, .framer-9zeuC .framer-7wclla > *, .framer-9zeuC .framer-xch8uj > *, .framer-9zeuC .framer-4sxcx1 > *, .framer-9zeuC .framer-wfeje > *, .framer-9zeuC .framer-10loe5g > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9zeuC.framer-72rtr7 > :first-child, .framer-9zeuC .framer-1ojost9 > :first-child, .framer-9zeuC .framer-fbtq8l > :first-child, .framer-9zeuC .framer-1n4wfg3 > :first-child, .framer-9zeuC .framer-1hlm8z3 > :first-child, .framer-9zeuC .framer-1bmi8eo > :first-child, .framer-9zeuC .framer-7wclla > :first-child, .framer-9zeuC .framer-cu0ogy > :first-child, .framer-9zeuC .framer-xch8uj > :first-child, .framer-9zeuC .framer-49x5cw > :first-child, .framer-9zeuC .framer-uo7po2 > :first-child, .framer-9zeuC .framer-4sxcx1 > :first-child, .framer-9zeuC .framer-1ysebzx > :first-child, .framer-9zeuC .framer-xkr3by > :first-child, .framer-9zeuC .framer-hvxmsu > :first-child, .framer-9zeuC .framer-uud8ad > :first-child, .framer-9zeuC .framer-1w0q7ac > :first-child, .framer-9zeuC .framer-1odsxbf > :first-child, .framer-9zeuC .framer-16jjfzu > :first-child, .framer-9zeuC .framer-1l01njr > :first-child, .framer-9zeuC .framer-xr3l9 > :first-child, .framer-9zeuC .framer-dlnmo2 > :first-child, .framer-9zeuC .framer-1r6ii73 > :first-child, .framer-9zeuC .framer-1tmox7z > :first-child, .framer-9zeuC .framer-n7n394 > :first-child, .framer-9zeuC .framer-pr0o55 > :first-child, .framer-9zeuC .framer-dy10k6 > :first-child, .framer-9zeuC .framer-wfeje > :first-child, .framer-9zeuC .framer-unwsa7 > :first-child, .framer-9zeuC .framer-1nnrt9k > :first-child, .framer-9zeuC .framer-tpau29 > :first-child, .framer-9zeuC .framer-10loe5g > :first-child, .framer-9zeuC .framer-1grbgua > :first-child, .framer-9zeuC .framer-1oe2gp0 > :first-child { margin-top: 0px; } .framer-9zeuC.framer-72rtr7 > :last-child, .framer-9zeuC .framer-1ojost9 > :last-child, .framer-9zeuC .framer-fbtq8l > :last-child, .framer-9zeuC .framer-1n4wfg3 > :last-child, .framer-9zeuC .framer-1hlm8z3 > :last-child, .framer-9zeuC .framer-1bmi8eo > :last-child, .framer-9zeuC .framer-7wclla > :last-child, .framer-9zeuC .framer-cu0ogy > :last-child, .framer-9zeuC .framer-xch8uj > :last-child, .framer-9zeuC .framer-49x5cw > :last-child, .framer-9zeuC .framer-uo7po2 > :last-child, .framer-9zeuC .framer-4sxcx1 > :last-child, .framer-9zeuC .framer-1ysebzx > :last-child, .framer-9zeuC .framer-xkr3by > :last-child, .framer-9zeuC .framer-hvxmsu > :last-child, .framer-9zeuC .framer-uud8ad > :last-child, .framer-9zeuC .framer-1w0q7ac > :last-child, .framer-9zeuC .framer-1odsxbf > :last-child, .framer-9zeuC .framer-16jjfzu > :last-child, .framer-9zeuC .framer-1l01njr > :last-child, .framer-9zeuC .framer-xr3l9 > :last-child, .framer-9zeuC .framer-dlnmo2 > :last-child, .framer-9zeuC .framer-1r6ii73 > :last-child, .framer-9zeuC .framer-1tmox7z > :last-child, .framer-9zeuC .framer-n7n394 > :last-child, .framer-9zeuC .framer-pr0o55 > :last-child, .framer-9zeuC .framer-dy10k6 > :last-child, .framer-9zeuC .framer-wfeje > :last-child, .framer-9zeuC .framer-unwsa7 > :last-child, .framer-9zeuC .framer-1nnrt9k > :last-child, .framer-9zeuC .framer-tpau29 > :last-child, .framer-9zeuC .framer-10loe5g > :last-child, .framer-9zeuC .framer-1grbgua > :last-child, .framer-9zeuC .framer-1oe2gp0 > :last-child { margin-bottom: 0px; } .framer-9zeuC .framer-1s8uq1m > *, .framer-9zeuC .framer-15rlu0l > *, .framer-9zeuC .framer-etaps5 > *, .framer-9zeuC .framer-1d7ihmp > *, .framer-9zeuC .framer-v1szlu > *, .framer-9zeuC .framer-1x35gf1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9zeuC .framer-1s8uq1m > :first-child, .framer-9zeuC .framer-15rlu0l > :first-child, .framer-9zeuC .framer-etaps5 > :first-child, .framer-9zeuC .framer-1d7ihmp > :first-child, .framer-9zeuC .framer-v1szlu > :first-child, .framer-9zeuC .framer-12o9qbd > :first-child, .framer-9zeuC .framer-1x35gf1 > :first-child, .framer-9zeuC .framer-1w3x7hh > :first-child, .framer-9zeuC .framer-1qi15zk > :first-child, .framer-9zeuC .framer-129dri9 > :first-child, .framer-9zeuC .framer-1csplbm > :first-child, .framer-9zeuC .framer-1kaz94y > :first-child, .framer-9zeuC .framer-gocqtv > :first-child, .framer-9zeuC .framer-1siogyx > :first-child, .framer-9zeuC .framer-wffo4g > :first-child { margin-left: 0px; } .framer-9zeuC .framer-1s8uq1m > :last-child, .framer-9zeuC .framer-15rlu0l > :last-child, .framer-9zeuC .framer-etaps5 > :last-child, .framer-9zeuC .framer-1d7ihmp > :last-child, .framer-9zeuC .framer-v1szlu > :last-child, .framer-9zeuC .framer-12o9qbd > :last-child, .framer-9zeuC .framer-1x35gf1 > :last-child, .framer-9zeuC .framer-1w3x7hh > :last-child, .framer-9zeuC .framer-1qi15zk > :last-child, .framer-9zeuC .framer-129dri9 > :last-child, .framer-9zeuC .framer-1csplbm > :last-child, .framer-9zeuC .framer-1kaz94y > :last-child, .framer-9zeuC .framer-gocqtv > :last-child, .framer-9zeuC .framer-1siogyx > :last-child, .framer-9zeuC .framer-wffo4g > :last-child { margin-right: 0px; } .framer-9zeuC .framer-cu0ogy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-9zeuC .framer-49x5cw > * { margin: 0px; margin-bottom: calc(150px / 2); margin-top: calc(150px / 2); } .framer-9zeuC .framer-uo7po2 > *, .framer-9zeuC .framer-1ysebzx > * { margin: 0px; margin-bottom: calc(110px / 2); margin-top: calc(110px / 2); } .framer-9zeuC .framer-12o9qbd > *, .framer-9zeuC .framer-1w3x7hh > *, .framer-9zeuC .framer-1qi15zk > *, .framer-9zeuC .framer-129dri9 > *, .framer-9zeuC .framer-1csplbm > *, .framer-9zeuC .framer-1kaz94y > *, .framer-9zeuC .framer-gocqtv > *, .framer-9zeuC .framer-1siogyx > *, .framer-9zeuC .framer-wffo4g > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-9zeuC .framer-xkr3by > * { margin: 0px; margin-bottom: calc(76px / 2); margin-top: calc(76px / 2); } .framer-9zeuC .framer-hvxmsu > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-9zeuC .framer-uud8ad > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9zeuC .framer-1w0q7ac > *, .framer-9zeuC .framer-unwsa7 > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-9zeuC .framer-1odsxbf > *, .framer-9zeuC .framer-1l01njr > *, .framer-9zeuC .framer-dlnmo2 > *, .framer-9zeuC .framer-1tmox7z > *, .framer-9zeuC .framer-pr0o55 > *, .framer-9zeuC .framer-tpau29 > *, .framer-9zeuC .framer-1oe2gp0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9zeuC .framer-16jjfzu > *, .framer-9zeuC .framer-xr3l9 > *, .framer-9zeuC .framer-1r6ii73 > *, .framer-9zeuC .framer-n7n394 > *, .framer-9zeuC .framer-dy10k6 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-9zeuC .framer-1nnrt9k > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-9zeuC .framer-1grbgua > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-9zeuC.framer-72rtr7 { width: 810px; } .framer-9zeuC .framer-1euzf18-container { height: 93.24074074074075vh; } .framer-9zeuC .framer-fbtq8l { gap: 10px; height: 90vh; padding: 0px 32px 40px 32px; } .framer-9zeuC .framer-1n4wfg3 { gap: 16px; } .framer-9zeuC .framer-1hlm8z3 { order: 0; padding: 24px 0px 24px 0px; width: 70%; } .framer-9zeuC .framer-15rlu0l { justify-content: flex-end; order: 1; width: 30%; } .framer-9zeuC .framer-etaps5 { justify-content: flex-end; width: 100%; } .framer-9zeuC .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; padding: 5px 0px 5px 0px; } .framer-9zeuC .framer-1d7ihmp, .framer-9zeuC .framer-1csplbm { flex: none; order: 1; width: 100%; } .framer-9zeuC .framer-1bmi8eo { order: 0; width: 100%; } .framer-9zeuC .framer-7wclla { padding: 47px 32px 47px 32px; } .framer-9zeuC .framer-cu0ogy, .framer-9zeuC .framer-1ysebzx { gap: 70px; } .framer-9zeuC .framer-7u8fwv { grid-template-rows: repeat(1, min-content); } .framer-9zeuC .framer-1tn9b2u { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-9zeuC .framer-6e3kvj-container { height: 184px; } .framer-9zeuC .framer-xch8uj { padding: 0px 32px 120px 32px; } .framer-9zeuC .framer-49x5cw { gap: 100px; } .framer-9zeuC .framer-uo7po2, .framer-9zeuC .framer-1w0q7ac { gap: 80px; } .framer-9zeuC .framer-mcjrvm { flex: 3 0 0px; } .framer-9zeuC .framer-4sxcx1 { padding: 48px 32px 36px 32px; } .framer-9zeuC .framer-xkr3by, .framer-9zeuC .framer-unwsa7 { gap: 50px; } .framer-9zeuC .framer-uud8ad { align-content: flex-start; align-items: flex-start; gap: 80px; } .framer-9zeuC .framer-xr3l9, .framer-9zeuC .framer-dy10k6 { width: 74%; } .framer-9zeuC .framer-dlnmo2 { width: 100%; } .framer-9zeuC .framer-wfeje { height: 90vh; padding: 0px 32px 50px 32px; } .framer-9zeuC .framer-129dri9 { flex-direction: column; gap: 80px; } .framer-9zeuC .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-9zeuC .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-9zeuC .framer-10loe5g { padding: 120px 32px 60px 32px; } .framer-9zeuC .framer-1grbgua { gap: 60px; } .framer-9zeuC .framer-12yqnnv { gap: 10px; } .framer-9zeuC .framer-1pxotkc { grid-column: auto / span 4; height: auto; } .framer-9zeuC .framer-1kaz94y { flex-direction: column; gap: 30px; grid-column: auto / span 4; } .framer-9zeuC .framer-gocqtv, .framer-9zeuC .framer-1ai74nf-container { flex: none; width: 100%; } .framer-9zeuC .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 440px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9zeuC .framer-fbtq8l, .framer-9zeuC .framer-1n4wfg3, .framer-9zeuC .framer-8axwti, .framer-9zeuC .framer-cu0ogy, .framer-9zeuC .framer-49x5cw, .framer-9zeuC .framer-uo7po2, .framer-9zeuC .framer-1ysebzx, .framer-9zeuC .framer-xkr3by, .framer-9zeuC .framer-uud8ad, .framer-9zeuC .framer-1w0q7ac, .framer-9zeuC .framer-unwsa7, .framer-9zeuC .framer-129dri9, .framer-9zeuC .framer-1grbgua, .framer-9zeuC .framer-12yqnnv, .framer-9zeuC .framer-1kaz94y { gap: 0px; } .framer-9zeuC .framer-fbtq8l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9zeuC .framer-fbtq8l > :first-child, .framer-9zeuC .framer-1n4wfg3 > :first-child, .framer-9zeuC .framer-8axwti > :first-child, .framer-9zeuC .framer-cu0ogy > :first-child, .framer-9zeuC .framer-49x5cw > :first-child, .framer-9zeuC .framer-uo7po2 > :first-child, .framer-9zeuC .framer-1ysebzx > :first-child, .framer-9zeuC .framer-xkr3by > :first-child, .framer-9zeuC .framer-uud8ad > :first-child, .framer-9zeuC .framer-1w0q7ac > :first-child, .framer-9zeuC .framer-unwsa7 > :first-child, .framer-9zeuC .framer-129dri9 > :first-child, .framer-9zeuC .framer-1grbgua > :first-child, .framer-9zeuC .framer-1kaz94y > :first-child { margin-top: 0px; } .framer-9zeuC .framer-fbtq8l > :last-child, .framer-9zeuC .framer-1n4wfg3 > :last-child, .framer-9zeuC .framer-8axwti > :last-child, .framer-9zeuC .framer-cu0ogy > :last-child, .framer-9zeuC .framer-49x5cw > :last-child, .framer-9zeuC .framer-uo7po2 > :last-child, .framer-9zeuC .framer-1ysebzx > :last-child, .framer-9zeuC .framer-xkr3by > :last-child, .framer-9zeuC .framer-uud8ad > :last-child, .framer-9zeuC .framer-1w0q7ac > :last-child, .framer-9zeuC .framer-unwsa7 > :last-child, .framer-9zeuC .framer-129dri9 > :last-child, .framer-9zeuC .framer-1grbgua > :last-child, .framer-9zeuC .framer-1kaz94y > :last-child { margin-bottom: 0px; } .framer-9zeuC .framer-1n4wfg3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9zeuC .framer-8axwti > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-9zeuC .framer-cu0ogy > *, .framer-9zeuC .framer-1ysebzx > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-9zeuC .framer-49x5cw > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-9zeuC .framer-uo7po2 > *, .framer-9zeuC .framer-uud8ad > *, .framer-9zeuC .framer-1w0q7ac > *, .framer-9zeuC .framer-129dri9 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9zeuC .framer-xkr3by > *, .framer-9zeuC .framer-unwsa7 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-9zeuC .framer-1grbgua > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-9zeuC .framer-12yqnnv > *, .framer-9zeuC .framer-12yqnnv > :first-child, .framer-9zeuC .framer-12yqnnv > :last-child { margin: 0px; } .framer-9zeuC .framer-1kaz94y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-9zeuC.framer-72rtr7 { width: 390px; } .framer-9zeuC .framer-fyydzk-container { will-change: unset; } .framer-9zeuC .framer-fbtq8l { height: 700px; padding: 0px 24px 34px 24px; position: relative; top: unset; } .framer-9zeuC .framer-5s8aef, .framer-9zeuC .framer-10iteog, .framer-9zeuC .framer-19r49aq { order: 0; } .framer-9zeuC .framer-1n4wfg3, .framer-9zeuC .framer-1emty0g, .framer-9zeuC .framer-kvizf0 { order: 1; } .framer-9zeuC .framer-1s8uq1m, .framer-9zeuC .framer-1x35gf1, .framer-9zeuC .framer-1w3x7hh, .framer-9zeuC .framer-1qi15zk { flex-direction: column; gap: 40px; } .framer-9zeuC .framer-1hlm8z3, .framer-9zeuC .framer-63ob45-container { order: 1; width: 100%; } .framer-9zeuC .framer-1pfoult, .framer-9zeuC .framer-1abprbp { order: 2; } .framer-9zeuC .framer-15rlu0l { justify-content: flex-end; order: 0; width: 100%; } .framer-9zeuC .framer-etaps5 { justify-content: flex-end; width: 100%; } .framer-9zeuC .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-9zeuC .framer-1d7ihmp { flex: none; order: 1; width: 100%; } .framer-9zeuC .framer-1srzfh1 { max-width: unset; } .framer-9zeuC .framer-1bmi8eo { order: 0; width: 100%; } .framer-9zeuC .framer-1tl276o { background-color: unset; order: 2; } .framer-9zeuC .framer-7wclla { padding: 50px 24px 50px 24px; } .framer-9zeuC .framer-cu0ogy { gap: 32px; } .framer-9zeuC .framer-7u8fwv { gap: 26px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-9zeuC .framer-v1szlu { grid-column: auto / span 1; order: 0; } .framer-9zeuC .framer-1tn9b2u { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-9zeuC .framer-6e3kvj-container { height: 111px; } .framer-9zeuC .framer-xch8uj { padding: 0px 24px 50px 24px; } .framer-9zeuC .framer-49x5cw { gap: 70px; } .framer-9zeuC .framer-15w7kz1, .framer-9zeuC .framer-mh4amm { overflow: visible; } .framer-9zeuC .framer-uo7po2 { gap: 40px; overflow: visible; } .framer-9zeuC .framer-12o9qbd { min-height: 29px; } .framer-9zeuC .framer-4sxcx1 { padding: 48px 24px 4px 24px; } .framer-9zeuC .framer-1ysebzx { gap: 34px; } .framer-9zeuC .framer-xkr3by { gap: 28px; position: relative; top: unset; } .framer-9zeuC .framer-hvxmsu { gap: 18px; } .framer-9zeuC .framer-uud8ad { gap: 40px; } .framer-9zeuC .framer-1w0q7ac { gap: 44px; } .framer-9zeuC .framer-1odsxbf, .framer-9zeuC .framer-1l01njr, .framer-9zeuC .framer-1tmox7z, .framer-9zeuC .framer-pr0o55, .framer-9zeuC .framer-4wsqim-container, .framer-9zeuC .framer-tndojr-container, .framer-9zeuC .framer-au6363-container, .framer-9zeuC .framer-gocqtv, .framer-9zeuC .framer-1ai74nf-container, .framer-9zeuC .framer-1oe2gp0, .framer-9zeuC .framer-1p5po58-container { flex: none; width: 100%; } .framer-9zeuC .framer-16jjfzu, .framer-9zeuC .framer-1r6ii73, .framer-9zeuC .framer-n7n394 { gap: 30px; } .framer-9zeuC .framer-xr3l9, .framer-9zeuC .framer-dy10k6 { gap: 30px; width: 100%; } .framer-9zeuC .framer-dlnmo2, .framer-9zeuC .framer-1lgm3t3-container { width: 100%; } .framer-9zeuC .framer-wfeje { height: min-content; padding: 0px 24px 50px 24px; } .framer-9zeuC .framer-1doveij { flex: none; gap: 80px; height: min-content; justify-content: center; } .framer-9zeuC .framer-unwsa7 { gap: 50px; overflow: visible; } .framer-9zeuC .framer-129dri9 { flex-direction: column; gap: 50px; } .framer-9zeuC .framer-1csplbm { flex: none; flex-direction: column; gap: 26px; order: 0; width: 100%; } .framer-9zeuC .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-9zeuC .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-9zeuC .framer-10loe5g { padding: 60px 24px 50px 24px; } .framer-9zeuC .framer-1grbgua { gap: 36px; } .framer-9zeuC .framer-12yqnnv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; } .framer-9zeuC .framer-1pxotkc { align-self: unset; height: auto; max-width: 270px; order: 0; } .framer-9zeuC .framer-1kaz94y { align-self: unset; flex-direction: column; gap: 30px; height: min-content; order: 1; } .framer-9zeuC .framer-108nq7m { --framer-text-wrap-override: balance; max-width: 340px; } .framer-9zeuC .framer-1siogyx { flex-direction: column; gap: 34px; } .framer-9zeuC .framer-wffo4g { flex: none; flex-direction: column; gap: 34px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9zeuC .framer-1s8uq1m, .framer-9zeuC .framer-8axwti, .framer-9zeuC .framer-cu0ogy, .framer-9zeuC .framer-7u8fwv, .framer-9zeuC .framer-1tn9b2u, .framer-9zeuC .framer-49x5cw, .framer-9zeuC .framer-uo7po2, .framer-9zeuC .framer-1ysebzx, .framer-9zeuC .framer-xkr3by, .framer-9zeuC .framer-hvxmsu, .framer-9zeuC .framer-uud8ad, .framer-9zeuC .framer-1w0q7ac, .framer-9zeuC .framer-1x35gf1, .framer-9zeuC .framer-16jjfzu, .framer-9zeuC .framer-xr3l9, .framer-9zeuC .framer-1w3x7hh, .framer-9zeuC .framer-1r6ii73, .framer-9zeuC .framer-1qi15zk, .framer-9zeuC .framer-n7n394, .framer-9zeuC .framer-dy10k6, .framer-9zeuC .framer-1doveij, .framer-9zeuC .framer-unwsa7, .framer-9zeuC .framer-129dri9, .framer-9zeuC .framer-1csplbm, .framer-9zeuC .framer-1grbgua, .framer-9zeuC .framer-12yqnnv, .framer-9zeuC .framer-1kaz94y, .framer-9zeuC .framer-1siogyx, .framer-9zeuC .framer-wffo4g { gap: 0px; } .framer-9zeuC .framer-1s8uq1m > *, .framer-9zeuC .framer-uo7po2 > *, .framer-9zeuC .framer-uud8ad > *, .framer-9zeuC .framer-1x35gf1 > *, .framer-9zeuC .framer-1w3x7hh > *, .framer-9zeuC .framer-1qi15zk > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9zeuC .framer-1s8uq1m > :first-child, .framer-9zeuC .framer-8axwti > :first-child, .framer-9zeuC .framer-cu0ogy > :first-child, .framer-9zeuC .framer-49x5cw > :first-child, .framer-9zeuC .framer-uo7po2 > :first-child, .framer-9zeuC .framer-1ysebzx > :first-child, .framer-9zeuC .framer-xkr3by > :first-child, .framer-9zeuC .framer-hvxmsu > :first-child, .framer-9zeuC .framer-uud8ad > :first-child, .framer-9zeuC .framer-1w0q7ac > :first-child, .framer-9zeuC .framer-1x35gf1 > :first-child, .framer-9zeuC .framer-16jjfzu > :first-child, .framer-9zeuC .framer-xr3l9 > :first-child, .framer-9zeuC .framer-1w3x7hh > :first-child, .framer-9zeuC .framer-1r6ii73 > :first-child, .framer-9zeuC .framer-1qi15zk > :first-child, .framer-9zeuC .framer-n7n394 > :first-child, .framer-9zeuC .framer-dy10k6 > :first-child, .framer-9zeuC .framer-1doveij > :first-child, .framer-9zeuC .framer-unwsa7 > :first-child, .framer-9zeuC .framer-129dri9 > :first-child, .framer-9zeuC .framer-1csplbm > :first-child, .framer-9zeuC .framer-1grbgua > :first-child, .framer-9zeuC .framer-12yqnnv > :first-child, .framer-9zeuC .framer-1kaz94y > :first-child, .framer-9zeuC .framer-1siogyx > :first-child, .framer-9zeuC .framer-wffo4g > :first-child { margin-top: 0px; } .framer-9zeuC .framer-1s8uq1m > :last-child, .framer-9zeuC .framer-8axwti > :last-child, .framer-9zeuC .framer-cu0ogy > :last-child, .framer-9zeuC .framer-49x5cw > :last-child, .framer-9zeuC .framer-uo7po2 > :last-child, .framer-9zeuC .framer-1ysebzx > :last-child, .framer-9zeuC .framer-xkr3by > :last-child, .framer-9zeuC .framer-hvxmsu > :last-child, .framer-9zeuC .framer-uud8ad > :last-child, .framer-9zeuC .framer-1w0q7ac > :last-child, .framer-9zeuC .framer-1x35gf1 > :last-child, .framer-9zeuC .framer-16jjfzu > :last-child, .framer-9zeuC .framer-xr3l9 > :last-child, .framer-9zeuC .framer-1w3x7hh > :last-child, .framer-9zeuC .framer-1r6ii73 > :last-child, .framer-9zeuC .framer-1qi15zk > :last-child, .framer-9zeuC .framer-n7n394 > :last-child, .framer-9zeuC .framer-dy10k6 > :last-child, .framer-9zeuC .framer-1doveij > :last-child, .framer-9zeuC .framer-unwsa7 > :last-child, .framer-9zeuC .framer-129dri9 > :last-child, .framer-9zeuC .framer-1csplbm > :last-child, .framer-9zeuC .framer-1grbgua > :last-child, .framer-9zeuC .framer-12yqnnv > :last-child, .framer-9zeuC .framer-1kaz94y > :last-child, .framer-9zeuC .framer-1siogyx > :last-child, .framer-9zeuC .framer-wffo4g > :last-child { margin-bottom: 0px; } .framer-9zeuC .framer-8axwti > *, .framer-9zeuC .framer-1csplbm > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-9zeuC .framer-cu0ogy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-9zeuC .framer-7u8fwv > *, .framer-9zeuC .framer-7u8fwv > :first-child, .framer-9zeuC .framer-7u8fwv > :last-child, .framer-9zeuC .framer-1tn9b2u > *, .framer-9zeuC .framer-1tn9b2u > :first-child, .framer-9zeuC .framer-1tn9b2u > :last-child { margin: 0px; } .framer-9zeuC .framer-49x5cw > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-9zeuC .framer-1ysebzx > *, .framer-9zeuC .framer-1siogyx > *, .framer-9zeuC .framer-wffo4g > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-9zeuC .framer-xkr3by > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-9zeuC .framer-hvxmsu > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-9zeuC .framer-1w0q7ac > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-9zeuC .framer-16jjfzu > *, .framer-9zeuC .framer-xr3l9 > *, .framer-9zeuC .framer-1r6ii73 > *, .framer-9zeuC .framer-n7n394 > *, .framer-9zeuC .framer-dy10k6 > *, .framer-9zeuC .framer-12yqnnv > *, .framer-9zeuC .framer-1kaz94y > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-9zeuC .framer-1doveij > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-9zeuC .framer-unwsa7 > *, .framer-9zeuC .framer-129dri9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-9zeuC .framer-1grbgua > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9874\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 * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"dQ2OT4jvd\":{\"pattern\":\":dQ2OT4jvd\",\"name\":\"work\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-9zeuC\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9874,width:1200};addFonts(FrameraugiA20Il,[{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/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/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\"}]},...SplashScreenFonts,...HeaderHeaderFonts,...VideoFonts,...UIArrowButtonFonts,...NumbersItemFonts,...LogoCarouselFonts,...LogoFonts,...UICategoryFonts,...ServicesItemsFonts,...ProjetcsProjectItemLightFonts,...UIAllItemsFonts,...TeamAvatarFonts,...TeamItemFonts,...TestimonalSectionFonts,...BlogArticleFonts,...ContactFonts,...FooterFooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"toDtyncsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4sQvxEP4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9874\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"dQ2OT4jvd\\\":{\\\"pattern\\\":\\\":dQ2OT4jvd\\\",\\\"name\\\":\\\"work\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["CounterStyles", "Counter", "props", "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", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "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", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bulletpoints1", "click", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "M6makQZJz", "iU68ScBCY", "KcEBT1GFr", "rb4u8bIQ5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapv362gq", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentPresetsProvider", "css", "FramerJDguMTCRG", "withCSS", "JDguMTCRG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "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", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Title", "_02Description", "_02Title", "_03Description", "_03Title", "_04Description", "_04Title", "_05Description", "_05Title", "_06Description", "_06Title", "bulletpoints1", "bulletpoints2", "bulletpoints3", "bulletpoints4", "bulletpoints5", "bulletpoints6", "height", "id", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nfr3_vd4_", "Xgqdpwxoc", "AChBv6mnx", "dym8aGlmH", "Y7m9L8sgJ", "u2WQNcukZ", "rd_VK8DcK", "T3Zvj4lLt", "DvMnYDgLq", "DP3k2sIwB", "dYspAHvCn", "yIZLGI3IM", "teKSqI_3S", "k_JSyjBLA", "ZRe4M1eiq", "XAHQcw5bL", "p3Eq8ImvR", "bCzHpbaLj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "KcEBT1GFr1ov8v4r", "args", "KrXbsPILD1xtnafx", "KrXbsPILD1ov8v4r", "KrXbsPILDgko28l", "KrXbsPILDjnvuu0", "KrXbsPILDkhapmg", "KrXbsPILDbr4mb1", "KrXbsPILD11xbel4", "KrXbsPILD8caf5w", "KrXbsPILD1i08jbh", "KrXbsPILD1mf45pp", "KrXbsPILD1undss3", "KrXbsPILDyokc1j", "KrXbsPILD1uxowba", "KrXbsPILDnbjzmd", "KrXbsPILDvu4x", "KrXbsPILD1ext7ag", "KrXbsPILDq1ltx0", "KrXbsPILD46k9fx", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramereSOfEPmfr", "withCSS", "eSOfEPmfr_default", "addPropertyControls", "ControlType", "addFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Qkn0srEs4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "RichText2", "css", "FramerkR2QL9FhD", "withCSS", "kR2QL9FhD_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "LayoutGroup", "u", "css", "FramerllioleSC9", "withCSS", "llioleSC9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "albertinaNikolova", "alexLopez", "alvaroRodriguez", "amount", "bGColor", "border", "daniloPolovina", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dGWMhyRCs", "fwD6acpNS", "H0Oo1Mfv9", "vNAo0sswR", "RDM7oqG69", "IYnqoNnsD", "K01rPaGiO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerP9ubNxmwe", "withCSS", "P9ubNxmwe_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", "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", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerW96ZH6Gnz", "withCSS", "W96ZH6Gnz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SplashScreenFonts", "getFonts", "llioleSC9_default", "HeaderHeaderFonts", "O1fMzCErz_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "ImageWithOptimizedAppearEffect", "Image2", "MotionSectionWithFX", "withFX", "UIArrowButtonFonts", "ozPjcS5mp_default", "RichTextWithFX", "NumbersItemFonts", "aH7yeXBVj_default", "MotionDivWithFX", "LogoCarouselFonts", "fuxa0eFsG_default", "LogoFonts", "OY8jC43hH_default", "UICategoryFonts", "wVLyqC_6X_default", "ServicesItemsFonts", "eSOfEPmfr_default", "ProjetcsProjectItemLightFonts", "Zn0HI2r8i_default", "UIAllItemsFonts", "kR2QL9FhD_default", "TeamAvatarFonts", "P9ubNxmwe_default", "TeamItemFonts", "W96ZH6Gnz_default", "ContainerWithFX", "ImageWithFX", "TestimonalSectionFonts", "qbOho3WFi_default", "BlogArticleFonts", "DyECzRfVJ_default", "ContactFonts", "McSGfJuih_default", "FooterFooterFonts", "pCkRDSIIx_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transformTemplate2", "transition4", "animation6", "animation7", "transition5", "animation8", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "animation13", "transition9", "animation14", "transition10", "animation15", "animation16", "transition11", "animation17", "transition12", "animation18", "animation19", "transition13", "animation20", "animation21", "animation22", "transition14", "animation23", "animation24", "animation25", "animation26", "transition15", "animation27", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation28", "addImageAlt", "image", "alt", "transition16", "animation29", "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", "g1I5MiAVjVCBUdP7yK", "idVCBUdP7yK", "g1I5MiAVjd3u7aLgIl", "r01Ash4Kud3u7aLgIl", "wxze6Ee9Fd3u7aLgIl", "idd3u7aLgIl", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "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", "YIWnW45d9_default", "collection5", "paginationInfo5", "loadMore5", "index5", "resolvedLinks4", "collection6", "paginationInfo6", "loadMore6", "index6", "resolvedLinks5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
