{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/t77UHNZGz76ZlyQEIYVX/REEivaqmdPIAsuasMVHP/JtLbIgW0M.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 (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/CcaJY3qZk/CcaJY3qZk.js\";import Button from\"#framer/local/canvasComponent/GBC64teSj/GBC64teSj.js\";import Navigation2 from\"#framer/local/canvasComponent/pdieSZo7r/pdieSZo7r.js\";import*as sharedStyle4 from\"#framer/local/css/D3ThQqVFi/D3ThQqVFi.js\";import*as sharedStyle2 from\"#framer/local/css/D6wL1xuk0/D6wL1xuk0.js\";import*as sharedStyle3 from\"#framer/local/css/gNEsrrra7/gNEsrrra7.js\";import*as sharedStyle1 from\"#framer/local/css/slRybwPgE/slRybwPgE.js\";import*as sharedStyle from\"#framer/local/css/U2X857huU/U2X857huU.js\";import metadataProvider from\"#framer/local/webPageMetadata/JtLbIgW0M/JtLbIgW0M.js\";const SlideshowFonts=getFonts(Slideshow);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MaterialFonts=getFonts(Material);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const FooterFonts=getFonts(Footer);const Navigation2Fonts=getFonts(Navigation2);const Navigation2WithVariantAppearEffect=withVariantAppearEffect(Navigation2);const breakpoints={A6uBUUna0:\"(min-width: 1366px)\",nEcD12Eb6:\"(max-width: 809px)\",NvNtkhDHo:\"(min-width: 810px) and (max-width: 1199px)\",SxfvCFNa8:\"(min-width: 1200px) and (max-width: 1365px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GNhrN\";const variantClassNames={A6uBUUna0:\"framer-v-e1hynt\",nEcD12Eb6:\"framer-v-1gv3xtp\",NvNtkhDHo:\"framer-v-1bjhjv6\",SxfvCFNa8:\"framer-v-jt0cmx\"};const transition1={bounce:0,delay:.5,duration:5,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:0};const transition2={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};const animation2={boxShadow:\"0px 0px 4px 1px rgba(0, 0, 0, 0.49)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const transition4={bounce:0,delay:.2,duration:1.1,type:\"spring\"};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const transition6={bounce:0,delay:0,duration:1.95,type:\"spring\"};const animation6={backgroundColor:\"rgba(30, 30, 30, 0.67)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6};const transition7={bounce:0,delay:.4,duration:1.1,type:\"spring\"};const transition8={bounce:0,delay:.6,duration:1.1,type:\"spring\"};const transition9={damping:60,delay:.6,mass:1,stiffness:200,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"SxfvCFNa8\",Phone:\"nEcD12Eb6\",Tablet:\"NvNtkhDHo\",Wide:\"A6uBUUna0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"SxfvCFNa8\"};};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(\"uprn1WAKm\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"nEcD12Eb6\")return false;return true;};const elementId1=useRouteElementId(\"Xp9QQksD1\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"TNQTHgEqV\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"SxfvCFNa8\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 52, 69); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-jt0cmx\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mze854\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-118n479-container\",\"data-framer-appear-id\":\"118n479\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DgVJUqVaP\",optimized:true,rendersWithMotion:true,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:27,dotsInset:10,dotSize:5,dotsOpacity:.5,dotsPadding:3,dotsRadius:50,showProgressDots:false}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.9,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:12,fadeWidth:25,overflow:true},gap:20,height:\"100%\",id:\"DgVJUqVaP\",intervalControl:4.5,itemAmount:1,layoutId:\"DgVJUqVaP\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:27,dotsInset:10,dotSize:5,dotsOpacity:.5,dotsPadding:3,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"scalinata in pietra tra fioriture\",fit:\"fill\",pixelHeight:2430,pixelWidth:2382,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/NbKMTDvLwSZ7hd1RD9sxU9s69A.jpg?scale-down-to=1024\"},className:\"framer-1bpfkwl\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"effetto luminoso di impianto luci in giardino\",fit:\"fill\",pixelHeight:720,pixelWidth:960,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2ToJCXi4FU4AHfEtxm7urVJ43Do.jpg\"},className:\"framer-9jkssg\",\"data-framer-name\":\"5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"giardino con laghetto artificiale tra ulivi\",fit:\"fill\",pixelHeight:3024,pixelWidth:3918,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/IbUw7MZMB73uXmKQXSANupHY9yQ.jpg?scale-down-to=1024\"},className:\"framer-r0cx1a\",\"data-framer-name\":\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"spazio aperto con piscina e prato in un giardino tra montagne\",fit:\"fill\",pixelHeight:729,pixelWidth:1024,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/SzGS5UeUTd3Tbm4RUaldeMrZEY.jpeg\"},className:\"framer-1e8hpv3\",\"data-framer-name\":\"1\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:54,delay:0,mass:10,stiffness:78,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qe85l\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nz6vbq hidden-1gv3xtp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-luiz4c\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihopkg\",children:[/*#__PURE__*/_jsx(Link,{href:\"mailto:info@grilloverdegiardini.it\",motionChild:true,nodeId:\"TfZQExMbn\",openInNewTab:true,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10qbkmb framer-z8yd43\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-190a2sl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S9M3gajN8\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(255, 255, 255, 0.78)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Mail\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"S9M3gajN8\",layoutId:\"S9M3gajN8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/profile.php?id=100056383435031\",motionChild:true,nodeId:\"Beoyk8Djg\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fup0yk framer-z8yd43\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-111s7ed-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wAIiXjqug\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(255, 255, 255, 0.78)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Facebook\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wAIiXjqug\",layoutId:\"wAIiXjqug\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://wa.me/393209377473?text=Ciao!%20Vorrei%20avere%20pi\\xf9%20informazioni%20sui%20vostri%20progetti\",motionChild:true,nodeId:\"n1qtXhnYm\",openInNewTab:true,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bmgdvd framer-z8yd43\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h3yb1s-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"o3cZm7y6w\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(Material,{color:\"rgba(255, 255, 255, 0.78)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"WhatsApp\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"o3cZm7y6w\",layoutId:\"o3cZm7y6w\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15z45o3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xfatwe\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i0b6ke\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{y:(componentViewport?.y||0)+0+0+0+1e3-95+0+0+0+12.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+1e3-75+-12.5+0+0+25+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jhlo0n-container\",nodeId:\"lehzbi_zD\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"lehzbi_zD\",layoutId:\"lehzbi_zD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":TNQTHgEqV\",webPageId:\"JtLbIgW0M\"},motionChild:true,nodeId:\"MDEmZi7E9\",openInNewTab:false,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p9hpnp framer-z8yd43\",\"data-border\":true,\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"0.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(237, 237, 237)\"},children:\"Contatti\"})}),className:\"framer-l52m41\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jiuw8o\",\"data-styles-preset\":\"slRybwPgE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Grillo Verde\"})}),transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"center\"},children:\"Grillo Verde\"})}),className:\"framer-n39ck4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rmvnda\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3utb3d\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{background:{alt:\"Logo grafico di grillo verde giardini\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+320+0+0+-81),pixelHeight:310,pixelWidth:581,src:\"https://framerusercontent.com/images/eK3ONPWIaYwdqvDKOGghhN7Zm0.png?scale-down-to=512\"}},nEcD12Eb6:{background:{alt:\"Logo grafico di grillo verde giardini\",fit:\"fill\",pixelHeight:310,pixelWidth:581,src:\"https://framerusercontent.com/images/eK3ONPWIaYwdqvDKOGghhN7Zm0.png?scale-down-to=512\"},transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo grafico di grillo verde giardini\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+248.1+0+0+-81),pixelHeight:310,pixelWidth:581,src:\"https://framerusercontent.com/images/eK3ONPWIaYwdqvDKOGghhN7Zm0.png?scale-down-to=512\"},className:\"framer-186fdfe\",\"data-framer-name\":\"Logo\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1an7swr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-fhr7er\",\"data-styles-preset\":\"D6wL1xuk0\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Progettiamo realizziamo\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"E curiamo spazi verdi\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"per aziende e privati\"})]})}),className:\"framer-l12enn\",fonts:[\"Inter\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cxencp\",\"data-framer-name\":\"2 Columns Text Image\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1832ps0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gbzyvz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Con oltre 10 anni di esperienza, trasformiamo la passione per il verde in realt\\xe0.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Progettiamo, realizziamo e curiamo spazi verdi per aziende e privati, offrendo un servizio chiavi in mano che garantisce soluzioni complete, dalla progettazione alla manutenzione.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Uniamo competenza, creativit\\xe0 e attenzione ai dettagli per valorizzare ogni ambiente con soluzioni su misura, assicurando bellezza, funzionalit\\xe0 e benessere nel tempo.\"})]})},NvNtkhDHo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Con oltre 10 anni di esperienza, trasformiamo la passione per il verde in realt\\xe0.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Progettiamo, realizziamo e curiamo spazi verdi per aziende e privati, offrendo un servizio chiavi in mano che garantisce soluzioni complete, dalla progettazione alla manutenzione.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Uniamo competenza, creativit\\xe0 e attenzione ai dettagli per valorizzare ogni ambiente con soluzioni su misura, assicurando bellezza, funzionalit\\xe0 e benessere nel tempo.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"right\"},children:\"Con oltre 10 anni di esperienza, trasformiamo la passione per il verde in realt\\xe0.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"right\"},children:\"Progettiamo, realizziamo e curiamo spazi verdi per aziende e privati, offrendo un servizio chiavi in mano che garantisce soluzioni complete, dalla progettazione alla manutenzione.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"right\"},children:\"Uniamo competenza, creativit\\xe0 e attenzione ai dettagli per valorizzare ogni ambiente con soluzioni su misura, assicurando bellezza, funzionalit\\xe0 e benessere nel tempo.\"})]}),className:\"framer-vsu587\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sktwi2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{y:(componentViewport?.y||0)+0+1e3+218+0+0+536+0},nEcD12Eb6:{y:undefined},NvNtkhDHo:{y:(componentViewport?.y||0)+0+1e3+218+0+0+507+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"140px\",y:(componentViewport?.y||0)+0+1e3+218+0+0+544.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gnc972-container\",nodeId:\"Bc0z2cXr9\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"Bc0z2cXr9\",layoutId:\"Bc0z2cXr9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":TNQTHgEqV\",webPageId:\"JtLbIgW0M\"},motionChild:true,nodeId:\"tyBGuuep8\",openInNewTab:false,scopeId:\"JtLbIgW0M\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lvj7ke framer-z8yd43\",\"data-framer-name\":\"Button\",whileHover:animation2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Contatti\"})}),className:\"framer-123nlnr\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7dvs2g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+232.5+0+0),pixelHeight:802,pixelWidth:1024,src:\"https://framerusercontent.com/images/Guw7ulPjEvqjgwp16RLEcoKAkM.webp?scale-down-to=512\"}},nEcD12Eb6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:802,pixelWidth:1024,src:\"https://framerusercontent.com/images/Guw7ulPjEvqjgwp16RLEcoKAkM.webp?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+223+0+0),pixelHeight:802,pixelWidth:1024,src:\"https://framerusercontent.com/images/Guw7ulPjEvqjgwp16RLEcoKAkM.webp?scale-down-to=512\"},className:\"framer-1gwz8c4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o82a9e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BPwfLi421\",scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{fadeOptions:{fadeAlpha:.05,fadeContent:false,fadeInset:23,fadeWidth:13,overflow:false}},nEcD12Eb6:{fadeOptions:{fadeAlpha:.15,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:109}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.15,fadeContent:true,fadeInset:0,fadeWidth:54,overflow:false},gap:107,height:\"100%\",hoverFactor:1,id:\"BPwfLi421\",layoutId:\"BPwfLi421\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uvthih\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5819v\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:260,pixelHeight:186,pixelWidth:186,src:\"https://framerusercontent.com/images/l3lq5zxtqURO0Irg3YGeTitg.webp\"},className:\"framer-12btfnw\",\"data-framer-name\":\"SOA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:251,intrinsicWidth:250,pixelHeight:385,pixelWidth:324,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4HiLxH2GFHgM3X9zRWNSAVeJoc8.png\"},className:\"framer-hlnoab\",\"data-framer-name\":\"ScuolaPotaturaOlivi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:171,intrinsicWidth:247,pixelHeight:118,pixelWidth:247,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AkrZhj4T8wxUuk6ngr3hoWPUKgI.png\"},className:\"framer-jxmxp2\",\"data-framer-name\":\"Patentino-fitosanitario\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:227,pixelWidth:312,src:\"https://framerusercontent.com/images/9NYf3OY37AZ7MmZuGQNpYu9BQ.png\"},className:\"framer-1qs7xul\",style:{rotate:34}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:256,pixelWidth:256,src:\"https://framerusercontent.com/images/HoUZMtikpjRuXzbIbK8lzrE1XI.webp\"},className:\"framer-38dfpz\",\"data-framer-name\":\"Certificato1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/kB77Bmgds7yTiYvUElhNetQo6jo.svg\"},className:\"framer-i7mi24\"})]})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5bu8fy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-119knsa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mqsqi\",\"data-framer-name\":\"Servizi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-j7ei6\",\"data-styles-preset\":\"gNEsrrra7\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SERVIZI\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fhr7er\",\"data-styles-preset\":\"D6wL1xuk0\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"SERVIZI\"})}),className:\"framer-5hqi3w\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-80glza\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jiuw8o\",\"data-styles-preset\":\"slRybwPgE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Saremo in grado di seguirti dall'idea al suo mantenimento\"})}),className:\"framer-86gvlx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hazxyl\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4f22g\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"disegno di un progetto grafico in rendering di un giardino visto dall'alto\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IYi5wkmQ0QQsj7kDMBbwCIMZa7Y.jpg?scale-down-to=512\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"disegno di un progetto grafico in rendering di un giardino visto dall'alto\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/IYi5wkmQ0QQsj7kDMBbwCIMZa7Y.jpg?scale-down-to=512\"},className:\"framer-1bftac5\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":D1n1QCunD\",webPageId:\"Gh0ZS9fbp\"},motionChild:true,nodeId:\"Aj1Ttl2y0\",openInNewTab:false,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-lf3aom framer-z8yd43\",\"data-framer-name\":\"overlay\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"La progettazione di un giardino \\xe8 il primo passo per creare un ambiente armonioso, funzionale e in sintonia con il contesto. Ti guideremo in ogni fase, trasformando le tue idee in un giardino rigoglioso e ben strutturato.\"})}),className:\"framer-1o9kewr\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-163wjgb\",\"data-styles-preset\":\"D3ThQqVFi\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Progettazione\"})}),className:\"framer-tuvxsh\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f017ao\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"giardino con persorso sinuoso\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:512,pixelWidth:334,src:\"https://framerusercontent.com/images/qUp7aBByCdGCt9XVOdzeqQTWPws.jpg\"},style:{}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"giardino con persorso sinuoso\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:700,pixelWidth:460,src:\"https://framerusercontent.com/images/JP0kpA3fWvK0lr6mucjYxYSNs.jpg?scale-down-to=512\"},className:\"framer-1fug4mj\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Zl9s9dQ9B\",webPageId:\"Gh0ZS9fbp\"},motionChild:true,nodeId:\"hcULW4LPK\",openInNewTab:false,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-15kj3on framer-z8yd43\",\"data-framer-name\":\"overlay\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Dopo una progettazione attenta e personalizzata, arriva la fase pi\\xf9 emozionante: la realizzazione del tuo giardino. Grazie alla nostra esperienza e all\u2019uso di materiali e tecniche di alta qualit\\xe0, trasformiamo il tuo spazio esterno in un\u2019oasi verde, curata nei minimi dettagli.\"})}),className:\"framer-17wus1d\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-163wjgb\",\"data-styles-preset\":\"D3ThQqVFi\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Realizzazione\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-163wjgb\",\"data-styles-preset\":\"D3ThQqVFi\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"RealizzazionE\"})}),className:\"framer-sku3fp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14vzgna\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{__framer__animate:{transition:transition9},__framer__enter:undefined,__framer__threshold:1,background:{alt:\"giardino a gradoni con contnimento a palizzata di legno\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:700,pixelWidth:911,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/L4tGXN5h8xPHq2AO7nfPZrhS5c.jpeg?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"giardino a gradoni con contnimento a palizzata di legno\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:700,pixelWidth:911,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/QNSnRY3GnjHjdovNOTFiZIRU5ZE.jpeg?scale-down-to=512\"},className:\"framer-13ep6qw\",\"data-framer-name\":\"Image\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":cKDDmW9OS\",webPageId:\"Gh0ZS9fbp\"},motionChild:true,nodeId:\"PYKT73gDe\",openInNewTab:false,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1srji5u framer-z8yd43\",\"data-framer-name\":\"overlay\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1itexfg\",\"data-styles-preset\":\"U2X857huU\",style:{\"--framer-text-alignment\":\"justify\"},children:\"Un giardino ben curato \\xe8 un giardino sano, rigoglioso e armonioso nel tempo. Offriamo servizi di manutenzione professionale per garantire che il tuo spazio verde rimanga sempre splendido in ogni stagione.\"})}),className:\"framer-1w15393\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-163wjgb\",\"data-styles-preset\":\"D3ThQqVFi\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Manutenzione\"})}),className:\"framer-mhng9t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":TGfKJxxQG\",webPageId:\"Gh0ZS9fbp\"},motionChild:true,nodeId:\"UucyfH32i\",openInNewTab:true,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1391wc1 framer-z8yd43\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scopri tutti i servizi\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Scopri tutti i servizi\"})}),className:\"framer-qunl58\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{y:(componentViewport?.y||0)+0+2437.5},nEcD12Eb6:{height:726,y:undefined},NvNtkhDHo:{y:(componentViewport?.y||0)+0+2323.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2837,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ermbq2-container\",id:elementId2,nodeId:\"TNQTHgEqV\",ref:ref3,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{style:{width:\"100%\"},variant:\"DD4JGx2nt\"},NvNtkhDHo:{variant:\"DeSZhtRfN\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"TNQTHgEqV\",layoutId:\"TNQTHgEqV\",style:{height:\"100%\",width:\"100%\"},variant:\"uFnOgUERu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nEcD12Eb6:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-44qr7n-container\",layoutScroll:true,nodeId:\"Q1bRyoRnU\",rendersWithMotion:true,scopeId:\"JtLbIgW0M\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6uBUUna0:{__framer__targets:[{ref:ref2,target:\"BbnPB52nR\"}],variant:\"IPHDe2WmO\"},nEcD12Eb6:{__framer__variantAppearEffectEnabled:undefined,variant:\"W3zR6qFB8\"},NvNtkhDHo:{__framer__targets:[{ref:ref2,target:\"H40gb4AVe\"}],variant:\"hQQ37y0YQ\"}},children:/*#__PURE__*/_jsx(Navigation2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"zbO3Zj3LK\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Q1bRyoRnU\",layoutId:\"Q1bRyoRnU\",style:{width:\"100%\"},variant:\"pZSPIP9Hh\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GNhrN.framer-z8yd43, .framer-GNhrN .framer-z8yd43 { display: block; }\",\".framer-GNhrN.framer-jt0cmx { align-content: center; align-items: center; background-color: #003445; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-GNhrN .framer-1mze854 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GNhrN .framer-118n479-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-GNhrN .framer-1bpfkwl, .framer-GNhrN .framer-9jkssg, .framer-GNhrN .framer-r0cx1a, .framer-GNhrN .framer-1e8hpv3 { height: 300px; position: relative; width: 400px; }\",\".framer-GNhrN .framer-1qe85l { background: linear-gradient(237deg, rgba(87, 87, 87, 0.37) 61%, rgba(0, 0, 0, 0.66) 100%); box-shadow: 1px 1px 2px 0px #1ea12c; flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-GNhrN .framer-nz6vbq { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 45px; justify-content: center; left: 211px; overflow: hidden; padding: 0px; position: absolute; width: 778px; z-index: 2; }\",\".framer-GNhrN .framer-luiz4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-GNhrN .framer-ihopkg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 166px; z-index: 1; }\",\".framer-GNhrN .framer-10qbkmb { --border-bottom-width: 1px; --border-color: rgba(33, 33, 33, 0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(204, 238, 255, 0); flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; z-index: 2; }\",\".framer-GNhrN .framer-190a2sl-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 51%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; }\",\".framer-GNhrN .framer-fup0yk { --border-bottom-width: 1px; --border-color: rgba(33, 33, 33, 0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(255, 255, 255, 0); flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; }\",\".framer-GNhrN .framer-111s7ed-container, .framer-GNhrN .framer-1h3yb1s-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 51%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 20px; z-index: 1; }\",\".framer-GNhrN .framer-bmgdvd { --border-bottom-width: 1px; --border-color: rgba(33, 33, 33, 0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; background-color: rgba(186, 221, 255, 0); flex: 1 0 0px; height: 100%; position: relative; text-decoration: none; width: 1px; }\",\".framer-GNhrN .framer-15z45o3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-GNhrN .framer-1xfatwe { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-GNhrN .framer-1i0b6ke { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-GNhrN .framer-1jhlo0n-container { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 70px; }\",\".framer-GNhrN .framer-1p9hpnp { --border-bottom-width: 1px; --border-color: rgba(227, 227, 227, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(235, 235, 235, 0.41); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 70px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-GNhrN .framer-l52m41, .framer-GNhrN .framer-123nlnr, .framer-GNhrN .framer-qunl58 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GNhrN .framer-n39ck4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 37px; flex: none; height: auto; left: 111px; position: absolute; white-space: pre-wrap; width: 150px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GNhrN .framer-1rmvnda { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 49%; justify-content: center; left: 60px; overflow: visible; padding: 0px; position: absolute; top: calc(49.25000000000002% - 48.875% / 2); width: 90%; }\",\".framer-GNhrN .framer-3utb3d, .framer-GNhrN .framer-1an7swr { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-GNhrN .framer-186fdfe { -webkit-filter: drop-shadow(2px 2px 1px rgba(255, 255, 255, 0.58)); aspect-ratio: 1.9877049180327868 / 1; bottom: -27px; filter: drop-shadow(2px 2px 1px rgba(255, 255, 255, 0.58)); flex: none; left: 50%; overflow: hidden; position: absolute; top: -81px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 573px); z-index: 1; }\",\".framer-GNhrN .framer-l12enn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 0px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GNhrN .framer-cxencp { align-content: center; align-items: center; background-color: #003445; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; overflow: visible; padding: 100px 15px 100px 15px; position: relative; width: 1200px; z-index: 1; }\",\".framer-GNhrN .framer-1832ps0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 564px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-GNhrN .framer-gbzyvz { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: 100%; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 80%; }\",\".framer-GNhrN .framer-vsu587 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GNhrN .framer-sktwi2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GNhrN .framer-gnc972-container { flex: none; height: 40px; position: relative; width: 140px; }\",\".framer-GNhrN .framer-lvj7ke { align-content: center; align-items: center; background-color: rgba(235, 235, 235, 0.41); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 140px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GNhrN .framer-7dvs2g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GNhrN .framer-1gwz8c4 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 0px 1px 25px -9px rgba(255, 255, 255, 0.25); flex: none; height: 466px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GNhrN .framer-o82a9e-container { flex: none; height: 78px; position: relative; width: 100%; z-index: 1; }\",\".framer-GNhrN .framer-1uvthih { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 236px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-GNhrN .framer-1g5819v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 69px; height: 90px; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 698px; }\",\".framer-GNhrN .framer-12btfnw, .framer-GNhrN .framer-38dfpz { aspect-ratio: 1 / 1; flex: none; height: 84%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 42px); }\",\".framer-GNhrN .framer-hlnoab { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 84%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 42px); }\",\".framer-GNhrN .framer-jxmxp2 { aspect-ratio: 1.4444444444444444 / 1; border-bottom-left-radius: 62px; border-bottom-right-radius: 62px; border-top-left-radius: 62px; border-top-right-radius: 62px; flex: none; height: 120%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 86px); }\",\".framer-GNhrN .framer-1qs7xul { aspect-ratio: 1 / 1; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; flex: none; height: 84%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 42px); }\",\".framer-GNhrN .framer-i7mi24 { aspect-ratio: 1.1272727272727272 / 1; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: hidden; position: relative; width: 43px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GNhrN .framer-5bu8fy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GNhrN .framer-119knsa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GNhrN .framer-13mqsqi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 837px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-GNhrN .framer-5hqi3w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GNhrN .framer-80glza { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-GNhrN .framer-86gvlx { --framer-paragraph-spacing: 0px; cursor: default; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 48%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GNhrN .framer-hazxyl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: 75%; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GNhrN .framer-1n4f22g, .framer-GNhrN .framer-14vzgna { align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 1px 21px -10px rgba(255, 255, 255, 0.37); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 530px; justify-content: flex-start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 31%; }\",\".framer-GNhrN .framer-1bftac5 { flex: none; height: 90%; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-GNhrN .framer-lf3aom { background-color: rgba(56, 56, 56, 0.67); flex: none; height: 100%; left: calc(49.83498349834986% - 100% / 2); opacity: 0; overflow: hidden; position: absolute; text-decoration: none; top: calc(49.89517819706501% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GNhrN .framer-1o9kewr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 51%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GNhrN .framer-tuvxsh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; bottom: 7px; flex: none; height: auto; left: 50%; overflow: visible; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-GNhrN .framer-f017ao { align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 1px 21px -10px rgba(255, 255, 255, 0.37); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 530px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 31%; }\",\".framer-GNhrN .framer-1fug4mj, .framer-GNhrN .framer-13ep6qw { flex: none; height: 90%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GNhrN .framer-15kj3on { flex: none; height: 100%; left: 0px; opacity: 0; overflow: hidden; position: absolute; text-decoration: none; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GNhrN .framer-17wus1d, .framer-GNhrN .framer-1w15393 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-GNhrN .framer-sku3fp, .framer-GNhrN .framer-mhng9t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-GNhrN .framer-1srji5u { flex: none; height: 100%; left: calc(49.865229110512146% - 100% / 2); opacity: 0; overflow: hidden; position: absolute; text-decoration: none; top: calc(49.89517819706501% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-GNhrN .framer-1391wc1 { --border-bottom-width: 1px; --border-color: var(--token-ec61d81d-051c-4956-a2ea-ec9fd22dbb74, #b8b8b8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-90fdcfdf-5d28-4bec-9f73-e228a40850cb, #144454); border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; box-shadow: 0px 0.48174984141951427px 0.4335748572775628px -0.6666666666666666px rgba(0, 0, 0, 0.08), 0px 1.8308266425947657px 1.647743978335289px -1.3333333333333333px rgba(0, 0, 0, 0.08915), 0px 8px 7.199999999999999px -2px rgba(0, 0, 0, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 250px; }\",\".framer-GNhrN .framer-1ermbq2-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-GNhrN .framer-44qr7n-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GNhrN.framer-jt0cmx, .framer-GNhrN .framer-1mze854, .framer-GNhrN .framer-nz6vbq, .framer-GNhrN .framer-luiz4c, .framer-GNhrN .framer-ihopkg, .framer-GNhrN .framer-15z45o3, .framer-GNhrN .framer-1xfatwe, .framer-GNhrN .framer-1i0b6ke, .framer-GNhrN .framer-1p9hpnp, .framer-GNhrN .framer-1rmvnda, .framer-GNhrN .framer-cxencp, .framer-GNhrN .framer-1832ps0, .framer-GNhrN .framer-gbzyvz, .framer-GNhrN .framer-sktwi2, .framer-GNhrN .framer-lvj7ke, .framer-GNhrN .framer-7dvs2g, .framer-GNhrN .framer-1uvthih, .framer-GNhrN .framer-1g5819v, .framer-GNhrN .framer-5bu8fy, .framer-GNhrN .framer-119knsa, .framer-GNhrN .framer-13mqsqi, .framer-GNhrN .framer-80glza, .framer-GNhrN .framer-hazxyl, .framer-GNhrN .framer-1n4f22g, .framer-GNhrN .framer-f017ao, .framer-GNhrN .framer-14vzgna, .framer-GNhrN .framer-1391wc1 { gap: 0px; } .framer-GNhrN.framer-jt0cmx > *, .framer-GNhrN .framer-13mqsqi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GNhrN.framer-jt0cmx > :first-child, .framer-GNhrN .framer-luiz4c > :first-child, .framer-GNhrN .framer-15z45o3 > :first-child, .framer-GNhrN .framer-1rmvnda > :first-child, .framer-GNhrN .framer-gbzyvz > :first-child, .framer-GNhrN .framer-7dvs2g > :first-child, .framer-GNhrN .framer-13mqsqi > :first-child, .framer-GNhrN .framer-80glza > :first-child, .framer-GNhrN .framer-1n4f22g > :first-child, .framer-GNhrN .framer-f017ao > :first-child, .framer-GNhrN .framer-14vzgna > :first-child { margin-top: 0px; } .framer-GNhrN.framer-jt0cmx > :last-child, .framer-GNhrN .framer-luiz4c > :last-child, .framer-GNhrN .framer-15z45o3 > :last-child, .framer-GNhrN .framer-1rmvnda > :last-child, .framer-GNhrN .framer-gbzyvz > :last-child, .framer-GNhrN .framer-7dvs2g > :last-child, .framer-GNhrN .framer-13mqsqi > :last-child, .framer-GNhrN .framer-80glza > :last-child, .framer-GNhrN .framer-1n4f22g > :last-child, .framer-GNhrN .framer-f017ao > :last-child, .framer-GNhrN .framer-14vzgna > :last-child { margin-bottom: 0px; } .framer-GNhrN .framer-1mze854 > *, .framer-GNhrN .framer-1p9hpnp > *, .framer-GNhrN .framer-1832ps0 > *, .framer-GNhrN .framer-lvj7ke > *, .framer-GNhrN .framer-1uvthih > *, .framer-GNhrN .framer-5bu8fy > *, .framer-GNhrN .framer-119knsa > *, .framer-GNhrN .framer-hazxyl > *, .framer-GNhrN .framer-1391wc1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GNhrN .framer-1mze854 > :first-child, .framer-GNhrN .framer-nz6vbq > :first-child, .framer-GNhrN .framer-ihopkg > :first-child, .framer-GNhrN .framer-1xfatwe > :first-child, .framer-GNhrN .framer-1i0b6ke > :first-child, .framer-GNhrN .framer-1p9hpnp > :first-child, .framer-GNhrN .framer-cxencp > :first-child, .framer-GNhrN .framer-1832ps0 > :first-child, .framer-GNhrN .framer-sktwi2 > :first-child, .framer-GNhrN .framer-lvj7ke > :first-child, .framer-GNhrN .framer-1uvthih > :first-child, .framer-GNhrN .framer-1g5819v > :first-child, .framer-GNhrN .framer-5bu8fy > :first-child, .framer-GNhrN .framer-119knsa > :first-child, .framer-GNhrN .framer-hazxyl > :first-child, .framer-GNhrN .framer-1391wc1 > :first-child { margin-left: 0px; } .framer-GNhrN .framer-1mze854 > :last-child, .framer-GNhrN .framer-nz6vbq > :last-child, .framer-GNhrN .framer-ihopkg > :last-child, .framer-GNhrN .framer-1xfatwe > :last-child, .framer-GNhrN .framer-1i0b6ke > :last-child, .framer-GNhrN .framer-1p9hpnp > :last-child, .framer-GNhrN .framer-cxencp > :last-child, .framer-GNhrN .framer-1832ps0 > :last-child, .framer-GNhrN .framer-sktwi2 > :last-child, .framer-GNhrN .framer-lvj7ke > :last-child, .framer-GNhrN .framer-1uvthih > :last-child, .framer-GNhrN .framer-1g5819v > :last-child, .framer-GNhrN .framer-5bu8fy > :last-child, .framer-GNhrN .framer-119knsa > :last-child, .framer-GNhrN .framer-hazxyl > :last-child, .framer-GNhrN .framer-1391wc1 > :last-child { margin-right: 0px; } .framer-GNhrN .framer-nz6vbq > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-GNhrN .framer-luiz4c > *, .framer-GNhrN .framer-15z45o3 > *, .framer-GNhrN .framer-7dvs2g > *, .framer-GNhrN .framer-80glza > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GNhrN .framer-ihopkg > *, .framer-GNhrN .framer-1i0b6ke > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GNhrN .framer-1xfatwe > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-GNhrN .framer-1rmvnda > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-GNhrN .framer-cxencp > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-GNhrN .framer-gbzyvz > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-GNhrN .framer-sktwi2 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-GNhrN .framer-1g5819v > * { margin: 0px; margin-left: calc(69px / 2); margin-right: calc(69px / 2); } .framer-GNhrN .framer-1n4f22g > *, .framer-GNhrN .framer-f017ao > *, .framer-GNhrN .framer-14vzgna > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-GNhrN[data-border=\"true\"]::after, .framer-GNhrN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GNhrN.framer-jt0cmx { width: 810px; } .framer-GNhrN .framer-1mze854 { height: min-content; } .framer-GNhrN .framer-186fdfe { width: var(--framer-aspect-ratio-supported, 710px); } .framer-GNhrN .framer-cxencp { width: 100%; } .framer-GNhrN .framer-gbzyvz { gap: 0px; } .framer-GNhrN .framer-1gwz8c4 { width: 80%; } .framer-GNhrN .framer-13mqsqi { height: min-content; padding: 18px 0px 18px 0px; } .framer-GNhrN .framer-5hqi3w, .framer-GNhrN .framer-86gvlx { order: 0; } .framer-GNhrN .framer-80glza { order: 1; } .framer-GNhrN .framer-hazxyl { order: 2; } .framer-GNhrN .framer-tuvxsh { bottom: 10px; left: 50%; } .framer-GNhrN .framer-1391wc1 { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GNhrN .framer-gbzyvz { gap: 0px; } .framer-GNhrN .framer-gbzyvz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GNhrN .framer-gbzyvz > :first-child { margin-top: 0px; } .framer-GNhrN .framer-gbzyvz > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-GNhrN.framer-jt0cmx { width: 360px; } .framer-GNhrN .framer-1mze854 { order: 0; } .framer-GNhrN .framer-118n479-container { flex: none; width: 100%; } .framer-GNhrN .framer-n39ck4 { bottom: 2px; left: 54%; transform: translateX(-50%); width: 89%; z-index: 2; } .framer-GNhrN .framer-1rmvnda { height: min-content; left: 0px; right: 0px; top: 49%; transform: translateY(-50%); width: unset; } .framer-GNhrN .framer-3utb3d, .framer-GNhrN .framer-1an7swr { flex: none; height: 191px; } .framer-GNhrN .framer-186fdfe { bottom: unset; height: var(--framer-aspect-ratio-supported, 163px); top: 50%; transform: translate(-50%, -50%); width: 90%; } .framer-GNhrN .framer-l12enn { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 90%; } .framer-GNhrN .framer-cxencp { flex-direction: column; height: min-content; order: 1; padding: 100px 20px 50px 20px; width: 100%; } .framer-GNhrN .framer-1832ps0 { height: min-content; order: 1; width: 100%; } .framer-GNhrN .framer-gbzyvz { align-content: center; align-items: center; flex: 1 0 0px; gap: 22px; height: min-content; max-width: 100%; padding: 40px 0px 0px 0px; width: 1px; } .framer-GNhrN .framer-7dvs2g { flex: none; order: 0; width: 100%; } .framer-GNhrN .framer-1gwz8c4 { height: 282px; order: 0; } .framer-GNhrN .framer-o82a9e-container { height: 68px; order: 1; } .framer-GNhrN .framer-5bu8fy { order: 2; } .framer-GNhrN .framer-13mqsqi { gap: 82px; height: min-content; padding: 148px 20px 148px 20px; } .framer-GNhrN .framer-80glza { padding: 18px 0px 18px 0px; } .framer-GNhrN .framer-hazxyl { gap: 37px; height: min-content; } .framer-GNhrN .framer-1n4f22g, .framer-GNhrN .framer-f017ao, .framer-GNhrN .framer-14vzgna { width: 100%; } .framer-GNhrN .framer-1ermbq2-container { height: auto; order: 3; } .framer-GNhrN .framer-44qr7n-container { order: 4; right: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GNhrN .framer-cxencp, .framer-GNhrN .framer-gbzyvz, .framer-GNhrN .framer-13mqsqi, .framer-GNhrN .framer-hazxyl { gap: 0px; } .framer-GNhrN .framer-cxencp > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-GNhrN .framer-cxencp > :first-child, .framer-GNhrN .framer-gbzyvz > :first-child, .framer-GNhrN .framer-13mqsqi > :first-child { margin-top: 0px; } .framer-GNhrN .framer-cxencp > :last-child, .framer-GNhrN .framer-gbzyvz > :last-child, .framer-GNhrN .framer-13mqsqi > :last-child { margin-bottom: 0px; } .framer-GNhrN .framer-gbzyvz > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-GNhrN .framer-13mqsqi > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-GNhrN .framer-hazxyl > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-GNhrN .framer-hazxyl > :first-child { margin-left: 0px; } .framer-GNhrN .framer-hazxyl > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 1366px) { .framer-GNhrN.framer-jt0cmx { width: 1366px; } .framer-GNhrN .framer-1mze854 { height: min-content; order: 0; } .framer-GNhrN .framer-118n479-container, .framer-GNhrN .framer-5hqi3w, .framer-GNhrN .framer-86gvlx { order: 0; } .framer-GNhrN .framer-1qe85l, .framer-GNhrN .framer-cxencp { order: 1; } .framer-GNhrN .framer-nz6vbq { bottom: 50px; gap: 10px; left: calc(50.00000000000002% - 778px / 2); } .framer-GNhrN .framer-luiz4c, .framer-GNhrN .framer-15z45o3 { height: 100%; } .framer-GNhrN .framer-1xfatwe { gap: 30px; } .framer-GNhrN .framer-n39ck4 { bottom: 55px; } .framer-GNhrN .framer-1rmvnda { height: 36%; top: calc(50.00000000000002% - 36% / 2); width: 90%; } .framer-GNhrN .framer-186fdfe { width: var(--framer-aspect-ratio-supported, 614px); } .framer-GNhrN .framer-1832ps0 { align-content: center; align-items: center; } .framer-GNhrN .framer-gbzyvz { gap: 58px; } .framer-GNhrN .framer-7dvs2g { gap: 25px; } .framer-GNhrN .framer-o82a9e-container { height: 44px; } .framer-GNhrN .framer-5bu8fy, .framer-GNhrN .framer-hazxyl { order: 2; } .framer-GNhrN .framer-13mqsqi { gap: 15px; height: min-content; } .framer-GNhrN .framer-80glza { order: 1; padding: 62px 0px 62px 0px; } .framer-GNhrN .framer-1n4f22g { min-width: 100.02px; width: 30%; } .framer-GNhrN .framer-1o9kewr { left: 50%; } .framer-GNhrN .framer-tuvxsh { bottom: 4px; left: 50%; } .framer-GNhrN .framer-f017ao, .framer-GNhrN .framer-14vzgna { width: 30%; } .framer-GNhrN .framer-17wus1d { left: 50%; width: 299px; } .framer-GNhrN .framer-1391wc1 { height: 65px; order: 3; } .framer-GNhrN .framer-1ermbq2-container { order: 3; } .framer-GNhrN .framer-44qr7n-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GNhrN .framer-nz6vbq, .framer-GNhrN .framer-1xfatwe, .framer-GNhrN .framer-gbzyvz, .framer-GNhrN .framer-7dvs2g, .framer-GNhrN .framer-13mqsqi { gap: 0px; } .framer-GNhrN .framer-nz6vbq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GNhrN .framer-nz6vbq > :first-child, .framer-GNhrN .framer-1xfatwe > :first-child { margin-left: 0px; } .framer-GNhrN .framer-nz6vbq > :last-child, .framer-GNhrN .framer-1xfatwe > :last-child { margin-right: 0px; } .framer-GNhrN .framer-1xfatwe > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-GNhrN .framer-gbzyvz > * { margin: 0px; margin-bottom: calc(58px / 2); margin-top: calc(58px / 2); } .framer-GNhrN .framer-gbzyvz > :first-child, .framer-GNhrN .framer-7dvs2g > :first-child, .framer-GNhrN .framer-13mqsqi > :first-child { margin-top: 0px; } .framer-GNhrN .framer-gbzyvz > :last-child, .framer-GNhrN .framer-7dvs2g > :last-child, .framer-GNhrN .framer-13mqsqi > :last-child { margin-bottom: 0px; } .framer-GNhrN .framer-7dvs2g > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-GNhrN .framer-13mqsqi > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3237\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NvNtkhDHo\":{\"layout\":[\"fixed\",\"auto\"]},\"nEcD12Eb6\":{\"layout\":[\"fixed\",\"auto\"]},\"A6uBUUna0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"uprn1WAKm\":{\"pattern\":\":uprn1WAKm\",\"name\":\"home\"},\"Xp9QQksD1\":{\"pattern\":\":Xp9QQksD1\",\"name\":\"chi-siamo\"},\"TNQTHgEqV\":{\"pattern\":\":TNQTHgEqV\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerJtLbIgW0M=withCSS(Component,css,\"framer-GNhrN\");export default FramerJtLbIgW0M;FramerJtLbIgW0M.displayName=\"Home\";FramerJtLbIgW0M.defaultProps={height:3237,width:1200};addFonts(FramerJtLbIgW0M,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SlideshowFonts,...MaterialFonts,...ButtonFonts,...TickerFonts,...FooterFonts,...Navigation2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJtLbIgW0M\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"uprn1WAKm\\\":{\\\"pattern\\\":\\\":uprn1WAKm\\\",\\\"name\\\":\\\"home\\\"},\\\"Xp9QQksD1\\\":{\\\"pattern\\\":\\\":Xp9QQksD1\\\",\\\"name\\\":\\\"chi-siamo\\\"},\\\"TNQTHgEqV\\\":{\\\"pattern\\\":\\\":TNQTHgEqV\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"3237\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NvNtkhDHo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nEcD12Eb6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A6uBUUna0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__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", "SlideshowFonts", "getFonts", "Slideshow", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MaterialFonts", "Icon", "ButtonFonts", "GBC64teSj_default", "TickerFonts", "Ticker", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "MotionDivWithFX", "motion", "FooterFonts", "CcaJY3qZk_default", "Navigation2Fonts", "pdieSZo7r_default", "Navigation2WithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "animation3", "transition3", "animation4", "transition4", "transition5", "animation5", "transition6", "animation6", "transition7", "transition8", "transition9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Link", "x", "getLoadingLazyAtYPosition", "css", "FramerJtLbIgW0M", "withCSS", "JtLbIgW0M_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
