{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/0cy9mnES1mLEAP5GXD1b/XOESorcvElQ4K6dU73r9/KWZST0Ixx.js", "ssg:https://framerusercontent.com/modules/cMIb0kOWel5Ikn6dk9u7/yB5nqmTJ44Y4zjsDVBuL/PTrklOotB-0.js", "ssg:https://framerusercontent.com/modules/cMIb0kOWel5Ikn6dk9u7/yB5nqmTJ44Y4zjsDVBuL/PTrklOotB.js", "ssg:https://framerusercontent.com/modules/0Em85R3SY04gMevpFnNo/WLVgDJuhyyeGd6ztmyKi/Cookie_banner_gpt.js", "ssg:https://framerusercontent.com/modules/juNeb6idAbdmW9n22jAJ/3Vc2lCQsleNyHqu8U7og/LJIKAP1KM.js", "ssg:https://framerusercontent.com/modules/2dudWfBjfsa5EEjID3xP/NBybJiy7wOCz0ZWIpuhb/augiA20Il.js", "ssg:https://framerusercontent.com/modules/hUTZtkrAcjzvWxWkETK9/Bt2DDSeWe0QvckdONAFy/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay\",\"FR;InterDisplay-Bold\",\"FR;InterDisplay-BoldItalic\",\"FR;InterDisplay-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/THWAFHoAcmqLMy81E8hCSdziVKA.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/sQxGYWDlRkDr0eOKqiNRl6g5rs.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NNTAT1XAm8ZRkr824inYPkjNeL4.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/P2qr9PAWBt905929rHfxmneMUG0.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/2BmSa4TZZvFKAZg2DydxTbvKlTU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/djqIk3Er2JcAcz7Rup88BdINEw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/KMFW46iYsEZaUBwXbwPc9nQm71o.woff2\",weight:\"400\"}]}];export const css=['.framer-Ftae5 .framer-styles-preset-1wmu492:not(.rich-text-wrapper), .framer-Ftae5 .framer-styles-preset-1wmu492.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Ftae5 .framer-styles-preset-1wmu492:not(.rich-text-wrapper), .framer-Ftae5 .framer-styles-preset-1wmu492.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Ftae5 .framer-styles-preset-1wmu492:not(.rich-text-wrapper), .framer-Ftae5 .framer-styles-preset-1wmu492.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 18px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Ftae5 .framer-styles-preset-1wmu492:not(.rich-text-wrapper), .framer-Ftae5 .framer-styles-preset-1wmu492.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 14px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ftae5\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"Visualizza il caso di studio\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"In arrivo\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"Visita il sito web\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c60b0a0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/0cy9mnES1mLEAP5GXD1b/XOESorcvElQ4K6dU73r9/KWZST0Ixx.js\";import*as localizedValues from\"./PTrklOotB-0.js\";const cycleOrder=[\"Lsi1gFLaz\",\"nlgKsajYg\",\"wQtM2FeVg\",\"DmTw0QccM\"];const serializationHash=\"framer-UukoA\";const variantClassNames={DmTw0QccM:\"framer-v-18w0ea8\",Lsi1gFLaz:\"framer-v-1n1aixg\",nlgKsajYg:\"framer-v-pjj73z\",wQtM2FeVg:\"framer-v-axqd5n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={vVbyR08m8: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??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 humanReadableVariantMap={\"case study\":\"nlgKsajYg\",\"coming soon\":\"wQtM2FeVg\",default:\"Lsi1gFLaz\",website:\"DmTw0QccM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Lsi1gFLaz\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Lsi1gFLaz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"nlgKsajYg\",\"wQtM2FeVg\",\"DmTw0QccM\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1n1aixg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"default\",layoutDependency:layoutDependency,layoutId:\"Lsi1gFLaz\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-9f5cfdbd-d2ec-49ed-acd3-7a78ba708a8d, rgb(253, 253, 253))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"none\",backgroundColor:\"rgba(252, 252, 252, 0.7)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,WebkitBackdropFilter:\"none\",...style},variants:{DmTw0QccM:{\"--border-color\":\"rgba(36, 36, 36, 0.8)\",backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"},nlgKsajYg:{\"--border-color\":\"rgba(36, 36, 36, 0.8)\",backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"},wQtM2FeVg:{\"--border-color\":\"rgba(36, 36, 36, 0.8)\",backdropFilter:\"blur(5px)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({DmTw0QccM:{\"data-framer-name\":\"website\"},nlgKsajYg:{\"data-framer-name\":\"case study\"},wQtM2FeVg:{\"data-framer-name\":\"coming soon\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"View case study\"})}),className:\"framer-dblrhe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lXW_ANSgR\",style:{\"--extracted-r6o4lv\":\"rgba(36, 36, 36, 0.8)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DmTw0QccM:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"Visit website\"})})},wQtM2FeVg:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1wmu492\",\"data-styles-preset\":\"KWZST0Ixx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(36, 36, 36, 0.8))\"},children:\"Coming soon\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UukoA.framer-134ka2y, .framer-UukoA .framer-134ka2y { display: block; }\",\".framer-UukoA.framer-1n1aixg { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 32px; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UukoA .framer-dblrhe { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UukoA.framer-1n1aixg { gap: 0px; } .framer-UukoA.framer-1n1aixg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-UukoA.framer-1n1aixg > :first-child { margin-left: 0px; } .framer-UukoA.framer-1n1aixg > :last-child { margin-right: 0px; } }\",\".framer-UukoA.framer-v-pjj73z.framer-1n1aixg, .framer-UukoA.framer-v-axqd5n.framer-1n1aixg, .framer-UukoA.framer-v-18w0ea8.framer-1n1aixg { align-content: center; align-items: center; width: min-content; }\",\".framer-UukoA.framer-v-pjj73z .framer-dblrhe, .framer-UukoA.framer-v-axqd5n .framer-dblrhe, .framer-UukoA.framer-v-18w0ea8 .framer-dblrhe { order: 0; }\",...sharedStyle.css,'.framer-UukoA[data-border=\"true\"]::after, .framer-UukoA [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 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nlgKsajYg\":{\"layout\":[\"auto\",\"fixed\"]},\"wQtM2FeVg\":{\"layout\":[\"auto\",\"fixed\"]},\"DmTw0QccM\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPTrklOotB=withCSS(Component,css,\"framer-UukoA\");export default FramerPTrklOotB;FramerPTrklOotB.displayName=\"cursor\";FramerPTrklOotB.defaultProps={height:32,width:32};addPropertyControls(FramerPTrklOotB,{variant:{options:[\"Lsi1gFLaz\",\"nlgKsajYg\",\"wQtM2FeVg\",\"DmTw0QccM\"],optionTitles:[\"default\",\"case study\",\"coming soon\",\"website\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPTrklOotB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPTrklOotB\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nlgKsajYg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wQtM2FeVg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"DmTw0QccM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";export function CookieBanner(props){const{title,description,linkLabel,linkUrl,minimized,backgroundColor,textColor,buttonColor,buttonTextColor,borderRadius,icon,closeIcon,iconColor,closeIconColor,expandedWidth,expandedHeight,isFullWidthMobile,customButtonComponent}=props;const[isMinimized,setIsMinimized]=React.useState(minimized);const toggleBanner=event=>{if(event)event.stopPropagation();setIsMinimized(!isMinimized);};const acceptCookies=event=>{event.stopPropagation();document.cookie=\"consent=true; path=/; max-age=\"+30*24*60*60;document.getElementById(\"cookieBanner\").style.display=\"none\";};const bannerWidth=isMinimized?\"32px\":expandedWidth;const bannerHeight=isMinimized?\"32px\":expandedHeight;const mobileFullWidth=isFullWidthMobile?\"100vw\":expandedWidth;return /*#__PURE__*/_jsxs(Frame,{id:\"cookieBanner\",background:backgroundColor,radius:borderRadius,style:{position:\"fixed\",bottom:\"10px\",left:\"10px\",display:\"flex\",flexDirection:\"column\",padding:isMinimized?\"0px\":\"20px\",width:isMinimized?\"32px\":bannerWidth,height:isMinimized?\"32px\":bannerHeight,borderRadius:isMinimized?\"50%\":borderRadius,justifyContent:isMinimized?\"center\":\"flex-start\",alignItems:isMinimized?\"center\":\"flex-start\",cursor:isMinimized?\"pointer\":\"default\",overflow:\"hidden\",transition:\"all 0.3s ease\"},onClick:()=>isMinimized&&toggleBanner(),whileHover:{cursor:\"pointer\"},width:isMinimized?\"32px\":mobileFullWidth,children:[isMinimized&&/*#__PURE__*/_jsx(\"span\",{id:\"cookieIcon\",style:{fontSize:\"24px\",color:iconColor,display:isMinimized?\"block\":\"none\"},children:icon||\"\uD83C\uDF6A\"}),!isMinimized&&/*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\"},children:[/*#__PURE__*/_jsx(\"h3\",{style:{margin:0,color:textColor},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{color:textColor},children:description}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",gap:\"8px\",flexWrap:\"wrap\"},children:[/*#__PURE__*/_jsx(\"a\",{href:linkUrl,target:\"_blank\",style:{fontWeight:\"bold\",textDecoration:\"none\",backgroundColor:\"transparent\",color:textColor},children:linkLabel}),customButtonComponent?customButtonComponent:/*#__PURE__*/_jsx(\"button\",{onClick:acceptCookies,style:{fontWeight:\"bold\",backgroundColor:buttonColor,color:buttonTextColor,border:\"none\",borderRadius:\"12px\",padding:\"10px 20px\",cursor:\"pointer\"},children:\"Accetta\"})]}),/*#__PURE__*/_jsx(\"button\",{onClick:event=>toggleBanner(event),style:{position:\"absolute\",top:\"8px\",right:\"8px\",fontSize:\"24px\",background:\"none\",border:\"none\",color:closeIconColor,cursor:\"pointer\"},children:closeIcon||\"\u2716\"})]})]});}// Propriet\u00E0 personalizzabili in Framer\naddPropertyControls(CookieBanner,{title:{type:ControlType.String,title:\"Titolo\",defaultValue:\"Avviso sui cookie\"},description:{type:ControlType.String,title:\"Descrizione\",defaultValue:\"Usiamo cookie per migliorare il sito.\"},linkLabel:{type:ControlType.String,title:\"Testo del link\",defaultValue:\"Scopri di pi\\xf9\"},linkUrl:{type:ControlType.String,title:\"URL del link\",defaultValue:\"https://filmedbyired.framer.website/cookie-policy\"},minimized:{type:ControlType.Boolean,title:\"Minimizzato all'avvio\",defaultValue:true},backgroundColor:{type:ControlType.Color,title:\"Colore di sfondo\",defaultValue:\"#FFFFFF\"},textColor:{type:ControlType.Color,title:\"Colore del testo\",defaultValue:\"#333333\"},buttonColor:{type:ControlType.Color,title:\"Colore del bottone\",defaultValue:\"#000000\"},buttonTextColor:{type:ControlType.Color,title:\"Colore del testo bottone\",defaultValue:\"#FFFFFF\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10,min:0,max:50},expandedWidth:{type:ControlType.String,title:\"Larghezza espanso\",defaultValue:\"300px\"},expandedHeight:{type:ControlType.String,title:\"Altezza espanso\",defaultValue:\"auto\"},isFullWidthMobile:{type:ControlType.Boolean,title:\"Full-width su mobile\",defaultValue:true},customButtonComponent:{type:ControlType.ComponentInstance,title:\"Componente Button\"},icon:{type:ControlType.String,title:\"Icona cookie\",defaultValue:\"\uD83C\uDF6A\"},closeIcon:{type:ControlType.String,title:\"Icona chiusura\",defaultValue:\"\u2716\"},iconColor:{type:ControlType.Color,title:\"Colore icona cookie\",defaultValue:\"#333333\"},closeIconColor:{type:ControlType.Color,title:\"Colore icona chiusura\",defaultValue:\"#333333\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"CookieBanner\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Cookie_banner_gpt.map", "// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay\",\"FR;InterDisplay-Bold\",\"FR;InterDisplay-BoldItalic\",\"FR;InterDisplay-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",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/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",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/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",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/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",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/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",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/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/THWAFHoAcmqLMy81E8hCSdziVKA.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/sQxGYWDlRkDr0eOKqiNRl6g5rs.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NNTAT1XAm8ZRkr824inYPkjNeL4.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/P2qr9PAWBt905929rHfxmneMUG0.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/2BmSa4TZZvFKAZg2DydxTbvKlTU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/djqIk3Er2JcAcz7Rup88BdINEw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/KMFW46iYsEZaUBwXbwPc9nQm71o.woff2\",weight:\"400\"}]}];export const css=['.framer-pUd0h .framer-styles-preset-12hh87q:not(.rich-text-wrapper), .framer-pUd0h .framer-styles-preset-12hh87q.rich-text-wrapper h3 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 48px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1919px) and (min-width: 1440px) { .framer-pUd0h .framer-styles-preset-12hh87q:not(.rich-text-wrapper), .framer-pUd0h .framer-styles-preset-12hh87q.rich-text-wrapper h3 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 38px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 810px) { .framer-pUd0h .framer-styles-preset-12hh87q:not(.rich-text-wrapper), .framer-pUd0h .framer-styles-preset-12hh87q.rich-text-wrapper h3 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-pUd0h .framer-styles-preset-12hh87q:not(.rich-text-wrapper), .framer-pUd0h .framer-styles-preset-12hh87q.rich-text-wrapper h3 { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 36px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-71c986cd-4618-4aab-a2b1-d51337131971, #fdfdfd); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-pUd0h\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={vVbyR08m8: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\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import DirectionalButton from\"#framer/local/canvasComponent/D1bzh06Zy/D1bzh06Zy.js\";import NavBar from\"#framer/local/canvasComponent/p3K9U4Slk/p3K9U4Slk.js\";import Cursor from\"#framer/local/canvasComponent/PTrklOotB/PTrklOotB.js\";import NextProjectButton from\"#framer/local/canvasComponent/pZ42UhtxE/pZ42UhtxE.js\";import{CookieBanner}from\"#framer/local/codeFile/Lh4cL5m/Cookie_banner_gpt.js\";import*as sharedStyle1 from\"#framer/local/css/DyNwNCX6S/DyNwNCX6S.js\";import*as sharedStyle3 from\"#framer/local/css/l2oQbN2p1/l2oQbN2p1.js\";import*as sharedStyle4 from\"#framer/local/css/LJIKAP1KM/LJIKAP1KM.js\";import*as sharedStyle2 from\"#framer/local/css/XJQ2dDn7c/XJQ2dDn7c.js\";import*as sharedStyle from\"#framer/local/css/zCaak1LPA/zCaak1LPA.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavBarFonts=getFonts(NavBar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const DirectionalButtonFonts=getFonts(DirectionalButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const MotionAWithFX=withFX(motion.a);const TickerFonts=getFonts(Ticker);const CookieBannerFonts=getFonts(CookieBanner);const NextProjectButtonFonts=getFonts(NextProjectButton);const CursorFonts=getFonts(Cursor);const breakpoints={Dm36GiKdw:\"(min-width: 1920px)\",Kj9PSfug2:\"(min-width: 1200px) and (max-width: 1439px)\",umG7KXCKX:\"(max-width: 809px)\",WCzquG8Cd:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px) and (max-width: 1919px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SRRvu\";const variantClassNames={Dm36GiKdw:\"framer-v-1di6r4m\",Kj9PSfug2:\"framer-v-g16tu8\",umG7KXCKX:\"framer-v-1vvsvfs\",WCzquG8Cd:\"framer-v-15zvg8l\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:50,delay:5,mass:1,stiffness:240,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:-127};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation4={filter:\"blur(2px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={damping:60,delay:.05,mass:1,stiffness:240,type:\"spring\"};const textEffect={effect:animation4,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={damping:60,delay:.02,mass:1,stiffness:240,type:\"spring\"};const textEffect1={effect:animation4,startDelay:1.5,tokenization:\"character\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={damping:50,delay:5.3,mass:1,stiffness:240,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:100};const transition6={damping:50,delay:5.5,mass:1,stiffness:240,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:100};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition8={damping:40,delay:0,mass:6,stiffness:240,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:150};const transition9={damping:40,delay:.1,mass:6,stiffness:240,type:\"spring\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:150};const transition10={damping:40,delay:.2,mass:6,stiffness:240,type:\"spring\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:150};const transition11={damping:40,delay:.3,mass:6,stiffness:240,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:150};const transition12={damping:40,delay:.4,mass:6,stiffness:240,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:150};const transition13={damping:40,delay:.5,mass:6,stiffness:240,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:150};const transition14={damping:40,delay:.6,mass:6,stiffness:240,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:150};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition15={damping:6,delay:1.5,mass:1.5,stiffness:1e3,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"2XLarge\":\"Dm36GiKdw\",Desktop:\"Kj9PSfug2\",Phone:\"umG7KXCKX\",Tablet:\"WCzquG8Cd\",XLarge:\"WQLkyLRf1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition16={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={component:Cursor,transition:transition16,variant:\"Lsi1gFLaz\"};const transition17={damping:40,delay:0,mass:2,stiffness:800,type:\"spring\"};const cursor1={component:Cursor,transition:transition17,variant:\"nlgKsajYg\"};const cursor2={component:Cursor,transition:transition17,variant:\"DmTw0QccM\"};const cursor3={component:Cursor,transition:transition17,variant:\"wQtM2FeVg\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"z1BcmkWeX\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId1=useRouteElementId(\"muazxxKjm\");const ref2=React.useRef(null);useCustomCursors({\"10r3isy\":cursor,\"1u5h7dt\":cursor3,c7b5c:cursor2,q9erat:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(18, 18, 18); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"10r3isy\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-170l6i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WgPZrX3vh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"WgPZrX3vh\",intensity:15,layoutId:\"WgPZrX3vh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:128,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-ewhrgn-container\",\"data-framer-appear-id\":\"ewhrgn\",initial:animation1,layoutScroll:true,nodeId:\"XmonWLc0T\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{variant:\"WYiDVefuv\"},WCzquG8Cd:{variant:\"MrdTMX95v\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"XmonWLc0T\",layoutId:\"XmonWLc0T\",style:{width:\"100%\"},variant:\"tN_VxoDVV\",vn_c8cDDF:\"rgba(18, 18, 18, 0.8)\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0nzv9\",\"data-framer-name\":\"hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1609my5\",\"data-framer-appear-id\":\"1609my5\",\"data-framer-name\":\"content\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tancuy\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xh50vf\",\"data-styles-preset\":\"zCaak1LPA\",style:{\"--framer-text-color\":\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(253, 253, 253))\"},children:\"Hi, I'm Alessio!\"})}),className:\"framer-13rniax\",\"data-framer-name\":\"title\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:[\"I am a Product Designer, and Design Mentor based in Milano, Italy, with 6+ years of experience in building \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-03ed7a79-bb00-4876-9b7f-c678ce749868, rgb(253, 83, 213))\"},children:\"SaaS\"}),\" products, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-03ed7a79-bb00-4876-9b7f-c678ce749868, rgb(253, 83, 213))\"},children:\"Design Systems\"}),\".\"]})}),className:\"framer-qfkyqj\",\"data-framer-name\":\"description\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+200+120+0+80+180},WCzquG8Cd:{y:(componentViewport?.y||0)+0+200+120+0+80+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+200+120+0+120+180,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1hk6uk5-container\",\"data-framer-appear-id\":\"1hk6uk5\",initial:animation6,nodeId:\"BJOI4Zalp\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DirectionalButton,{height:\"100%\",id:\"BJOI4Zalp\",layoutId:\"BJOI4Zalp\",variant:\"SOlp4wK50\",VFWSbtJjw:\"mailto: ale.schettino92@gmail.com\",width:\"100%\",y4MxhqV6p:getLocalizedValue(\"v2\",activeLocale)??\"Get in touch\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{__framer__styleAppearEffectEnabled:undefined,animate:animation2,initial:animation3,optimized:true}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yyo5cp\",\"data-framer-appear-id\":\"1yyo5cp\",\"data-framer-name\":\"selected projects\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-a9ez8w\",\"data-framer-appear-id\":\"a9ez8w\",\"data-framer-name\":\"content\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j8yi2o\",\"data-framer-name\":\"display text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 25.481 6.519 L 6.519 25.481 M 6.519 25.481 L 6.519 6.519 M 4.741 25.481 L 25.481 25.481\" fill=\"transparent\" stroke-width=\"3.56\" stroke=\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(253, 253, 253)) /* {&quot;name&quot;:&quot;Content/Primary&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:10652991181},WCzquG8Cd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 38.222 9.778 L 9.778 38.222 M 9.778 38.222 L 9.778 9.778 M 7.111 38.222 L 38.222 38.222\" fill=\"transparent\" stroke-width=\"5.33\" stroke=\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(253, 253, 253)) /* {&quot;name&quot;:&quot;Content/Primary&quot;} */\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:11433822191}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qo7zz1\",\"data-framer-name\":\"icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 54 54\"><path d=\"M 43 11 L 11 43 M 11 43 L 11 11 M 8 43 L 43 43\" fill=\"transparent\" stroke-width=\"6\" stroke=\"var(--token-71c986cd-4618-4aab-a2b1-d51337131971, rgb(253, 253, 253)) /* {&quot;name&quot;:&quot;Content/Primary&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8785581960,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Selected projects\"})})}),className:\"framer-68zqj8\",\"data-framer-name\":\"title\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"right\"},children:\"Most of my work is under NDA.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"right\"},children:\"Please reach out for further information\"})]}),className:\"framer-1r0y7sc\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gye429\",\"data-framer-name\":\"case studies\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbxn21\",\"data-framer-name\":\"media left\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12k6hq5\",\"data-framer-cursor\":\"q9erat\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CZJuqrc48\"},motionChild:true,nodeId:\"exqs7SUjd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:getLocalizedValue(\"v5\",activeLocale)??\"SaaS product design project\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1168+0+0+0+376+0),pixelHeight:1080,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"343px\",src:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png\",srcSet:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png?scale-down-to=1024 910w,https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png 960w\"}},WCzquG8Cd:{background:{alt:getLocalizedValue(\"v5\",activeLocale)??\"SaaS product design project\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1208+0+0+0+396+0),pixelHeight:1080,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png\",srcSet:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png?scale-down-to=1024 910w,https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:getLocalizedValue(\"v5\",activeLocale)??\"SaaS product design project\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1250+0+0+0+0),pixelHeight:1080,pixelWidth:960,positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png\",srcSet:\"https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png?scale-down-to=1024 910w,https://framerusercontent.com/images/g84YPBiJwoiF2NDasMPZsdVNqk.png 960w\"},className:\"framer-1qbgkua framer-lux5qc\",\"data-framer-name\":\"Case study image\",whileHover:animation11})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r58b7u\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9um0y\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WCzquG8Cd:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"right\"},children:\"SaaS Product Design project\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"SaaS Product Design project\"})}),className:\"framer-clgchh\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"left\"},children:\"Product Design of an entire suite both desktop and mobile\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"right\"},children:\"Product Design of an entire suite both desktop and mobile\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:\"Product Design of an entire suite both desktop and mobile\"})}),className:\"framer-17yl2kz\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CZJuqrc48\"},implicitPathVariables:undefined},{href:{webPageId:\"CZJuqrc48\"},implicitPathVariables:undefined},{href:{webPageId:\"CZJuqrc48\"},implicitPathVariables:undefined},{href:{webPageId:\"CZJuqrc48\"},implicitPathVariables:undefined},{href:{webPageId:\"CZJuqrc48\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+1168+0+0+0+0+0+288},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1208+0+0+0+0+0+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1250+0+0+102+0+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14by44t-container\",nodeId:\"pvYySX6BI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Dm36GiKdw:{VFWSbtJjw:resolvedLinks[3]},Kj9PSfug2:{VFWSbtJjw:resolvedLinks[1]},umG7KXCKX:{VFWSbtJjw:resolvedLinks[2]},WCzquG8Cd:{VFWSbtJjw:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(DirectionalButton,{height:\"100%\",id:\"pvYySX6BI\",layoutId:\"pvYySX6BI\",variant:\"SOlp4wK50\",VFWSbtJjw:resolvedLinks[0],width:\"100%\",y4MxhqV6p:getLocalizedValue(\"v11\",activeLocale)??\"View case study\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ovxjq7\",\"data-framer-name\":\"media right\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uy3soj\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w2ls3z\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"Design System project\"})}),className:\"framer-ngzqe9\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:\"Building of a brand new Design System for a medical SaaS\"})}),className:\"framer-51ga0y\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"d9ffv8oX3\"},implicitPathVariables:undefined},{href:{webPageId:\"d9ffv8oX3\"},implicitPathVariables:undefined},{href:{webPageId:\"d9ffv8oX3\"},implicitPathVariables:undefined},{href:{webPageId:\"d9ffv8oX3\"},implicitPathVariables:undefined},{href:{webPageId:\"d9ffv8oX3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+1168+0+1036+0+0+0+288},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1208+0+1056+0+0+0+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1250+0+660+102+0+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-on3szy-container\",nodeId:\"SGPOmoVLd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Dm36GiKdw:{VFWSbtJjw:resolvedLinks1[3]},Kj9PSfug2:{VFWSbtJjw:resolvedLinks1[1]},umG7KXCKX:{VFWSbtJjw:resolvedLinks1[2]},WCzquG8Cd:{VFWSbtJjw:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(DirectionalButton,{height:\"100%\",id:\"SGPOmoVLd\",layoutId:\"SGPOmoVLd\",variant:\"SOlp4wK50\",VFWSbtJjw:resolvedLinks1[0],width:\"100%\",y4MxhqV6p:getLocalizedValue(\"v11\",activeLocale)??\"View case study\"})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1juln78\",\"data-framer-cursor\":\"q9erat\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d9ffv8oX3\"},motionChild:true,nodeId:\"C4CBhoR8y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"design system project\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1168+0+1036+0+376+135),pixelHeight:1080,pixelWidth:960,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px)`,src:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=1024 910w,https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png 960w\"}},WCzquG8Cd:{background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"design system project\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1208+0+1056+0+396+135),pixelHeight:1080,pixelWidth:960,sizes:\"480px\",src:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=1024 910w,https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:getLocalizedValue(\"v14\",activeLocale)??\"design system project\",fit:\"fill\",intrinsicHeight:270,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1250+0+660+0+135),pixelHeight:1080,pixelWidth:960,sizes:\"480px\",src:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png?scale-down-to=1024 910w,https://framerusercontent.com/images/I1iFSptE1t0Br8nGGa3sEGsah6U.png 960w\"},className:\"framer-c7wj7e framer-lux5qc\",\"data-framer-name\":\"image\",whileHover:animation11})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14g6hpl\",\"data-framer-name\":\"centered text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-j7nu7k\",\"data-framer-name\":\"content\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:[\"Every product I design is \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-03ed7a79-bb00-4876-9b7f-c678ce749868, rgb(253, 83, 213))\"},children:\"tailored to the needs\"}),\" of my clients and users.\"]}),/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1thlxz2\",\"data-styles-preset\":\"DyNwNCX6S\",children:[\"I always aim for creating an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-03ed7a79-bb00-4876-9b7f-c678ce749868, rgb(253, 83, 213))\"},children:\"effortless experience\"}),\" on any device, allowing the design to stand out \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-03ed7a79-bb00-4876-9b7f-c678ce749868, rgb(253, 83, 213))\"},children:\"without unnecessary complexity.\"})]})]}),className:\"framer-1jusxpd\",\"data-framer-name\":\"headline\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r551v\",\"data-framer-name\":\"Media left\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-333o88\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1op2gel\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"Creatorz\"})}),className:\"framer-17fzooj\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:\"Creatorz is an italian community for content creators dedicated to short videos.\"})}),className:\"framer-1owpspn\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+1168+0+2376+0+0+0+304},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1208+0+2496+0+0+0+304}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1250+0+1784+94+0+304,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9fwpdg-container\",nodeId:\"BzxyZyXQB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DirectionalButton,{height:\"100%\",id:\"BzxyZyXQB\",layoutId:\"BzxyZyXQB\",variant:\"SOlp4wK50\",VFWSbtJjw:\"https://www.filmedbyired.com/creatorz\",width:\"100%\",y4MxhqV6p:getLocalizedValue(\"v18\",activeLocale)??\"Visit website\"})})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.filmedbyired.com/creatorz\",motionChild:true,nodeId:\"xwk_kfr42\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5ml8ej framer-lux5qc\",\"data-framer-cursor\":\"c7b5c\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13qzja6\",\"data-framer-name\":\"hero text\",whileHover:animation11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"C\"})})},umG7KXCKX:{children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"C\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"C\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"C\"})}),className:\"framer-1vfc12l\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})},umG7KXCKX:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})}),className:\"framer-tbxkio\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"E\"})})},umG7KXCKX:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"E\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"E\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"E\"})}),className:\"framer-pfsahd\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"A\"})})},umG7KXCKX:{children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"A\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"A\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"A\"})}),className:\"framer-1u61wau\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"T\"})})},umG7KXCKX:{children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"T\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"T\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"T\"})}),className:\"framer-7afnm5\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"O\"})})},umG7KXCKX:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"O\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"O\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"O\"})}),className:\"framer-suyce3\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})},umG7KXCKX:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-bb03b9a8-e7b8-41af-b831-65f7ba55e0b0, rgb(241, 245, 249))\"},children:\"R\"})}),className:\"framer-1oo4aez\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Kj9PSfug2:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b99d0fd4-c8d7-4185-8103-414dfbc1a9e6, rgb(225, 29, 72))\"},children:\"Z\"})})},umG7KXCKX:{children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b99d0fd4-c8d7-4185-8103-414dfbc1a9e6, rgb(225, 29, 72))\"},children:\"Z\"})})},WCzquG8Cd:{children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b99d0fd4-c8d7-4185-8103-414dfbc1a9e6, rgb(225, 29, 72))\"},children:\"Z\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation20,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ibGFjaw==\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"140px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b99d0fd4-c8d7-4185-8103-414dfbc1a9e6, rgb(225, 29, 72))\"},children:\"Z\"})}),className:\"framer-92um0\",\"data-framer-name\":\"Creatorz\",fonts:[\"FS;Montserrat-black\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3gaes8\",\"data-framer-name\":\"Media left\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fd145u\",\"data-framer-cursor\":\"1u5h7dt\",\"data-framer-name\":\"image container\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-esc4dd\",\"data-framer-name\":\"overlay\",whileHover:animation11,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12hh87q\",\"data-styles-preset\":\"LJIKAP1KM\",children:\"Case study\"})}),className:\"framer-18jvi5\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"Coming soon\"})}),className:\"framer-zkre2i\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nawiyd\",\"data-framer-name\":\"tickers wrapper\",style:{rotate:-15},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jp4500\",\"data-framer-name\":\"ticker container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ysimau-container\",isModuleExternal:true,nodeId:\"xbM_x_vZi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{gap:10}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"xbM_x_vZi\",layoutId:\"xbM_x_vZi\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/umUq8LGYQePtpVuXgA1mQV2O1w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/umUq8LGYQePtpVuXgA1mQV2O1w.png?scale-down-to=512 512w,https://framerusercontent.com/images/umUq8LGYQePtpVuXgA1mQV2O1w.png 848w\"},className:\"framer-azxjb2\",\"data-framer-name\":\"ticker_image_01\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/55w4da5uFoZd0Nph60xe0MaXgXA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/55w4da5uFoZd0Nph60xe0MaXgXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/55w4da5uFoZd0Nph60xe0MaXgXA.png 848w\"},className:\"framer-1lxf8ve\",\"data-framer-name\":\"ticker_image_02\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/KUPTDt9nBCLPSKWkrdT4ICiY6U0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KUPTDt9nBCLPSKWkrdT4ICiY6U0.png?scale-down-to=512 512w,https://framerusercontent.com/images/KUPTDt9nBCLPSKWkrdT4ICiY6U0.png 848w\"},className:\"framer-1gjw5wm\",\"data-framer-name\":\"ticker_image_03\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-equzu2\",\"data-framer-name\":\"ticker container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bnwcda-container\",isModuleExternal:true,nodeId:\"bRtEaN_oR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{gap:10}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"bRtEaN_oR\",layoutId:\"bRtEaN_oR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/qOeYzZw5ldZjb05UvHgPsl7xTyM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qOeYzZw5ldZjb05UvHgPsl7xTyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOeYzZw5ldZjb05UvHgPsl7xTyM.png 848w\"},className:\"framer-jwx78o\",\"data-framer-name\":\"ticker_image_04\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lcsuvw-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"gcVQw7Ter\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CookieBanner,{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:10,buttonColor:\"rgb(0, 0, 0)\",buttonTextColor:\"rgb(255, 255, 255)\",closeIcon:\"\u2716\",closeIconColor:\"rgb(51, 51, 51)\",customButtonComponent:[],description:\"Usiamo cookie per migliorare il sito.\",expandedHeight:\"auto\",expandedWidth:\"300px\",height:\"100%\",icon:\"\uD83C\uDF6A\",iconColor:\"rgb(51, 51, 51)\",id:\"gcVQw7Ter\",isFullWidthMobile:true,layoutId:\"gcVQw7Ter\",linkLabel:\"Scopri di pi\\xf9\",linkUrl:\"https://filmedbyired.framer.website/cookie-policy\",minimized:true,textColor:\"rgb(51, 51, 51)\",title:\"Avviso sui cookie\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/hwj69BirUdFMcevtZGCHj9EKb0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hwj69BirUdFMcevtZGCHj9EKb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/hwj69BirUdFMcevtZGCHj9EKb0.png 848w\"},className:\"framer-ywu4tq\",\"data-framer-name\":\"ticker_image_05\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424,pixelHeight:610,pixelWidth:848,sizes:\"280px\",src:\"https://framerusercontent.com/images/UK2SRPyeVSkqGzCuGAyDzYGtUU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UK2SRPyeVSkqGzCuGAyDzYGtUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UK2SRPyeVSkqGzCuGAyDzYGtUU.png 848w\"},className:\"framer-n2cwfc\",\"data-framer-name\":\"ticker_image_06\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-36w6rv\",\"data-framer-name\":\"ticker container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rarhit-container\",isModuleExternal:true,nodeId:\"sOQY2lEpo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{gap:10}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"sOQY2lEpo\",layoutId:\"sOQY2lEpo\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424.5,pixelHeight:610,pixelWidth:849,sizes:\"280px\",src:\"https://framerusercontent.com/images/bX3oKSIl3yy3glgu4Q9bDScns.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bX3oKSIl3yy3glgu4Q9bDScns.png?scale-down-to=512 512w,https://framerusercontent.com/images/bX3oKSIl3yy3glgu4Q9bDScns.png 849w\"},className:\"framer-lnw8c5\",\"data-framer-name\":\"ticker_image_07\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424.5,pixelHeight:610,pixelWidth:849,sizes:\"280px\",src:\"https://framerusercontent.com/images/6PyPJEI5WBVvGPlMGz3ZFEYI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6PyPJEI5WBVvGPlMGz3ZFEYI.png?scale-down-to=512 512w,https://framerusercontent.com/images/6PyPJEI5WBVvGPlMGz3ZFEYI.png 849w\"},className:\"framer-1djl4al\",\"data-framer-name\":\"ticker_image_08\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305,intrinsicWidth:424.5,pixelHeight:610,pixelWidth:849,sizes:\"280px\",src:\"https://framerusercontent.com/images/Rpj7ql4ctyGqMKYedb5YWxHak.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Rpj7ql4ctyGqMKYedb5YWxHak.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rpj7ql4ctyGqMKYedb5YWxHak.png 849w\"},className:\"framer-1y96xsi\",\"data-framer-name\":\"ticker_image_09\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-166f8fl\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lct3m4\",\"data-framer-name\":\"display text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WCzquG8Cd:{children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",style:{\"--framer-text-alignment\":\"right\"},children:\"StepsConnect\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-eksvbq\",\"data-styles-preset\":\"l2oQbN2p1\",children:\"StepsConnect\"})}),className:\"framer-sepyxg\",\"data-framer-name\":\"title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WCzquG8Cd:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"right\"},children:\"I am leading the design team through a complete product and business model overhaul, ensuring a seamless transition and successful implementation.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",style:{\"--framer-text-alignment\":\"right\"},children:\"I also developed the website.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:\"I am leading the design team through a complete product and business model overhaul, ensuring a seamless transition and successful implementation.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mkcyg1\",\"data-styles-preset\":\"XJQ2dDn7c\",children:\"I also developed the website.\"})]}),className:\"framer-1f3yu0z\",\"data-framer-name\":\"description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+1168+0+3273+0+0+0+464},WCzquG8Cd:{y:(componentViewport?.y||0)+0+1208+0+3568+0+0+0+464}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+1250+0+2444+14+0+464,children:/*#__PURE__*/_jsx(Container,{className:\"framer-120hpag-container\",nodeId:\"bsjywpc1s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DirectionalButton,{height:\"100%\",id:\"bsjywpc1s\",layoutId:\"bsjywpc1s\",variant:\"SOlp4wK50\",VFWSbtJjw:\"https://stepsconnect.com\",width:\"100%\",y4MxhqV6p:getLocalizedValue(\"v18\",activeLocale)??\"Visit website\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5qy1s\",\"data-framer-name\":\"Media left\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v6gn9z\",\"data-border\":true,\"data-framer-name\":\"footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{umG7KXCKX:{y:(componentViewport?.y||0)+0+5733+60+0},WCzquG8Cd:{y:(componentViewport?.y||0)+0+6088+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,y:(componentViewport?.y||0)+0+4514+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u7r14s-container\",nodeId:\"BdGwUmKa5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(NextProjectButton,{height:\"100%\",id:\"BdGwUmKa5\",KEgSqVHfL:getLocalizedValue(\"v46\",activeLocale)??\"Let's discuss about your project\",kToEi8vyS:getLocalizedValue(\"v2\",activeLocale)??\"Get in touch\",layoutId:\"BdGwUmKa5\",sOR3zZ1eg:\"mailto:ale.schettino92@gmail.com\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SRRvu.framer-lux5qc, .framer-SRRvu .framer-lux5qc { display: block; }\",\".framer-SRRvu.framer-72rtr7 { align-content: center; align-items: center; background-color: #121212; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-SRRvu .framer-170l6i-container, .framer-SRRvu .framer-14by44t-container, .framer-SRRvu .framer-on3szy-container, .framer-SRRvu .framer-9fwpdg-container, .framer-SRRvu .framer-120hpag-container, .framer-SRRvu .framer-1u7r14s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SRRvu .framer-ewhrgn-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-SRRvu .framer-1i0nzv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 120px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-1609my5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 120px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-1tancuy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-13rniax, .framer-SRRvu .framer-qfkyqj, .framer-SRRvu .framer-1r0y7sc, .framer-SRRvu .framer-17yl2kz, .framer-SRRvu .framer-51ga0y, .framer-SRRvu .framer-1jusxpd, .framer-SRRvu .framer-1owpspn, .framer-SRRvu .framer-1f3yu0z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SRRvu .framer-1hk6uk5-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-1yyo5cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-a9ez8w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-j8yi2o { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-1qo7zz1 { background-color: rgba(0, 0, 0, 0); flex: none; height: 54px; position: relative; width: 54px; }\",\".framer-SRRvu .framer-68zqj8, .framer-SRRvu .framer-18jvi5, .framer-SRRvu .framer-zkre2i, .framer-SRRvu .framer-sepyxg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SRRvu .framer-gye429 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 0px 120px 0px 120px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-12k6hq5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 480px; }\",\".framer-SRRvu .framer-1qbgkua { flex: none; height: 540px; position: relative; text-decoration: none; width: 480px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-1r58b7u, .framer-SRRvu .framer-uy3soj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SRRvu .framer-1o9um0y, .framer-SRRvu .framer-1w2ls3z, .framer-SRRvu .framer-1op2gel, .framer-SRRvu .framer-lct3m4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-clgchh, .framer-SRRvu .framer-ngzqe9, .framer-SRRvu .framer-17fzooj { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SRRvu .framer-1juln78 { align-content: center; align-items: center; aspect-ratio: 0.8888888888888888 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 480px; }\",\".framer-SRRvu .framer-c7wj7e { -webkit-filter: blur(1px); aspect-ratio: 0.8888888888888888 / 1; filter: blur(1px); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-j7nu7k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-SRRvu .framer-333o88, .framer-SRRvu .framer-166f8fl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SRRvu .framer-5ml8ej { align-content: center; align-items: center; background-color: #0f172a; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 480px; }\",\".framer-SRRvu .framer-13qzja6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-SRRvu .framer-1vfc12l, .framer-SRRvu .framer-tbxkio, .framer-SRRvu .framer-pfsahd, .framer-SRRvu .framer-1u61wau, .framer-SRRvu .framer-7afnm5, .framer-SRRvu .framer-suyce3, .framer-SRRvu .framer-1oo4aez, .framer-SRRvu .framer-92um0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SRRvu .framer-fd145u { align-content: center; align-items: center; background-color: #e0e0e0; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 480px; }\",\".framer-SRRvu .framer-esc4dd { align-content: center; align-items: center; background-color: rgba(18, 18, 18, 0.7); bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-SRRvu .framer-nawiyd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SRRvu .framer-jp4500, .framer-SRRvu .framer-equzu2, .framer-SRRvu .framer-36w6rv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-SRRvu .framer-1ysimau-container, .framer-SRRvu .framer-bnwcda-container, .framer-SRRvu .framer-rarhit-container { flex: none; height: 640px; position: relative; width: 280px; }\",\".framer-SRRvu .framer-azxjb2, .framer-SRRvu .framer-1lxf8ve, .framer-SRRvu .framer-1gjw5wm, .framer-SRRvu .framer-jwx78o, .framer-SRRvu .framer-ywu4tq, .framer-SRRvu .framer-n2cwfc { aspect-ratio: 1.3901639344262295 / 1; height: var(--framer-aspect-ratio-supported, 201px); overflow: visible; position: relative; width: 280px; }\",\".framer-SRRvu .framer-lcsuvw-container { flex: none; height: auto; left: 0%; position: absolute; top: 0%; transform: translate(-50%, -50%); width: auto; }\",\".framer-SRRvu .framer-lnw8c5, .framer-SRRvu .framer-1djl4al, .framer-SRRvu .framer-1y96xsi { aspect-ratio: 1.3918032786885246 / 1; height: var(--framer-aspect-ratio-supported, 201px); overflow: visible; position: relative; width: 280px; }\",\".framer-SRRvu .framer-5qy1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: 160px; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SRRvu .framer-1v6gn9z { --border-bottom-width: 0px; --border-color: var(--token-9f5cfdbd-d2ec-49ed-acd3-7a78ba708a8d, #fdfdfd); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: var(--token-da785a49-5269-41ed-b4f8-e27c5e59f58b, #1c1c1c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 60px 120px 60px 120px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SRRvu.framer-72rtr7, .framer-SRRvu .framer-1i0nzv9, .framer-SRRvu .framer-1609my5, .framer-SRRvu .framer-1tancuy, .framer-SRRvu .framer-1yyo5cp, .framer-SRRvu .framer-a9ez8w, .framer-SRRvu .framer-j8yi2o, .framer-SRRvu .framer-gye429, .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-12k6hq5, .framer-SRRvu .framer-1r58b7u, .framer-SRRvu .framer-1o9um0y, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-uy3soj, .framer-SRRvu .framer-1w2ls3z, .framer-SRRvu .framer-1juln78, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-j7nu7k, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-333o88, .framer-SRRvu .framer-1op2gel, .framer-SRRvu .framer-5ml8ej, .framer-SRRvu .framer-13qzja6, .framer-SRRvu .framer-3gaes8, .framer-SRRvu .framer-fd145u, .framer-SRRvu .framer-esc4dd, .framer-SRRvu .framer-nawiyd, .framer-SRRvu .framer-jp4500, .framer-SRRvu .framer-equzu2, .framer-SRRvu .framer-36w6rv, .framer-SRRvu .framer-166f8fl, .framer-SRRvu .framer-lct3m4, .framer-SRRvu .framer-5qy1s, .framer-SRRvu .framer-1v6gn9z { gap: 0px; } .framer-SRRvu.framer-72rtr7 > *, .framer-SRRvu .framer-esc4dd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SRRvu.framer-72rtr7 > :first-child, .framer-SRRvu .framer-1i0nzv9 > :first-child, .framer-SRRvu .framer-1609my5 > :first-child, .framer-SRRvu .framer-1tancuy > :first-child, .framer-SRRvu .framer-a9ez8w > :first-child, .framer-SRRvu .framer-gye429 > :first-child, .framer-SRRvu .framer-1r58b7u > :first-child, .framer-SRRvu .framer-uy3soj > :first-child, .framer-SRRvu .framer-j7nu7k > :first-child, .framer-SRRvu .framer-333o88 > :first-child, .framer-SRRvu .framer-esc4dd > :first-child, .framer-SRRvu .framer-166f8fl > :first-child, .framer-SRRvu .framer-1v6gn9z > :first-child { margin-top: 0px; } .framer-SRRvu.framer-72rtr7 > :last-child, .framer-SRRvu .framer-1i0nzv9 > :last-child, .framer-SRRvu .framer-1609my5 > :last-child, .framer-SRRvu .framer-1tancuy > :last-child, .framer-SRRvu .framer-a9ez8w > :last-child, .framer-SRRvu .framer-gye429 > :last-child, .framer-SRRvu .framer-1r58b7u > :last-child, .framer-SRRvu .framer-uy3soj > :last-child, .framer-SRRvu .framer-j7nu7k > :last-child, .framer-SRRvu .framer-333o88 > :last-child, .framer-SRRvu .framer-esc4dd > :last-child, .framer-SRRvu .framer-166f8fl > :last-child, .framer-SRRvu .framer-1v6gn9z > :last-child { margin-bottom: 0px; } .framer-SRRvu .framer-1i0nzv9 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-SRRvu .framer-1609my5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-SRRvu .framer-1tancuy > *, .framer-SRRvu .framer-a9ez8w > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-SRRvu .framer-1yyo5cp > *, .framer-SRRvu .framer-j8yi2o > *, .framer-SRRvu .framer-1o9um0y > *, .framer-SRRvu .framer-1w2ls3z > *, .framer-SRRvu .framer-1op2gel > *, .framer-SRRvu .framer-lct3m4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-SRRvu .framer-1yyo5cp > :first-child, .framer-SRRvu .framer-j8yi2o > :first-child, .framer-SRRvu .framer-1fbxn21 > :first-child, .framer-SRRvu .framer-12k6hq5 > :first-child, .framer-SRRvu .framer-1o9um0y > :first-child, .framer-SRRvu .framer-1ovxjq7 > :first-child, .framer-SRRvu .framer-1w2ls3z > :first-child, .framer-SRRvu .framer-1juln78 > :first-child, .framer-SRRvu .framer-14g6hpl > :first-child, .framer-SRRvu .framer-r551v > :first-child, .framer-SRRvu .framer-1op2gel > :first-child, .framer-SRRvu .framer-5ml8ej > :first-child, .framer-SRRvu .framer-13qzja6 > :first-child, .framer-SRRvu .framer-3gaes8 > :first-child, .framer-SRRvu .framer-fd145u > :first-child, .framer-SRRvu .framer-nawiyd > :first-child, .framer-SRRvu .framer-jp4500 > :first-child, .framer-SRRvu .framer-equzu2 > :first-child, .framer-SRRvu .framer-36w6rv > :first-child, .framer-SRRvu .framer-lct3m4 > :first-child, .framer-SRRvu .framer-5qy1s > :first-child { margin-left: 0px; } .framer-SRRvu .framer-1yyo5cp > :last-child, .framer-SRRvu .framer-j8yi2o > :last-child, .framer-SRRvu .framer-1fbxn21 > :last-child, .framer-SRRvu .framer-12k6hq5 > :last-child, .framer-SRRvu .framer-1o9um0y > :last-child, .framer-SRRvu .framer-1ovxjq7 > :last-child, .framer-SRRvu .framer-1w2ls3z > :last-child, .framer-SRRvu .framer-1juln78 > :last-child, .framer-SRRvu .framer-14g6hpl > :last-child, .framer-SRRvu .framer-r551v > :last-child, .framer-SRRvu .framer-1op2gel > :last-child, .framer-SRRvu .framer-5ml8ej > :last-child, .framer-SRRvu .framer-13qzja6 > :last-child, .framer-SRRvu .framer-3gaes8 > :last-child, .framer-SRRvu .framer-fd145u > :last-child, .framer-SRRvu .framer-nawiyd > :last-child, .framer-SRRvu .framer-jp4500 > :last-child, .framer-SRRvu .framer-equzu2 > :last-child, .framer-SRRvu .framer-36w6rv > :last-child, .framer-SRRvu .framer-lct3m4 > :last-child, .framer-SRRvu .framer-5qy1s > :last-child { margin-right: 0px; } .framer-SRRvu .framer-gye429 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-SRRvu .framer-1fbxn21 > *, .framer-SRRvu .framer-1ovxjq7 > *, .framer-SRRvu .framer-14g6hpl > *, .framer-SRRvu .framer-r551v > *, .framer-SRRvu .framer-3gaes8 > *, .framer-SRRvu .framer-5qy1s > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-SRRvu .framer-12k6hq5 > *, .framer-SRRvu .framer-1juln78 > *, .framer-SRRvu .framer-5ml8ej > *, .framer-SRRvu .framer-fd145u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SRRvu .framer-1r58b7u > *, .framer-SRRvu .framer-uy3soj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-SRRvu .framer-j7nu7k > *, .framer-SRRvu .framer-333o88 > *, .framer-SRRvu .framer-166f8fl > *, .framer-SRRvu .framer-1v6gn9z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SRRvu .framer-13qzja6 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-SRRvu .framer-nawiyd > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-SRRvu .framer-jp4500 > *, .framer-SRRvu .framer-equzu2 > *, .framer-SRRvu .framer-36w6rv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-SRRvu[data-border=\"true\"]::after, .framer-SRRvu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-SRRvu.framer-72rtr7 { width: 1200px; } .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8, .framer-SRRvu .framer-5qy1s { gap: 80px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8, .framer-SRRvu .framer-5qy1s { gap: 0px; } .framer-SRRvu .framer-1fbxn21 > *, .framer-SRRvu .framer-1ovxjq7 > *, .framer-SRRvu .framer-r551v > *, .framer-SRRvu .framer-3gaes8 > *, .framer-SRRvu .framer-5qy1s > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-SRRvu .framer-1fbxn21 > :first-child, .framer-SRRvu .framer-1ovxjq7 > :first-child, .framer-SRRvu .framer-r551v > :first-child, .framer-SRRvu .framer-3gaes8 > :first-child, .framer-SRRvu .framer-5qy1s > :first-child { margin-left: 0px; } .framer-SRRvu .framer-1fbxn21 > :last-child, .framer-SRRvu .framer-1ovxjq7 > :last-child, .framer-SRRvu .framer-r551v > :last-child, .framer-SRRvu .framer-3gaes8 > :last-child, .framer-SRRvu .framer-5qy1s > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-SRRvu.framer-72rtr7 { width: 390px; } .framer-SRRvu .framer-1i0nzv9 { padding: 120px 24px 80px 24px; } .framer-SRRvu .framer-1609my5 { padding: 80px 0px 0px 0px; } .framer-SRRvu .framer-1yyo5cp { will-change: var(--framer-will-change-effect-override, transform); } .framer-SRRvu .framer-1qo7zz1 { height: 32px; width: 32px; } .framer-SRRvu .framer-gye429 { padding: 0px 24px 0px 24px; } .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8 { flex-direction: column; gap: 40px; } .framer-SRRvu .framer-12k6hq5, .framer-SRRvu .framer-fd145u { aspect-ratio: 0.8888888888888888 / 1; height: var(--framer-aspect-ratio-supported, 225px); order: 1; width: 100%; } .framer-SRRvu .framer-1qbgkua { width: 343px; } .framer-SRRvu .framer-1r58b7u, .framer-SRRvu .framer-166f8fl { flex: none; order: 0; width: 100%; } .framer-SRRvu .framer-1o9um0y { justify-content: flex-end; } .framer-SRRvu .framer-uy3soj, .framer-SRRvu .framer-333o88 { flex: none; width: 100%; } .framer-SRRvu .framer-1juln78 { height: var(--framer-aspect-ratio-supported, 225px); width: 100%; } .framer-SRRvu .framer-c7wj7e { height: var(--framer-aspect-ratio-supported, 225px); } .framer-SRRvu .framer-j7nu7k { flex: none; order: 0; padding: 40px 0px 40px 0px; width: 100%; } .framer-SRRvu .framer-5ml8ej { height: 385px; width: 100%; } .framer-SRRvu .framer-nawiyd { gap: 10px; } .framer-SRRvu .framer-1ysimau-container, .framer-SRRvu .framer-bnwcda-container, .framer-SRRvu .framer-rarhit-container { aspect-ratio: 0.4375 / 1; height: var(--framer-aspect-ratio-supported, 640px); } .framer-SRRvu .framer-5qy1s { flex-direction: column; gap: 40px; height: 80px; } .framer-SRRvu .framer-1v6gn9z { padding: 60px 24px 60px 24px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8, .framer-SRRvu .framer-nawiyd, .framer-SRRvu .framer-5qy1s { gap: 0px; } .framer-SRRvu .framer-1fbxn21 > *, .framer-SRRvu .framer-1ovxjq7 > *, .framer-SRRvu .framer-14g6hpl > *, .framer-SRRvu .framer-r551v > *, .framer-SRRvu .framer-3gaes8 > *, .framer-SRRvu .framer-5qy1s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SRRvu .framer-1fbxn21 > :first-child, .framer-SRRvu .framer-1ovxjq7 > :first-child, .framer-SRRvu .framer-14g6hpl > :first-child, .framer-SRRvu .framer-r551v > :first-child, .framer-SRRvu .framer-3gaes8 > :first-child, .framer-SRRvu .framer-5qy1s > :first-child { margin-top: 0px; } .framer-SRRvu .framer-1fbxn21 > :last-child, .framer-SRRvu .framer-1ovxjq7 > :last-child, .framer-SRRvu .framer-14g6hpl > :last-child, .framer-SRRvu .framer-r551v > :last-child, .framer-SRRvu .framer-3gaes8 > :last-child, .framer-SRRvu .framer-5qy1s > :last-child { margin-bottom: 0px; } .framer-SRRvu .framer-nawiyd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SRRvu .framer-nawiyd > :first-child { margin-left: 0px; } .framer-SRRvu .framer-nawiyd > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1920px) { .framer-SRRvu.framer-72rtr7 { width: 1920px; } .framer-SRRvu .framer-c7wj7e { height: var(--framer-aspect-ratio-supported, 225px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-SRRvu.framer-72rtr7 { width: 810px; } .framer-SRRvu .framer-1i0nzv9 { padding: 120px 72px 80px 72px; } .framer-SRRvu .framer-1609my5 { padding: 80px 0px 40px 0px; } .framer-SRRvu .framer-a9ez8w { align-content: flex-end; align-items: flex-end; } .framer-SRRvu .framer-1qo7zz1 { height: 48px; width: 48px; } .framer-SRRvu .framer-gye429 { padding: 0px 72px 0px 72px; } .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-3gaes8 { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 60px; } .framer-SRRvu .framer-12k6hq5, .framer-SRRvu .framer-fd145u { order: 1; } .framer-SRRvu .framer-1r58b7u, .framer-SRRvu .framer-166f8fl { align-content: flex-end; align-items: flex-end; flex: none; order: 0; width: 100%; } .framer-SRRvu .framer-1o9um0y { justify-content: flex-end; } .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-r551v { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; } .framer-SRRvu .framer-uy3soj, .framer-SRRvu .framer-333o88 { flex: none; width: 100%; } .framer-SRRvu .framer-1juln78 { aspect-ratio: unset; height: 540px; } .framer-SRRvu .framer-c7wj7e { height: var(--framer-aspect-ratio-supported, 225px); } .framer-SRRvu .framer-j7nu7k { flex: none; order: 0; padding: 80px 0px 80px 0px; width: 100%; } .framer-SRRvu .framer-sepyxg { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-SRRvu .framer-5qy1s { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 60px; height: 80px; } .framer-SRRvu .framer-1v6gn9z { padding: 60px 72px 60px 72px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-SRRvu .framer-1fbxn21, .framer-SRRvu .framer-1ovxjq7, .framer-SRRvu .framer-14g6hpl, .framer-SRRvu .framer-r551v, .framer-SRRvu .framer-3gaes8, .framer-SRRvu .framer-5qy1s { gap: 0px; } .framer-SRRvu .framer-1fbxn21 > *, .framer-SRRvu .framer-1ovxjq7 > *, .framer-SRRvu .framer-14g6hpl > *, .framer-SRRvu .framer-r551v > *, .framer-SRRvu .framer-3gaes8 > *, .framer-SRRvu .framer-5qy1s > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-SRRvu .framer-1fbxn21 > :first-child, .framer-SRRvu .framer-1ovxjq7 > :first-child, .framer-SRRvu .framer-14g6hpl > :first-child, .framer-SRRvu .framer-r551v > :first-child, .framer-SRRvu .framer-3gaes8 > :first-child, .framer-SRRvu .framer-5qy1s > :first-child { margin-top: 0px; } .framer-SRRvu .framer-1fbxn21 > :last-child, .framer-SRRvu .framer-1ovxjq7 > :last-child, .framer-SRRvu .framer-14g6hpl > :last-child, .framer-SRRvu .framer-r551v > :last-child, .framer-SRRvu .framer-3gaes8 > :last-child, .framer-SRRvu .framer-5qy1s > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4386\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Kj9PSfug2\":{\"layout\":[\"fixed\",\"auto\"]},\"umG7KXCKX\":{\"layout\":[\"fixed\",\"auto\"]},\"Dm36GiKdw\":{\"layout\":[\"fixed\",\"auto\"]},\"WCzquG8Cd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"z1BcmkWeX\":{\"pattern\":\":z1BcmkWeX\",\"name\":\"start\"},\"muazxxKjm\":{\"pattern\":\":muazxxKjm\",\"name\":\"end\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-SRRvu\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4386,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/M2RQDXLDLQ2S4ZZ66VQTDSO3OSHWKVY7/JAIF7WXHMOCSPDMQNJH4MHWPR2PHW2YE/C5NBF6PXS6YLHRF7TAQGFAEBX23GMCRA.woff2\",weight:\"900\"}]},...SmoothScrollFonts,...NavBarFonts,...DirectionalButtonFonts,...TickerFonts,...CookieBannerFonts,...NextProjectButtonFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kj9PSfug2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"umG7KXCKX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dm36GiKdw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WCzquG8Cd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4386\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"z1BcmkWeX\\\":{\\\"pattern\\\":\\\":z1BcmkWeX\\\",\\\"name\\\":\\\"start\\\"},\\\"muazxxKjm\\\":{\\\"pattern\\\":\\\":muazxxKjm\\\",\\\"name\\\":\\\"end\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "PTrklOotB_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "p", "x", "motion", "v1", "v2", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "PTrklOotB_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerPTrklOotB", "withCSS", "PTrklOotB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CookieBanner", "props", "title", "description", "linkLabel", "linkUrl", "minimized", "backgroundColor", "textColor", "buttonColor", "buttonTextColor", "borderRadius", "icon", "closeIcon", "iconColor", "closeIconColor", "expandedWidth", "expandedHeight", "isFullWidthMobile", "customButtonComponent", "isMinimized", "setIsMinimized", "ye", "toggleBanner", "event", "u", "Frame", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavBarFonts", "p3K9U4Slk_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "DirectionalButtonFonts", "D1bzh06Zy_default", "MotionDivWithOptimizedAppearEffect", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withFX", "MotionDivWithFX", "RichTextWithFX", "RichText2", "MotionAWithFX", "TickerFonts", "Ticker", "CookieBannerFonts", "CookieBanner", "NextProjectButtonFonts", "pZ42UhtxE_default", "CursorFonts", "PTrklOotB_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "textEffect", "transition4", "textEffect1", "transition5", "animation5", "animation6", "animation7", "animation8", "transition6", "animation9", "transition7", "animation10", "animation11", "animation12", "transition8", "animation13", "transition9", "animation14", "transition10", "animation15", "transition11", "animation16", "transition12", "animation17", "transition13", "animation18", "transition14", "animation19", "animation20", "transition15", "animation21", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition16", "cursor", "PTrklOotB_default", "transition17", "cursor1", "cursor2", "cursor3", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "router", "useRouter", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll", "ContainerWithOptimizedAppearEffect", "PropertyOverrides2", "p3K9U4Slk_default", "MotionDivWithOptimizedAppearEffect", "RichText2", "getLocalizedValue", "x", "D1bzh06Zy_default", "MotionDivWithFXWithOptimizedAppearEffect", "SVG", "MotionDivWithFX", "Link", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "RichTextWithFX", "MotionAWithFX", "Ticker", "CookieBanner", "pZ42UhtxE_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SmoothScrollFonts", "NavBarFonts", "DirectionalButtonFonts", "TickerFonts", "CookieBannerFonts", "NextProjectButtonFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
