{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://framerusercontent.com/modules/psOu8HnhWnJc2ebCg3Cj/M7flsOMj5mYUjXpRGM78/G3ahsW2qE.js", "ssg:https://framerusercontent.com/modules/er5LLWzD3h8baXKa09IE/jBvDZmHCz2U1I2vDcoUY/mkqLv8f4I.js", "ssg:https://framerusercontent.com/modules/7li5FvlgxihFuFdrAZNo/6RIx7y71CETcSVMUTE9W/NXIzh2yUk.js", "ssg:https://framerusercontent.com/modules/3mmJ0ezMQK09FTTMOC7h/z043nuvisIjuYSvomt62/UROKT2DsI-0.js", "ssg:https://framerusercontent.com/modules/3mmJ0ezMQK09FTTMOC7h/z043nuvisIjuYSvomt62/UROKT2DsI.js", "ssg:https://framerusercontent.com/modules/gXtJHjqdBLCmGeQvLN6L/MIU7Hiv05IyexsOy4leM/yK5nsU97t.js", "ssg:https://framerusercontent.com/modules/IcvpWMMBTRIpVfBmyx71/yTgxZSUS2mYs8wk0wIGe/augiA20Il.js", "ssg:https://framerusercontent.com/modules/5FE3iIqBweOuqiQRftDf/3qCbfnJJYTfd2xVEBikC/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (1be12e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={FTHqtfkjs:{hover:true}};const serializationHash=\"framer-fuz3f\";const variantClassNames={FTHqtfkjs:\"framer-v-rlbxra\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,iGNORECursor,image,link,width,...props})=>{var _ref;return{...props,HcXl17phF:iGNORECursor!==null&&iGNORECursor!==void 0?iGNORECursor:props.HcXl17phF,qmgPsxnAx:(_ref=image!==null&&image!==void 0?image:props.qmgPsxnAx)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/SmREL4zi3PfQvUR5nPzfquprk.jpg\"},zizrr5g4i:link!==null&&link!==void 0?link:props.zizrr5g4i};};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,HcXl17phF,qmgPsxnAx,zizrr5g4i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"FTHqtfkjs\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:zizrr5g4i,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-rlbxra\",className,classNames)} framer-a68ssu`,\"data-border\":true,\"data-framer-cursor\":HcXl17phF,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"FTHqtfkjs\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-061c2b9f-64af-493d-8868-31ff2263526e, rgb(15, 15, 15))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({\"FTHqtfkjs-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||372)-200-120)/2+0+0)),pixelHeight:240,pixelWidth:600,sizes:\"300px\",...toResponsiveImage(qmgPsxnAx),...{positionX:\"left\",positionY:\"top\"}},className:\"framer-1aya4h5\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"gT_cj0uf9\",...addPropertyOverrides({\"FTHqtfkjs-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||372)-200-139)/2+0+0)),pixelHeight:240,pixelWidth:600,sizes:\"347px\",...toResponsiveImage(qmgPsxnAx),...{positionX:\"left\",positionY:\"top\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uu6fzr\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"DsP4UfWeD\",style:{background:'linear-gradient(180deg, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14)) /* {\"name\":\"Brand/Orange\"} */ -43%, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14)) /* {\"name\":\"Brand/Orange\"} */ 100%)',filter:\"blur(100px)\",opacity:0,WebkitFilter:\"blur(100px)\"},variants:{\"FTHqtfkjs-hover\":{opacity:.7}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fuz3f.framer-a68ssu, .framer-fuz3f .framer-a68ssu { display: block; }\",\".framer-fuz3f.framer-rlbxra { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 372px; justify-content: center; overflow: hidden; padding: 100px; position: relative; text-decoration: none; width: 526px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fuz3f .framer-1aya4h5 { flex: none; height: 120px; position: relative; width: 300px; z-index: 1; }\",\".framer-fuz3f .framer-uu6fzr { bottom: 0px; flex: none; height: 212px; left: 0px; overflow: hidden; position: absolute; width: 315px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fuz3f.framer-rlbxra { gap: 0px; } .framer-fuz3f.framer-rlbxra > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fuz3f.framer-rlbxra > :first-child { margin-top: 0px; } .framer-fuz3f.framer-rlbxra > :last-child { margin-bottom: 0px; } }\",\".framer-fuz3f.framer-v-rlbxra.hover .framer-1aya4h5 { height: 139px; width: 347px; }\",\".framer-fuz3f.framer-v-rlbxra.hover .framer-uu6fzr { overflow: visible; }\",'.framer-fuz3f[data-border=\"true\"]::after, .framer-fuz3f [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 372\n * @framerIntrinsicWidth 526\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"m12O1x_zN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HcXl17phF\":\"iGNORECursor\",\"qmgPsxnAx\":\"image\",\"zizrr5g4i\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG3ahsW2qE=withCSS(Component,css,\"framer-fuz3f\");export default FramerG3ahsW2qE;FramerG3ahsW2qE.displayName=\"Tile/Project\";FramerG3ahsW2qE.defaultProps={height:372,width:526};addPropertyControls(FramerG3ahsW2qE,{HcXl17phF:{title:\"[IGNORE] Cursor\",type:ControlType.CustomCursor},qmgPsxnAx:{__defaultAssetReference:\"data:framer/asset-reference,SmREL4zi3PfQvUR5nPzfquprk.jpg?originalFilename=naszekrosno2.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},zizrr5g4i:{title:\"Link\",type:ControlType.Link}});addFonts(FramerG3ahsW2qE,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG3ahsW2qE\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"HcXl17phF\\\":\\\"iGNORECursor\\\",\\\"qmgPsxnAx\\\":\\\"image\\\",\\\"zizrr5g4i\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"372\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"526\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m12O1x_zN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G3ahsW2qE.map", "// Generated by Framer (1be12e0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,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/lVIF2ymp6fMTN9UBs8bx/PQ22UxW03J6OM6txnVBN/m42nfZshI.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qgFfSNKrqO8pCFZx9dWg/Fdrqvr9TQbNLsVchyygh/qwwrTlXiV.js\";const serializationHash=\"framer-1Vl5a\";const variantClassNames={DHDlBNHzB:\"framer-v-1rpha4w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({authorSImage,authorSName,authorSRole,height,id,text,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,dGxw9Fvp8:(_ref=authorSName!==null&&authorSName!==void 0?authorSName:props.dGxw9Fvp8)!==null&&_ref!==void 0?_ref:\"Max\",hqEKA4UbL:(_ref1=text!==null&&text!==void 0?text:props.hqEKA4UbL)!==null&&_ref1!==void 0?_ref1:\"Projekt ten opiera si\u0119 na innowacyjnych rozwi\u0105zaniach i solidnych podstawach, kt\\xf3re mog\u0105 przynie\u015B\u0107 znacz\u0105cy wp\u0142yw w naszej bran\u017Cy. Jestem przekonany, \u017Ce jego sukces przyniesie korzy\u015Bci nie tylko nam, ale tak\u017Ce szerszej spo\u0142eczno\u015Bci.\",MFqbol69n:(_ref2=authorSImage!==null&&authorSImage!==void 0?authorSImage:props.MFqbol69n)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/l19P4B4gW2LfHYRZg2KxmTSyj8.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/l19P4B4gW2LfHYRZg2KxmTSyj8.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/l19P4B4gW2LfHYRZg2KxmTSyj8.jpg?scale-down-to=2048 1367w,https://framerusercontent.com/images/l19P4B4gW2LfHYRZg2KxmTSyj8.jpg?scale-down-to=4096 2734w,https://framerusercontent.com/images/l19P4B4gW2LfHYRZg2KxmTSyj8.jpg 4016w\"},nxjYJm7is:(_ref3=authorSRole!==null&&authorSRole!==void 0?authorSRole:props.nxjYJm7is)!==null&&_ref3!==void 0?_ref3:\"Founder @ CoinView\"};};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,hqEKA4UbL,MFqbol69n,dGxw9Fvp8,nxjYJm7is,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"DHDlBNHzB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rpha4w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"DHDlBNHzB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-061c2b9f-64af-493d-8868-31ff2263526e, rgb(15, 15, 15))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1flevjp\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"iETFq3jjp\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkv57o\",\"data-framer-name\":\"Stars\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GS3v5lFCK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 76 13\"><path d=\"M 6.552 0 L 8.269 4.155 L 12.783 4.491 L 9.331 7.396 L 10.403 11.759 L 6.552 9.399 L 2.701 11.759 L 3.773 7.396 L 0.321 4.491 L 4.834 4.155 Z\" fill=\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\"></path><path d=\"M 22.276 0 L 23.993 4.155 L 28.507 4.491 L 25.055 7.396 L 26.127 11.759 L 22.276 9.399 L 18.425 11.759 L 19.497 7.396 L 16.045 4.491 L 20.558 4.155 Z\" fill=\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\"></path><path d=\"M 38 0 L 39.718 4.155 L 44.231 4.491 L 40.779 7.396 L 41.851 11.759 L 38 9.399 L 34.149 11.759 L 35.221 7.396 L 31.769 4.491 L 36.282 4.155 Z\" fill=\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\"></path><path d=\"M 53.724 0 L 55.442 4.155 L 59.955 4.491 L 56.503 7.396 L 57.575 11.759 L 53.724 9.399 L 49.873 11.759 L 50.945 7.396 L 47.493 4.491 L 52.007 4.155 Z\" fill=\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\"></path><path d=\"M 69.448 0 L 71.166 4.155 L 75.679 4.491 L 72.227 7.396 L 73.299 11.759 L 69.448 9.399 L 65.597 11.759 L 66.669 7.396 L 63.217 4.491 L 67.731 4.155 Z\" fill=\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\"></path></svg>',svgContentId:12273424851,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pw3dtd\",\"data-styles-preset\":\"m42nfZshI\",children:\"I absolutely love my new logo!\"})}),className:\"framer-1e5kvg2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"btplgvIiJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hqEKA4UbL,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18xopxl\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"gCyiUW6Oa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+36+0+0+97+4.800000000000001),pixelHeight:6016,pixelWidth:4016,sizes:\"28px\",...toResponsiveImage(MFqbol69n)},className:\"framer-12cu7uo\",\"data-framer-name\":\"Profile Image\",layoutDependency:layoutDependency,layoutId:\"J31G_LZb5\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17xo1a6\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"VdcpGZS3U\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"Eddie\"})}),className:\"framer-1x3t9jt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OIXc_5B7M\",style:{\"--extracted-1lwpl3i\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:dGxw9Fvp8,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"Founder @ UrbanCore\"})}),className:\"framer-1kucxp2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NtGfN27vT\",style:{\"--extracted-1lwpl3i\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nxjYJm7is,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1Vl5a.framer-1tnviu8, .framer-1Vl5a .framer-1tnviu8 { display: block; }\",\".framer-1Vl5a.framer-1rpha4w { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 36px; position: relative; width: 361px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1Vl5a .framer-1flevjp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1Vl5a .framer-1nkv57o { flex: none; height: 13px; position: relative; width: 76px; }\",\".framer-1Vl5a .framer-1e5kvg2, .framer-1Vl5a .framer-1x3t9jt, .framer-1Vl5a .framer-1kucxp2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1Vl5a .framer-18xopxl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-1Vl5a .framer-12cu7uo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-1Vl5a .framer-17xo1a6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1Vl5a.framer-1rpha4w, .framer-1Vl5a .framer-1flevjp, .framer-1Vl5a .framer-18xopxl, .framer-1Vl5a .framer-17xo1a6 { gap: 0px; } .framer-1Vl5a.framer-1rpha4w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1Vl5a.framer-1rpha4w > :first-child, .framer-1Vl5a .framer-1flevjp > :first-child, .framer-1Vl5a .framer-17xo1a6 > :first-child { margin-top: 0px; } .framer-1Vl5a.framer-1rpha4w > :last-child, .framer-1Vl5a .framer-1flevjp > :last-child, .framer-1Vl5a .framer-17xo1a6 > :last-child { margin-bottom: 0px; } .framer-1Vl5a .framer-1flevjp > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-1Vl5a .framer-18xopxl > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-1Vl5a .framer-18xopxl > :first-child { margin-left: 0px; } .framer-1Vl5a .framer-18xopxl > :last-child { margin-right: 0px; } .framer-1Vl5a .framer-17xo1a6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-1Vl5a[data-border=\"true\"]::after, .framer-1Vl5a [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 430.5\n * @framerIntrinsicWidth 361\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hqEKA4UbL\":\"text\",\"MFqbol69n\":\"authorSImage\",\"dGxw9Fvp8\":\"authorSName\",\"nxjYJm7is\":\"authorSRole\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermkqLv8f4I=withCSS(Component,css,\"framer-1Vl5a\");export default FramermkqLv8f4I;FramermkqLv8f4I.displayName=\"Testimonial\";FramermkqLv8f4I.defaultProps={height:430.5,width:361};addPropertyControls(FramermkqLv8f4I,{hqEKA4UbL:{defaultValue:\"Projekt ten opiera si\u0119 na innowacyjnych rozwi\u0105zaniach i solidnych podstawach, kt\\xf3re mog\u0105 przynie\u015B\u0107 znacz\u0105cy wp\u0142yw w naszej bran\u017Cy. Jestem przekonany, \u017Ce jego sukces przyniesie korzy\u015Bci nie tylko nam, ale tak\u017Ce szerszej spo\u0142eczno\u015Bci.\",displayTextArea:false,title:\"Text\",type:ControlType.String},MFqbol69n:{__defaultAssetReference:\"data:framer/asset-reference,l19P4B4gW2LfHYRZg2KxmTSyj8.jpg?originalFilename=photo-1586716402203-79219bede43c%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxNHx8cG90cmFpdHxlbnwwfHx8fDE3MTc0ODA2ODN8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Author's Image\",type:ControlType.ResponsiveImage},dGxw9Fvp8:{defaultValue:\"Max\",displayTextArea:false,title:\"Author's Name\",type:ControlType.String},nxjYJm7is:{defaultValue:\"Founder @ CoinView\",displayTextArea:false,title:\"Author's Role\",type:ControlType.String}});addFonts(FramermkqLv8f4I,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermkqLv8f4I\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"361\",\"framerIntrinsicHeight\":\"430.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"hqEKA4UbL\\\":\\\"text\\\",\\\"MFqbol69n\\\":\\\"authorSImage\\\",\\\"dGxw9Fvp8\\\":\\\"authorSName\\\",\\\"nxjYJm7is\\\":\\\"authorSRole\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c499f43)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/mcZEAUkq1DSIzEfbkPQ9/K1bvXgwzjqLwOy7RaSmM/jCwDSJJGK.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eszEVsKEscSL10gVj5KY/V8KhGTg383JRK9ZwkEpv/oDMcMu4dM.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tQeb0lAYS8yO9GTgNXjW/ezBcrPvjiTVxSrfsAw99/PQmJW0QE2.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/qgFfSNKrqO8pCFZx9dWg/Fdrqvr9TQbNLsVchyygh/qwwrTlXiV.js\";import Button from\"https://framerusercontent.com/modules/s175fuxdD8V1X3ZYFmoc/lSzndsdsSfdOqc3t1cKl/BlLduBBWJ.js\";import*as localizedValues from\"./NXIzh2yUk-0.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"CDi4AoFxe\",\"zsVelk7ni\"];const serializationHash=\"framer-eh4Lk\";const variantClassNames={CDi4AoFxe:\"framer-v-178xsg2\",zsVelk7ni:\"framer-v-dq5z24\"};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 valuesByLocaleId={yG0GUZUxH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"CDi4AoFxe\",Featured:\"zsVelk7ni\"};const getProps=({buttonLabel,description,height,id,iGNORECursor,link,newTab,planType,point1,point2,point3,point4,point5,point6,price,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_humanReadableVariantMap_props_variant,_ref7,_ref8,_ref9,_ref10;return{...props,aqjDFNtSh:(_ref=planType!==null&&planType!==void 0?planType:props.aqjDFNtSh)!==null&&_ref!==void 0?_ref:\"Startowy\",B16AKMTvD:(_ref1=point4!==null&&point4!==void 0?point4:props.B16AKMTvD)!==null&&_ref1!==void 0?_ref1:\"Content Marketing\",BLMMSc5AE:(_ref2=price!==null&&price!==void 0?price:props.BLMMSc5AE)!==null&&_ref2!==void 0?_ref2:\"150 z\u0142 / h\",Es9XOr3oc:newTab!==null&&newTab!==void 0?newTab:props.Es9XOr3oc,EvqyuZXFQ:(_ref3=point2!==null&&point2!==void 0?point2:props.EvqyuZXFQ)!==null&&_ref3!==void 0?_ref3:\"Reklama w Google Adwords\",fOsmDMmXP:(_ref4=description!==null&&description!==void 0?description:props.fOsmDMmXP)!==null&&_ref4!==void 0?_ref4:\"Rozwi\u0105zanie dla sklepu internetowego\",NTCCp42Ny:(_ref5=buttonLabel!==null&&buttonLabel!==void 0?buttonLabel:props.NTCCp42Ny)!==null&&_ref5!==void 0?_ref5:\"Zapytanie ofertowe\",sN3PhfBvr:(_ref6=point5!==null&&point5!==void 0?point5:props.sN3PhfBvr)!==null&&_ref6!==void 0?_ref6:\"dasdsa2\",variant:(_ref7=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref7!==void 0?_ref7:\"CDi4AoFxe\",VJ9yFjxAq:iGNORECursor!==null&&iGNORECursor!==void 0?iGNORECursor:props.VJ9yFjxAq,VLPEy2I_d:(_ref8=point6!==null&&point6!==void 0?point6:props.VLPEy2I_d)!==null&&_ref8!==void 0?_ref8:\"dsadsa\",WNbhzSMBJ:(_ref9=point1!==null&&point1!==void 0?point1:props.WNbhzSMBJ)!==null&&_ref9!==void 0?_ref9:\"Audyt WWW (SXO)\",y5thXLVlQ:(_ref10=point3!==null&&point3!==void 0?point3:props.y5thXLVlQ)!==null&&_ref10!==void 0?_ref10:\"Badania UX\",yTPGGjUXP:link!==null&&link!==void 0?link:props.yTPGGjUXP};};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,aqjDFNtSh,BLMMSc5AE,fOsmDMmXP,WNbhzSMBJ,EvqyuZXFQ,y5thXLVlQ,B16AKMTvD,sN3PhfBvr,VLPEy2I_d,NTCCp42Ny,yTPGGjUXP,Es9XOr3oc,VJ9yFjxAq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CDi4AoFxe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zsVelk7ni\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-178xsg2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"CDi4AoFxe\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-061c2b9f-64af-493d-8868-31ff2263526e, rgb(15, 15, 15))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({zsVelk7ni:{\"data-framer-name\":\"Featured\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19mnh8r\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"D7QLmhW7a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1up66mo\",\"data-styles-preset\":\"oDMcMu4dM\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14)))\"},children:\"Lite\"})}),className:\"framer-qmf2p1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JScXOiC0L\",style:{\"--extracted-1eung3n\":\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:aqjDFNtSh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"150 z\u0142 / h\"})}),className:\"framer-hysnsq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UjzhjMUNv\",style:{\"--extracted-a0htzi\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:BLMMSc5AE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Quickly receive a high-quality brand logo, representing your business vision.\"})}),className:\"framer-ur3y2h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XWkaMSo81\",style:{\"--extracted-r6o4lv\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fOsmDMmXP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w5xfbh\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"B_6A1fe0E\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Primary logo\"})})})}),className:\"framer-1b96ry6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lgKOs9Jj1\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WNbhzSMBJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Brand colours\"})})})}),className:\"framer-t6v114\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RTUtkDVXg\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EvqyuZXFQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"48hr delivery\"})})})}),className:\"framer-11g9tcs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZN7obWueE\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:y5thXLVlQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Max 1 revision\"})})})}),className:\"framer-1w3lcn2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FEFZCbGW0\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:B16AKMTvD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Figma files\"})})})}),className:\"framer-1csd27f\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"svZGdDZvC\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sN3PhfBvr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.ul,{className:\"framer-styles-preset-1v72pdt\",\"data-styles-preset\":\"qwwrTlXiV\",style:{\"--framer-text-color\":\"var(--extracted-1l7ec2w, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:/*#__PURE__*/_jsx(motion.li,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--framer-text-color\":\"var(--extracted-19i96z7, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Figma files\"})})})}),className:\"framer-4lrfmj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a9rHvSDd3\",style:{\"--extracted-19i96z7\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--extracted-1l7ec2w\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VLPEy2I_d,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 72px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+36+0+0+529.6,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-emaeqi-container\",layoutDependency:layoutDependency,layoutId:\"Hf49Awf58-container\",children:/*#__PURE__*/_jsx(Button,{aNGFS7dLi:VJ9yFjxAq,height:\"100%\",I5NOBVtlq:Es9XOr3oc,id:\"Hf49Awf58\",layoutId:\"Hf49Awf58\",PTg7sqraW:NTCCp42Ny,s_hd6Xdvn:yTPGGjUXP,style:{width:\"100%\"},variant:\"rgKPCDtEt\",width:\"100%\",...addPropertyOverrides({zsVelk7ni:{variant:\"QXuBFotnW\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-14fttic\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"iXdf87AQo\",style:{backgroundColor:\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\",filter:\"blur(100px)\",opacity:.7,WebkitFilter:\"blur(100px)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eh4Lk.framer-1nur0vm, .framer-eh4Lk .framer-1nur0vm { display: block; }\",\".framer-eh4Lk.framer-178xsg2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 36px; position: relative; width: 526px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eh4Lk .framer-19mnh8r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eh4Lk .framer-qmf2p1, .framer-eh4Lk .framer-hysnsq, .framer-eh4Lk .framer-ur3y2h, .framer-eh4Lk .framer-1b96ry6, .framer-eh4Lk .framer-t6v114, .framer-eh4Lk .framer-11g9tcs, .framer-eh4Lk .framer-1w3lcn2, .framer-eh4Lk .framer-1csd27f, .framer-eh4Lk .framer-4lrfmj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eh4Lk .framer-w5xfbh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eh4Lk .framer-emaeqi-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-eh4Lk .framer-14fttic { bottom: 0px; flex: none; height: 261px; overflow: visible; position: absolute; right: 0px; width: 236px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-eh4Lk.framer-178xsg2, .framer-eh4Lk .framer-19mnh8r, .framer-eh4Lk .framer-w5xfbh { gap: 0px; } .framer-eh4Lk.framer-178xsg2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eh4Lk.framer-178xsg2 > :first-child, .framer-eh4Lk .framer-19mnh8r > :first-child, .framer-eh4Lk .framer-w5xfbh > :first-child { margin-top: 0px; } .framer-eh4Lk.framer-178xsg2 > :last-child, .framer-eh4Lk .framer-19mnh8r > :last-child, .framer-eh4Lk .framer-w5xfbh > :last-child { margin-bottom: 0px; } .framer-eh4Lk .framer-19mnh8r > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-eh4Lk .framer-w5xfbh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-eh4Lk.framer-v-dq5z24 .framer-19mnh8r { z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-eh4Lk[data-border=\"true\"]::after, .framer-eh4Lk [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 522.5\n * @framerIntrinsicWidth 526\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"zsVelk7ni\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"aqjDFNtSh\":\"planType\",\"BLMMSc5AE\":\"price\",\"fOsmDMmXP\":\"description\",\"WNbhzSMBJ\":\"point1\",\"EvqyuZXFQ\":\"point2\",\"y5thXLVlQ\":\"point3\",\"B16AKMTvD\":\"point4\",\"sN3PhfBvr\":\"point5\",\"VLPEy2I_d\":\"point6\",\"NTCCp42Ny\":\"buttonLabel\",\"yTPGGjUXP\":\"link\",\"Es9XOr3oc\":\"newTab\",\"VJ9yFjxAq\":\"iGNORECursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNXIzh2yUk=withCSS(Component,css,\"framer-eh4Lk\");export default FramerNXIzh2yUk;FramerNXIzh2yUk.displayName=\"Tile/Service\";FramerNXIzh2yUk.defaultProps={height:522.5,width:526};addPropertyControls(FramerNXIzh2yUk,{variant:{options:[\"CDi4AoFxe\",\"zsVelk7ni\"],optionTitles:[\"Default\",\"Featured\"],title:\"Variant\",type:ControlType.Enum},aqjDFNtSh:{defaultValue:\"Startowy\",displayTextArea:false,title:\"Plan Type\",type:ControlType.String},BLMMSc5AE:{defaultValue:\"150 z\u0142 / h\",displayTextArea:false,title:\"Price\",type:ControlType.String},fOsmDMmXP:{defaultValue:\"Rozwi\u0105zanie dla sklepu internetowego\",displayTextArea:false,title:\"Description\",type:ControlType.String},WNbhzSMBJ:{defaultValue:\"Audyt WWW (SXO)\",displayTextArea:false,title:\"Point 1\",type:ControlType.String},EvqyuZXFQ:{defaultValue:\"Reklama w Google Adwords\",displayTextArea:false,title:\"Point 2\",type:ControlType.String},y5thXLVlQ:{defaultValue:\"Badania UX\",displayTextArea:false,title:\"Point 3\",type:ControlType.String},B16AKMTvD:{defaultValue:\"Content Marketing\",displayTextArea:false,title:\"Point 4\",type:ControlType.String},sN3PhfBvr:{defaultValue:\"dasdsa2\",displayTextArea:false,title:\"Point 5\",type:ControlType.String},VLPEy2I_d:{defaultValue:\"dsadsa\",description:\"\",title:\"Point 6\",type:ControlType.String},NTCCp42Ny:{defaultValue:\"Zapytanie ofertowe\",displayTextArea:false,title:\"Button Label\",type:ControlType.String},yTPGGjUXP:{title:\"Link\",type:ControlType.Link},Es9XOr3oc:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},VJ9yFjxAq:{title:\"[IGNORE] Cursor\",type:ControlType.CustomCursor}});addFonts(FramerNXIzh2yUk,[{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\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNXIzh2yUk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"522.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zsVelk7ni\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"526\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"aqjDFNtSh\\\":\\\"planType\\\",\\\"BLMMSc5AE\\\":\\\"price\\\",\\\"fOsmDMmXP\\\":\\\"description\\\",\\\"WNbhzSMBJ\\\":\\\"point1\\\",\\\"EvqyuZXFQ\\\":\\\"point2\\\",\\\"y5thXLVlQ\\\":\\\"point3\\\",\\\"B16AKMTvD\\\":\\\"point4\\\",\\\"sN3PhfBvr\\\":\\\"point5\\\",\\\"VLPEy2I_d\\\":\\\"point6\\\",\\\"NTCCp42Ny\\\":\\\"buttonLabel\\\",\\\"yTPGGjUXP\\\":\\\"link\\\",\\\"Es9XOr3oc\\\":\\\"newTab\\\",\\\"VJ9yFjxAq\\\":\\\"iGNORECursor\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Free consultation\";export const v1=\"Offer\";export const v2=\"Experience\";export const v3=\"Services\";export const v4=\"Pricing\";export const v5=\"Discover ITX\";export const v6=\"FAQ\";export const v7=\"Blog\";export const v8=\"Privacy Policy\";export const v9=\"Contact\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (12ecc5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,SVG,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/s175fuxdD8V1X3ZYFmoc/dCBn91KOTDE1BJE3lFDt/BlLduBBWJ.js\";import*as localizedValues from\"./UROKT2DsI-0.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"VWxPtXFp_\",\"jBu6adFWi\",\"IeWGVpG57\"];const serializationHash=\"framer-ZUBFi\";const variantClassNames={IeWGVpG57:\"framer-v-f4mzfi\",jBu6adFWi:\"framer-v-1ujsfq1\",VWxPtXFp_:\"framer-v-f0dl4y\"};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 valuesByLocaleId={yG0GUZUxH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"VWxPtXFp_\",Mobile:\"IeWGVpG57\",Tablet:\"jBu6adFWi\"};const getProps=({height,id,iGNORECursor,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"VWxPtXFp_\",wCafjUqsT:iGNORECursor!==null&&iGNORECursor!==void 0?iGNORECursor:props.wCafjUqsT};};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,wCafjUqsT,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"VWxPtXFp_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-f0dl4y\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"VWxPtXFp_\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-012e9259-476e-4ce8-b232-f97a7a4ed06f, rgb(13, 13, 13))\",...style},...addPropertyOverrides({IeWGVpG57:{\"data-framer-name\":\"Mobile\"},jBu6adFWi:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w2fngt\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"ciXnNgMaL\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jox3e1\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"PHr2ePLjy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g799np\",layoutDependency:layoutDependency,layoutId:\"hwsyOvaUU\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qaqvu1\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"MDpvEZMua\",svg:'<svg fill=\"none\" height=\"48\" width=\"40\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M40 24c0 11.046-8.954 20-20 20C10.192 44 2.033 36.94.328 27.625A20.121 20.121 0 0 1 0 24c0-.964.068-1.913.2-2.841C1.448 12.387 8.387 5.448 17.16 4.2l.044-.006a20.175 20.175 0 0 1 6.422.134C32.94 6.033 40 14.192 40 24zm-5 0c0 8.284-6.716 15-15 15-6.243 0-11.595-3.814-13.854-9.239C7.074 29.918 8.028 30 9 30c9.389 0 17-7.611 17-17 0-.972-.082-1.926-.238-2.854C31.186 12.406 35 17.757 35 24zM20.318 9.003A11.98 11.98 0 0 1 21 13c0 6.627-5.373 12-12 12a11.98 11.98 0 0 1-3.997-.682A15.31 15.31 0 0 1 5 24c0-8.284 6.716-15 15-15l.318.003z\" fill=\"#fff\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"ITX.\"})}),className:\"framer-uudl6c\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"gpQodW6xr\",style:{\"--extracted-a0htzi\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IeWGVpG57:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"ITX.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+65,...addPropertyOverrides({IeWGVpG57:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1000px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+0+0+65},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+65}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l81lsq-container\",layoutDependency:layoutDependency,layoutId:\"GsydUERBV-container\",children:/*#__PURE__*/_jsx(Button,{aNGFS7dLi:wCafjUqsT,height:\"100%\",I5NOBVtlq:true,id:\"GsydUERBV\",layoutId:\"GsydUERBV\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Darmowa konsultacja\",s_hd6Xdvn:resolvedLinks[0],variant:\"QXuBFotnW\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks[2],style:{width:\"100%\"}},jBu6adFWi:{s_hd6Xdvn:resolvedLinks[1]}},baseVariant,gestureVariant)})})});}})]}),/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-166vvcu\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"Qx8IzJZDB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a54k2o\",\"data-framer-name\":\"Row/Links\",layoutDependency:layoutDependency,layoutId:\"mcped5v8J\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+0,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+0+0+0},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ai8bs-container\",layoutDependency:layoutDependency,layoutId:\"Couxbek_t-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"Couxbek_t\",layoutId:\"Couxbek_t\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Oferta\",s_hd6Xdvn:resolvedLinks1[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks1[2]},jBu6adFWi:{s_hd6Xdvn:resolvedLinks1[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":HK9MXYWDt\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HK9MXYWDt\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HK9MXYWDt\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+65,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+0+0+65},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+65}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1crcluc-container\",layoutDependency:layoutDependency,layoutId:\"fNCl3dlyx-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"fNCl3dlyx\",layoutId:\"fNCl3dlyx\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Do\u015Bwiadczenie\",s_hd6Xdvn:resolvedLinks2[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks2[2]},jBu6adFWi:{PTg7sqraW:(_getLocalizedValue1=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Us\u0142ugi\",s_hd6Xdvn:resolvedLinks2[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+130,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+0+0+130},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+130}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qrfufh-container\",layoutDependency:layoutDependency,layoutId:\"sRrJfzZsU-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"sRrJfzZsU\",layoutId:\"sRrJfzZsU\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Cennik\",s_hd6Xdvn:resolvedLinks3[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks3[2]},jBu6adFWi:{s_hd6Xdvn:resolvedLinks3[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OY_6IKL3S\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OY_6IKL3S\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":OY_6IKL3S\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+195,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+0+0+195},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+195}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9gwsdu-container\",layoutDependency:layoutDependency,layoutId:\"qdCpikU8_-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"qdCpikU8_\",layoutId:\"qdCpikU8_\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Poznaj ITX\",s_hd6Xdvn:resolvedLinks4[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks4[2]},jBu6adFWi:{s_hd6Xdvn:resolvedLinks4[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":qr1rYPGWT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qr1rYPGWT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qr1rYPGWT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+260,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+0+0+260},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+260}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-awn41c-container\",layoutDependency:layoutDependency,layoutId:\"NW7HIN4PX-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"NW7HIN4PX\",layoutId:\"NW7HIN4PX\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"FAQ\",s_hd6Xdvn:resolvedLinks5[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks5[2]},jBu6adFWi:{s_hd6Xdvn:resolvedLinks5[1]}},baseVariant,gestureVariant)})})});}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-veeh48\",\"data-framer-name\":\"Row/Links\",layoutDependency:layoutDependency,layoutId:\"BEXU7yLos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+0,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+349+0+0},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rncq15-container\",layoutDependency:layoutDependency,layoutId:\"JKgFgvJzn-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:true,id:\"JKgFgvJzn\",layoutId:\"JKgFgvJzn\",PTg7sqraW:\"\",s_hd6Xdvn:\"https://www.linkedin.com/in/ramish-aziz/\",variant:\"nQIwT422u\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yq1ptu\",\"data-framer-name\":\"Row/Links\",layoutDependency:layoutDependency,layoutId:\"D4bsaVLcT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+0,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+438+0+0},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7wjpmk-container\",layoutDependency:layoutDependency,layoutId:\"dc3efs13t-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"dc3efs13t\",layoutId:\"dc3efs13t\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Blog\",s_hd6Xdvn:\"/blog\",variant:\"nQIwT422u\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+65,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+438+0+65},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+65}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a0ag3t-container\",layoutDependency:layoutDependency,layoutId:\"Z2v8YBpCQ-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"Z2v8YBpCQ\",layoutId:\"Z2v8YBpCQ\",PTg7sqraW:(_getLocalizedValue1=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Polityka prywatno\u015Bci\",s_hd6Xdvn:\"/polityka-prywatnosci\",variant:\"nQIwT422u\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kijMRciIT\"},implicitPathVariables:undefined},{href:{webPageId:\"kijMRciIT\"},implicitPathVariables:undefined},{href:{webPageId:\"kijMRciIT\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:49,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||349)-200-309)/2+0+0)+0+0+0+130,...addPropertyOverrides({IeWGVpG57:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||424)-120-774)/2+0+0)+0+141+0+438+0+130},jBu6adFWi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||309)-160-309)/2+0+0)+0+0+0+130}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lb58kj-container\",layoutDependency:layoutDependency,layoutId:\"RMqf1xSwQ-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"RMqf1xSwQ\",layoutId:\"RMqf1xSwQ\",PTg7sqraW:(_getLocalizedValue=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Kontakt\",s_hd6Xdvn:resolvedLinks6[0],variant:\"nQIwT422u\",width:\"100%\",...addPropertyOverrides({IeWGVpG57:{s_hd6Xdvn:resolvedLinks6[2]},jBu6adFWi:{s_hd6Xdvn:resolvedLinks6[1]}},baseVariant,gestureVariant)})})});}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jyyljl\",layoutDependency:layoutDependency,layoutId:\"VHZDrXJTz\"})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukr30z\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"bvQ8TqqOQ\",style:{background:'linear-gradient(180deg, rgb(34, 255, 0) -43%, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14)) /* {\"name\":\"Brand/Orange\"} */ 100%)',filter:\"blur(100px)\",opacity:.5,WebkitFilter:\"blur(100px)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZUBFi.framer-hirl9q, .framer-ZUBFi .framer-hirl9q { display: block; }\",\".framer-ZUBFi.framer-f0dl4y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 1200px; }\",\".framer-ZUBFi .framer-w2fngt { 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; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZUBFi .framer-1jox3e1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZUBFi .framer-g799np { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ZUBFi .framer-qaqvu1 { aspect-ratio: 0.8333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 31px; }\",\".framer-ZUBFi .framer-uudl6c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZUBFi .framer-1l81lsq-container, .framer-ZUBFi .framer-4ai8bs-container, .framer-ZUBFi .framer-1crcluc-container, .framer-ZUBFi .framer-1qrfufh-container, .framer-ZUBFi .framer-9gwsdu-container, .framer-ZUBFi .framer-awn41c-container, .framer-ZUBFi .framer-1rncq15-container, .framer-ZUBFi .framer-7wjpmk-container, .framer-ZUBFi .framer-a0ag3t-container, .framer-ZUBFi .framer-1lb58kj-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZUBFi .framer-166vvcu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZUBFi .framer-a54k2o, .framer-ZUBFi .framer-veeh48, .framer-ZUBFi .framer-1yq1ptu { 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: min-content; }\",\".framer-ZUBFi .framer-jyyljl { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-height: 20px; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-ZUBFi .framer-ukr30z { bottom: 0px; flex: none; height: 212px; overflow: visible; position: absolute; right: 0px; width: 1047px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZUBFi.framer-f0dl4y, .framer-ZUBFi .framer-1jox3e1, .framer-ZUBFi .framer-g799np, .framer-ZUBFi .framer-166vvcu, .framer-ZUBFi .framer-a54k2o, .framer-ZUBFi .framer-veeh48, .framer-ZUBFi .framer-1yq1ptu, .framer-ZUBFi .framer-jyyljl { gap: 0px; } .framer-ZUBFi.framer-f0dl4y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZUBFi.framer-f0dl4y > :first-child, .framer-ZUBFi .framer-1jox3e1 > :first-child, .framer-ZUBFi .framer-a54k2o > :first-child, .framer-ZUBFi .framer-veeh48 > :first-child, .framer-ZUBFi .framer-1yq1ptu > :first-child { margin-top: 0px; } .framer-ZUBFi.framer-f0dl4y > :last-child, .framer-ZUBFi .framer-1jox3e1 > :last-child, .framer-ZUBFi .framer-a54k2o > :last-child, .framer-ZUBFi .framer-veeh48 > :last-child, .framer-ZUBFi .framer-1yq1ptu > :last-child { margin-bottom: 0px; } .framer-ZUBFi .framer-1jox3e1 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-ZUBFi .framer-g799np > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-ZUBFi .framer-g799np > :first-child, .framer-ZUBFi .framer-166vvcu > :first-child, .framer-ZUBFi .framer-jyyljl > :first-child { margin-left: 0px; } .framer-ZUBFi .framer-g799np > :last-child, .framer-ZUBFi .framer-166vvcu > :last-child, .framer-ZUBFi .framer-jyyljl > :last-child { margin-right: 0px; } .framer-ZUBFi .framer-166vvcu > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-ZUBFi .framer-a54k2o > *, .framer-ZUBFi .framer-veeh48 > *, .framer-ZUBFi .framer-1yq1ptu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZUBFi .framer-jyyljl > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-ZUBFi.framer-v-1ujsfq1.framer-f0dl4y { padding: 80px 40px 80px 40px; width: 810px; }\",\".framer-ZUBFi.framer-v-1ujsfq1 .framer-166vvcu { gap: 40px; }\",\".framer-ZUBFi.framer-v-1ujsfq1 .framer-ukr30z { width: 620px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZUBFi.framer-v-1ujsfq1 .framer-166vvcu { gap: 0px; } .framer-ZUBFi.framer-v-1ujsfq1 .framer-166vvcu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ZUBFi.framer-v-1ujsfq1 .framer-166vvcu > :first-child { margin-left: 0px; } .framer-ZUBFi.framer-v-1ujsfq1 .framer-166vvcu > :last-child { margin-right: 0px; } }\",\".framer-ZUBFi.framer-v-f4mzfi.framer-f0dl4y { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-w2fngt { align-content: center; align-items: center; flex-direction: column; gap: 27px; justify-content: flex-start; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-1jox3e1 { align-content: center; align-items: center; justify-content: center; width: 100%; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-g799np { align-self: unset; justify-content: center; width: 100%; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-1l81lsq-container { width: 100%; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-166vvcu { align-content: center; align-items: center; flex-direction: column; gap: 40px; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-a54k2o, .framer-ZUBFi.framer-v-f4mzfi .framer-veeh48, .framer-ZUBFi.framer-v-f4mzfi .framer-1yq1ptu { align-content: center; align-items: center; }\",\".framer-ZUBFi.framer-v-f4mzfi .framer-ukr30z { height: 360px; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZUBFi.framer-v-f4mzfi .framer-w2fngt, .framer-ZUBFi.framer-v-f4mzfi .framer-166vvcu { gap: 0px; } .framer-ZUBFi.framer-v-f4mzfi .framer-w2fngt > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-ZUBFi.framer-v-f4mzfi .framer-w2fngt > :first-child, .framer-ZUBFi.framer-v-f4mzfi .framer-166vvcu > :first-child { margin-top: 0px; } .framer-ZUBFi.framer-v-f4mzfi .framer-w2fngt > :last-child, .framer-ZUBFi.framer-v-f4mzfi .framer-166vvcu > :last-child { margin-bottom: 0px; } .framer-ZUBFi.framer-v-f4mzfi .framer-166vvcu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 349\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jBu6adFWi\":{\"layout\":[\"fixed\",\"auto\"]},\"IeWGVpG57\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"wCafjUqsT\":\"iGNORECursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUROKT2DsI=withCSS(Component,css,\"framer-ZUBFi\");export default FramerUROKT2DsI;FramerUROKT2DsI.displayName=\"Footer 3\";FramerUROKT2DsI.defaultProps={height:349,width:1200};addPropertyControls(FramerUROKT2DsI,{variant:{options:[\"VWxPtXFp_\",\"jBu6adFWi\",\"IeWGVpG57\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},wCafjUqsT:{title:\"[IGNORE] Cursor\",type:ControlType.CustomCursor}});addFonts(FramerUROKT2DsI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUROKT2DsI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"349\",\"framerVariables\":\"{\\\"wCafjUqsT\\\":\\\"iGNORECursor\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jBu6adFWi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IeWGVpG57\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UROKT2DsI.map", "// Generated by Framer (21e8ff0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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/lVIF2ymp6fMTN9UBs8bx/PQ22UxW03J6OM6txnVBN/m42nfZshI.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eszEVsKEscSL10gVj5KY/V8KhGTg383JRK9ZwkEpv/oDMcMu4dM.js\";import*as localizedValues from\"./yK5nsU97t-0.js\";const enabledGestures={IMlYiIBcT:{hover:true}};const serializationHash=\"framer-S8s0t\";const variantClassNames={IMlYiIBcT:\"framer-v-19d09kw\"};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 valuesByLocaleId={yG0GUZUxH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,iGNORECursor,image,name1,roleTitle,socialLink,width,...props})=>{var _ref,_ref1,_ref2;return{...props,b1BbnoN9z:(_ref=roleTitle!==null&&roleTitle!==void 0?roleTitle:props.b1BbnoN9z)!==null&&_ref!==void 0?_ref:\"Za\u0142o\u017Cyciel ITX\",hrdXEX8KF:(_ref1=image!==null&&image!==void 0?image:props.hrdXEX8KF)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/Z9hx8sa3dZ3XygqaapoGuy04eQY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Z9hx8sa3dZ3XygqaapoGuy04eQY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Z9hx8sa3dZ3XygqaapoGuy04eQY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z9hx8sa3dZ3XygqaapoGuy04eQY.jpg 1128w\"},OHrqErVNR:iGNORECursor!==null&&iGNORECursor!==void 0?iGNORECursor:props.OHrqErVNR,Q0vfbbqMT:socialLink!==null&&socialLink!==void 0?socialLink:props.Q0vfbbqMT,UUGP5C_MJ:(_ref2=name1!==null&&name1!==void 0?name1:props.UUGP5C_MJ)!==null&&_ref2!==void 0?_ref2:\"Maciej G\\xf3ral\"};};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,hrdXEX8KF,UUGP5C_MJ,b1BbnoN9z,Q0vfbbqMT,OHrqErVNR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"IMlYiIBcT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Q0vfbbqMT,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-19d09kw\",className,classNames)} framer-1nce7jt`,\"data-border\":true,\"data-framer-cursor\":OHrqErVNR,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"IMlYiIBcT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-061c2b9f-64af-493d-8868-31ff2263526e, rgb(15, 15, 15))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({\"IMlYiIBcT-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpihic\",\"data-framer-name\":\"Content Container\",layoutDependency:layoutDependency,layoutId:\"IEIYRciF3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pw3dtd\",\"data-styles-preset\":\"m42nfZshI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255)))\"},children:\"Sarah Farine\"})}),className:\"framer-1lj8o8x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pjRRRBG7D\",style:{\"--extracted-a0htzi\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:UUGP5C_MJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1up66mo\",\"data-styles-preset\":\"oDMcMu4dM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240)))\"},children:\"Founder of LogoFolio\"})}),className:\"framer-1tkn92t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Oxd36lHqt\",style:{\"--extracted-1eung3n\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\"},text:b1BbnoN9z,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:3891,pixelWidth:2586,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(hrdXEX8KF)},className:\"framer-12fkv53\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZcQnOsOhP\",style:{filter:\"grayscale(1)\",mask:\"linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0.5) 100%) add\",WebkitFilter:\"grayscale(1)\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0.5) 100%) add\"},variants:{\"IMlYiIBcT-hover\":{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}},...addPropertyOverrides({\"IMlYiIBcT-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-20.5),pixelHeight:3891,pixelWidth:2586,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} + 38px)`,...toResponsiveImage(hrdXEX8KF)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bylf4y\",\"data-framer-name\":\"Blur\",layoutDependency:layoutDependency,layoutId:\"KzcpmufW9\",style:{backgroundColor:\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\",filter:\"blur(100px)\",opacity:0,WebkitFilter:\"blur(100px)\"},variants:{\"IMlYiIBcT-hover\":{opacity:1}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-S8s0t.framer-1nce7jt, .framer-S8s0t .framer-1nce7jt { display: block; }\",\".framer-S8s0t.framer-19d09kw { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 36px; position: relative; text-decoration: none; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-S8s0t .framer-gpihic { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-S8s0t .framer-1lj8o8x, .framer-S8s0t .framer-1tkn92t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-S8s0t .framer-12fkv53 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-S8s0t .framer-1bylf4y { bottom: 0px; flex: none; height: 183px; overflow: visible; position: absolute; right: 0px; width: 236px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-S8s0t.framer-19d09kw, .framer-S8s0t .framer-gpihic { gap: 0px; } .framer-S8s0t.framer-19d09kw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-S8s0t.framer-19d09kw > :first-child { margin-left: 0px; } .framer-S8s0t.framer-19d09kw > :last-child { margin-right: 0px; } .framer-S8s0t .framer-gpihic > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-S8s0t .framer-gpihic > :first-child { margin-top: 0px; } .framer-S8s0t .framer-gpihic > :last-child { margin-bottom: 0px; } }\",\".framer-S8s0t.framer-v-19d09kw.hover .framer-12fkv53 { bottom: -20px; left: -19px; right: -19px; top: -20px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-S8s0t[data-border=\"true\"]::after, .framer-S8s0t [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 400\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mKBcp0bn8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"hrdXEX8KF\":\"image\",\"UUGP5C_MJ\":\"name1\",\"b1BbnoN9z\":\"roleTitle\",\"Q0vfbbqMT\":\"socialLink\",\"OHrqErVNR\":\"iGNORECursor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryK5nsU97t=withCSS(Component,css,\"framer-S8s0t\");export default FrameryK5nsU97t;FrameryK5nsU97t.displayName=\"Tile/Team Member\";FrameryK5nsU97t.defaultProps={height:400,width:368};addPropertyControls(FrameryK5nsU97t,{hrdXEX8KF:{__defaultAssetReference:\"data:framer/asset-reference,Z9hx8sa3dZ3XygqaapoGuy04eQY.jpg?originalFilename=docker+problem+vps+monitor.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},UUGP5C_MJ:{defaultValue:\"Maciej G\\xf3ral\",displayTextArea:false,title:\"Name\",type:ControlType.String},b1BbnoN9z:{defaultValue:\"Za\u0142o\u017Cyciel ITX\",displayTextArea:false,title:\"Role Title\",type:ControlType.String},Q0vfbbqMT:{title:\"Social Link\",type:ControlType.Link},OHrqErVNR:{title:\"[IGNORE] Cursor\",type:ControlType.CustomCursor}});addFonts(FrameryK5nsU97t,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryK5nsU97t\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"368\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mKBcp0bn8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"hrdXEX8KF\\\":\\\"image\\\",\\\"UUGP5C_MJ\\\":\\\"name1\\\",\\\"b1BbnoN9z\\\":\\\"roleTitle\\\",\\\"Q0vfbbqMT\\\":\\\"socialLink\\\",\\\"OHrqErVNR\\\":\\\"iGNORECursor\\\"}\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yK5nsU97t.map", "// Generated by Framer (400c93f)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={yG0GUZUxH:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/IH6s9ASs8tTeXMp8PWOj/Cookies.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import Button from\"#framer/local/canvasComponent/BlLduBBWJ/BlLduBBWJ.js\";import TileProject from\"#framer/local/canvasComponent/G3ahsW2qE/G3ahsW2qE.js\";import Cursor from\"#framer/local/canvasComponent/ICoVow458/ICoVow458.js\";import Header from\"#framer/local/canvasComponent/IIrdkDili/IIrdkDili.js\";import Testimonial from\"#framer/local/canvasComponent/mkqLv8f4I/mkqLv8f4I.js\";import TileService from\"#framer/local/canvasComponent/NXIzh2yUk/NXIzh2yUk.js\";import FAQs from\"#framer/local/canvasComponent/rPqBwpqvL/rPqBwpqvL.js\";import Footer3 from\"#framer/local/canvasComponent/UROKT2DsI/UROKT2DsI.js\";import TileProcess from\"#framer/local/canvasComponent/uRWsmD9qg/uRWsmD9qg.js\";import TileTeamMember from\"#framer/local/canvasComponent/yK5nsU97t/yK5nsU97t.js\";import*as sharedStyle2 from\"#framer/local/css/jCwDSJJGK/jCwDSJJGK.js\";import*as sharedStyle from\"#framer/local/css/NUV2c0Jvb/NUV2c0Jvb.js\";import*as sharedStyle1 from\"#framer/local/css/PQmJW0QE2/PQmJW0QE2.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const TileProcessFonts=getFonts(TileProcess);const TileProjectFonts=getFonts(TileProject);const TestimonialFonts=getFonts(Testimonial);const TileServiceFonts=getFonts(TileService);const TileTeamMemberFonts=getFonts(TileTeamMember);const CarouselFonts=getFonts(Carousel);const FAQsFonts=getFonts(FAQs);const Footer3Fonts=getFonts(Footer3);const CookieBannerFonts=getFonts(CookieBanner);const CursorFonts=getFonts(Cursor);const breakpoints={HxrEupOZd:\"(min-width: 810px) and (max-width: 1199px)\",qmKZde4mC:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wqbWr\";const variantClassNames={HxrEupOZd:\"framer-v-1u1rb7\",qmKZde4mC:\"framer-v-1t042d7\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:80,delay:.4,mass:2,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={damping:80,delay:1.2,mass:2,stiffness:200,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:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:80};const transition3={damping:80,delay:.2,mass:2,stiffness:150,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:32};const transition4={damping:80,delay:.2,mass:2,stiffness:200,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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:\"qmKZde4mC\",Tablet:\"HxrEupOZd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition5={damping:60,delay:0,mass:.1,stiffness:360,type:\"spring\"};const cursor={alignment:\"center\",component:Cursor,offset:{x:0,y:-16},placement:\"bottom\",transition:transition5,variant:\"A0cAR45q6\"};const cursor1={alignment:\"center\",component:Cursor,offset:{x:0,y:-16},placement:\"bottom\",transition:transition5,variant:\"A1NHRGbzy\"};const cursor2={alignment:\"center\",component:Cursor,offset:{x:0,y:-16},placement:\"bottom\",transition:transition5,variant:\"lkSy4rhWs\"};const cursor3={alignment:\"center\",component:Cursor,offset:{x:0,y:-16},placement:\"bottom\",transition:transition5,variant:\"HnDhajQ9N\"};const cursor4={alignment:\"center\",component:Cursor,offset:{x:0,y:-16},placement:\"bottom\",transition:transition5,variant:\"z4dq9zcKd\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"ivJJv6UFQ\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId1=useRouteElementId(\"fQ1yMqfAq\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"KG9LWa78V\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"HK9MXYWDt\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"XUdEbIMR_\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"OY_6IKL3S\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"qr1rYPGWT\");const ref7=React.useRef(null);useCustomCursors({\"11efbhy\":cursor,\"1e5ulr2\":{...cursor,variant:\"A1NHRGbzy\"},\"1us2up8\":cursor2,beu9i3:cursor4,zb60f0:cursor3});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"11efbhy\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o2q167\",\"data-framer-name\":\"Page\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cuhjny\",\"data-framer-name\":\"Blur\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xbpta2-container\",nodeId:\"Cv3QLfs29\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{variant:\"rWQ5z6cvU\"},qmKZde4mC:{variant:\"BFI8ZD9Pa\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"Cv3QLfs29\",layoutId:\"Cv3QLfs29\",style:{width:\"100%\"},variant:\"k7H2nOSUu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kct9qv\",\"data-framer-name\":\"Section/Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ppi1y\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1gyo64x\",\"data-framer-appear-id\":\"1gyo64x\",\"data-framer-name\":\"Text Container\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qmKZde4mC:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1mzqjwm\",\"data-styles-preset\":\"NUV2c0Jvb\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Kampanie Digital Marketing\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1mzqjwm\",\"data-styles-preset\":\"NUV2c0Jvb\",style:{\"--framer-text-alignment\":\"left\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Kampanie Digital Marketing\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-s5q4h6\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qmKZde4mC:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Optymalizuj\u0119, automatyzuj\u0119, rozkr\u0119cam wzrost\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Optymalizuj\u0119, automatyzuj\u0119, rozkr\u0119cam wzrost\"})}),className:\"framer-1tqggsg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qmKZde4mC:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\"},children:[\"Kompleksowe us\u0142ugi e-marketingowe, w tym growth hacking, \",/*#__PURE__*/_jsx(\"strong\",{children:\"reklamy w Google Ads\"}),\" i mediach spo\u0142eczno\u015Bciowych,  \",/*#__PURE__*/_jsx(\"strong\",{children:\"pozycjonowanie stron\"}),\" oraz SEO sklep\\xf3w internetowych, \",/*#__PURE__*/_jsx(\"strong\",{children:\"tworzenie stron WWW\"}),\". Pomagam w \",/*#__PURE__*/_jsx(\"strong\",{children:\"optymalizacji i zwi\u0119kszaniu konwersji\"}),\", pozyskiwaniu nowych klient\\xf3w i \",/*#__PURE__*/_jsx(\"strong\",{children:\"lead\\xf3w\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"wdro\u017Ceniach GA4\"}),\" itp. Zadbam o rozw\\xf3j, automatyzacj\u0119 i sukces Twojego biznesu w Sieci\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6510fa55-c69a-42d8-a1e8-6b55182b3dfa, rgb(240, 240, 240))\"},children:[\"Kompleksowe us\u0142ugi e-marketingowe, w tym growth hacking, \",/*#__PURE__*/_jsx(\"strong\",{children:\"reklamy w Google Ads\"}),\" i mediach spo\u0142eczno\u015Bciowych,  \",/*#__PURE__*/_jsx(\"strong\",{children:\"pozycjonowanie stron\"}),\" oraz SEO sklep\\xf3w internetowych, \",/*#__PURE__*/_jsx(\"strong\",{children:\"tworzenie stron WWW\"}),\". Pomagam w \",/*#__PURE__*/_jsx(\"strong\",{children:\"optymalizacji i zwi\u0119kszaniu konwersji\"}),\", pozyskiwaniu nowych klient\\xf3w i \",/*#__PURE__*/_jsx(\"strong\",{children:\"lead\\xf3w\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"wdro\u017Ceniach GA4\"}),\" itp. Zadbam o rozw\\xf3j, automatyzacj\u0119 i sukces Twojego biznesu w Sieci\"]})}),className:\"framer-16es1mp\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-8vbgdk\",\"data-framer-appear-id\":\"8vbgdk\",\"data-framer-name\":\"Row/Buttons\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":XUdEbIMR_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{y:(componentViewport?.y||0)+0+0+0+89+80+0+0+356+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+89+60+0+0+356+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,width:\"167px\",y:(componentViewport?.y||0)+0+0+0+89+100+0+0+356+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13j18f2-container\",nodeId:\"xTpYCOnjx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{s_hd6Xdvn:resolvedLinks[1]},qmKZde4mC:{s_hd6Xdvn:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{aNGFS7dLi:\"1e5ulr2\",height:\"100%\",I5NOBVtlq:false,id:\"xTpYCOnjx\",layoutId:\"xTpYCOnjx\",PTg7sqraW:getLocalizedValue(\"v6\",activeLocale)??\"Chc\u0119 pozna\u0107 ofert\u0119\",s_hd6Xdvn:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},variant:\"QXuBFotnW\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":KG9LWa78V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{y:(componentViewport?.y||0)+0+0+0+89+80+0+0+356+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+89+60+0+0+356+0+65}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+89+100+0+0+356+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pf2nbs-container\",nodeId:\"Tbd_VUdjo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{s_hd6Xdvn:resolvedLinks1[1]},qmKZde4mC:{s_hd6Xdvn:resolvedLinks1[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",I5NOBVtlq:false,id:\"Tbd_VUdjo\",layoutId:\"Tbd_VUdjo\",PTg7sqraW:getLocalizedValue(\"v7\",activeLocale)??\"Wi\u0119cej informacji\",s_hd6Xdvn:resolvedLinks1[0],variant:\"rgKPCDtEt\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1rr241x-container\",\"data-framer-appear-id\":\"1rr241x\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eFClbMwSR\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:70,height:\"100%\",hoverFactor:1,id:\"eFClbMwSR\",layoutId:\"eFClbMwSR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x93q6c\",\"data-framer-name\":\"Company Logo 1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jslqlw\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 113 113\"><path d=\"M 39.848 59.656 L 39.838 59.624 L 45.414 54.518 L 45.414 52.06 L 36.469 52.06 L 36.469 54.518 L 41.815 54.518 L 41.826 54.539 L 36.301 59.656 L 36.301 62.114 L 45.519 62.114 L 45.519 59.656 Z M 51.012 51.819 C 49.976 51.819 49.139 51.976 48.491 52.29 C 47.884 52.562 47.371 53.012 47.026 53.577 C 46.691 54.142 46.482 54.78 46.408 55.439 L 49.129 55.816 C 49.223 55.24 49.422 54.822 49.715 54.581 C 50.05 54.33 50.468 54.204 50.887 54.215 C 51.441 54.215 51.839 54.361 52.09 54.654 C 52.341 54.947 52.467 55.355 52.467 55.899 L 52.467 56.171 L 49.851 56.171 C 48.522 56.171 47.57 56.464 46.984 57.061 C 46.398 57.647 46.116 58.431 46.116 59.394 C 46.116 60.388 46.408 61.12 46.984 61.602 C 47.559 62.083 48.292 62.324 49.171 62.324 C 50.259 62.324 51.096 61.947 51.682 61.194 C 52.027 60.733 52.278 60.21 52.404 59.645 L 52.498 59.645 L 52.875 62.104 L 55.333 62.104 L 55.333 55.879 C 55.333 54.592 54.999 53.587 54.318 52.886 C 53.638 52.185 52.529 51.819 51.012 51.819 Z M 51.87 59.509 C 51.483 59.834 50.97 60.001 50.332 60.001 C 49.809 60.001 49.443 59.907 49.233 59.729 C 49.129 59.645 49.056 59.53 49.003 59.415 C 48.951 59.289 48.92 59.164 48.93 59.028 C 48.92 58.902 48.941 58.777 48.993 58.662 C 49.045 58.547 49.108 58.442 49.192 58.348 C 49.286 58.264 49.39 58.191 49.516 58.149 C 49.642 58.107 49.767 58.086 49.893 58.097 L 52.467 58.097 L 52.467 58.264 C 52.467 58.505 52.425 58.745 52.32 58.955 C 52.205 59.164 52.058 59.363 51.87 59.509 Z M 70.222 52.06 L 67.313 52.06 L 67.313 62.125 L 70.222 62.125 Z M 87.392 52.06 C 86.565 52.06 85.927 52.352 85.446 52.928 C 85.111 53.346 84.849 53.964 84.672 54.78 L 84.588 54.78 L 84.211 52.06 L 81.731 52.06 L 81.731 62.125 L 84.64 62.125 L 84.64 56.967 C 84.64 56.318 84.797 55.816 85.101 55.47 C 85.404 55.125 85.969 54.947 86.785 54.947 L 87.894 54.947 L 87.894 52.06 Z M 78.844 52.384 C 78.164 51.976 77.306 51.777 76.27 51.777 C 74.638 51.777 73.372 52.237 72.451 53.169 C 71.53 54.1 71.07 55.376 71.07 56.998 C 71.049 57.982 71.258 58.955 71.697 59.844 C 72.095 60.629 72.712 61.288 73.476 61.727 C 74.25 62.177 75.161 62.397 76.228 62.397 C 77.149 62.397 77.912 62.25 78.53 61.968 C 79.105 61.717 79.618 61.319 79.995 60.807 C 80.361 60.315 80.633 59.75 80.79 59.164 L 78.279 58.463 C 78.174 58.85 77.965 59.195 77.693 59.488 C 77.41 59.771 76.939 59.917 76.27 59.917 C 75.475 59.917 74.889 59.687 74.502 59.237 C 74.219 58.913 74.041 58.442 73.968 57.835 L 80.832 57.835 C 80.863 57.553 80.873 57.312 80.873 57.124 L 80.873 56.496 C 80.894 55.659 80.717 54.822 80.361 54.058 C 80.036 53.357 79.503 52.771 78.844 52.384 Z M 76.186 54.184 C 77.368 54.184 78.038 54.759 78.195 55.92 L 74.02 55.92 C 74.083 55.533 74.25 55.167 74.491 54.853 C 74.868 54.403 75.433 54.184 76.186 54.184 Z M 68.799 48 C 68.579 47.989 68.36 48.031 68.161 48.105 C 67.952 48.188 67.774 48.303 67.617 48.45 C 67.46 48.607 67.345 48.785 67.261 48.994 C 67.177 49.193 67.146 49.412 67.157 49.632 C 67.146 49.852 67.188 50.072 67.272 50.27 C 67.355 50.48 67.47 50.657 67.627 50.814 C 67.784 50.971 67.973 51.086 68.171 51.17 C 68.37 51.254 68.59 51.285 68.81 51.275 C 69.029 51.285 69.249 51.243 69.448 51.17 C 69.647 51.086 69.835 50.971 69.992 50.814 C 70.149 50.657 70.264 50.469 70.337 50.27 C 70.411 50.061 70.452 49.852 70.442 49.632 C 70.452 49.412 70.421 49.193 70.337 48.994 C 70.254 48.795 70.138 48.607 69.982 48.45 C 69.825 48.293 69.647 48.178 69.437 48.094 C 69.239 48.031 69.019 47.989 68.799 48 Z M 62.793 51.777 C 61.799 51.777 61.004 52.091 60.408 52.708 C 59.958 53.169 59.634 53.859 59.424 54.769 L 59.33 54.769 L 58.954 52.049 L 56.474 52.049 L 56.474 65.002 L 59.383 65.002 L 59.383 59.666 L 59.487 59.666 C 59.571 60.022 59.696 60.367 59.853 60.702 C 60.104 61.236 60.502 61.696 61.015 61.999 C 61.538 62.282 62.134 62.428 62.731 62.418 C 63.944 62.418 64.876 61.947 65.514 60.995 C 66.152 60.043 66.466 58.724 66.466 57.029 C 66.466 55.387 66.163 54.1 65.545 53.179 C 64.928 52.248 64.007 51.777 62.793 51.777 Z M 63.086 59.07 C 62.752 59.561 62.218 59.802 61.496 59.802 C 61.203 59.813 60.9 59.76 60.628 59.635 C 60.356 59.509 60.115 59.321 59.937 59.091 C 59.56 58.62 59.372 57.971 59.372 57.145 L 59.372 56.956 C 59.372 56.119 59.56 55.481 59.937 55.041 C 60.314 54.602 60.837 54.382 61.496 54.382 C 62.228 54.382 62.762 54.612 63.097 55.083 C 63.432 55.554 63.599 56.203 63.599 57.04 C 63.599 57.908 63.432 58.588 63.086 59.07 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 35.171 59.656 L 25.106 59.656 L 25.106 62.125 L 35.171 62.125 Z\" fill=\"rgb(255,79,0)\"></path></svg>',svgContentId:8591601475,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zsu4ns\",\"data-framer-name\":\"Company Logo 2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zdxl3r\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 759 759\"><path d=\"M 349.969 372.081 L 349.969 378.038 L 344.497 378.038 L 344.497 372.081 L 341.901 372.081 L 341.901 386.299 L 344.498 386.299 L 344.498 380.537 L 349.969 380.537 L 349.969 386.299 L 352.566 386.299 L 352.566 372.081 Z M 360.878 381.704 C 360.892 382.481 360.485 383.205 359.815 383.597 C 359.144 383.99 358.314 383.99 357.643 383.597 C 356.973 383.205 356.566 382.481 356.58 381.704 L 356.58 375.614 L 354.117 375.614 L 354.117 381.704 C 354.117 384.249 356.18 386.311 358.724 386.311 C 361.269 386.311 363.332 384.249 363.332 381.704 L 363.332 375.614 L 360.878 375.614 Z M 379.13 376.241 C 379.13 374.992 379.955 374.597 380.86 374.597 C 381.589 374.597 382.552 375.152 383.183 375.825 L 384.795 373.923 C 383.99 372.834 382.357 372.081 381.019 372.081 C 378.347 372.081 376.414 373.647 376.414 376.241 C 376.414 381.055 382.298 379.527 382.298 382.222 C 382.298 383.053 381.491 383.786 380.568 383.786 C 379.111 383.786 378.638 383.074 377.969 382.321 L 376.179 384.183 C 377.324 385.588 378.737 386.302 380.428 386.302 C 382.967 386.302 385.01 384.718 385.01 382.242 C 385.01 376.898 379.125 378.558 379.125 376.241 M 415.529 384.028 C 414.074 384.028 413.66 383.398 413.66 382.434 L 413.66 378.165 L 415.923 378.165 L 415.923 376.002 L 413.66 376.002 L 413.66 373.148 L 411.162 374.269 L 411.162 382.965 C 411.162 385.189 412.697 386.31 414.801 386.31 C 415.132 386.316 415.462 386.289 415.787 386.231 L 416.396 383.988 C 416.121 384.007 415.805 384.026 415.529 384.026 M 370.254 375.685 C 369.034 375.685 368.182 376.039 367.359 376.846 L 367.359 372.167 L 364.892 372.167 L 364.892 380.841 C 364.892 384.088 367.239 386.313 369.878 386.313 C 372.804 386.313 375.378 384.048 375.378 381 C 375.378 377.989 373.009 375.687 370.254 375.687 M 370.239 383.83 C 368.693 383.83 367.439 382.576 367.439 381.03 C 367.439 379.484 368.693 378.231 370.239 378.231 C 371.785 378.231 373.038 379.484 373.038 381.03 C 373.038 382.576 371.785 383.83 370.239 383.83 M 397.044 380.87 C 397.044 377.816 394.475 375.557 391.543 375.557 C 388.906 375.557 386.558 377.782 386.558 381.029 L 386.558 389.709 L 389.025 389.709 L 389.025 385.022 C 389.847 385.829 390.7 386.184 391.919 386.184 C 394.674 386.184 397.043 383.882 397.043 380.87 M 394.708 380.839 C 394.724 381.85 394.194 382.791 393.321 383.301 C 392.449 383.811 391.369 383.811 390.496 383.301 C 389.623 382.791 389.093 381.85 389.109 380.839 C 389.133 379.311 390.38 378.084 391.909 378.084 C 393.438 378.084 394.684 379.311 394.708 380.839\" fill=\"rgb(255,255,255)\"></path><path d=\"M 405.366 375.789 L 405.366 373.311 C 406.035 372.998 406.464 372.328 406.467 371.59 L 406.467 371.533 C 406.467 370.479 405.612 369.625 404.558 369.625 L 404.501 369.625 C 403.447 369.625 402.593 370.479 402.593 371.533 L 402.593 371.59 C 402.596 372.328 403.025 372.998 403.693 373.311 L 403.693 375.789 C 402.752 375.934 401.865 376.324 401.123 376.921 L 394.325 371.626 C 394.374 371.451 394.399 371.271 394.402 371.091 C 394.403 370.221 393.881 369.435 393.078 369.101 C 392.275 368.767 391.349 368.949 390.733 369.563 C 390.117 370.177 389.931 371.102 390.263 371.906 C 390.595 372.711 391.378 373.236 392.248 373.237 C 392.621 373.235 392.986 373.136 393.307 372.949 L 400.001 378.158 C 398.771 380.017 398.804 382.44 400.084 384.265 L 398.048 386.302 C 397.884 386.249 397.712 386.221 397.54 386.219 C 396.565 386.219 395.775 387.01 395.775 387.985 C 395.775 388.96 396.566 389.75 397.541 389.751 C 398.516 389.751 399.306 388.961 399.307 387.986 C 399.305 387.813 399.277 387.642 399.224 387.477 L 401.238 385.462 C 403.038 386.848 405.51 386.967 407.434 385.762 C 409.359 384.556 410.331 382.28 409.869 380.056 C 409.408 377.832 407.612 376.13 405.366 375.789 M 404.532 383.942 C 403.518 383.969 402.57 383.445 402.055 382.571 C 401.54 381.698 401.54 380.614 402.055 379.741 C 402.57 378.867 403.518 378.343 404.532 378.371 C 406.031 378.423 407.22 379.654 407.221 381.154 C 407.221 382.655 406.034 383.886 404.534 383.94\" fill=\"rgb(255,122,89)\"></path></svg>',svgContentId:10011360046,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p915xp\",\"data-framer-name\":\"Company Logo 3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qvv238\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 164 187\"><path d=\"M 16.807 106.323 C 16.807 105.06 15.888 104.199 14.856 104.199 C 13.824 104.199 12.905 105.061 12.905 106.323 C 12.905 107.587 13.822 108.447 14.856 108.447 C 15.89 108.447 16.807 107.587 16.807 106.323 M 18.297 106.323 C 18.297 108.334 16.748 109.826 14.856 109.826 C 12.962 109.826 11.415 108.332 11.415 106.323 C 11.415 104.314 12.964 102.821 14.856 102.821 C 16.75 102.877 18.297 104.313 18.297 106.323\" fill=\"rgb(255,255,255)\"></path><path d=\"M 24.32 106.323 C 24.32 105.06 23.403 104.199 22.371 104.199 C 21.339 104.199 20.42 105.061 20.42 106.323 C 20.42 107.587 21.337 108.447 22.371 108.447 C 23.403 108.447 24.32 107.587 24.32 106.323 M 25.812 106.323 C 25.812 108.334 24.263 109.826 22.371 109.826 C 20.477 109.826 18.929 108.332 18.929 106.323 C 18.929 104.314 20.478 102.821 22.371 102.821 C 24.261 102.877 25.812 104.313 25.812 106.323\" fill=\"rgb(255,255,255)\"></path><path d=\"M 31.718 106.379 C 31.718 105.174 30.916 104.255 29.884 104.255 C 28.852 104.255 27.99 105.174 27.99 106.379 C 27.99 107.586 28.85 108.503 29.884 108.503 C 30.916 108.447 31.718 107.586 31.718 106.379 Z M 33.038 103.05 L 33.038 109.309 C 33.038 111.891 31.546 112.925 29.769 112.925 C 28.105 112.925 27.073 111.776 26.728 110.857 L 28.048 110.284 C 28.278 110.857 28.85 111.548 29.769 111.548 C 30.916 111.548 31.603 110.859 31.603 109.48 L 31.603 108.963 L 31.546 108.963 C 31.202 109.365 30.571 109.769 29.71 109.769 C 27.99 109.769 26.384 108.275 26.384 106.323 C 26.384 104.37 27.99 102.82 29.71 102.82 C 30.512 102.82 31.202 103.165 31.546 103.624 L 31.603 103.624 L 31.603 103.05 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 34.069 109.655 L 35.56 109.655 L 35.56 99.376 L 34.069 99.376 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.741 106.266 L 40.837 104.946 C 40.665 104.487 40.148 104.2 39.576 104.2 C 38.716 104.2 37.682 104.889 37.741 106.266 M 41.353 107.473 L 42.557 108.277 C 42.157 108.85 41.297 109.827 39.69 109.827 C 37.739 109.827 36.307 108.335 36.307 106.381 C 36.307 104.314 37.741 102.878 39.518 102.878 C 41.297 102.878 42.212 104.314 42.499 105.061 L 42.671 105.463 L 38.084 107.415 C 38.428 108.103 38.999 108.448 39.746 108.448 C 40.436 108.448 40.952 108.047 41.353 107.473\" fill=\"rgb(255,255,255)\"></path><path d=\"M 5.911 109.826 C 2.987 109.826 0.462 107.414 0.462 104.429 C 0.462 101.445 2.928 99.031 5.911 99.031 C 7.517 99.031 8.722 99.663 9.581 100.525 L 8.549 101.558 C 7.918 100.985 7.058 100.525 5.911 100.525 C 3.79 100.525 2.07 102.305 2.07 104.486 C 2.07 106.668 3.732 108.449 5.911 108.449 C 7.287 108.449 8.09 107.875 8.607 107.357 C 9.007 106.955 9.296 106.323 9.409 105.461 L 5.911 105.461 L 5.911 103.969 L 10.843 103.969 C 10.901 104.256 10.901 104.543 10.901 104.888 C 10.901 105.98 10.614 107.357 9.639 108.334 C 8.72 109.309 7.517 109.826 5.911 109.826\" fill=\"rgb(255,255,255)\"></path><path d=\"M 54.485 99.777 C 53.397 101.729 52.25 103.682 51.103 105.634 C 50.012 103.682 48.865 101.729 47.776 99.777 C 47.375 99.777 46.916 99.719 46.514 99.777 C 46.458 102.993 46.514 106.209 46.514 109.425 L 47.776 109.425 C 47.776 107.013 47.776 104.544 47.72 102.133 C 48.693 103.912 49.727 105.635 50.701 107.358 L 51.561 107.358 C 52.536 105.635 53.568 103.855 54.542 102.133 C 54.484 104.545 54.542 107.013 54.484 109.482 L 55.746 109.482 L 55.746 99.836 C 55.346 99.777 54.944 99.777 54.485 99.777\" fill=\"rgb(255,255,255)\"></path><path d=\"M 74.902 102.822 L 73.296 102.822 C 72.323 103.74 71.405 104.717 70.43 105.692 L 70.43 99.777 L 69.11 99.777 L 69.11 109.425 L 70.43 109.425 C 70.43 108.737 70.372 108.048 70.43 107.415 C 70.66 107.011 71.06 106.724 71.405 106.381 C 72.094 107.415 72.781 108.448 73.47 109.425 L 75.018 109.425 C 74.101 108.105 73.183 106.783 72.324 105.462 C 73.181 104.544 74.1 103.739 74.902 102.822\" fill=\"rgb(255,255,255)\"></path><path d=\"M 87.573 99.778 C 86.941 100.123 87 101.156 87.688 101.386 C 88.032 101.445 88.434 101.445 88.662 101.215 C 88.949 100.928 88.949 100.411 88.777 100.066 C 88.549 99.663 87.918 99.549 87.573 99.778\" fill=\"rgb(255,255,255)\"></path><path d=\"M 112.065 104.314 C 111.32 104.372 110.516 104.314 109.771 104.372 L 109.771 101.041 C 110.516 101.041 111.32 100.984 112.065 101.041 C 112.811 101.099 113.384 101.788 113.499 102.476 C 113.613 103.28 112.926 104.199 112.065 104.314 M 111.778 99.777 L 108.452 99.777 L 108.452 109.424 L 109.716 109.424 L 109.716 105.519 L 112.009 105.519 C 112.927 105.462 113.787 104.946 114.303 104.199 C 114.935 103.223 114.876 101.901 114.188 100.984 C 113.671 100.179 112.752 99.777 111.778 99.777\" fill=\"rgb(255,255,255)\"></path><path d=\"M 115.848 99.776 C 115.79 102.992 115.848 106.208 115.848 109.424 L 117.11 109.424 L 117.11 99.776 C 116.65 99.776 116.25 99.718 115.848 99.776\" fill=\"rgb(255,255,255)\"></path><path d=\"M 131.62 102.764 C 131.62 102.304 131.562 101.558 131.849 101.213 C 132.252 100.753 132.767 100.868 133.341 100.927 C 133.456 100.581 133.627 100.236 133.741 99.893 C 133.167 99.778 132.652 99.663 132.079 99.835 C 131.275 100.006 130.586 100.581 130.416 101.385 C 130.358 101.845 130.358 102.36 130.358 102.877 L 127.319 102.877 L 127.319 100.867 L 126.058 100.867 L 126.058 102.877 L 124.911 102.877 L 124.911 104.026 C 125.314 104.026 125.715 104.084 126.058 104.084 L 126.058 107.702 C 126.058 108.334 126.345 108.966 126.918 109.309 C 127.664 109.711 128.411 109.654 129.213 109.424 C 129.041 109.081 128.926 108.679 128.752 108.334 C 128.409 108.392 128.122 108.505 127.779 108.334 C 127.435 108.162 127.319 107.874 127.319 107.53 L 127.319 104.027 C 128.294 103.969 129.326 103.969 130.358 104.027 C 130.416 105.806 130.358 107.645 130.416 109.424 L 131.678 109.424 L 131.678 105.003 C 131.678 104.659 131.678 104.314 131.735 103.969 L 133.456 103.969 C 133.456 103.567 133.397 103.224 133.397 102.822 C 132.767 102.822 132.194 102.822 131.62 102.764\" fill=\"rgb(255,255,255)\"></path><path d=\"M 84.823 108.277 C 84.651 107.932 84.48 107.588 84.536 107.243 L 84.536 103.971 L 86.085 103.971 L 86.085 102.822 L 84.536 102.822 L 84.536 100.812 L 83.274 100.812 L 83.274 102.822 L 82.127 102.822 L 82.127 103.971 C 82.529 103.971 82.929 104.029 83.274 104.029 L 83.274 107.532 C 83.274 108.22 83.446 108.795 84.076 109.197 C 84.822 109.657 85.625 109.601 86.429 109.427 C 86.314 109.082 86.142 108.739 86.027 108.337 C 85.568 108.334 85.225 108.334 84.823 108.277\" fill=\"rgb(255,255,255)\"></path><path d=\"M 61.081 107.875 C 60.449 108.507 59.247 108.679 58.615 108.105 C 58.328 107.875 58.328 107.416 58.445 107.071 C 58.615 106.611 59.019 106.325 59.476 106.21 C 60.279 106.038 61.024 106.153 61.77 106.555 C 61.655 107.07 61.481 107.53 61.081 107.875 M 62.055 103.339 C 61.596 102.935 60.965 102.649 60.278 102.649 C 59.589 102.592 58.959 102.649 58.385 102.994 C 57.868 103.28 57.525 103.741 57.181 104.201 C 57.583 104.372 57.927 104.544 58.328 104.717 C 58.5 104.487 58.73 104.201 59.017 104.029 C 59.762 103.569 60.853 103.742 61.368 104.487 C 61.598 104.832 61.598 105.119 61.655 105.521 C 60.794 105.177 59.876 105.119 58.959 105.234 C 58.27 105.349 57.583 105.751 57.238 106.325 C 56.723 107.186 56.895 108.45 57.697 109.08 C 58.385 109.654 59.302 109.712 60.163 109.54 C 60.794 109.425 61.195 109.024 61.655 108.565 L 61.655 109.427 L 62.858 109.427 L 62.858 105.408 C 62.915 104.602 62.628 103.856 62.055 103.339\" fill=\"rgb(255,255,255)\"></path><path d=\"M 76.393 105.29 C 76.565 104.888 76.737 104.543 77.025 104.256 C 77.771 103.511 79.203 103.624 79.835 104.428 C 80.006 104.658 80.121 105.001 80.178 105.29 Z M 81.555 106.323 C 81.555 105.461 81.497 104.658 81.038 103.969 C 80.465 103.051 79.433 102.534 78.343 102.592 C 76.794 102.477 75.591 103.682 75.19 105.061 C 74.96 105.98 75.018 107.07 75.533 107.932 C 75.992 108.851 76.909 109.482 77.942 109.539 C 78.744 109.597 79.491 109.597 80.178 109.137 C 80.752 108.794 81.097 108.334 81.382 107.76 C 81.038 107.588 80.637 107.473 80.292 107.358 C 80.005 107.76 79.833 108.105 79.316 108.277 C 78.571 108.564 77.597 108.449 77.024 107.818 C 76.564 107.415 76.45 106.9 76.392 106.325 L 81.555 106.325 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 95.203 103.049 C 94.571 102.532 93.827 102.532 93.024 102.647 C 92.335 102.762 91.933 103.22 91.475 103.68 C 91.475 103.394 91.533 103.107 91.533 102.819 L 90.272 102.819 L 90.272 109.421 L 91.533 109.421 L 91.533 105.688 C 91.533 104.943 91.992 104.137 92.68 103.851 C 93.254 103.679 93.997 103.736 94.399 104.196 C 94.801 104.656 94.801 105.229 94.801 105.804 L 94.801 109.421 L 96.061 109.421 L 96.061 105.401 C 96.176 104.486 95.95 103.624 95.203 103.049\" fill=\"rgb(255,255,255)\"></path><path d=\"M 101.796 107.93 C 101.164 108.562 100.018 108.619 99.33 108.102 C 97.954 107.183 98.069 104.656 99.617 103.909 C 100.649 103.392 101.911 103.909 102.313 104.943 C 102.656 105.921 102.599 107.24 101.796 107.93 M 103.69 102.762 L 102.486 102.762 L 102.486 103.68 C 102.084 103.277 101.739 102.875 101.165 102.704 C 100.19 102.417 99.045 102.532 98.299 103.277 C 97.094 104.254 96.866 105.861 97.267 107.297 C 97.611 108.33 98.414 109.192 99.446 109.479 C 100.135 109.594 100.995 109.594 101.569 109.249 C 101.912 109.077 102.199 108.789 102.486 108.502 C 102.486 109.134 102.543 109.766 102.199 110.339 C 101.682 111.314 100.248 111.66 99.275 111.086 C 98.874 110.856 98.701 110.512 98.416 110.111 C 98.014 110.282 97.669 110.397 97.269 110.569 C 97.612 111.374 98.244 112.063 99.046 112.35 C 100.308 112.751 101.857 112.465 102.831 111.488 C 103.519 110.799 103.633 109.879 103.633 108.904 C 103.69 106.896 103.746 104.829 103.69 102.762\" fill=\"rgb(255,255,255)\"></path><path d=\"M 122.155 107.99 C 121.523 108.563 120.262 108.678 119.689 107.931 C 119.288 107.358 119.689 106.611 120.262 106.381 C 121.122 106.036 122.096 106.151 122.9 106.553 C 122.845 107.128 122.615 107.644 122.155 107.99 M 123.818 104.083 C 123.475 103.337 122.615 102.763 121.811 102.648 C 121.009 102.591 120.262 102.533 119.575 102.993 C 119.058 103.28 118.773 103.74 118.428 104.198 C 118.828 104.37 119.173 104.544 119.575 104.659 C 119.862 104.315 120.034 104.027 120.434 103.855 C 121.122 103.625 121.926 103.683 122.441 104.257 C 122.786 104.6 122.786 104.945 122.843 105.405 C 121.983 105.06 121.066 105.004 120.147 105.119 C 119.459 105.29 118.657 105.692 118.37 106.382 C 118.14 106.784 118.198 107.244 118.198 107.703 C 118.256 108.335 118.715 108.908 119.288 109.195 C 119.862 109.54 120.722 109.54 121.409 109.425 C 122.041 109.31 122.441 108.908 122.901 108.45 L 122.901 109.311 L 124.163 109.311 L 124.163 105.751 C 124.105 105.232 124.048 104.6 123.818 104.083\" fill=\"rgb(255,255,255)\"></path><path d=\"M 137.354 108.447 C 136.15 108.618 135.116 107.7 134.945 106.494 C 134.773 105.346 135.403 104.14 136.55 103.795 C 137.754 103.509 138.901 104.369 139.13 105.518 C 139.418 106.781 138.729 108.275 137.354 108.447 M 139.246 103.337 C 138.386 102.59 137.239 102.475 136.15 102.705 C 135.232 102.935 134.43 103.624 134.028 104.485 C 133.684 105.174 133.626 105.919 133.684 106.666 C 133.799 107.93 134.775 109.135 135.978 109.48 C 136.495 109.595 137.069 109.595 137.584 109.537 C 138.789 109.48 139.821 108.562 140.223 107.413 C 140.737 106.036 140.45 104.312 139.246 103.337\" fill=\"rgb(255,255,255)\"></path><path d=\"M 143.777 102.82 C 143.262 102.992 142.917 103.393 142.63 103.853 L 142.63 102.82 L 141.483 102.82 C 141.426 105.002 141.483 107.241 141.483 109.423 L 142.743 109.423 L 142.743 105.691 C 142.743 105.002 143.145 104.37 143.776 104.082 C 144.176 103.852 144.694 103.967 145.151 103.967 C 145.323 103.565 145.438 103.163 145.611 102.818 C 144.924 102.646 144.351 102.531 143.777 102.82\" fill=\"rgb(255,255,255)\"></path><path d=\"M 155.993 103.624 C 155.707 103.107 155.133 102.705 154.559 102.649 C 153.986 102.59 153.356 102.59 152.839 102.82 C 152.379 103.05 152.094 103.394 151.748 103.739 C 151.348 103.107 150.83 102.649 150.086 102.59 C 149.054 102.475 148.192 102.877 147.62 103.739 L 147.62 102.764 L 146.473 102.764 C 146.416 103.51 146.416 104.199 146.416 104.946 L 146.416 109.367 L 147.734 109.367 L 147.734 105.749 C 147.734 104.946 148.136 104.084 148.881 103.797 C 149.454 103.625 150.256 103.739 150.6 104.257 C 150.83 104.716 150.83 105.348 150.887 105.864 L 150.887 109.31 L 152.092 109.31 L 152.092 105.864 C 152.092 105.118 152.377 104.372 152.951 103.912 C 153.696 103.395 154.901 103.682 155.072 104.601 C 155.358 106.151 155.13 107.758 155.187 109.309 L 156.447 109.309 L 156.447 105.576 C 156.393 105.001 156.337 104.197 155.993 103.624\" fill=\"rgb(255,255,255)\"></path><path d=\"M 66.586 102.763 C 66.07 102.935 65.726 103.28 65.439 103.739 C 65.383 103.395 65.383 103.107 65.324 102.763 L 64.177 102.763 C 64.119 104.946 64.177 107.185 64.177 109.367 L 65.438 109.367 L 65.438 105.634 C 65.438 104.946 65.838 104.314 66.47 104.025 C 66.87 103.795 67.387 103.91 67.845 103.91 C 68.017 103.509 68.19 103.163 68.304 102.762 C 67.675 102.648 67.16 102.535 66.586 102.763\" fill=\"rgb(255,255,255)\"></path><path d=\"M 87.037 102.764 C 86.979 104.947 87.037 107.186 87.037 109.368 L 88.241 109.368 L 88.241 102.764 C 87.839 102.823 87.439 102.764 87.037 102.764\" fill=\"rgb(255,255,255)\"></path><path d=\"M 85.329 77.016 C 85.878 77.904 85.769 79.056 84.991 79.834 C 84.078 80.748 82.652 80.748 81.739 79.834 C 81.729 79.825 81.717 79.819 81.707 79.809 L 81.682 79.834 C 83.451 81.605 83.451 84.519 81.682 86.29 C 81.628 86.345 81.587 86.405 81.54 86.463 C 81.557 86.447 81.575 86.436 81.594 86.421 C 82.01 85.957 82.608 85.661 83.28 85.661 C 84.54 85.661 85.561 86.684 85.561 87.946 C 85.561 88.578 85.306 89.148 84.893 89.562 L 84.902 89.572 C 84.912 89.562 84.925 89.555 84.934 89.547 C 88.388 86.087 88.514 80.63 85.329 77.016\" fill=\"rgb(232,67,54)\"></path><path d=\"M 84.99 76.578 C 84.442 76.047 83.843 75.606 83.213 75.234 C 82.445 74.78 81.616 74.439 80.75 74.222 C 79.942 74.019 79.113 73.921 78.288 73.939 C 78.102 73.942 77.917 73.951 77.733 73.965 C 77.545 73.98 77.361 74.005 77.177 74.031 C 76.991 74.058 76.806 74.082 76.622 74.12 C 76.436 74.158 76.252 74.208 76.067 74.257 C 75.88 74.307 75.696 74.366 75.511 74.429 C 75.325 74.492 75.138 74.555 74.957 74.629 C 74.768 74.706 74.585 74.799 74.4 74.889 C 74.213 74.983 74.029 75.086 73.846 75.193 C 73.759 75.243 73.671 75.294 73.586 75.349 C 73.499 75.404 73.411 75.459 73.326 75.517 C 73.236 75.579 73.151 75.647 73.064 75.711 C 72.978 75.776 72.889 75.837 72.804 75.905 C 72.714 75.976 72.629 76.048 72.543 76.122 C 72.453 76.2 72.368 76.282 72.281 76.362 C 72.195 76.442 72.105 76.516 72.021 76.601 C 72.01 76.614 71.996 76.623 71.987 76.636 C 71.906 76.715 71.837 76.803 71.761 76.883 C 71.671 76.978 71.583 77.074 71.501 77.172 C 71.411 77.277 71.323 77.383 71.24 77.49 C 71.148 77.607 71.063 77.725 70.98 77.845 C 70.89 77.972 70.802 78.1 70.72 78.229 C 70.628 78.372 70.542 78.521 70.458 78.669 C 70.365 78.836 70.279 79.007 70.198 79.178 C 70.137 79.307 70.072 79.436 70.017 79.565 C 69.951 79.723 69.894 79.885 69.836 80.046 C 69.773 80.224 69.708 80.402 69.656 80.583 C 69.585 80.826 69.525 81.07 69.475 81.316 C 69.237 82.502 69.237 83.725 69.475 84.911 C 69.525 85.162 69.585 85.411 69.656 85.657 C 69.708 85.836 69.774 86.013 69.836 86.189 C 69.894 86.35 69.951 86.509 70.017 86.667 C 70.074 86.799 70.137 86.928 70.198 87.059 C 70.28 87.229 70.365 87.398 70.458 87.565 C 70.542 87.714 70.627 87.864 70.72 88.009 C 70.802 88.137 70.89 88.263 70.98 88.389 C 71.063 88.509 71.15 88.628 71.24 88.746 C 71.323 88.854 71.411 88.958 71.501 89.062 C 71.585 89.159 71.673 89.257 71.761 89.353 C 71.827 89.426 71.889 89.503 71.958 89.574 L 71.969 89.563 C 71.892 89.485 71.826 89.397 71.761 89.311 C 71.66 89.175 71.571 89.03 71.501 88.874 C 71.375 88.59 71.301 88.279 71.301 87.948 C 71.301 87.617 71.375 87.305 71.501 87.021 C 71.571 86.864 71.66 86.72 71.761 86.585 C 71.84 86.479 71.925 86.378 72.021 86.288 C 72.103 86.211 72.19 86.137 72.281 86.073 C 72.363 86.016 72.453 85.97 72.543 85.924 C 72.626 85.88 72.713 85.841 72.804 85.808 C 72.888 85.776 72.974 85.748 73.064 85.726 C 73.149 85.707 73.238 85.699 73.326 85.688 C 73.411 85.679 73.494 85.663 73.581 85.663 C 73.583 85.663 73.584 85.665 73.586 85.665 C 73.676 85.665 73.761 85.682 73.846 85.691 C 74.04 85.715 74.226 85.757 74.4 85.825 C 74.602 85.904 74.788 86.01 74.957 86.139 C 75.048 86.21 75.139 86.281 75.22 86.364 L 75.236 86.35 C 75.13 86.243 75.05 86.12 74.957 86.006 C 74.736 85.737 74.55 85.452 74.4 85.149 C 73.772 83.871 73.772 82.362 74.4 81.064 C 74.553 80.752 74.739 80.459 74.957 80.189 C 75.05 80.073 75.128 79.948 75.236 79.838 C 75.322 79.751 75.421 79.69 75.511 79.612 C 75.689 79.461 75.871 79.316 76.067 79.195 C 76.247 79.085 76.431 78.987 76.622 78.903 C 76.803 78.825 76.989 78.768 77.177 78.713 C 77.363 78.659 77.544 78.61 77.733 78.58 C 77.916 78.55 78.102 78.533 78.288 78.525 C 79.134 78.494 79.986 78.697 80.75 79.126 C 81.089 79.316 81.415 79.534 81.707 79.811 L 83.213 78.303 L 84.932 76.581 C 85.074 76.723 85.198 76.871 85.329 77.019 C 85.233 76.861 85.126 76.713 84.99 76.578\" fill=\"rgb(81,123,189)\"></path><path d=\"M 81.706 79.809 C 81.717 79.819 81.728 79.825 81.737 79.835 C 82.651 80.748 84.077 80.748 84.991 79.835 C 85.769 79.056 85.878 77.904 85.329 77.016 C 85.199 76.869 85.074 76.72 84.934 76.579 Z\" fill=\"rgb(232,67,54)\"></path><path d=\"M 81.707 80.749 L 83.21 80.749 L 83.21 76.579 L 81.707 76.579 Z\" fill=\"rgb(80,122,189)\"></path><path d=\"M 83.212 80.749 L 85.676 80.749 L 85.676 76.579 L 83.212 76.579 Z\" fill=\"rgb(81,123,189)\"></path><path d=\"M 85.675 80.749 L 86.675 80.749 L 86.675 76.579 L 85.675 76.579 Z\" fill=\"rgb(81,123,189)\"></path><path d=\"M 83.277 90.233 C 82.017 90.233 80.996 89.21 80.996 87.948 C 80.996 87.943 80.997 87.938 80.997 87.934 C 80.994 87.412 81.18 86.895 81.538 86.464 C 79.786 88.08 77.045 88.066 75.26 86.416 C 75.629 86.821 75.861 87.355 75.861 87.948 C 75.861 89.21 74.838 90.233 73.579 90.233 C 72.963 90.233 72.407 89.985 71.996 89.588 L 71.981 89.602 C 71.97 89.593 71.962 89.583 71.953 89.572 L 71.923 89.602 C 75.517 93.144 81.338 93.144 84.932 89.602 L 84.902 89.572 C 84.445 90.014 83.87 90.234 83.293 90.231 C 83.287 90.231 83.282 90.233 83.277 90.233\" fill=\"rgb(251,188,8)\"></path><path d=\"M 83.291 90.563 C 83.868 90.567 84.444 90.237 84.901 89.577 L 84.892 89.563 C 84.482 90.176 83.917 90.556 83.291 90.563\" fill=\"rgb(251,188,8)\"></path><path d=\"M 81.997 86.42 C 81.967 86.436 81.938 86.447 81.906 86.463 C 81.304 86.895 80.991 87.413 80.997 87.933 C 81.005 87.348 81.387 86.822 81.997 86.42\" fill=\"rgb(251,188,8)\"></path><path d=\"M 72.192 89.708 C 72.137 89.654 72.074 89.608 72.019 89.563 L 71.955 89.627 C 72.01 89.681 72.056 89.736 72.11 89.799 Z\" fill=\"rgb(251,188,8)\"></path><path d=\"M 84.894 89.562 C 85.307 89.149 85.562 88.577 85.562 87.945 C 85.562 86.683 84.541 85.661 83.28 85.661 C 82.608 85.661 82.01 85.957 81.593 86.418 C 81.62 86.392 81.654 86.373 81.683 86.346 Z\" fill=\"rgb(232,67,54)\"></path><path d=\"M 80.996 87.934 C 80.996 87.939 80.994 87.944 80.994 87.949 C 80.994 89.211 82.017 90.233 83.276 90.233 C 83.281 90.233 83.285 90.232 83.29 90.232 C 82.71 90.228 82.13 90 81.678 89.546 C 81.226 89.094 80.999 88.514 80.996 87.934\" fill=\"rgb(232,67,54)\"></path><path d=\"M 81.681 89.547 C 82.133 89.999 82.713 90.228 83.293 90.231 C 83.917 90.228 84.483 89.974 84.892 89.563 L 81.681 86.347 C 81.654 86.375 81.62 86.394 81.591 86.421 C 81.227 86.823 81.002 87.351 80.999 87.934 C 81.002 88.513 81.229 89.093 81.681 89.547\" fill=\"rgb(232,67,54)\"></path><path d=\"M 75.208 86.424 C 75.308 86.524 75.417 86.579 75.517 86.67 C 75.426 86.57 75.353 86.46 75.262 86.36 Z\" fill=\"rgb(49,168,83)\"></path><path d=\"M 75.208 86.371 L 75.217 86.362 C 74.803 85.93 74.223 85.661 73.579 85.661 C 72.318 85.661 71.297 86.683 71.297 87.945 C 71.297 88.577 71.552 89.146 71.965 89.562 L 75.178 86.348 C 75.186 86.355 75.197 86.362 75.208 86.371\" fill=\"rgb(49,168,83)\"></path><path d=\"M 71.995 89.588 C 72.407 89.985 72.963 90.232 73.577 90.232 C 74.838 90.232 75.859 89.208 75.859 87.948 C 75.859 87.355 75.629 86.821 75.26 86.416 C 75.243 86.4 75.222 86.389 75.207 86.374 Z\" fill=\"rgb(49,168,83)\"></path><path d=\"M 75.176 86.347 L 71.965 89.561 C 71.974 89.57 71.985 89.578 71.995 89.588 L 75.208 86.37 C 75.197 86.362 75.187 86.358 75.176 86.347\" fill=\"rgb(49,168,83)\"></path></svg>',svgContentId:12154987414,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqkjqy\",\"data-framer-name\":\"Company Logo 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qwny7y\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:138,intrinsicWidth:242,svg:'<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 242 138\" style=\"enable-background:new 0 0 242 138\" xml:space=\"preserve\"><path d=\"M157.7 66.2c0-3.2-2-5.5-5.7-5.5h-12.2v16.6h4v-5.7h4.7l4.6 5.7h4.5v-.4l-4.5-5.4c2.9-.6 4.6-2.7 4.6-5.3zm-6.2 2h-7.7v-4.1h7.7c1.4 0 2.3.8 2.3 2.1.1 1.3-.8 2-2.3 2zm66.6-7.6h-3.7v6.3h-10.1v-6.3h-4v16.6h4v-6.5h10.1v6.5h3.7V60.6zm-89 0-4.4 13.9h-.2L120 60.6h-7.1v16.6h3.8V63.6h.2l4.4 13.6h6.1l4.5-13.6h.2v13.6h3.9V60.6h-6.9zm-43.5 6.8c-1.4-.1-4-.4-5.5-.5-1.4-.1-2.2-.6-2.2-1.5s.9-1.6 4.3-1.6c3 0 5.8.7 8.3 1.8v-3.7c-2.4-1.2-5.1-1.7-8.5-1.7-4.7 0-8 2-8 5.3 0 2.8 1.9 4.4 5.8 4.8 1.4.2 3.8.4 5.4.5 1.8.1 2.3.7 2.3 1.5 0 1.1-1.3 1.8-4.4 1.8-3.2 0-6.5-1.1-8.9-2.5v3.8c1.9 1.3 5.1 2.3 8.8 2.3 5.1 0 8.4-2 8.4-5.5 0-2.7-1.7-4.4-5.8-4.8zm8.5-6.8v16.6h15.4v-3.4H97.9v-3.4h11.4V67H97.9v-3h11.6v-3.4H94.1zm97.9 6.8c-1.4-.1-4-.4-5.5-.5-1.4-.1-2.2-.6-2.2-1.5s.9-1.6 4.3-1.6c3 0 5.8.6 8.3 1.8v-3.7c-2.4-1.2-5.1-1.7-8.5-1.7-4.7 0-8 2-8 5.3 0 2.8 1.9 4.4 5.8 4.8 1.4.2 3.8.4 5.4.5 1.8.1 2.3.7 2.3 1.5 0 1.1-1.3 1.8-4.4 1.8-3.2 0-6.5-1.1-8.9-2.5v3.8c1.9 1.3 5.1 2.3 8.8 2.3 5.1 0 8.4-2 8.4-5.5 0-2.7-1.8-4.4-5.8-4.8zm-18.3-6.8v8.5c0 3.2-2 5-4.9 5-3 0-4.9-1.7-4.9-5v-8.4h-4v8.1c0 6 3.8 9 8.9 9 5 0 8.8-2.9 8.8-8.8v-8.2h-3.9z\"/><path d=\"M60.4 68.8c0 .8-.4.9-1.4.9-1.1 0-1.3-.2-1.4-1-.2-2.1-1.6-3.9-4-4-.7-.1-.9-.3-.9-1.3 0-.9.1-1.3.8-1.3 4 .1 6.9 3.4 6.9 6.7zm5.9 0c0-6.2-4.2-12.8-14-12.8H33c-.4 0-.6.2-.6.6 0 .2.1.4.3.5.7.6 1.7 1.2 3.1 1.9 1.3.7 2.4 1.1 3.4 1.5.4.2.6.4.6.6 0 .3-.2.6-.7.6H23.7c-.5 0-.7.3-.7.6s.1.5.3.7c1.2 1.3 3.2 2.9 6.1 4.7 2.5 1.6 5.7 3.3 8.2 4.5.4.2.6.4.6.7 0 .3-.2.5-.7.5h-7.1c-.4 0-.6.2-.6.5 0 .2.1.4.3.6 1.6 1.5 4.2 3 7.6 4.5 4.6 1.9 9.2 3.1 14.4 3.1 9.9-.1 14.2-7.5 14.2-13.3zm-12.9 8.9c-4.8 0-8.9-3.9-8.9-8.9 0-4.8 4-8.7 8.9-8.7 5 0 8.9 3.9 8.9 8.7 0 4.9-3.9 8.9-8.9 8.9z\" style=\"fill:#ff642d\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hlv4y\",\"data-framer-name\":\"Company Logo 5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p97n1l\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1080,intrinsicWidth:1080,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1080\" height=\"1080\" xml:space=\"preserve\"><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#f6f6f6;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"matrix(1.05 0 0 1.05 121.284 401.4)\" d=\"M668.295 0c-4.914 0-10.81 0-15.725.978l-28.5 49.866c12.776-7.822 28.5-11.733 44.225-11.733 51.105 0 93.364 42.045 93.364 92.889 0 50.844-42.26 92.889-93.364 92.889-51.105 0-92.382-41.067-93.365-91.911l-29.484 49.866C565.102 230.756 613.26 264 667.312 264c72.726 0 132.676-59.644 132.676-132 .983-72.356-58.967-132-131.693-132Z\"/><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"matrix(1.05 0 0 1.05 120.191 401.4)\" d=\"m267.318 137.867 22.604-39.111 51.105 87.022 58.967-100.711 58.967 100.71 101.227-171.11C565.102 5.867 574.93 0 585.741 0h28.5l-155.28 264-58.967-100.711L341.027 264l-73.71-126.133Z\"/><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"matrix(1.05 0 0 1.05 118.85 401.4)\" d=\"m309.578 0-155.28 264L0 0h28.5c10.811 0 20.64 5.867 25.553 14.667l100.244 172.089 101.227-172.09C260.438 5.867 270.266 0 281.077 0h28.5Z\"/></svg>',transformTemplate:transformTemplate1,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qix6f3\",\"data-framer-name\":\"Company Logo 6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-be1a7s\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1080,intrinsicWidth:1080,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"1080\" height=\"1080\" xml:space=\"preserve\"><g transform=\"matrix(3.06 0 0 3.06 391.16 514.91)\" clip-path=\"url(#a)\"><clipPath id=\"a\"><rect transform=\"translate(48.05 8.5)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:#fff;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-127.85 -95.8)\" d=\"M110.9 122.4V69.1h8.3v21c2.6-3.9 6.5-5.8 11.7-5.8 4.4 0 7.9 1.3 10.3 3.9 2.4 2.6 3.6 6.3 3.6 11v23.2h-8.3v-22c0-6.1-2.7-9.1-8.1-9.1-2.7 0-4.9.8-6.7 2.5-1.7 1.6-2.6 3.9-2.6 6.9v21.8l-8.2-.1z\" stroke-linecap=\"round\"/></g><g transform=\"matrix(3.06 0 0 3.06 520.27 539.39)\" clip-path=\"url(#b)\"><clipPath id=\"b\"><rect transform=\"translate(5.85 .5)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-170.05 -103.8)\" d=\"M184 117.8c-3.7 3.7-8.3 5.5-13.9 5.5s-10.2-1.8-13.9-5.5c-3.7-3.7-5.6-8.4-5.6-14 0-5.7 1.9-10.3 5.6-14 3.7-3.7 8.3-5.5 13.9-5.5s10.2 1.8 13.9 5.5c3.7 3.7 5.5 8.3 5.5 14 0 5.7-1.8 10.4-5.5 14zm-21.7-4.6c2 2.3 4.6 3.5 7.9 3.5 3.3 0 5.9-1.2 7.9-3.5s3-5.4 3-9.4c0-3.9-1-7-3-9.3-2-2.3-4.6-3.5-7.8-3.5-3.3 0-5.9 1.1-7.9 3.4s-3 5.4-3 9.3c-.1 4 .9 7.2 2.9 9.5z\"/></g><g transform=\"matrix(3.06 0 0 3.06 632.86 524.09)\" clip-path=\"url(#c)\"><clipPath id=\"c\"><rect transform=\"translate(-30.95 5.5)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-206.85 -98.8)\" d=\"M208.7 123.4c-7.6 0-11.4-4.1-11.4-12.3V92.2h-5.8v-7h6l1.9-11h6.2v11h14.8v7h-14.8v18.6c0 3.4 1.3 5.1 3.8 5.1 2.4 0 4.5-2.1 6.4-6.4l6.4 3.3c-3.2 7.1-7.7 10.6-13.5 10.6z\"/></g><g transform=\"matrix(3.06 0 0 3.06 691.75 540.92)\" clip-path=\"url(#d)\"><clipPath id=\"d\"><rect transform=\"translate(-50.2)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-226.1 -104.3)\" d=\"M224.8 139.5c-3.7 0-6.7-1-9.1-3.1l3.1-6.5c1.5 1.7 3.1 2.6 4.8 2.6 2.3 0 3.5-1.5 3.5-4.4V85.2h8.3v42.9c0 4-1 6.9-3 8.6-2 1.9-4.5 2.8-7.6 2.8zm6.4-60.6c-1.4 0-2.7-.5-3.7-1.4-.5-.5-.9-1-1.1-1.6-.3-.6-.4-1.3-.3-1.9 0-.7.1-1.3.4-1.9.3-.6.6-1.2 1.1-1.6 1-.9 2.3-1.4 3.7-1.4 1.4 0 2.7.5 3.7 1.4.5.5.9 1 1.1 1.6.3.6.4 1.3.4 1.9 0 .7-.1 1.3-.4 1.9-.3.6-.6 1.1-1.1 1.6-.5.5-1.1.8-1.7 1.1-.7.2-1.4.4-2.1.3z\"/></g><g transform=\"matrix(3.06 0 0 3.06 788.77 540)\" clip-path=\"url(#e)\"><clipPath id=\"e\"><rect transform=\"translate(-82.6 .4)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-258.5 -103.9)\" d=\"M255.9 123.4c-4.2 0-7.7-1.1-10.3-3.2-2.6-2.1-3.9-5-3.9-8.5 0-3.3 1.4-6 4.1-8.3 2.7-2.3 6.2-3.4 10.3-3.4 4.2 0 7.8 1.4 10.7 4.1v-4.5c0-2.7-.7-4.7-2-6.2-1.4-1.5-3.3-2.2-5.8-2.2-5.1 0-8.2 2.6-9.4 7.7l-7.6-1.6c1-4 3-7.1 6.1-9.4 3-2.3 6.8-3.5 11.3-3.5 4.9 0 8.8 1.3 11.6 3.9 2.8 2.6 4.3 6.4 4.3 11.3v22.9h-8.1v-4.7c-2.8 3.7-6.5 5.6-11.3 5.6zm1.6-6.2c3.7 0 6.8-1.8 9.4-5.5v-1.2c-2.6-3.1-5.7-4.6-9.4-4.6-2.1 0-3.9.5-5.2 1.6-.6.5-1.1 1.1-1.5 1.8-.3.7-.5 1.5-.5 2.3 0 .8.1 1.6.5 2.3.3.7.8 1.3 1.5 1.8 1.2 1 3 1.5 5.2 1.5z\"/></g><g transform=\"matrix(3.06 0 0 3.06 910.81 538.32)\" clip-path=\"url(#f)\"><clipPath id=\"f\"><rect transform=\"translate(-121.8 .85)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#fff;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-297.7 -103.45)\" d=\"M283.2 122.4V85.2h8.1v6.4c2-4.7 5.6-7.1 10.6-7.1 3 0 5.4 1 7.4 2.9s2.9 4.6 2.9 7.8c0 2-.4 3.9-1 5.8l-7.6-.8c.2-1 .3-2 .3-3.1 0-3.8-1.6-5.8-4.8-5.8-2.1 0-4 1.1-5.4 3.4-1.5 2.3-2.2 5.3-2.2 9v18.5h-8.3z\"/></g><g transform=\"matrix(3.06 0 0 3.06 173.32 486.15)\" clip-path=\"url(#g)\"><clipPath id=\"g\"><rect transform=\"translate(119.25 17.9)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#ff3c00;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-56.65 -86.4)\" d=\"M59.2 90.9c6.2-3.4 14.6-8.1 14.6-21.8H63.5c0 7.6-3.7 9.7-9.4 12.8-6.2 3.4-14.6 8.1-14.6 21.8h10.2c.1-7.6 3.8-9.6 9.5-12.8z\"/></g><g transform=\"matrix(3.06 0 0 3.06 214.16 543.37)\" clip-path=\"url(#h)\"><clipPath id=\"h\"><rect transform=\"translate(105.9 -.8)\" x=\"-136.3\" y=\"-35.2\" rx=\"0\" ry=\"0\" width=\"272.6\" height=\"70.4\"/></clipPath><path style=\"stroke:none;stroke-width:1;stroke-dasharray:none;stroke-linecap:butt;stroke-dashoffset:0;stroke-linejoin:miter;stroke-miterlimit:4;fill:#ff3c00;fill-rule:nonzero;opacity:1\" vector-effect=\"non-scaling-stroke\" transform=\"translate(-70 -105.1)\" d=\"M76.9 87.8c0 7.6-3.7 9.7-9.4 12.8-6.2 3.4-14.6 8.1-14.6 21.8h10.2c0-7.6 3.7-9.7 9.4-12.8 6.2-3.4 14.6-8.1 14.6-21.8H76.9z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xqkjqy\",\"data-framer-name\":\"Company Logo 4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qwny7y\",\"data-framer-name\":\"Graphic\",fill:\"rgb(255, 255, 255)\",intrinsicHeight:138,intrinsicWidth:242,svg:'<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 242 138\" style=\"enable-background:new 0 0 242 138\" xml:space=\"preserve\"><path d=\"M157.7 66.2c0-3.2-2-5.5-5.7-5.5h-12.2v16.6h4v-5.7h4.7l4.6 5.7h4.5v-.4l-4.5-5.4c2.9-.6 4.6-2.7 4.6-5.3zm-6.2 2h-7.7v-4.1h7.7c1.4 0 2.3.8 2.3 2.1.1 1.3-.8 2-2.3 2zm66.6-7.6h-3.7v6.3h-10.1v-6.3h-4v16.6h4v-6.5h10.1v6.5h3.7V60.6zm-89 0-4.4 13.9h-.2L120 60.6h-7.1v16.6h3.8V63.6h.2l4.4 13.6h6.1l4.5-13.6h.2v13.6h3.9V60.6h-6.9zm-43.5 6.8c-1.4-.1-4-.4-5.5-.5-1.4-.1-2.2-.6-2.2-1.5s.9-1.6 4.3-1.6c3 0 5.8.7 8.3 1.8v-3.7c-2.4-1.2-5.1-1.7-8.5-1.7-4.7 0-8 2-8 5.3 0 2.8 1.9 4.4 5.8 4.8 1.4.2 3.8.4 5.4.5 1.8.1 2.3.7 2.3 1.5 0 1.1-1.3 1.8-4.4 1.8-3.2 0-6.5-1.1-8.9-2.5v3.8c1.9 1.3 5.1 2.3 8.8 2.3 5.1 0 8.4-2 8.4-5.5 0-2.7-1.7-4.4-5.8-4.8zm8.5-6.8v16.6h15.4v-3.4H97.9v-3.4h11.4V67H97.9v-3h11.6v-3.4H94.1zm97.9 6.8c-1.4-.1-4-.4-5.5-.5-1.4-.1-2.2-.6-2.2-1.5s.9-1.6 4.3-1.6c3 0 5.8.6 8.3 1.8v-3.7c-2.4-1.2-5.1-1.7-8.5-1.7-4.7 0-8 2-8 5.3 0 2.8 1.9 4.4 5.8 4.8 1.4.2 3.8.4 5.4.5 1.8.1 2.3.7 2.3 1.5 0 1.1-1.3 1.8-4.4 1.8-3.2 0-6.5-1.1-8.9-2.5v3.8c1.9 1.3 5.1 2.3 8.8 2.3 5.1 0 8.4-2 8.4-5.5 0-2.7-1.8-4.4-5.8-4.8zm-18.3-6.8v8.5c0 3.2-2 5-4.9 5-3 0-4.9-1.7-4.9-5v-8.4h-4v8.1c0 6 3.8 9 8.9 9 5 0 8.8-2.9 8.8-8.8v-8.2h-3.9z\"/><path d=\"M60.4 68.8c0 .8-.4.9-1.4.9-1.1 0-1.3-.2-1.4-1-.2-2.1-1.6-3.9-4-4-.7-.1-.9-.3-.9-1.3 0-.9.1-1.3.8-1.3 4 .1 6.9 3.4 6.9 6.7zm5.9 0c0-6.2-4.2-12.8-14-12.8H33c-.4 0-.6.2-.6.6 0 .2.1.4.3.5.7.6 1.7 1.2 3.1 1.9 1.3.7 2.4 1.1 3.4 1.5.4.2.6.4.6.6 0 .3-.2.6-.7.6H23.7c-.5 0-.7.3-.7.6s.1.5.3.7c1.2 1.3 3.2 2.9 6.1 4.7 2.5 1.6 5.7 3.3 8.2 4.5.4.2.6.4.6.7 0 .3-.2.5-.7.5h-7.1c-.4 0-.6.2-.6.5 0 .2.1.4.3.6 1.6 1.5 4.2 3 7.6 4.5 4.6 1.9 9.2 3.1 14.4 3.1 9.9-.1 14.2-7.5 14.2-13.3zm-12.9 8.9c-4.8 0-8.9-3.9-8.9-8.9 0-4.8 4-8.7 8.9-8.7 5 0 8.9 3.9 8.9 8.7 0 4.9-3.9 8.9-8.9 8.9z\" style=\"fill:#ff642d\"/></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1g8cy6w\",\"data-framer-name\":\"Section/Intro\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zyx35y\",\"data-framer-name\":\"Content Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6b5y74\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:\"Od zera do 3 mln dziennie (case study)\"})}),className:\"framer-4nitid\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:[\"Poznaj strategi\u0119 zwi\u0119kszania ruchu kt\\xf3ra opiera\u0142a si\u0119 na kilku kluczowych filarach dzi\u0119ki kt\\xf3rym uda\u0142o si\u0119 zwi\u0119kszy\u0107 zasi\u0119g serwisu do ponad\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"3 milion\\xf3w ods\u0142on dziennie\"}),\", a serwis og\u0142oszeniowy NaszeKrosno.pl sta\u0142 si\u0119 jednym z g\u0142\\xf3wnych portali og\u0142oszeniowych w Polsce\"]})}),className:\"framer-sbvoo6\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-mfieg8\",\"data-framer-name\":\"Section/Process\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1920wcn\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qi55je\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:\"Kampanie marketingowe, SEO, reklama w Google Ads, Testy A/B, Pozyskiwanie lead\\xf3w\"})}),className:\"framer-1v7v0o6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\"Aby wynie\u015B\u0107 sw\\xf3j biznes na wy\u017Cszy poziom mo\u017Cesz wykorzysta\u0107 pe\u0142n\u0105 moc pozycjonowania SEO, reklamy w Google Ads, test\\xf3w A/B i skutecznego pozyskiwania gor\u0105cych lead\\xf3w. Albo po\u0142\u0105czy\u0107 wszystko od pocz\u0105tku w jedn\u0105 ca\u0142o\u015B\u0107. Oferujemy kompleksowe us\u0142ugi marketingu internetowego od A do Z.\"})}),className:\"framer-199rk6r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e03026\",\"data-framer-name\":\"Process\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-526z89\",\"data-framer-name\":\"Row/Process\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lSkrKWBd9\"},implicitPathVariables:undefined},{href:{webPageId:\"lSkrKWBd9\"},implicitPathVariables:undefined},{href:{webPageId:\"lSkrKWBd9\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjftms-container\",nodeId:\"jDNWfoIZG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{lCNBDtE47:resolvedLinks2[1],style:{height:\"100%\",width:\"100%\"}},qmKZde4mC:{lCNBDtE47:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"jDNWfoIZG\",KUhi2_rOi:getLocalizedValue(\"v12\",activeLocale)??\"01\",layoutId:\"jDNWfoIZG\",lCNBDtE47:resolvedLinks2[0],qYCtZtVPd:getLocalizedValue(\"v14\",activeLocale)??\"Growth hacking, strategia szybkiego wzrostu dla firm i startup\\xf3w\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v13\",activeLocale)??\"Growth Hacking i Generowanie Lead\\xf3w\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v16\",activeLocale)??\"Automatyzacja proces\\xf3w sprzeda\u017Cy i marketingu\",zSFupcS2V:getLocalizedValue(\"v15\",activeLocale)??\"Pozyskiwanie nowych klient\\xf3w i lead\\xf3w B2B oraz B2C\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Cn7F9Abk1\"},implicitPathVariables:undefined},{href:{webPageId:\"Cn7F9Abk1\"},implicitPathVariables:undefined},{href:{webPageId:\"Cn7F9Abk1\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+0+0+507}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1799fvv-container\",nodeId:\"wKmVbUda5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{lCNBDtE47:resolvedLinks3[1]},qmKZde4mC:{lCNBDtE47:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"wKmVbUda5\",KUhi2_rOi:getLocalizedValue(\"v17\",activeLocale)??\"02\",layoutId:\"wKmVbUda5\",lCNBDtE47:resolvedLinks3[0],qYCtZtVPd:getLocalizedValue(\"v19\",activeLocale)??\"Audyt WWW (SXO), optymalizacja SEO i u\u017Cyteczno\u015Bci\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v18\",activeLocale)??\"Optymalizacja Konwersji i UX (User Experience)\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v21\",activeLocale)??\"Testy A/B, skuteczne testowanie kampanii i stron WWW, stron landing page\",zSFupcS2V:getLocalizedValue(\"v20\",activeLocale)??\"Optymalizacja konwersji CRO\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54xgj8\",\"data-framer-name\":\"Row/Process\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m0YpfCNC6\"},implicitPathVariables:undefined},{href:{webPageId:\"m0YpfCNC6\"},implicitPathVariables:undefined},{href:{webPageId:\"m0YpfCNC6\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+507+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+1014+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+507+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ptht3f-container\",nodeId:\"sJhp6RW7y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{lCNBDtE47:resolvedLinks4[1]},qmKZde4mC:{lCNBDtE47:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"sJhp6RW7y\",KUhi2_rOi:\"03\",layoutId:\"sJhp6RW7y\",lCNBDtE47:resolvedLinks4[0],qYCtZtVPd:getLocalizedValue(\"v23\",activeLocale)??\"Analityka internetowa, optymalizacja dzia\u0142a\u0144 marketingowych\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v22\",activeLocale)??\"Analityka i badania\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v25\",activeLocale)??\"Badania efektywno\u015Bci stron i sklep\\xf3w online\",zSFupcS2V:getLocalizedValue(\"v24\",activeLocale)??\"Wdro\u017Cenie i optymalizacja GA4\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qXOH5thvH\"},implicitPathVariables:undefined},{href:{webPageId:\"qXOH5thvH\"},implicitPathVariables:undefined},{href:{webPageId:\"qXOH5thvH\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+507+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+1014+0+507}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+507+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17jkbtf-container\",nodeId:\"bgn5ShKF8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{lCNBDtE47:resolvedLinks5[1]},qmKZde4mC:{lCNBDtE47:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"bgn5ShKF8\",KUhi2_rOi:\"04\",layoutId:\"bgn5ShKF8\",lCNBDtE47:resolvedLinks5[0],qYCtZtVPd:getLocalizedValue(\"v27\",activeLocale)??\"Reklama w Google Ads\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v26\",activeLocale)??\"Reklama Online\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v29\",activeLocale)??\"Reklama w Social Mediach, budowanie zaanga\u017Cowania i ruchu\",zSFupcS2V:getLocalizedValue(\"v28\",activeLocale)??\"Prowadzenie kampanii reklamowych w Social Media\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zojs4l\",\"data-framer-name\":\"Row/Process\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined},{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined},{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+1014+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+2028+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+1014+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v9z7dq-container\",nodeId:\"fGTuIdI_l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{lCNBDtE47:resolvedLinks6[1]},qmKZde4mC:{lCNBDtE47:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"fGTuIdI_l\",KUhi2_rOi:\"05\",layoutId:\"fGTuIdI_l\",lCNBDtE47:resolvedLinks6[0],qYCtZtVPd:getLocalizedValue(\"v31\",activeLocale)??\"Przewodnik po zagadnieniach sztucznej inteligencj\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v30\",activeLocale)??\"Chat GPT w praktyce\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v33\",activeLocale)??\"Wybrane prompty do Chat GPT,  leksykon sztucznej inteligencji i inne\",zSFupcS2V:getLocalizedValue(\"v32\",activeLocale)??\"Staranne wybrane, najlepsze aplikacje AI\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1246.6+80+0+0+265.6+0+1014+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+1201.6+60+0+0+265.6+0+2028+0+507}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:487,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+1314.6+100+0+0+265.6+0+1014+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tj0qc-container\",nodeId:\"BvgqJw0kF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProcess,{height:\"100%\",id:\"BvgqJw0kF\",KUhi2_rOi:\"06\",layoutId:\"BvgqJw0kF\",lCNBDtE47:\"/ai-naviggator/#services\",qYCtZtVPd:getLocalizedValue(\"v35\",activeLocale)??\"Spersonalizowane rozwi\u0105zania AI\",style:{width:\"100%\"},TXzQ_w5PK:getLocalizedValue(\"v34\",activeLocale)??\"Agenci AI\",width:\"100%\",yHZQLduGW:getLocalizedValue(\"v37\",activeLocale)??\"Analiza danych i generowanie raport\\xf3w, Automatyzacja obs\u0142ugi klienta\",zSFupcS2V:getLocalizedValue(\"v36\",activeLocale)??\"Automatyzacja proces\\xf3w marketingowych\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-14ang5s\",\"data-framer-name\":\"Section/Work\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117wasm\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gfaks8\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:\"ITX to Tw\\xf3j partner w rozwoju biznesu online - 25 lat do\u015Bwiadcze\u0144 i pasji do marketingu internetowego \"})}),className:\"framer-1stuqg4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\"Przez 25 lat kariery nieustannie poszukiwa\u0142em innowacji i nowych mo\u017Cliwo\u015Bci w e-marketingu i growth hackingu. Moja pasja do technologii, analizy danych i marketingu cyfrowego uczyni\u0142a mnie jednym z pionier\\xf3w w tej dziedzinie w Polsce. Projekty takie jak SiteDoctor.pl i Udana Transakcja.pl znacz\u0105co wp\u0142yn\u0119\u0142y na rozw\\xf3j bran\u017Cy internetowej. Dzi\u0119ki zaanga\u017Cowaniu wiele firm osi\u0105gn\u0119\u0142o sukces w \u015Bwiecie online, korzystaj\u0105c z innowacyjnych rozwi\u0105za\u0144 e-marketingowych. Czas na Twoj\u0105 firm\u0119. Zaufaj ekspertom, kt\\xf3rzy od \u0107wier\u0107wiecza pomagaj\u0105 w \u015Bwiecie cyfrowym. Zapraszam do wsp\\xf3\u0142pracy. Maciej G\\xf3ral - w\u0142a\u015Bciciel ITX\"})}),className:\"framer-18pvfbu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vootbs\",\"data-framer-name\":\"Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hnmajf\",\"data-framer-name\":\"Row/Projects\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4wzkch-container\",nodeId:\"GFEMX8CfP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"GFEMX8CfP\",layoutId:\"GFEMX8CfP\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/aWkSkXUM0CytjwegEjPn6TtGcpU.webp\",srcSet:\"https://framerusercontent.com/images/aWkSkXUM0CytjwegEjPn6TtGcpU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aWkSkXUM0CytjwegEjPn6TtGcpU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/aWkSkXUM0CytjwegEjPn6TtGcpU.webp 1950w\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\",zizrr5g4i:\"https://www.owg.pl/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+0+0+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13iloph-container\",nodeId:\"mRMaXKZJe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"mRMaXKZJe\",layoutId:\"mRMaXKZJe\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/p3RpuFTzrJyrfyPuYNjImxsk7Y.webp\",srcSet:\"https://framerusercontent.com/images/p3RpuFTzrJyrfyPuYNjImxsk7Y.webp?scale-down-to=512 512w,https://framerusercontent.com/images/p3RpuFTzrJyrfyPuYNjImxsk7Y.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/p3RpuFTzrJyrfyPuYNjImxsk7Y.webp 1236w\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\",zizrr5g4i:\"https://web.archive.org/web/20071025044342/http://www.sitedoctor.pl/\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159ygwp\",\"data-framer-name\":\"Row/Projects\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+392+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+784+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+392+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pb3o1i-container\",nodeId:\"kWe6yMSoz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"kWe6yMSoz\",layoutId:\"kWe6yMSoz\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/jGrbPL15lIB0cl1h0IeAu8xdTs.webp\",srcSet:\"https://framerusercontent.com/images/jGrbPL15lIB0cl1h0IeAu8xdTs.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jGrbPL15lIB0cl1h0IeAu8xdTs.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/jGrbPL15lIB0cl1h0IeAu8xdTs.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/jGrbPL15lIB0cl1h0IeAu8xdTs.webp 3000w\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\",zizrr5g4i:\"https://web.archive.org/web/20100208081237/http://www.naszekrosno.pl/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+392+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+784+0+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+392+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xsnf9f-container\",nodeId:\"rkDUiEONW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"rkDUiEONW\",layoutId:\"rkDUiEONW\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/7ET2gtSdOa273sWejjVnAiO5k.png\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\",zizrr5g4i:\"https://ideo.pl/\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjc8nt\",\"data-framer-name\":\"Row/Projects\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+784+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+1568+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+784+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19ceuto-container\",nodeId:\"Zr2EUiQB6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"Zr2EUiQB6\",layoutId:\"Zr2EUiQB6\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/simS3vky1miZQ2nbHRoagLrEGEQ.webp\",srcSet:\"https://framerusercontent.com/images/simS3vky1miZQ2nbHRoagLrEGEQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/simS3vky1miZQ2nbHRoagLrEGEQ.webp 967w\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined},{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined},{href:{webPageId:\"PLlnoP3zC\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3173.2+80+0+0+265.6+0+784+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+4609.2+60+0+0+265.6+0+1568+0+392}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+3281.2+100+0+0+265.6+0+784+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3i0lh-container\",nodeId:\"G5LylsWVR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/FVIShNUhVDYkmzDLuVnGFmgKXCg.webp\"},\"Logo Design Project for a Client\"),zizrr5g4i:resolvedLinks7[1]},qmKZde4mC:{zizrr5g4i:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(TileProject,{HcXl17phF:\"1us2up8\",height:\"100%\",id:\"G5LylsWVR\",layoutId:\"G5LylsWVR\",qmgPsxnAx:addImageAlt({src:\"https://framerusercontent.com/images/bvCg5Je3O4Y7uIpIbwcKTVtISx4.webp\",srcSet:\"https://framerusercontent.com/images/bvCg5Je3O4Y7uIpIbwcKTVtISx4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/bvCg5Je3O4Y7uIpIbwcKTVtISx4.webp 867w\"},\"Logo Design Project for a Client\"),style:{width:\"100%\"},width:\"100%\",zizrr5g4i:resolvedLinks7[0]})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-qch4an\",\"data-framer-name\":\"Section/Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ia0wc\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kd84jb\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:\"Przyspiesz\u0119 rozw\\xf3j Twojego biznesu dzi\u0119ki skutecznym strategiom\"})}),className:\"framer-1ejun69\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qmKZde4mC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\"},children:[\"Od \",/*#__PURE__*/_jsx(\"strong\",{children:\"content marketingu\"}),\", growth loops i guerrilla marketingu, przez \",/*#__PURE__*/_jsx(\"strong\",{children:\"MVP\"}),\" i \",/*#__PURE__*/_jsx(\"strong\",{children:\"optymalizacj\u0119 konwersji\"}),\" po wiralno\u015B\u0107\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\"},children:[\"Od \",/*#__PURE__*/_jsx(\"strong\",{children:\"content marketingu\"}),\", growth loops i guerrilla marketingu, przez \",/*#__PURE__*/_jsx(\"strong\",{children:\"MVP\"}),\" i \",/*#__PURE__*/_jsx(\"strong\",{children:\"optymalizacj\u0119 konwersji\"}),\" po wiralno\u015B\u0107\"]})}),className:\"framer-1j4osbx\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:[\"W \u015Bwiecie cyfrowym, gdzie konkurencja jest na wyci\u0105gni\u0119cie r\u0119ki, wyr\\xf3\u017Cnia nas indywidualne podej\u015Bcie do ka\u017Cdego projektu. \u0141\u0105czymy nowoczesne metody, takie jak \",/*#__PURE__*/_jsx(\"strong\",{children:\"growth hacking\"}),\" i bootstrapping, z solidnymi podstawami \",/*#__PURE__*/_jsx(\"strong\",{children:\"SEO\"}),\" i content marketingu, aby stworzy\u0107 strategi\u0119 idealnie dopasowan\u0105 do potrzeb Twojej firmy. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\"Nasz zesp\\xf3\u0142 ekspert\\xf3w nieustannie analizuje wyniki i optymalizuje dzia\u0142ania, zapewniaj\u0105c skalowalno\u015B\u0107 i wiralno\u015B\u0107 Twoich kampanii marketingowych.\"})]}),className:\"framer-i6xxpj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qaas78-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Stz76r9EH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"Stz76r9EH\",layoutId:\"Stz76r9EH\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"361px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ojwsf-container\",inComponentSlot:true,nodeId:\"lfOHzUZOI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{dGxw9Fvp8:\"\",height:\"100%\",hqEKA4UbL:getLocalizedValue(\"v42\",activeLocale)??\"Wsp\\xf3\u0142praca z do\u015Bwiadczonym zespo\u0142em programist\\xf3w nad rozwojem projekt\\xf3w \",id:\"lfOHzUZOI\",layoutId:\"lfOHzUZOI\",MFqbol69n:addImageAlt({src:\"https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg\",srcSet:\"https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IQKddGGUVKfESbTRhHhxUrBqwQ.jpg 4928w\"},\"\"),nxjYJm7is:getLocalizedValue(\"v43\",activeLocale)??\"Specjalista ds. stron WWW @ Mikrotech S.A.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"361px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bpzyhj-container\",inComponentSlot:true,nodeId:\"KfmieVkdt\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{dGxw9Fvp8:\"\",height:\"100%\",hqEKA4UbL:getLocalizedValue(\"v44\",activeLocale)??\"Indywidualne podej\u015Bcie dostosowania do potrzeb ka\u017Cdej firmy\",id:\"KfmieVkdt\",layoutId:\"KfmieVkdt\",MFqbol69n:addImageAlt({src:\"https://framerusercontent.com/images/1ApcT7kVDOZTELD8XFISmocdiA.jpg\",srcSet:\"https://framerusercontent.com/images/1ApcT7kVDOZTELD8XFISmocdiA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/1ApcT7kVDOZTELD8XFISmocdiA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/1ApcT7kVDOZTELD8XFISmocdiA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/1ApcT7kVDOZTELD8XFISmocdiA.jpg 3648w\"},\"\"),nxjYJm7is:getLocalizedValue(\"v45\",activeLocale)??\"Manager ds. hostingu i serwer\\xf3w @ Ideo Software House\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"361px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jbchqh-container\",inComponentSlot:true,nodeId:\"OpV3uZ9PI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{dGxw9Fvp8:\"\",height:\"100%\",hqEKA4UbL:getLocalizedValue(\"v46\",activeLocale)??\"Pierwsze w Polsce innowacyjne narz\u0119dzie SaaS do bada\u0144 clicktrackingu na stronach internetowych\",id:\"OpV3uZ9PI\",layoutId:\"OpV3uZ9PI\",nxjYJm7is:getLocalizedValue(\"v47\",activeLocale)??\"Wsp\\xf3\u0142za\u0142o\u017Cyciel @ SiteDocotor\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:\"361px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jpdo3k-container\",inComponentSlot:true,nodeId:\"Kxcpuyf89\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Testimonial,{dGxw9Fvp8:\"\",height:\"100%\",hqEKA4UbL:getLocalizedValue(\"v48\",activeLocale)??\"Eksperci kt\\xf3rzy realizuj\u0105 nawet najbardziej wymagaj\u0105ce projekty \",id:\"Kxcpuyf89\",layoutId:\"Kxcpuyf89\",MFqbol69n:addImageAlt({src:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg\",srcSet:\"https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/a6V9t9YFzI29cz5gMQRbfWgjVS4.jpg 3840w\"},\"\"),nxjYJm7is:getLocalizedValue(\"v49\",activeLocale)??\"Za\u0142o\u017Cyciel @ Udana Transakcja\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-cm4lp4\",\"data-framer-name\":\"Section/Services\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s68nxy\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1exjesi\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Inwestuj w sukces\"})})}),className:\"framer-bkwcc1\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\"},children:\"Poznaj przejrzysty cennik us\u0142ug\"})})},qmKZde4mC:{children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\"},children:\"Poznaj przejrzysty cennik us\u0142ug\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-528f84e0-f915-420f-bf60-2cbf77101a8e, rgb(255, 255, 255))\"},children:\"Poznaj przejrzysty cennik us\u0142ug\"})}),className:\"framer-7ia6kn\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:[\"Zwi\u0119ksz zasi\u0119g i sukces Twojej marki w Internecie. \",/*#__PURE__*/_jsx(\"br\",{}),\"Porozmawiajmy o adaptacji do dynamicznego rynku w \u015Bwiecie online dla Twojego biznesu onine.\"]})}),className:\"framer-1nnwbg0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwlfgg\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lm1xvf\",\"data-framer-name\":\"Row/Services\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5685.9+80+0+0+316+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+8192.4+60+0+0+311.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5873.9+100+0+0+317.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o123oe-container\",nodeId:\"NPpNVbWj7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{yTPGGjUXP:resolvedLinks8[1]},qmKZde4mC:{yTPGGjUXP:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(TileService,{aqjDFNtSh:getLocalizedValue(\"v55\",activeLocale)??\"Start\",B16AKMTvD:getLocalizedValue(\"v61\",activeLocale)??\"Opieka serwisowa, utrzymanie stron i sklep\\xf3w\",BLMMSc5AE:getLocalizedValue(\"v56\",activeLocale)??\"87 z\u0142 / h *\",Es9XOr3oc:false,EvqyuZXFQ:getLocalizedValue(\"v59\",activeLocale)??\"Prowadzenie blog\\xf3w firmowych i tworzenie tre\u015Bci SEO\",fOsmDMmXP:getLocalizedValue(\"v57\",activeLocale)??\"Podstawowe doradztwo marketingowe i analiza strategii marketingowej, uproszczone raportowanie, komunikacja e-mailowa\",height:\"100%\",id:\"NPpNVbWj7\",layoutId:\"NPpNVbWj7\",NTCCp42Ny:getLocalizedValue(\"v64\",activeLocale)??\"Zapytanie ofertowe\",sN3PhfBvr:getLocalizedValue(\"v62\",activeLocale)??\"Podstawowy Google Analitycs\",style:{width:\"100%\"},variant:\"CDi4AoFxe\",VLPEy2I_d:getLocalizedValue(\"v63\",activeLocale)??\"Analityka internetowa \u2013 optymalizacja dzia\u0142a\u0144 marketingowych\",width:\"100%\",WNbhzSMBJ:getLocalizedValue(\"v58\",activeLocale)??\"Projektowanie i tworzenie stron internetowych\",y5thXLVlQ:getLocalizedValue(\"v60\",activeLocale)??\"Content marketing dla sklep\\xf3w internetowych\",yTPGGjUXP:resolvedLinks8[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5685.9+80+0+0+316+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+8192.4+60+0+0+311.2+0+0+0+542}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5873.9+100+0+0+317.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mhw93w-container\",nodeId:\"rv6936DPD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{yTPGGjUXP:resolvedLinks9[1]},qmKZde4mC:{yTPGGjUXP:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(TileService,{aqjDFNtSh:\"Standard\",B16AKMTvD:getLocalizedValue(\"v70\",activeLocale)??\"Badania UX \u2013 zwi\u0119kszenie u\u017Cyteczno\u015Bci i zaanga\u017Cowania u\u017Cytkownik\\xf3w\",BLMMSc5AE:getLocalizedValue(\"v65\",activeLocale)??\"199 z\u0142 / h\",Es9XOr3oc:false,EvqyuZXFQ:getLocalizedValue(\"v68\",activeLocale)??\"Reklama w Social Mediach \u2013 budowanie zaanga\u017Cowania i ruchu\",fOsmDMmXP:getLocalizedValue(\"v66\",activeLocale)??\"Kompleksowe doradztwo marketingowe, regularne raportowanie i analiza wynik\\xf3w z test\\xf3w A/B, GA4,  kontakt online\",height:\"100%\",id:\"rv6936DPD\",layoutId:\"rv6936DPD\",NTCCp42Ny:getLocalizedValue(\"v64\",activeLocale)??\"Zapytanie ofertowe\",sN3PhfBvr:getLocalizedValue(\"v25\",activeLocale)??\"Badania efektywno\u015Bci stron i sklep\\xf3w online\",style:{width:\"100%\"},variant:\"zsVelk7ni\",VJ9yFjxAq:\"1e5ulr2\",VLPEy2I_d:getLocalizedValue(\"v71\",activeLocale)??\"Reklama w Google Adwords\",width:\"100%\",WNbhzSMBJ:getLocalizedValue(\"v67\",activeLocale)??\"Wdro\u017Cenie GTM i optymalizacja GA4\",y5thXLVlQ:getLocalizedValue(\"v69\",activeLocale)??\"Audyt WWW (SXO) \u2013 optymalizacja SEO i u\u017Cyteczno\u015Bci\",yTPGGjUXP:resolvedLinks9[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined},{href:{webPageId:\"zMsIoybrG\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5685.9+80+0+0+316+0+0+0},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+8192.4+60+0+0+311.2+0+0+0+1084}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:522,width:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+5873.9+100+0+0+317.2+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tvzpbi-container\",nodeId:\"enKZOLhwz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{yTPGGjUXP:resolvedLinks10[1]},qmKZde4mC:{yTPGGjUXP:resolvedLinks10[2]}},children:/*#__PURE__*/_jsx(TileService,{aqjDFNtSh:getLocalizedValue(\"v72\",activeLocale)??\"Growth Hack\",B16AKMTvD:getLocalizedValue(\"v78\",activeLocale)??\"Integracje API, mikroserwisy\",BLMMSc5AE:getLocalizedValue(\"v73\",activeLocale)??\"470 z\u0142 / h\",Es9XOr3oc:false,EvqyuZXFQ:getLocalizedValue(\"v76\",activeLocale)??\"Pozyskiwanie nowych klient\\xf3w i lead\\xf3w B2B oraz B2C\",fOsmDMmXP:getLocalizedValue(\"v74\",activeLocale)??\"Dedykowany specjalista ds. growth hackingu do Twojej dyspozycji, pe\u0142ne zarz\u0105dzanie, priorytetowe i regularne spotkania online\",height:\"100%\",id:\"enKZOLhwz\",layoutId:\"enKZOLhwz\",NTCCp42Ny:getLocalizedValue(\"v64\",activeLocale)??\"Zapytanie ofertowe\",sN3PhfBvr:getLocalizedValue(\"v79\",activeLocale)??\"Testy A/B \u2013 skuteczne testowanie kampanii i stron\",style:{width:\"100%\"},variant:\"CDi4AoFxe\",VLPEy2I_d:getLocalizedValue(\"v80\",activeLocale)??\"Growth Hacking\",width:\"100%\",WNbhzSMBJ:getLocalizedValue(\"v75\",activeLocale)??\"Automatyzacja proces\\xf3w sprzeda\u017Cy i marketingu\",y5thXLVlQ:getLocalizedValue(\"v77\",activeLocale)??\"Pozycjonowanie serwis\\xf3w internetowych\",yTPGGjUXP:resolvedLinks10[0]})})})})})})]})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aojmej\",\"data-framer-name\":\"Text Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:'Istnieje mo\u017Cliwo\u015B\u0107 dostosowania pakiet\\xf3w do indywidualnych potrzeb oraz negocjacji cen przy d\u0142ugoterminowej wsp\\xf3\u0142pracy lub wi\u0119kszej liczbie godzin (* -nie dotyczy opcji \"start\" ). Podane ceny s\u0105 cenami netto za godzin\u0119 pracy. Do kwoty nale\u017Cy doliczy\u0107 podatek VAT zgodnie z obowi\u0105zuj\u0105cymi przepisami. '})]}),className:\"framer-1jqxpt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-17ql6o6\",\"data-framer-name\":\"Section/About\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xaqmho\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t2aek9\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:[\"Maciej G\\xf3ral, za\u0142o\u017Cyciel ITX\",/*#__PURE__*/_jsx(\"br\",{}),\" Growth Hacker\"]})}),className:\"framer-1b3b219\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\"ITX to nie tylko testy A/B, optymalizacje konwersji czy innowacje. Razem z projektantami UX/UI, copywriterami, specjalistami SEO, programistami i grafikami wdra\u017Camy narz\u0119dzia automatyzuj\u0105ce Tw\\xf3j marketing w celu zwi\u0119kszenia efektywno\u015Bci dzia\u0142a\u0144 sprzeda\u017Cowych.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\" Zindywidualizowane podej\u015Bcie i strategie content marketingowe, kt\\xf3re przyci\u0105gaj\u0105 u\u017Cytkownik\\xf3w na stron\u0119, buduj\u0105 zaufanie oraz przekszta\u0142caj\u0105 ich w klient\\xf3w.\"})]}),className:\"framer-15a8imd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hy7j53-container\",\"data-framer-cursor\":\"1e5ulr2\",id:\"1hy7j53\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jDdlZadYb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qmKZde4mC:{snapObject:{fluid:false,snap:true,snapEdge:\"center\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14))\",arrowPadding:20,arrowRadius:8,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"},fadeWidth:10},gap:20,height:\"100%\",id:\"jDdlZadYb\",layoutId:\"jDdlZadYb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"abG8S5tdj\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"320px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f965y9-container\",inComponentSlot:true,nodeId:\"qbcPuuSKD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TileTeamMember,{b1BbnoN9z:\"Growth Hacker\",height:\"100%\",hrdXEX8KF:addImageAlt({src:\"https://framerusercontent.com/images/saRar9tWBtNgky9TUFipA72eldM.jpg\"},\"Profile Image of Logo Design Client\"),id:\"qbcPuuSKD\",layoutId:\"qbcPuuSKD\",OHrqErVNR:\"zb60f0\",Q0vfbbqMT:resolvedLinks11[0],style:{height:\"100%\",width:\"100%\"},UUGP5C_MJ:\"Maciej G\\xf3ral\",width:\"100%\"})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"end\"},style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-n67hrm\",\"data-framer-name\":\"Section/FAQs\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xxj1\",\"data-framer-name\":\"Content Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f7a8ta\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1pgjgt9\",\"data-styles-preset\":\"PQmJW0QE2\",children:\"Growth Hack FAQ\"})}),className:\"framer-1guvx88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cik5j8\",\"data-styles-preset\":\"jCwDSJJGK\",children:\"Odpowiedzi na najcze\u015Bciej zadawane pytania\"})}),className:\"framer-vop7xn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+7829.5+80+0+0+265.6},qmKZde4mC:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+11335.2+60+0+0+265.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1299,width:`min(${componentViewport?.width||\"100vw\"} - 200px, 1000px)`,y:(componentViewport?.y||0)+0+0+0+8098.7+100+0+0+265.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rdcn4q-container\",nodeId:\"ihGZzBNLo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQs,{height:\"100%\",id:\"ihGZzBNLo\",layoutId:\"ihGZzBNLo\",style:{width:\"100%\"},swuYCgX81:\"beu9i3\",uAvxt0Kic:getLocalizedValue(\"v86\",activeLocale)??\"Growth hacker to kto\u015B, kto \u0142\u0105czy umiej\u0119tno\u015Bci z r\\xf3\u017Cnych dziedzin, takich jak marketing, analityka, technologia i psychologia konsumenta. Cz\u0119sto growth hackerzy maj\u0105 t\u0142o techniczne, ale r\\xf3wnie wa\u017Cne s\u0105 umiej\u0119tno\u015Bci analityczne i zrozumienie ludzkich motywacji.\\n\\nIch zadanie polega na szukaniu \u201Ehack\\xf3w\u201D, czyli niskokosztowych, ale efektywnych sposob\\xf3w na osi\u0105ganie wzrostu. To osoba, kt\\xf3ra stale testuje nowe hipotezy i optymalizuje procesy, aby zwi\u0119kszy\u0107 konwersje, liczb\u0119 u\u017Cytkownik\\xf3w, \u015Bredni\u0105 warto\u015B\u0107 koszyka (AOV - Average Order Value) czy powracalno\u015B\u0107 klient\\xf3w (retencj\u0119).\\n\\n\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{y:(componentViewport?.y||0)+0+0+0+9554.1},qmKZde4mC:{y:(componentViewport?.y||0)+0+0+0+13019.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:349,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+9863.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t5pb9j-container\",nodeId:\"UEyCkHpGo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{variant:\"jBu6adFWi\"},qmKZde4mC:{variant:\"IeWGVpG57\"}},children:/*#__PURE__*/_jsx(Footer3,{height:\"100%\",id:\"UEyCkHpGo\",layoutId:\"UEyCkHpGo\",style:{width:\"100%\"},variant:\"VWxPtXFp_\",wCafjUqsT:\"1e5ulr2\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"odPReBrej\"},implicitPathVariables:undefined},{href:{webPageId:\"odPReBrej\"},implicitPathVariables:undefined},{href:{webPageId:\"odPReBrej\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-83a7o6-container\",id:\"83a7o6\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZoXg2VYW9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HxrEupOZd:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"U\u017Cywamy plik\\xf3w cookie, aby zwi\u0119kszy\u0107 wygod\u0119 korzystania, analizowa\u0107 ruch w witrynie i dostarcza\u0107 spersonalizowane tre\u015Bci.\",euPolicy:{label:\"polityk\u0119 prywatno\u015Bci\",link:resolvedLinks12[1],prefix:\"Zobacz\"},euShowReject:true,euTitle:\"Ustawienia plik\\xf3w cookie\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"U\u017Cywamy plik\\xf3w cookie w celu personalizowania tre\u015Bci, wy\u015Bwietlania reklam i analizowania ruchu.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}},qmKZde4mC:{content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"U\u017Cywamy plik\\xf3w cookie, aby zwi\u0119kszy\u0107 wygod\u0119 korzystania, analizowa\u0107 ruch w witrynie i dostarcza\u0107 spersonalizowane tre\u015Bci.\",euPolicy:{label:\"polityk\u0119 prywatno\u015Bci\",link:resolvedLinks12[2],prefix:\"Zobacz\"},euShowReject:true,euTitle:\"Ustawienia plik\\xf3w cookie\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"U\u017Cywamy plik\\xf3w cookie w celu personalizowania tre\u015Bci, wy\u015Bwietlania reklam i analizowania ruchu.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"}}},children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"OK. Akceptuj\u0119\",acceptAll:\"Accept all\",confirm:\"OK\",customize:\"Customize\",reject:\"Nie\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 0, 0)\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"U\u017Cywamy plik\\xf3w cookie, aby zwi\u0119kszy\u0107 wygod\u0119 korzystania, analizowa\u0107 ruch w witrynie i dostarcza\u0107 spersonalizowane tre\u015Bci.\",euPolicy:{label:\"polityk\u0119 prywatno\u015Bci\",link:resolvedLinks12[0],prefix:\"Zobacz\"},euShowReject:true,euTitle:\"Ustawienia plik\\xf3w cookie\",euType:\"medium\",isEU:true,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"U\u017Cywamy plik\\xf3w cookie w celu personalizowania tre\u015Bci, wy\u015Bwietlania reklam i analizowania ruchu.\",worldPolicy:{label:\"Cookie Policy\",prefix:\"Read our\"},worldShowReject:true,worldTitle:\"Cookie Settings\",worldType:\"simple\"},gtmId:\"GTM-MHGN47TP\",height:\"100%\",id:\"ZoXg2VYW9\",layoutId:\"ZoXg2VYW9\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:true,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:true,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},type:\"text\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wqbWr.framer-lux5qc, .framer-wqbWr .framer-lux5qc { display: block; }\",\".framer-wqbWr.framer-72rtr7 { align-content: center; align-items: center; 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-wqbWr .framer-o2q167 { align-content: center; align-items: center; background-color: var(--token-012e9259-476e-4ce8-b232-f97a7a4ed06f, #0d0d0d); 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%; z-index: 1; }\",\".framer-wqbWr .framer-cuhjny { -webkit-filter: blur(100px); background: linear-gradient(180deg, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, #ff520e) -43%, var(--token-305af9d4-fe33-4ce3-9dac-e261fb045b39, rgb(255, 82, 14)) 100%); filter: blur(100px); flex: none; height: 212px; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: 0px; width: 1200px; z-index: 1; }\",\".framer-wqbWr .framer-xbpta2-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 2; }\",\".framer-wqbWr .framer-kct9qv, .framer-wqbWr .framer-mfieg8, .framer-wqbWr .framer-14ang5s, .framer-wqbWr .framer-qch4an, .framer-wqbWr .framer-cm4lp4, .framer-wqbWr .framer-17ql6o6 { align-content: center; align-items: center; background-color: var(--token-012e9259-476e-4ce8-b232-f97a7a4ed06f, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-16ppi1y, .framer-wqbWr .framer-zyx35y, .framer-wqbWr .framer-1920wcn, .framer-wqbWr .framer-117wasm, .framer-wqbWr .framer-1ia0wc, .framer-wqbWr .framer-1s68nxy, .framer-wqbWr .framer-xaqmho, .framer-wqbWr .framer-3xxj1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-wqbWr .framer-1gyo64x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-wqbWr .framer-s5q4h6, .framer-wqbWr .framer-1tqggsg, .framer-wqbWr .framer-16es1mp, .framer-wqbWr .framer-4nitid, .framer-wqbWr .framer-sbvoo6, .framer-wqbWr .framer-1v7v0o6, .framer-wqbWr .framer-199rk6r, .framer-wqbWr .framer-1stuqg4, .framer-wqbWr .framer-18pvfbu, .framer-wqbWr .framer-1ejun69, .framer-wqbWr .framer-1j4osbx, .framer-wqbWr .framer-i6xxpj, .framer-wqbWr .framer-bkwcc1, .framer-wqbWr .framer-7ia6kn, .framer-wqbWr .framer-1nnwbg0, .framer-wqbWr .framer-1b3b219, .framer-wqbWr .framer-15a8imd, .framer-wqbWr .framer-1guvx88, .framer-wqbWr .framer-vop7xn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wqbWr .framer-8vbgdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-wqbWr .framer-13j18f2-container { flex: none; height: 49px; position: relative; width: 167px; }\",\".framer-wqbWr .framer-1pf2nbs-container, .framer-wqbWr .framer-83a7o6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wqbWr .framer-1rr241x-container { flex: none; height: 155px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-wqbWr .framer-1x93q6c { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 94px; }\",\".framer-wqbWr .framer-jslqlw { flex: none; height: 113px; position: relative; width: 113px; }\",\".framer-wqbWr .framer-zsu4ns { height: 34px; overflow: hidden; position: relative; width: 93px; }\",\".framer-wqbWr .framer-zdxl3r { flex: none; height: 759px; left: calc(49.46236559139787% - 759px / 2); position: absolute; top: calc(47.05882352941179% - 759px / 2); width: 759px; }\",\".framer-wqbWr .framer-1p915xp { height: 46px; overflow: hidden; position: relative; width: 160px; }\",\".framer-wqbWr .framer-qvv238 { flex: none; height: 187px; position: absolute; right: -5px; top: calc(47.82608695652176% - 187px / 2); width: 164px; }\",\".framer-wqbWr .framer-xqkjqy { height: 38px; overflow: hidden; position: relative; width: 154px; }\",\".framer-wqbWr .framer-qwny7y { aspect-ratio: 1.7536231884057971 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); left: -12px; position: absolute; right: -4px; top: -30px; }\",\".framer-wqbWr .framer-2hlv4y { height: 48px; overflow: hidden; position: relative; width: 93px; }\",\".framer-wqbWr .framer-p97n1l { aspect-ratio: 1 / 1; bottom: -33px; flex: none; left: 46%; position: absolute; top: -26px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 107px); }\",\".framer-wqbWr .framer-1qix6f3 { height: 37px; overflow: hidden; position: relative; width: 140px; }\",\".framer-wqbWr .framer-be1a7s { aspect-ratio: 1 / 1; bottom: -58px; flex: none; height: var(--framer-aspect-ratio-supported, 151px); left: -9px; position: absolute; right: -2px; }\",\".framer-wqbWr .framer-1g8cy6w { align-content: center; align-items: center; background-color: var(--token-012e9259-476e-4ce8-b232-f97a7a4ed06f, #0d0d0d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 100px 100px 100px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-6b5y74 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-1qi55je, .framer-wqbWr .framer-gfaks8, .framer-wqbWr .framer-1kd84jb, .framer-wqbWr .framer-1exjesi, .framer-wqbWr .framer-1aojmej, .framer-wqbWr .framer-1t2aek9, .framer-wqbWr .framer-1f7a8ta { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-1e03026, .framer-wqbWr .framer-1vootbs, .framer-wqbWr .framer-pwlfgg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-526z89, .framer-wqbWr .framer-54xgj8, .framer-wqbWr .framer-zojs4l, .framer-wqbWr .framer-hnmajf, .framer-wqbWr .framer-159ygwp, .framer-wqbWr .framer-1wjc8nt, .framer-wqbWr .framer-lm1xvf { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-1gjftms-container, .framer-wqbWr .framer-1799fvv-container, .framer-wqbWr .framer-1ptht3f-container, .framer-wqbWr .framer-17jkbtf-container, .framer-wqbWr .framer-v9z7dq-container, .framer-wqbWr .framer-1tj0qc-container, .framer-wqbWr .framer-4wzkch-container, .framer-wqbWr .framer-13iloph-container, .framer-wqbWr .framer-pb3o1i-container, .framer-wqbWr .framer-xsnf9f-container, .framer-wqbWr .framer-19ceuto-container, .framer-wqbWr .framer-g3i0lh-container, .framer-wqbWr .framer-1o123oe-container, .framer-wqbWr .framer-1mhw93w-container, .framer-wqbWr .framer-tvzpbi-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-wqbWr .framer-qaas78-container { flex: none; height: 264px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-13ojwsf-container, .framer-wqbWr .framer-bpzyhj-container, .framer-wqbWr .framer-1jbchqh-container, .framer-wqbWr .framer-jpdo3k-container { height: auto; position: relative; width: auto; }\",\".framer-wqbWr .framer-1jqxpt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wqbWr .framer-1hy7j53-container, .framer-wqbWr .framer-t5pb9j-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wqbWr .framer-f965y9-container { height: 400px; position: relative; width: 320px; }\",\".framer-wqbWr .framer-n67hrm { 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: 100px; position: relative; width: 100%; }\",\".framer-wqbWr .framer-1rdcn4q-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wqbWr.framer-72rtr7, .framer-wqbWr .framer-o2q167, .framer-wqbWr .framer-kct9qv, .framer-wqbWr .framer-16ppi1y, .framer-wqbWr .framer-1gyo64x, .framer-wqbWr .framer-8vbgdk, .framer-wqbWr .framer-1x93q6c, .framer-wqbWr .framer-1g8cy6w, .framer-wqbWr .framer-zyx35y, .framer-wqbWr .framer-6b5y74, .framer-wqbWr .framer-mfieg8, .framer-wqbWr .framer-1920wcn, .framer-wqbWr .framer-1qi55je, .framer-wqbWr .framer-1e03026, .framer-wqbWr .framer-526z89, .framer-wqbWr .framer-54xgj8, .framer-wqbWr .framer-zojs4l, .framer-wqbWr .framer-14ang5s, .framer-wqbWr .framer-117wasm, .framer-wqbWr .framer-gfaks8, .framer-wqbWr .framer-1vootbs, .framer-wqbWr .framer-hnmajf, .framer-wqbWr .framer-159ygwp, .framer-wqbWr .framer-1wjc8nt, .framer-wqbWr .framer-qch4an, .framer-wqbWr .framer-1ia0wc, .framer-wqbWr .framer-1kd84jb, .framer-wqbWr .framer-cm4lp4, .framer-wqbWr .framer-1s68nxy, .framer-wqbWr .framer-1exjesi, .framer-wqbWr .framer-pwlfgg, .framer-wqbWr .framer-lm1xvf, .framer-wqbWr .framer-1aojmej, .framer-wqbWr .framer-17ql6o6, .framer-wqbWr .framer-xaqmho, .framer-wqbWr .framer-1t2aek9, .framer-wqbWr .framer-n67hrm, .framer-wqbWr .framer-3xxj1, .framer-wqbWr .framer-1f7a8ta { gap: 0px; } .framer-wqbWr.framer-72rtr7 > *, .framer-wqbWr .framer-o2q167 > *, .framer-wqbWr .framer-kct9qv > *, .framer-wqbWr .framer-1g8cy6w > *, .framer-wqbWr .framer-mfieg8 > *, .framer-wqbWr .framer-14ang5s > *, .framer-wqbWr .framer-qch4an > *, .framer-wqbWr .framer-cm4lp4 > *, .framer-wqbWr .framer-17ql6o6 > *, .framer-wqbWr .framer-n67hrm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wqbWr.framer-72rtr7 > :first-child, .framer-wqbWr .framer-o2q167 > :first-child, .framer-wqbWr .framer-kct9qv > :first-child, .framer-wqbWr .framer-16ppi1y > :first-child, .framer-wqbWr .framer-1gyo64x > :first-child, .framer-wqbWr .framer-1g8cy6w > :first-child, .framer-wqbWr .framer-zyx35y > :first-child, .framer-wqbWr .framer-6b5y74 > :first-child, .framer-wqbWr .framer-mfieg8 > :first-child, .framer-wqbWr .framer-1920wcn > :first-child, .framer-wqbWr .framer-1qi55je > :first-child, .framer-wqbWr .framer-1e03026 > :first-child, .framer-wqbWr .framer-14ang5s > :first-child, .framer-wqbWr .framer-117wasm > :first-child, .framer-wqbWr .framer-gfaks8 > :first-child, .framer-wqbWr .framer-1vootbs > :first-child, .framer-wqbWr .framer-qch4an > :first-child, .framer-wqbWr .framer-1ia0wc > :first-child, .framer-wqbWr .framer-1kd84jb > :first-child, .framer-wqbWr .framer-cm4lp4 > :first-child, .framer-wqbWr .framer-1s68nxy > :first-child, .framer-wqbWr .framer-1exjesi > :first-child, .framer-wqbWr .framer-pwlfgg > :first-child, .framer-wqbWr .framer-1aojmej > :first-child, .framer-wqbWr .framer-17ql6o6 > :first-child, .framer-wqbWr .framer-xaqmho > :first-child, .framer-wqbWr .framer-1t2aek9 > :first-child, .framer-wqbWr .framer-n67hrm > :first-child, .framer-wqbWr .framer-3xxj1 > :first-child, .framer-wqbWr .framer-1f7a8ta > :first-child { margin-top: 0px; } .framer-wqbWr.framer-72rtr7 > :last-child, .framer-wqbWr .framer-o2q167 > :last-child, .framer-wqbWr .framer-kct9qv > :last-child, .framer-wqbWr .framer-16ppi1y > :last-child, .framer-wqbWr .framer-1gyo64x > :last-child, .framer-wqbWr .framer-1g8cy6w > :last-child, .framer-wqbWr .framer-zyx35y > :last-child, .framer-wqbWr .framer-6b5y74 > :last-child, .framer-wqbWr .framer-mfieg8 > :last-child, .framer-wqbWr .framer-1920wcn > :last-child, .framer-wqbWr .framer-1qi55je > :last-child, .framer-wqbWr .framer-1e03026 > :last-child, .framer-wqbWr .framer-14ang5s > :last-child, .framer-wqbWr .framer-117wasm > :last-child, .framer-wqbWr .framer-gfaks8 > :last-child, .framer-wqbWr .framer-1vootbs > :last-child, .framer-wqbWr .framer-qch4an > :last-child, .framer-wqbWr .framer-1ia0wc > :last-child, .framer-wqbWr .framer-1kd84jb > :last-child, .framer-wqbWr .framer-cm4lp4 > :last-child, .framer-wqbWr .framer-1s68nxy > :last-child, .framer-wqbWr .framer-1exjesi > :last-child, .framer-wqbWr .framer-pwlfgg > :last-child, .framer-wqbWr .framer-1aojmej > :last-child, .framer-wqbWr .framer-17ql6o6 > :last-child, .framer-wqbWr .framer-xaqmho > :last-child, .framer-wqbWr .framer-1t2aek9 > :last-child, .framer-wqbWr .framer-n67hrm > :last-child, .framer-wqbWr .framer-3xxj1 > :last-child, .framer-wqbWr .framer-1f7a8ta > :last-child { margin-bottom: 0px; } .framer-wqbWr .framer-16ppi1y > *, .framer-wqbWr .framer-zyx35y > *, .framer-wqbWr .framer-1920wcn > *, .framer-wqbWr .framer-117wasm > *, .framer-wqbWr .framer-1ia0wc > *, .framer-wqbWr .framer-1s68nxy > *, .framer-wqbWr .framer-xaqmho > *, .framer-wqbWr .framer-3xxj1 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-wqbWr .framer-1gyo64x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wqbWr .framer-8vbgdk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wqbWr .framer-8vbgdk > :first-child, .framer-wqbWr .framer-1x93q6c > :first-child, .framer-wqbWr .framer-526z89 > :first-child, .framer-wqbWr .framer-54xgj8 > :first-child, .framer-wqbWr .framer-zojs4l > :first-child, .framer-wqbWr .framer-hnmajf > :first-child, .framer-wqbWr .framer-159ygwp > :first-child, .framer-wqbWr .framer-1wjc8nt > :first-child, .framer-wqbWr .framer-lm1xvf > :first-child { margin-left: 0px; } .framer-wqbWr .framer-8vbgdk > :last-child, .framer-wqbWr .framer-1x93q6c > :last-child, .framer-wqbWr .framer-526z89 > :last-child, .framer-wqbWr .framer-54xgj8 > :last-child, .framer-wqbWr .framer-zojs4l > :last-child, .framer-wqbWr .framer-hnmajf > :last-child, .framer-wqbWr .framer-159ygwp > :last-child, .framer-wqbWr .framer-1wjc8nt > :last-child, .framer-wqbWr .framer-lm1xvf > :last-child { margin-right: 0px; } .framer-wqbWr .framer-1x93q6c > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wqbWr .framer-6b5y74 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wqbWr .framer-1qi55je > *, .framer-wqbWr .framer-gfaks8 > *, .framer-wqbWr .framer-1kd84jb > *, .framer-wqbWr .framer-1exjesi > *, .framer-wqbWr .framer-1aojmej > *, .framer-wqbWr .framer-1t2aek9 > *, .framer-wqbWr .framer-1f7a8ta > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-wqbWr .framer-1e03026 > *, .framer-wqbWr .framer-1vootbs > *, .framer-wqbWr .framer-pwlfgg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wqbWr .framer-526z89 > *, .framer-wqbWr .framer-54xgj8 > *, .framer-wqbWr .framer-zojs4l > *, .framer-wqbWr .framer-hnmajf > *, .framer-wqbWr .framer-159ygwp > *, .framer-wqbWr .framer-1wjc8nt > *, .framer-wqbWr .framer-lm1xvf > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-wqbWr.framer-72rtr7 { width: 810px; } .framer-wqbWr .framer-cuhjny { width: 620px; } .framer-wqbWr .framer-kct9qv, .framer-wqbWr .framer-1g8cy6w, .framer-wqbWr .framer-mfieg8, .framer-wqbWr .framer-14ang5s, .framer-wqbWr .framer-qch4an, .framer-wqbWr .framer-cm4lp4, .framer-wqbWr .framer-17ql6o6, .framer-wqbWr .framer-n67hrm { padding: 80px 40px 80px 40px; } .framer-wqbWr .framer-6b5y74 { gap: 24px; } .framer-wqbWr .framer-1gjftms-container { align-self: stretch; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wqbWr .framer-6b5y74 { gap: 0px; } .framer-wqbWr .framer-6b5y74 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wqbWr .framer-6b5y74 > :first-child { margin-top: 0px; } .framer-wqbWr .framer-6b5y74 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-wqbWr.framer-72rtr7 { width: 390px; } .framer-wqbWr .framer-cuhjny { height: 460px; width: 280px; } .framer-wqbWr .framer-kct9qv, .framer-wqbWr .framer-1g8cy6w, .framer-wqbWr .framer-mfieg8, .framer-wqbWr .framer-14ang5s, .framer-wqbWr .framer-qch4an, .framer-wqbWr .framer-cm4lp4, .framer-wqbWr .framer-17ql6o6, .framer-wqbWr .framer-n67hrm { padding: 60px 20px 60px 20px; } .framer-wqbWr .framer-8vbgdk, .framer-wqbWr .framer-526z89, .framer-wqbWr .framer-54xgj8, .framer-wqbWr .framer-zojs4l, .framer-wqbWr .framer-hnmajf, .framer-wqbWr .framer-159ygwp, .framer-wqbWr .framer-1wjc8nt, .framer-wqbWr .framer-lm1xvf { flex-direction: column; } .framer-wqbWr .framer-13j18f2-container, .framer-wqbWr .framer-1pf2nbs-container { width: 100%; } .framer-wqbWr .framer-1rr241x-container { height: 129px; } .framer-wqbWr .framer-6b5y74 { gap: 20px; } .framer-wqbWr .framer-1gjftms-container, .framer-wqbWr .framer-1799fvv-container, .framer-wqbWr .framer-1ptht3f-container, .framer-wqbWr .framer-17jkbtf-container, .framer-wqbWr .framer-v9z7dq-container, .framer-wqbWr .framer-1tj0qc-container, .framer-wqbWr .framer-4wzkch-container, .framer-wqbWr .framer-13iloph-container, .framer-wqbWr .framer-pb3o1i-container, .framer-wqbWr .framer-xsnf9f-container, .framer-wqbWr .framer-19ceuto-container, .framer-wqbWr .framer-g3i0lh-container, .framer-wqbWr .framer-1o123oe-container, .framer-wqbWr .framer-1mhw93w-container, .framer-wqbWr .framer-tvzpbi-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wqbWr .framer-8vbgdk, .framer-wqbWr .framer-6b5y74, .framer-wqbWr .framer-526z89, .framer-wqbWr .framer-54xgj8, .framer-wqbWr .framer-zojs4l, .framer-wqbWr .framer-hnmajf, .framer-wqbWr .framer-159ygwp, .framer-wqbWr .framer-1wjc8nt, .framer-wqbWr .framer-lm1xvf { gap: 0px; } .framer-wqbWr .framer-8vbgdk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wqbWr .framer-8vbgdk > :first-child, .framer-wqbWr .framer-6b5y74 > :first-child, .framer-wqbWr .framer-526z89 > :first-child, .framer-wqbWr .framer-54xgj8 > :first-child, .framer-wqbWr .framer-zojs4l > :first-child, .framer-wqbWr .framer-hnmajf > :first-child, .framer-wqbWr .framer-159ygwp > :first-child, .framer-wqbWr .framer-1wjc8nt > :first-child, .framer-wqbWr .framer-lm1xvf > :first-child { margin-top: 0px; } .framer-wqbWr .framer-8vbgdk > :last-child, .framer-wqbWr .framer-6b5y74 > :last-child, .framer-wqbWr .framer-526z89 > :last-child, .framer-wqbWr .framer-54xgj8 > :last-child, .framer-wqbWr .framer-zojs4l > :last-child, .framer-wqbWr .framer-hnmajf > :last-child, .framer-wqbWr .framer-159ygwp > :last-child, .framer-wqbWr .framer-1wjc8nt > :last-child, .framer-wqbWr .framer-lm1xvf > :last-child { margin-bottom: 0px; } .framer-wqbWr .framer-6b5y74 > *, .framer-wqbWr .framer-526z89 > *, .framer-wqbWr .framer-54xgj8 > *, .framer-wqbWr .framer-zojs4l > *, .framer-wqbWr .framer-hnmajf > *, .framer-wqbWr .framer-159ygwp > *, .framer-wqbWr .framer-1wjc8nt > *, .framer-wqbWr .framer-lm1xvf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10241.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HxrEupOZd\":{\"layout\":[\"fixed\",\"auto\"]},\"qmKZde4mC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ivJJv6UFQ\":{\"pattern\":\":ivJJv6UFQ\",\"name\":\"hero\"},\"fQ1yMqfAq\":{\"pattern\":\":fQ1yMqfAq\",\"name\":\"\"},\"KG9LWa78V\":{\"pattern\":\":KG9LWa78V\",\"name\":\"process\"},\"HK9MXYWDt\":{\"pattern\":\":HK9MXYWDt\",\"name\":\"work\"},\"XUdEbIMR_\":{\"pattern\":\":XUdEbIMR_\",\"name\":\"services\"},\"OY_6IKL3S\":{\"pattern\":\":OY_6IKL3S\",\"name\":\"about\"},\"qr1rYPGWT\":{\"pattern\":\":qr1rYPGWT\",\"name\":\"faqs\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-wqbWr\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:10241.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...HeaderFonts,...ButtonFonts,...TickerFonts,...TileProcessFonts,...TileProjectFonts,...TestimonialFonts,...TileServiceFonts,...TileTeamMemberFonts,...CarouselFonts,...FAQsFonts,...Footer3Fonts,...CookieBannerFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"10241.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HxrEupOZd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qmKZde4mC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"ivJJv6UFQ\\\":{\\\"pattern\\\":\\\":ivJJv6UFQ\\\",\\\"name\\\":\\\"hero\\\"},\\\"fQ1yMqfAq\\\":{\\\"pattern\\\":\\\":fQ1yMqfAq\\\",\\\"name\\\":\\\"\\\"},\\\"KG9LWa78V\\\":{\\\"pattern\\\":\\\":KG9LWa78V\\\",\\\"name\\\":\\\"process\\\"},\\\"HK9MXYWDt\\\":{\\\"pattern\\\":\\\":HK9MXYWDt\\\",\\\"name\\\":\\\"work\\\"},\\\"XUdEbIMR_\\\":{\\\"pattern\\\":\\\":XUdEbIMR_\\\",\\\"name\\\":\\\"services\\\"},\\\"OY_6IKL3S\\\":{\\\"pattern\\\":\\\":OY_6IKL3S\\\",\\\"name\\\":\\\"about\\\"},\\\"qr1rYPGWT\\\":{\\\"pattern\\\":\\\":qr1rYPGWT\\\",\\\"name\\\":\\\"faqs\\\"}}\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "iGNORECursor", "image", "link", "width", "props", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "HcXl17phF", "qmgPsxnAx", "zizrr5g4i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerG3ahsW2qE", "withCSS", "G3ahsW2qE_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "authorSImage", "authorSName", "authorSRole", "height", "id", "text", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hqEKA4UbL", "MFqbol69n", "dGxw9Fvp8", "nxjYJm7is", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "SVG", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramermkqLv8f4I", "withCSS", "mkqLv8f4I_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonFonts", "getFonts", "BlLduBBWJ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonLabel", "description", "height", "id", "iGNORECursor", "link", "newTab", "planType", "point1", "point2", "point3", "point4", "point5", "point6", "price", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_humanReadableVariantMap_props_variant", "_ref7", "_ref8", "_ref9", "_ref10", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "aqjDFNtSh", "BLMMSc5AE", "fOsmDMmXP", "WNbhzSMBJ", "EvqyuZXFQ", "y5thXLVlQ", "B16AKMTvD", "sN3PhfBvr", "VLPEy2I_d", "NTCCp42Ny", "yTPGGjUXP", "Es9XOr3oc", "VJ9yFjxAq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "ComponentViewportProvider", "BlLduBBWJ_default", "css", "FramerNXIzh2yUk", "withCSS", "NXIzh2yUk_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFontsFromSharedStyle", "fonts", "UROKT2DsI_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "__FramerMetadata__", "ButtonFonts", "getFonts", "BlLduBBWJ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "UROKT2DsI_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "iGNORECursor", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "wCafjUqsT", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "LayoutGroup", "u", "cx", "SVG", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "css", "FramerUROKT2DsI", "withCSS", "UROKT2DsI_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "iGNORECursor", "image", "name1", "roleTitle", "socialLink", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hrdXEX8KF", "UUGP5C_MJ", "b1BbnoN9z", "Q0vfbbqMT", "OHrqErVNR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "enabledGestures", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "addPropertyOverrides", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FrameryK5nsU97t", "withCSS", "yK5nsU97t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "HeaderFonts", "getFonts", "IIrdkDili_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ButtonFonts", "BlLduBBWJ_default", "TickerFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "TileProcessFonts", "uRWsmD9qg_default", "TileProjectFonts", "G3ahsW2qE_default", "TestimonialFonts", "mkqLv8f4I_default", "TileServiceFonts", "NXIzh2yUk_default", "TileTeamMemberFonts", "yK5nsU97t_default", "CarouselFonts", "Carousel", "FAQsFonts", "rPqBwpqvL_default", "Footer3Fonts", "UROKT2DsI_default", "CookieBannerFonts", "CookieBanner", "CursorFonts", "ICoVow458_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "t", "animation4", "transition3", "animation5", "transition4", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition5", "cursor", "ICoVow458_default", "cursor2", "ICoVow458_default", "transition5", "cursor3", "cursor4", "Component", "props", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "getProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "serializationHash", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "cursor", "p", "GeneratedComponentContext", "variantClassNames", "u", "LayoutGroup", "HTMLStyle", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "IIrdkDili_default", "MotionDivWithOptimizedAppearEffect", "animation", "animation1", "getLocalizedValue", "x", "RichText2", "ResolveLinks", "resolvedLinks", "BlLduBBWJ_default", "resolvedLinks1", "ContainerWithOptimizedAppearEffect", "animation2", "animation3", "Ticker", "SVG", "transformTemplate1", "MotionDivWithFX", "transition3", "animation4", "transition4", "animation5", "resolvedLinks2", "uRWsmD9qg_default", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "G3ahsW2qE_default", "addImageAlt", "resolvedLinks7", "mkqLv8f4I_default", "resolvedLinks8", "NXIzh2yUk_default", "resolvedLinks9", "resolvedLinks10", "Carousel", "resolvedLinks11", "yK5nsU97t_default", "rPqBwpqvL_default", "UROKT2DsI_default", "resolvedLinks12", "CookieBanner", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "ButtonFonts", "TickerFonts", "TileProcessFonts", "TileProjectFonts", "TestimonialFonts", "TileServiceFonts", "TileTeamMemberFonts", "CarouselFonts", "FAQsFonts", "Footer3Fonts", "CookieBannerFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
