{"version":3,"file":"vhJWeAF6FQ-S6ZNFalSeYrjHQOAVuYT5Ylve-ls5gug.B_Dg2u-c.mjs","names":["getProps","useRef","useCallback","useState","useMemo","ChatWithMe","TitleSection","ButtonM","ButtonM1","ButtonForm","XCloseDelete","SpaceH60","YouTube","SectionNews","useRef","React.useId","metadata","React.useMemo","metadataProvider","sharedStyle.className","sharedStyle1.className","sharedStyle2.className","sharedStyle3.className","React.useRef","className","PropertyOverrides","React.Fragment","Image","CategoriaProdotti","_Fragment","idfLUyIjOih","MAhqojLkYfLUyIjOih","X_c1SEV08fLUyIjOih","idJKwzOXNxj","MAhqojLkYJKwzOXNxj","X_c1SEV08JKwzOXNxj","idwML99YiNH","MAhqojLkYwML99YiNH","X_c1SEV08wML99YiNH","idgO5TRGIje","MAhqojLkYgO5TRGIje","X_c1SEV08gO5TRGIje","idQzG9fDyXI","MAhqojLkYQzG9fDyXI","X_c1SEV08QzG9fDyXI","FormPlainTextInput","idAlXSWW_sr","jYjMUpvVsAlXSWW_sr","MAhqojLkYAlXSWW_sr","X_c1SEV08AlXSWW_sr","sharedStyle.css","sharedStyle1.css","sharedStyle2.css","sharedStyle3.css","sharedStyle.fonts","sharedStyle1.fonts","sharedStyle2.fonts","sharedStyle3.fonts"],"sources":["https:/framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js","https:/framerusercontent.com/modules/db4KhpljKmeXin7dL9BD/MyCrymGDCGRGMjkOoJZ7/a3kmSDX8h.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks “Play”.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won’t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome – if we’re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That’s because\n// `startTime` == start == changing it shouldn’t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn’t exist,\n// you might ask? Now, that’s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the “Start Time” in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don’t know, and it\n//   always supported it, so let’s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map","// Generated by Framer (0956b9b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,FormBooleanInput,FormContainer,FormPlainTextInput,FormSelect,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useQueryData,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import XCloseDelete from\"https://framerusercontent.com/modules/eoFCBeugtO9A8u59Cj4j/Muj9XivpCt98AYPTqIPn/ysZZRECaD.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ButtonM1 from\"https://framerusercontent.com/modules/Lus604QMc9RArAbWLyr7/iELufKAW3KsxPDxRyJv3/SviuyOe1Q.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js\";import SectionNews from\"#framer/local/canvasComponent/bOEWIQBg2/bOEWIQBg2.js\";import ButtonM from\"#framer/local/canvasComponent/cISrQdJYE/cISrQdJYE.js\";import TitleSection from\"#framer/local/canvasComponent/l9tzHT500/l9tzHT500.js\";import SpaceH60 from\"#framer/local/canvasComponent/rhkdJtXix/rhkdJtXix.js\";import ButtonForm from\"#framer/local/canvasComponent/T0LdDo8XC/T0LdDo8XC.js\";import ChatWithMe from\"#framer/local/canvasComponent/v0i5Cj5RK/v0i5Cj5RK.js\";import CategoriaProdotti from\"#framer/local/collection/bNCOtJA3p/bNCOtJA3p.js\";import*as sharedStyle3 from\"#framer/local/css/bd3_rjRI7/bd3_rjRI7.js\";import*as sharedStyle2 from\"#framer/local/css/k5Xn7O841/k5Xn7O841.js\";import*as sharedStyle from\"#framer/local/css/XziI94qEB/XziI94qEB.js\";import*as sharedStyle1 from\"#framer/local/css/yJUqGo2sd/yJUqGo2sd.js\";import metadataProvider from\"#framer/local/webPageMetadata/a3kmSDX8h/a3kmSDX8h.js\";const ChatWithMeFonts=getFonts(ChatWithMe);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const TitleSectionFonts=getFonts(TitleSection);const ButtonMFonts=getFonts(ButtonM);const ButtonM1Fonts=getFonts(ButtonM1);const ButtonFormFonts=getFonts(ButtonForm);const XCloseDeleteFonts=getFonts(XCloseDelete);const SpaceH60Fonts=getFonts(SpaceH60);const YouTubeFonts=getFonts(YouTube);const SectionNewsFonts=getFonts(SectionNews);const breakpoints={aVpbQzLcp:\"(max-width: 809.98px)\",LMNPpQTMJ:\"(min-width: 1200px)\",ZkIOK6tRW:\"(min-width: 810px) and (max-width: 1199.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dWnaQ\";const variantClassNames={aVpbQzLcp:\"framer-v-3aqe5b\",LMNPpQTMJ:\"framer-v-1m7p3nc\",ZkIOK6tRW:\"framer-v-b1uz06\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:2,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"LMNPpQTMJ\",Phone:\"aVpbQzLcp\",Tablet:\"ZkIOK6tRW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"LMNPpQTMJ\"};};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,X_c1SEV08fLUyIjOih,MAhqojLkYfLUyIjOih,idfLUyIjOih,X_c1SEV08JKwzOXNxj,MAhqojLkYJKwzOXNxj,idJKwzOXNxj,X_c1SEV08wML99YiNH,MAhqojLkYwML99YiNH,idwML99YiNH,X_c1SEV08gO5TRGIje,MAhqojLkYgO5TRGIje,idgO5TRGIje,X_c1SEV08QzG9fDyXI,MAhqojLkYQzG9fDyXI,idQzG9fDyXI,MAhqojLkYAlXSWW_sr,X_c1SEV08AlXSWW_sr,jYjMUpvVsAlXSWW_sr,idAlXSWW_sr,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider({},activeLocale),[activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VhW7FCljdtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"LMNPpQTMJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1m7p3nc\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:320},ZkIOK6tRW:{y:120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:680,y:210,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qw0r9y-container\",layoutScroll:true,nodeId:\"xEIHuvMu9\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{variant:\"EfZzYqA3r\"},ZkIOK6tRW:{variant:\"tOlATjYeJ\"}},children:/*#__PURE__*/_jsx(ChatWithMe,{height:\"100%\",id:\"xEIHuvMu9\",layoutId:\"xEIHuvMu9\",variant:\"CBtB70giu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7zgfor\",\"data-framer-name\":\"Top hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wff024-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PnOqB6Z5h\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PnOqB6Z5h\",isMixedBorderRadius:false,layoutId:\"PnOqB6Z5h\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/NnMzDzhX9KhMZpMPR3BjM2wAbIU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvfk1c\",\"data-framer-name\":\"Cover\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hd0xz7\",\"data-framer-name\":\"Claim top\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i62ck3\",\"data-framer-name\":\"Sez text top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-npad1f\",\"data-styles-preset\":\"XziI94qEB\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Rethink the ordinary\"})}),className:\"framer-1awt8wx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y2ju0l\",\"data-styles-preset\":\"yJUqGo2sd\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Shaping Spaces to Inspire Lives\"})}),className:\"framer-wgl9tc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Guardiamo il mondo con occhi nuovi, e dove gli altri vedono l’ordinario, noi vediamo ci\\xf2 che pu\\xf2 diventare straordinario.\"})}),className:\"framer-1ol1bio\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jd2f5k\",\"data-framer-name\":\"Fact Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1abqhu4\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdr5q6\",\"data-framer-name\":\"Amount\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-npad1f\",\"data-styles-preset\":\"XziI94qEB\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"30\"})}),className:\"framer-1sf27xs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-2d9fdd1c-9481-4d00-acc8-5058d9aa515e, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-yxee87\",fonts:[\"FS;Plus Jakarta Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Anni insieme\"})}),className:\"framer-1vclc2n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tx8c4d\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16h1rym\",\"data-framer-name\":\"Amount\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-npad1f\",\"data-styles-preset\":\"XziI94qEB\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"1000\"})}),className:\"framer-1mgrfcp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-2d9fdd1c-9481-4d00-acc8-5058d9aa515e, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-1edeyt3\",fonts:[\"FS;Plus Jakarta Sans-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Idee che hanno preso vita\"})}),className:\"framer-1x7hx6l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wnrc9n\",\"data-framer-name\":\"Space H\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{height:450,width:componentViewport?.width||\"100vw\"},ZkIOK6tRW:{width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"1200px\",y:(componentViewport?.y||0)+0+1070,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d5tdup-container\",nodeId:\"jWgtPi8cE\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{variant:\"VWiThHRUb\"},ZkIOK6tRW:{variant:\"oyogmbZ6o\"}},children:/*#__PURE__*/_jsx(TitleSection,{EAZYbY_S9:\"I Prodotti\",HDYKNc6bV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Da oltre trent’anni trasformiamo idee in soluzioni: studiamo, progettiamo e innoviamo per offrire sistemi che uniscono estetica, funzionalit\\xe0 e durata, pensati per stupire e ispirare chi progetta.\"})}),height:\"100%\",id:\"jWgtPi8cE\",L0qZ2_0dY:\"Una soluzione per ogni progetto\",layoutId:\"jWgtPi8cE\",style:{height:\"100%\",width:\"100%\"},variant:\"ldHUpotFE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1tvzw\",\"data-framer-name\":\"Stack Prodotti\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yz3qpu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mjqhi3\",\"data-framer-name\":\"prod top\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"filomuro\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"XBnHp8UTz\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"sfXBml3YT\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-f8jryz framer-b8clu6\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+0+500-420+20+0),pixelHeight:999,pixelWidth:4459,sizes:\"178.5385px\",src:\"https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?width=4459&height=999\",srcSet:\"https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=512&width=4459&height=999 512w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=1024&width=4459&height=999 1024w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=2048&width=4459&height=999 2048w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=4096&width=4459&height=999 4096w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?width=4459&height=999 4459w\"},fitImageDimension:\"height\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+0+82.5+20+0),pixelHeight:999,pixelWidth:4459,sizes:\"300px\",src:\"https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?width=4459&height=999\",srcSet:\"https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=512&width=4459&height=999 512w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=1024&width=4459&height=999 1024w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=2048&width=4459&height=999 2048w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?scale-down-to=4096&width=4459&height=999 4096w,https://framerusercontent.com/images/g2XokUbBNvXCECVpl3kzPkBEFl4.png?width=4459&height=999 4459w\"},className:\"framer-1omfjn1\",\"data-framer-name\":\"Filomurow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Affidarsi all’originale Filomuro\\xae significa garantire ai progetti la sicurezza di un sistema certificato e riconosciuto come prodotto di eccellenza.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Un progetto di qualit\\xe0 merita solo il meglio: l’originale Filomuro\\xae.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Affidarsi all’originale Filomuro\\xae significa garantire ai progetti la sicurezza di un sistema certificato e riconosciuto come prodotto di eccellenza.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Un progetto di qualit\\xe0 merita solo il meglio: l’originale Filomuro\\xae.\"})]}),className:\"framer-8o4rpq\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+1520+30+0+0+0+500-420+20+326}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1370+0+0+0+0+82.5+20+451,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ajedt7-container\",nodeId:\"ak4KoK2PH\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM,{height:\"100%\",hEmulMOQ0:\"Scopri FILOMURO\",id:\"ak4KoK2PH\",layoutId:\"ak4KoK2PH\",variant:\"MQJSpT31M\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"filomuro\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"XBnHp8UTz\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"fLUyIjOih\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1uewota framer-b8clu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fLUyIjOih\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"fLUyIjOih\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"fLUyIjOih\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"fLUyIjOih\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"fLUyIjOih\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"XBnHp8UTz\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idfLUyIjOih,MAhqojLkY:MAhqojLkYfLUyIjOih,X_c1SEV08:X_c1SEV08fLUyIjOih},index)=>{MAhqojLkYfLUyIjOih??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fLUyIjOih-${idfLUyIjOih}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYfLUyIjOih},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ua7udl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rzact8\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dieit5\",\"data-framer-name\":\"H Stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"Filomuro battente anta unica\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,...toResponsiveImage(X_c1SEV08fLUyIjOih)}},ZkIOK6tRW:{background:{alt:\"Filomuro battente anta unica\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,...toResponsiveImage(X_c1SEV08fLUyIjOih)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Filomuro battente anta unica\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:\"1160px\",...toResponsiveImage(X_c1SEV08fLUyIjOih)},className:\"framer-1f4mj6f\"})})})})})})},idfLUyIjOih);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p4auqz\",\"data-framer-name\":\"Stack centr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tuwdwq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xxouej\",\"data-framer-name\":\"prod1\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"controtelai-a-scomparsa\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"iv67ogCZj\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"JKwzOXNxj\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gjmrua framer-b8clu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JKwzOXNxj\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"JKwzOXNxj\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"JKwzOXNxj\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"JKwzOXNxj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"JKwzOXNxj\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"iv67ogCZj\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idJKwzOXNxj,MAhqojLkY:MAhqojLkYJKwzOXNxj,X_c1SEV08:X_c1SEV08JKwzOXNxj},index1)=>{MAhqojLkYJKwzOXNxj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JKwzOXNxj-${idJKwzOXNxj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYJKwzOXNxj},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7edsl\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1muu9p8\",\"data-framer-name\":\"H Stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+0+0+0+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,...toResponsiveImage(X_c1SEV08JKwzOXNxj)}},ZkIOK6tRW:{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) / 2, 1px)`,...toResponsiveImage(X_c1SEV08JKwzOXNxj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:\"570px\",...toResponsiveImage(X_c1SEV08JKwzOXNxj)},className:\"framer-1dmwoi5\"})})})})})},idJKwzOXNxj);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"controtelai-a-scomparsa\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"iv67ogCZj\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"P6Abszf2J\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1cn3wv6 framer-b8clu6\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+0+500-447+10+0),pixelHeight:998,pixelWidth:4148,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?width=4148&height=998\",srcSet:\"https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=512&width=4148&height=998 512w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=1024&width=4148&height=998 1024w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=2048&width=4148&height=998 2048w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=4096&width=4148&height=998 4096w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?width=4148&height=998 4148w\"},fitImageDimension:\"height\"}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+171+10+0),pixelHeight:998,pixelWidth:4148,positionX:\"center\",positionY:\"center\",sizes:\"280px\",src:\"https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?width=4148&height=998\",srcSet:\"https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=512&width=4148&height=998 512w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=1024&width=4148&height=998 1024w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=2048&width=4148&height=998 2048w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?scale-down-to=4096&width=4148&height=998 4096w,https://framerusercontent.com/images/Mau03FoibU8oU1zPjrJ2nfkeY.png?width=4148&height=998 4148w\"},className:\"framer-b0841m\",\"data-framer-name\":\"Filomurow\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Filomuro\\xae abbraccia anche le soluzioni scorrevoli a scomparsa, progettate per coniugare funzionalit\\xe0 ed estetica senza compromessi. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Con Filomuro\\xae, ogni progetto ha la sua identit\\xe0.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Filomuro\\xae abbraccia anche le soluzioni scorrevoli a scomparsa, progettate per coniugare funzionalit\\xe0 ed estetica senza compromessi. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Con Filomuro\\xae, ogni progetto ha la sua identit\\xe0.\"})]}),className:\"framer-tst64f\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{width:\"290px\",y:(componentViewport?.y||0)+0+1520+30+0+0+520+0+0+0+500-447+10+363}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"280px\",y:(componentViewport?.y||0)+0+1370+0+0+0+720+0+0+171+10+412,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5jh84-container\",nodeId:\"TfFDD2BxQ\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM,{height:\"100%\",hEmulMOQ0:\"Vai ai Controtelai\",id:\"TfFDD2BxQ\",layoutId:\"TfFDD2BxQ\",style:{width:\"100%\"},variant:\"MQJSpT31M\",width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwsqya\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-414v2d\",\"data-framer-name\":\"prod2\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"inferriate\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"OB0EhoPIW\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"wML99YiNH\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-kzjld2 framer-b8clu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wML99YiNH\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"wML99YiNH\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"wML99YiNH\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"wML99YiNH\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"wML99YiNH\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"OB0EhoPIW\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idwML99YiNH,MAhqojLkY:MAhqojLkYwML99YiNH,X_c1SEV08:X_c1SEV08wML99YiNH},index2)=>{MAhqojLkYwML99YiNH??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wML99YiNH-${idwML99YiNH}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYwML99YiNH},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y2c07g\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-g3nfh\",\"data-framer-name\":\"H Stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+0+0+0+0+0+0+0+0),pixelHeight:4168,pixelWidth:6251,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,...toResponsiveImage(X_c1SEV08wML99YiNH)}},ZkIOK6tRW:{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:4168,pixelWidth:6251,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) / 2, 1px)`,...toResponsiveImage(X_c1SEV08wML99YiNH)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+0+0+0+0+0+0+0),pixelHeight:4168,pixelWidth:6251,sizes:\"570px\",...toResponsiveImage(X_c1SEV08wML99YiNH)},className:\"framer-1sz3wjv\"})})})})})},idwML99YiNH);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"inferriate\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"OB0EhoPIW\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"eDK7nSkY5\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zcprur framer-b8clu6\",\"data-framer-name\":\"Claim oscuranti\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ryt2w8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16r8ay0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Proteggi ci\\xf2 che Ami\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Proteggi ci\\xf2 che Ami\"})}),className:\"framer-akh2j6\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+0+500-260+-17.5+0+0+157),pixelHeight:1277,pixelWidth:4477,positionX:\"center\",positionY:\"center\",sizes:\"270px\",src:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277\",srcSet:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=512&width=4477&height=1277 512w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=1024&width=4477&height=1277 1024w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=2048&width=4477&height=1277 2048w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=4096&width=4477&height=1277 4096w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277 4477w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+400-299+-17.5+0+0+157),pixelHeight:1277,pixelWidth:4477,positionX:\"center\",positionY:\"center\",sizes:\"230px\",src:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277\",srcSet:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=512&width=4477&height=1277 512w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=1024&width=4477&height=1277 1024w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=2048&width=4477&height=1277 2048w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=4096&width=4477&height=1277 4096w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277 4477w\"},className:\"framer-1l59l1r\",\"data-framer-name\":\"officine sicurezza\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+0+500-260+-17.5+0+0+231}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+0+400-299+-17.5+0+0+231,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xind3f-container\",isModuleExternal:true,nodeId:\"h6NXkJdPz\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM1,{height:\"100%\",hEmulMOQ0:\"Vai alle Inferriate\",id:\"h6NXkJdPz\",layoutId:\"h6NXkJdPz\",variant:\"CUXHasrJ9\",width:\"100%\"})})})})]})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oklufg\",\"data-framer-name\":\"prod2\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"persiane-e-oscuranti\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"q_FgueFw1\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"gO5TRGIje\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-st1qbb framer-b8clu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"gO5TRGIje\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"gO5TRGIje\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"gO5TRGIje\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"gO5TRGIje\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"gO5TRGIje\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"q_FgueFw1\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idgO5TRGIje,MAhqojLkY:MAhqojLkYgO5TRGIje,X_c1SEV08:X_c1SEV08gO5TRGIje},index3)=>{MAhqojLkYgO5TRGIje??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`gO5TRGIje-${idgO5TRGIje}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYgO5TRGIje},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ptrhr\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tsjsih\",\"data-framer-name\":\"H Stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+520+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,...toResponsiveImage(X_c1SEV08gO5TRGIje)}},ZkIOK6tRW:{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+420+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 60px) / 2, 1px)`,...toResponsiveImage(X_c1SEV08gO5TRGIje)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+420+0+0+0+0+0+0+0),pixelHeight:800,pixelWidth:1200,sizes:\"570px\",...toResponsiveImage(X_c1SEV08gO5TRGIje)},className:\"framer-e1xvh1\"})})})})})},idgO5TRGIje);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqd9sg\",\"data-framer-name\":\"Claim oscuranti\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ij0tai\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"persiane-e-oscuranti\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"q_FgueFw1\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"OIjAIXYwE\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ttw1pv framer-b8clu6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"L'alluminio incontra il fascino del legno\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"L'alluminio incontra il fascino del legno\"})}),className:\"framer-zsk5x0\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+520+500-260+-17.5+0+0+157),pixelHeight:1277,pixelWidth:4477,positionX:\"center\",positionY:\"center\",sizes:\"270px\",src:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277\",srcSet:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=512&width=4477&height=1277 512w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=1024&width=4477&height=1277 1024w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=2048&width=4477&height=1277 2048w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=4096&width=4477&height=1277 4096w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277 4477w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+420+80+-17.5+0+0+157),pixelHeight:1277,pixelWidth:4477,positionX:\"center\",positionY:\"center\",sizes:\"230px\",src:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277\",srcSet:\"https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=512&width=4477&height=1277 512w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=1024&width=4477&height=1277 1024w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=2048&width=4477&height=1277 2048w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?scale-down-to=4096&width=4477&height=1277 4096w,https://framerusercontent.com/images/FC2LGyigkfy5G7jldT2eZDBayAk.png?width=4477&height=1277 4477w\"},className:\"framer-qjxm6h\",\"data-framer-name\":\"officine sicurezza\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+1520+30+0+0+520+0+0+520+0+520+500-260+-17.5+0+0+231}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1370+0+0+0+720+0+0+0+420+80+-17.5+0+0+231,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p9g0kb-container\",isModuleExternal:true,nodeId:\"btUk6WPH4\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM1,{height:\"100%\",hEmulMOQ0:\"Vai alle Persiane\",id:\"btUk6WPH4\",layoutId:\"btUk6WPH4\",variant:\"CUXHasrJ9\",width:\"100%\"})})})})]})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ibq41f\",\"data-framer-name\":\"prod botton\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogm6pp\",\"data-framer-name\":\"prod botton\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"profili-per-cartongesso\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"COnNszFCo\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"QzG9fDyXI\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-449xac framer-b8clu6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QzG9fDyXI\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"QzG9fDyXI\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"QzG9fDyXI\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"QzG9fDyXI\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QzG9fDyXI\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"COnNszFCo\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idQzG9fDyXI,MAhqojLkY:MAhqojLkYQzG9fDyXI,X_c1SEV08:X_c1SEV08QzG9fDyXI},index4)=>{MAhqojLkYQzG9fDyXI??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QzG9fDyXI-${idQzG9fDyXI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYQzG9fDyXI},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14j5ju5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m3rxeh\",\"data-framer-name\":\"H Stack\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+2080+0+0+0+0+0+0+0+0),pixelHeight:750,pixelWidth:1280,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,...toResponsiveImage(X_c1SEV08QzG9fDyXI)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"# slack text\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+1560+0+0+0+0+0+0+0+0),pixelHeight:750,pixelWidth:1280,sizes:\"1200px\",...toResponsiveImage(X_c1SEV08QzG9fDyXI)},className:\"framer-38us08\"})})})})})},idQzG9fDyXI);})})})})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:\"profili-per-cartongesso\"},unresolvedPathSlugs:{MAhqojLkY:{collectionId:\"bNCOtJA3p\",collectionItemId:\"COnNszFCo\"}},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"gpCVrKL3I\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1vrgzrm framer-b8clu6\",\"data-framer-name\":\"Claim profili\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1520+30+0+0+2080+0+400-335+20+-3.5),pixelHeight:1145,pixelWidth:4480,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?width=4480&height=1145\",srcSet:\"https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=512&width=4480&height=1145 512w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=1024&width=4480&height=1145 1024w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=2048&width=4480&height=1145 2048w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=4096&width=4480&height=1145 4096w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?width=4480&height=1145 4480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:999,intrinsicWidth:4459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1370+0+0+0+1560+0+40+20+-7),pixelHeight:1145,pixelWidth:4480,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?width=4480&height=1145\",srcSet:\"https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=512&width=4480&height=1145 512w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=1024&width=4480&height=1145 1024w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=2048&width=4480&height=1145 2048w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?scale-down-to=4096&width=4480&height=1145 4096w,https://framerusercontent.com/images/1TeKxcCy00AcxN7YsoOPubWQIzc.png?width=4480&height=1145 4480w\"},className:\"framer-1fuxi0b\",\"data-framer-name\":\"Structura\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"20px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"MicroStee|\\xae, la nuova tecnologia brevettata che rende i profili pi\\xf9 robusti, migliora il fissaggio delle viti e incrementa il comfort acustico.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOVEF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv09' on, 'cv01' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"22px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 500',\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"MicroStee|\\xae, la nuova tecnologia brevettata che rende i profili pi\\xf9 robusti, migliora il fissaggio delle viti e incrementa il comfort acustico.\"})}),className:\"framer-tc694b\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+1520+30+0+0+2080+0+400-335+20+234.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1370+0+0+0+1560+0+40+20+243,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hoxrbe-container\",isModuleExternal:true,nodeId:\"yTX6yVJuj\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM1,{height:\"100%\",hEmulMOQ0:\"Vai ai Profili\",id:\"yTX6yVJuj\",layoutId:\"yTX6yVJuj\",variant:\"CUXHasrJ9\",width:\"100%\"})})})})]})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jklaje\",\"data-framer-name\":\"stack architetti\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4050+0+0),pixelHeight:800,pixelWidth:1200,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800\",srcSet:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=512&width=1200&height=800 512w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=1024&width=1200&height=800 1024w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800 1200w\"}},ZkIOK6tRW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0),pixelHeight:800,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 1px)`,src:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800\",srcSet:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=512&width=1200&height=800 512w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=1024&width=1200&height=800 1024w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3350+0),pixelHeight:800,pixelWidth:1200,sizes:\"1160px\",src:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800\",srcSet:\"https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=512&width=1200&height=800 512w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?scale-down-to=1024&width=1200&height=800 1024w,https://framerusercontent.com/images/pMJOlhXTz1rJ3umEnrE1fycB9I.jpg?width=1200&height=800 1200w\"},className:\"framer-bwvzq5\",\"data-framer-name\":\"Frame bgr\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102wlz\",\"data-border\":true,\"data-framer-name\":\"Architect\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuohwu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"60px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Progetto Architetti\"})}),className:\"framer-15h37st\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Consiglia\"})}),className:\"framer-1p64ys3\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Progetta\"})}),className:\"framer-120krvb\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Valorizza\"})}),className:\"framer-tq978d\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fqf9b6\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Offri ai tuoi clienti soluzioni Made in Italy, affidabili e competitive, Integra nei tuoi progetti sistemi sicuri e certificati, pensati per semplificare il lavoro. Dai valore al tuo talento, trasformando ogni realizzazione in un’opportunit\\xe0 di visibilit\\xe0 e crescita professionale.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eha0qs\",\"data-styles-preset\":\"bd3_rjRI7\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Offri ai tuoi clienti soluzioni Made in Italy, affidabili e competitive, Integra nei tuoi progetti sistemi sicuri e certificati, pensati per semplificare il lavoro. Dai valore al tuo talento, trasformando ogni realizzazione in un’opportunit\\xe0 di visibilit\\xe0 e crescita professionale.\"})}),className:\"framer-1v5xmhz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wfusd4\",\"data-framer-name\":\"Button Close\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+4050+0+0+0+0+40+317+0+155+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+3350+0+0+0+40+0+217+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-xxinm7-container\",id:\"xxinm7\",isModuleExternal:true,nodeId:\"dKsPOPLsK\",ref:ref1,scopeId:\"a3kmSDX8h\",children:[/*#__PURE__*/_jsx(ButtonM1,{height:\"100%\",hEmulMOQ0:\"Scopri il Programma\",id:\"dKsPOPLsK\",layoutId:\"dKsPOPLsK\",variant:\"CUXHasrJ9\",VhW7FCljd:VhW7FCljdtxyyif({overlay}),width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"xxinm7\",offsetX:-158,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation2,className:\"framer-19twhlk\",exit:animation1,initial:animation,ref:ref2,role:\"dialog\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ai9fri\",\"data-framer-name\":\"Architetti\",children:[/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/699fa39d-d0ee-40d8-b182-29f8da2b841b/submit\",className:\"framer-7m9lk0\",\"data-framer-name\":\"Form architetti\",nodeId:\"SLXU5m3VM\",redirectUrl:{webPageId:\"a3kmSDX8h\"},submitTrackingId:\"\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-beg08z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Name\"})}),className:\"framer-60eiu1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-143nke2\",inputName:\"Name\",placeholder:\"Inserisci nome e cognome\",type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-77wc1p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Partita Iva\"})}),className:\"framer-10o4s1n\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-n7z2fi\",inputName:\"Inserisci la partita iva\",placeholder:\"inserisci la partita iva\",type:\"number\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-gdha9d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Email\"})}),className:\"framer-1ca6na5\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-m4rrlu\",inputName:\"Email\",placeholder:\"inserisci l'email\",type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-15y2tt9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Categoria\"})}),className:\"framer-1qdf11a\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-stxom\",defaultValue:\"\",inputName:\"Location\",required:true,selectOptions:[{disabled:true,title:\"Select…\",type:\"option\",value:\"\"},{title:\"Architetto/Interior Designer\",type:\"option\",value:\"Architetto/Interior Designer\"},{title:\"Interior Designer\",type:\"option\",value:\"Interior Designer\"},{title:\"Altro\",type:\"option\",value:\"Altro\"}]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-u3xypc\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-11xhlb5\",defaultChecked:false,inputName:\"Contattato per maggiori informazioni\",type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Desidero essere contattato per ricevere informazioni sul programma Architetti\"})}),className:\"framer-fsf78c\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1rniwtw\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-5we2s\",defaultChecked:false,inputName:\"Contattato per corso di formazione\",type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Desidero essere contattato per partecipare al corso di formazione al programma\"})}),className:\"framer-eam2yf\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-167xaeo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Messaggio\"})}),className:\"framer-1ivue1m\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-8dieb8\",inputName:\"Messaggio\",placeholder:\"Inserisci qui il tuo messaggio\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bxejhu-container\",inComponentSlot:true,nodeId:\"RRTDAlWgE\",rendersWithMotion:true,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonForm,{height:\"100%\",id:\"RRTDAlWgE\",layoutId:\"RRTDAlWgE\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"zoo8pgOG0\",success:\"NjTbLn9_w\"},\"qXep6kQJy\"),width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u782tx\",children:/*#__PURE__*/_jsx(XCloseDelete,{animated:false,className:\"framer-11n4q16\",CRY1Fpez4:true,layoutId:\"b3JQjic9n\",vet7gqNu_:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ks6f8i\",\"data-framer-name\":\"Button Close\",onTap:onTap1wnntms({overlay}),children:[/*#__PURE__*/_jsx(XCloseDelete,{animated:false,className:\"framer-1usgzi\",CRY1Fpez4:true,layoutId:\"PLPe4Oh4s\",vet7gqNu_:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Close\"})}),className:\"framer-1j53p1y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})]})})})})})})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+4646},ZkIOK6tRW:{y:(componentViewport?.y||0)+0+3721}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"200px\",y:(componentViewport?.y||0)+0+3770,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wv46rm-container\",nodeId:\"qPEBBXXaZ\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(SpaceH60,{height:\"100%\",id:\"qPEBBXXaZ\",layoutId:\"qPEBBXXaZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zeayht\",\"data-framer-name\":\"Video 6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dq8ww0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3bz915\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k6y32u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"60px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8961fb69-0ea3-46ab-8b8e-1f9187ebd1a9, rgb(0, 0, 0))\"},children:\"Noi Mito\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"60px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8961fb69-0ea3-46ab-8b8e-1f9187ebd1a9, rgb(0, 0, 0))\"},children:\"Noi Mito\"})}),className:\"framer-1rr9pyl\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d3650bef-13f5-49bd-88f0-8a82034ef0d6, rgb(153, 153, 153))\"},children:\"Persone, passione, responsabilit\\xe0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlETXlMQ0FpZDJkb2RDSWdOekF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Variable Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv01' on, 'cv09' on, 'cv11' on, 'cv05' on, 'ss03' on\",\"--framer-font-size\":\"40px\",\"--framer-font-variation-axes\":'\"opsz\" 32, \"wght\" 700',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d3650bef-13f5-49bd-88f0-8a82034ef0d6, rgb(153, 153, 153))\"},children:\"Persone, passione, responsabilit\\xe0\"})}),className:\"framer-4itpxz\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1oj0g1j\",\"data-styles-preset\":\"k5Xn7O841\",children:\"Crediamo nelle relazioni durature e nella cura di ogni dettaglio. La nostra forza \\xe8 un team che lavora con passione per offrire soluzioni affidabili e vicine alle esigenze dei clienti.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eha0qs\",\"data-styles-preset\":\"bd3_rjRI7\",children:\"Crediamo nelle relazioni durature e nella cura di ogni dettaglio. La nostra forza \\xe8 un team che lavora con passione per offrire soluzioni affidabili e vicine alle esigenze dei clienti.\"})}),className:\"framer-veufgi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cZzm7AGSK\"},motionChild:true,nodeId:\"ZEn95OiI7\",openInNewTab:false,scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sop79m framer-b8clu6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{y:(componentViewport?.y||0)+0+4666+0+0+0+0+0+20+320+0},ZkIOK6tRW:{y:(componentViewport?.y||0)+0+3741+0+0+0+20+382+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+3790+2+0+0+20+382+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86npxv-container\",isModuleExternal:true,nodeId:\"ckxcszjEW\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(ButtonM1,{height:\"100%\",hEmulMOQ0:\"Perch\\xe8 Mito\",id:\"ckxcszjEW\",layoutId:\"ckxcszjEW\",variant:\"TVO5QlM6p\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4666+0+0+0+414),pixelHeight:533,pixelWidth:800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533\",srcSet:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?scale-down-to=512&width=800&height=533 512w,https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533 800w\"}},ZkIOK6tRW:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3741+0+0),pixelHeight:533,pixelWidth:800,sizes:`max((max(${componentViewport?.width||\"100vw\"} - 40px, 1px) - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533\",srcSet:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?scale-down-to=512&width=800&height=533 512w,https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3790+2+0),pixelHeight:533,pixelWidth:800,sizes:\"575px\",src:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533\",srcSet:\"https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?scale-down-to=512&width=800&height=533 512w,https://framerusercontent.com/images/7T9Y09GGV4Xt2RW6lMqj9MvM9sg.jpg?width=800&height=533 800w\"},className:\"framer-1egnuls\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12zcu8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lyj8h7Rgs\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"lyj8h7Rgs\",isMixedBorderRadius:false,isRed:true,layoutId:\"lyj8h7Rgs\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/rgs-ry_k21s?si=JdQlinKzxM6wTL5Z\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1md4l\",\"data-framer-name\":\"Space H\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5435},ZkIOK6tRW:{y:(componentViewport?.y||0)+0+4277}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:\"1200px\",y:(componentViewport?.y||0)+0+4330,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vsfezi-container\",nodeId:\"mozClt2ct\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{variant:\"VWiThHRUb\"},ZkIOK6tRW:{variant:\"oyogmbZ6o\"}},children:/*#__PURE__*/_jsx(TitleSection,{EAZYbY_S9:\"Scegli il tuo prodotto\",HDYKNc6bV:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Valuta lo stile architettonico, le forme e l’effetto che desideri per individuare il prodotto che meglio si integra con il tuo progetto\"})}),height:\"100%\",id:\"mozClt2ct\",L0qZ2_0dY:\"Una soluzione per ogni progetto\",layoutId:\"mozClt2ct\",style:{width:\"100%\"},variant:\"ldHUpotFE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-blcu3l\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"AlXSWW_sr\",data:CategoriaProdotti,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"AlXSWW_sr\",name:\"MAhqojLkY\",type:\"Identifier\"},{collection:\"AlXSWW_sr\",name:\"X_c1SEV08\",type:\"Identifier\"},{collection:\"AlXSWW_sr\",name:\"jYjMUpvVs\",type:\"Identifier\"},{collection:\"AlXSWW_sr\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"AlXSWW_sr\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"NNmo5IWLY\"},type:\"BinaryOperation\"}},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"AlXSWW_sr\",name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"vy4KNzO91\"},type:\"BinaryOperation\"}},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idAlXSWW_sr,jYjMUpvVs:jYjMUpvVsAlXSWW_sr,MAhqojLkY:MAhqojLkYAlXSWW_sr,X_c1SEV08:X_c1SEV08AlXSWW_sr},index5)=>{MAhqojLkYAlXSWW_sr??=\"\";jYjMUpvVsAlXSWW_sr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`AlXSWW_sr-${idAlXSWW_sr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{MAhqojLkY:MAhqojLkYAlXSWW_sr},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{MAhqojLkY:MAhqojLkYAlXSWW_sr},webPageId:\"u7ShTnz5t\"},motionChild:true,nodeId:\"QOcg1SFdb\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bllmcv framer-b8clu6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1akbkhs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5677+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:\"570px\",...toResponsiveImage(X_c1SEV08AlXSWW_sr)}},ZkIOK6tRW:{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4519+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:\"373.3333px\",...toResponsiveImage(X_c1SEV08AlXSWW_sr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Controtelaio a scomparsa Filomuro Easy\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4572+0+0+0+0+0),pixelHeight:649,pixelWidth:800,sizes:\"275px\",...toResponsiveImage(X_c1SEV08AlXSWW_sr)},className:\"framer-hk6qix\",whileHover:animation3})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rjvy87\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y2ju0l\",\"data-styles-preset\":\"yJUqGo2sd\",style:{\"--framer-text-color\":\"var(--token-883782f8-4507-464f-838d-c705d6e58b3a, rgb(255, 255, 255))\"},children:\"Controtelai\"})}),className:\"framer-edow6h\",\"data-framer-name\":\"categoria-prodotti\",fonts:[\"Inter\"],text:jYjMUpvVsAlXSWW_sr,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})},idAlXSWW_sr);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4gm7eq\",\"data-framer-name\":\"Space H\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6033},ZkIOK6tRW:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5011}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:692,width:\"1196px\",y:(componentViewport?.y||0)+0+5064,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jsgoio-container\",nodeId:\"FTOuJMXDU\",scopeId:\"a3kmSDX8h\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aVpbQzLcp:{variant:\"oquPq_dal\"},ZkIOK6tRW:{variant:\"yE257MWqc\"}},children:/*#__PURE__*/_jsx(SectionNews,{height:\"100%\",id:\"FTOuJMXDU\",layoutId:\"FTOuJMXDU\",style:{width:\"100%\"},variant:\"tfFK4KYY6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s4w70n\",\"data-framer-name\":\"Space H\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dWnaQ.framer-b8clu6, .framer-dWnaQ .framer-b8clu6 { display: block; }\",\".framer-dWnaQ.framer-1m7p3nc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-1qw0r9y-container { bottom: 110px; flex: none; height: auto; position: fixed; right: 0px; width: auto; z-index: 9; }\",\".framer-dWnaQ .framer-7zgfor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-wff024-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-1fvfk1c { background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); flex: none; height: 100vh; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-1hd0xz7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: var(--overflow-clip-fallback, clip); padding: 0px 50px 0px 50px; position: absolute; right: 0px; top: 88%; transform: translateY(-50%); z-index: 3; }\",\".framer-dWnaQ .framer-i62ck3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 0px 50px 10px; position: relative; width: 430px; z-index: 1; }\",\".framer-dWnaQ .framer-1awt8wx, .framer-dWnaQ .framer-wgl9tc, .framer-dWnaQ .framer-1sf27xs, .framer-dWnaQ .framer-yxee87, .framer-dWnaQ .framer-1vclc2n, .framer-dWnaQ .framer-1mgrfcp, .framer-dWnaQ .framer-1edeyt3, .framer-dWnaQ .framer-1x7hx6l, .framer-dWnaQ .framer-1j53p1y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dWnaQ .framer-1ol1bio, .framer-dWnaQ .framer-15h37st, .framer-dWnaQ .framer-1p64ys3, .framer-dWnaQ .framer-120krvb, .framer-dWnaQ .framer-tq978d, .framer-dWnaQ .framer-1v5xmhz, .framer-dWnaQ .framer-1rr9pyl, .framer-dWnaQ .framer-4itpxz, .framer-dWnaQ .framer-veufgi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dWnaQ .framer-jd2f5k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: min-content; }\",\".framer-dWnaQ .framer-1abqhu4, .framer-dWnaQ .framer-tx8c4d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dWnaQ .framer-1hdr5q6, .framer-dWnaQ .framer-16h1rym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dWnaQ .framer-1wnrc9n, .framer-dWnaQ .framer-x1md4l, .framer-dWnaQ .framer-s4w70n { flex: none; height: 70px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 95px; }\",\".framer-dWnaQ .framer-1d5tdup-container { flex: none; height: 300px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-a1tvzw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 0px 20px 0px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-1yz3qpu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1mjqhi3, .framer-dWnaQ .framer-414v2d, .framer-dWnaQ .framer-oklufg { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-f8jryz { align-content: flex-start; align-items: flex-start; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; left: 40px; overflow: var(--overflow-clip-fallback, clip); padding: 20px 27px 20px 27px; position: absolute; text-decoration: none; top: 50%; transform: translateY(-50%); width: 400px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-1omfjn1 { aspect-ratio: 4.463463463463463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; width: 300px; z-index: 1; }\",\".framer-dWnaQ .framer-8o4rpq, .framer-dWnaQ .framer-tst64f, .framer-dWnaQ .framer-akh2j6, .framer-dWnaQ .framer-zsk5x0, .framer-dWnaQ .framer-tc694b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-dWnaQ .framer-1ajedt7-container, .framer-dWnaQ .framer-xind3f-container, .framer-dWnaQ .framer-p9g0kb-container, .framer-dWnaQ .framer-1hoxrbe-container, .framer-dWnaQ .framer-xxinm7-container, .framer-dWnaQ .framer-86npxv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dWnaQ .framer-1uewota, .framer-dWnaQ .framer-kzjld2, .framer-dWnaQ .framer-st1qbb, .framer-dWnaQ .framer-449xac { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-dWnaQ .framer-1ua7udl, .framer-dWnaQ .framer-1y2c07g, .framer-dWnaQ .framer-2ptrhr, .framer-dWnaQ .framer-14j5ju5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1rzact8, .framer-dWnaQ .framer-ibq41f { 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: var(--overflow-clip-fallback, clip); padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1dieit5 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 700px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-1f4mj6f { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-p4auqz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1tuwdwq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-xxouej { align-content: flex-start; align-items: flex-start; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-1gjmrua { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-dWnaQ .framer-w7edsl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1muu9p8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1dmwoi5, .framer-dWnaQ .framer-1sz3wjv, .framer-dWnaQ .framer-e1xvh1 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1cn3wv6 { align-content: flex-start; align-items: flex-start; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 20px; overflow: var(--overflow-clip-fallback, clip); padding: 10px; position: absolute; text-decoration: none; top: 50%; transform: translateY(-50%); width: 300px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-b0841m { flex: none; height: 68px; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-1y5jh84-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-nwsqya { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-g3nfh, .framer-dWnaQ .framer-1tsjsih, .framer-dWnaQ .framer-m3rxeh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-zcprur { align-content: center; align-items: center; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 59px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 240px; justify-content: center; left: 20px; overflow: var(--overflow-clip-fallback, clip); padding: 20px; position: absolute; text-decoration: none; width: 270px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-1ryt2w8, .framer-dWnaQ .framer-ij0tai, .framer-dWnaQ .framer-3bz915 { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-16r8ay0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-1l59l1r { aspect-ratio: 4.463463463463463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-1oqd9sg { align-content: center; align-items: center; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 240px; justify-content: center; left: 20px; overflow: var(--overflow-clip-fallback, clip); padding: 20px; position: absolute; top: calc(50.00000000000002% - 240px / 2); width: 270px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-ttw1pv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-dWnaQ .framer-qjxm6h { aspect-ratio: 4.463463463463463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-dWnaQ .framer-ogm6pp { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-38us08 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 1px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-1vrgzrm { align-content: flex-start; align-items: flex-start; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: 320px; justify-content: center; left: 20px; overflow: var(--overflow-clip-fallback, clip); padding: 20px; position: absolute; text-decoration: none; top: calc(50.00000000000002% - 320px / 2); width: 380px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-1fuxi0b { aspect-ratio: 4.054054054054054 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 200px; z-index: 1; }\",\".framer-dWnaQ .framer-jklaje { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 420px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-bwvzq5 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-102wlz { --border-bottom-width: 1px; --border-color: var(--token-293389c1-e232-412e-9120-3c6760e95dca, #121212); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-0c581137-5c04-4bda-903d-44980157058a, rgba(18, 18, 18, 0.6)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: 1px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 40px 20px 40px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-1cuohwu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: 100%; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px 0px 0px 50px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-1fqf9b6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 50px 0px 0px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-1wfusd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-19twhlk { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dWnaQ .framer-ai9fri { align-content: center; align-items: center; background-color: var(--token-dda383de-b8f9-44a9-96d5-ee48b4a265bd, rgba(18, 18, 18, 0.8)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 200px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-7m9lk0 { align-content: flex-start; align-items: flex-start; background-color: var(--token-883782f8-4507-464f-838d-c705d6e58b3a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dWnaQ .framer-beg08z, .framer-dWnaQ .framer-77wc1p, .framer-dWnaQ .framer-gdha9d, .framer-dWnaQ .framer-15y2tt9, .framer-dWnaQ .framer-167xaeo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-60eiu1, .framer-dWnaQ .framer-10o4s1n, .framer-dWnaQ .framer-1ca6na5, .framer-dWnaQ .framer-1qdf11a, .framer-dWnaQ .framer-1ivue1m, .framer-dWnaQ .framer-edow6h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-dWnaQ .framer-143nke2, .framer-dWnaQ .framer-n7z2fi, .framer-dWnaQ .framer-m4rrlu { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }','.framer-dWnaQ .framer-stxom { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-invalid-text-color: #999999; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-dWnaQ .framer-u3xypc, .framer-dWnaQ .framer-1rniwtw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-11xhlb5, .framer-dWnaQ .framer-5we2s { --framer-input-background: rgba(187, 187, 187, 0.2); --framer-input-boolean-checked-background: #0099ff; --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.2); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-dWnaQ .framer-fsf78c, .framer-dWnaQ .framer-eam2yf { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",'.framer-dWnaQ .framer-8dieb8 { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-dWnaQ .framer-bxejhu-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-dWnaQ .framer-1u782tx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 794px; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: absolute; top: 176px; width: min-content; z-index: 1; }\",\".framer-dWnaQ .framer-11n4q16, .framer-dWnaQ .framer-1usgzi { --1ww558a: 2; --4rxgx6: var(--token-883782f8-4507-464f-838d-c705d6e58b3a, #ffffff); flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-dWnaQ .framer-1ks6f8i { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 607px; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: absolute; top: 185px; width: min-content; z-index: 1; }\",\".framer-dWnaQ .framer-1wv46rm-container { flex: none; height: 20px; position: relative; width: 200px; }\",\".framer-dWnaQ .framer-zeayht { align-content: center; align-items: center; background-color: var(--token-9629f2fc-7a04-4088-b21b-dfb248011833, rgba(236, 233, 228, 0.6)); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 470px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px 20px 0px 20px; position: relative; width: 1200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-dq8ww0 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-1k6y32u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 20px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-sop79m { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-dWnaQ .framer-1egnuls { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-12zcu8-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-dWnaQ .framer-vsfezi-container { flex: none; height: auto; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-blcu3l { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-dWnaQ .framer-1bllmcv { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-dWnaQ .framer-1akbkhs { align-content: center; align-items: center; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 216px; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dWnaQ .framer-hk6qix { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dWnaQ .framer-rjvy87 { align-content: center; align-items: center; background-color: var(--token-313ecd0f-66f2-4cb9-a349-7fc0675ff8c6, rgba(18, 18, 18, 0.6)); bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 38px; justify-content: center; left: calc(49.81818181818184% - 275px / 2); overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: absolute; width: 275px; z-index: 1; }\",\".framer-dWnaQ .framer-4gm7eq { flex: none; height: 40px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 95px; }\",\".framer-dWnaQ .framer-1jsgoio-container { flex: none; height: auto; position: relative; width: 1196px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-dWnaQ[data-border=\"true\"]::after, .framer-dWnaQ [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: 1199.98px) { .framer-dWnaQ.framer-1m7p3nc { width: 810px; } .framer-dWnaQ .framer-1qw0r9y-container { bottom: 200px; } .framer-dWnaQ .framer-1d5tdup-container, .framer-dWnaQ .framer-a1tvzw, .framer-dWnaQ .framer-1jsgoio-container { width: 100%; } .framer-dWnaQ .framer-jklaje, .framer-dWnaQ .framer-zeayht { height: min-content; width: 100%; } .framer-dWnaQ .framer-bwvzq5, .framer-dWnaQ .framer-1cuohwu { height: min-content; } .framer-dWnaQ .framer-102wlz { flex: none; height: min-content; } .framer-dWnaQ .framer-11n4q16 { height: var(--framer-aspect-ratio-supported, 29px); } .framer-dWnaQ .framer-blcu3l { grid-template-columns: repeat(3, minmax(50px, 1fr)); }}\",\"@media (max-width: 809.98px) { .framer-dWnaQ.framer-1m7p3nc { width: 390px; } .framer-dWnaQ .framer-1qw0r9y-container { bottom: 0px; } .framer-dWnaQ .framer-1hd0xz7 { flex-direction: column; padding: 0px 20px 0px 20px; top: 51%; } .framer-dWnaQ .framer-i62ck3, .framer-dWnaQ .framer-38us08, .framer-dWnaQ .framer-vsfezi-container, .framer-dWnaQ .framer-1jsgoio-container { width: 100%; } .framer-dWnaQ .framer-jd2f5k { gap: 43px; padding: 35px 0px 50px 0px; width: 100%; } .framer-dWnaQ .framer-1d5tdup-container { height: 450px; width: 100%; } .framer-dWnaQ .framer-a1tvzw { padding: 30px 0px 20px 0px; width: 100%; } .framer-dWnaQ .framer-f8jryz { align-content: center; align-items: center; bottom: 10px; gap: 23px; top: unset; transform: unset; width: 310px; } .framer-dWnaQ .framer-1omfjn1 { aspect-ratio: unset; height: auto; width: 180px; } .framer-dWnaQ .framer-1dieit5, .framer-dWnaQ .framer-g3nfh, .framer-dWnaQ .framer-1tsjsih { height: 500px; } .framer-dWnaQ .framer-1tuwdwq { flex-direction: column; } .framer-dWnaQ .framer-xxouej, .framer-dWnaQ .framer-1egnuls { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-dWnaQ .framer-1gjmrua { height: min-content; } .framer-dWnaQ .framer-w7edsl { flex: none; height: min-content; } .framer-dWnaQ .framer-1muu9p8 { flex: none; height: 500px; } .framer-dWnaQ .framer-1cn3wv6 { align-content: center; align-items: center; bottom: 20px; top: unset; transform: unset; width: 310px; } .framer-dWnaQ .framer-b0841m { height: auto; width: 180px; } .framer-dWnaQ .framer-nwsqya, .framer-dWnaQ .framer-3bz915 { flex: none; width: 100%; } .framer-dWnaQ .framer-zcprur { bottom: 20px; width: 310px; } .framer-dWnaQ .framer-1l59l1r, .framer-dWnaQ .framer-qjxm6h { height: var(--framer-aspect-ratio-supported, 45px); } .framer-dWnaQ .framer-1oqd9sg { bottom: 20px; top: unset; width: 310px; } .framer-dWnaQ .framer-ttw1pv { align-content: center; align-items: center; } .framer-dWnaQ .framer-1vrgzrm { align-content: center; align-items: center; bottom: 20px; height: 315px; left: 23px; top: unset; width: 310px; } .framer-dWnaQ .framer-1fuxi0b { height: var(--framer-aspect-ratio-supported, 74px); } .framer-dWnaQ .framer-jklaje, .framer-dWnaQ .framer-zeayht { flex-direction: column; height: min-content; width: 100%; } .framer-dWnaQ .framer-bwvzq5, .framer-dWnaQ .framer-1cuohwu { flex: none; height: min-content; width: 100%; } .framer-dWnaQ .framer-102wlz { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 26px; height: min-content; } .framer-dWnaQ .framer-1fqf9b6 { flex: none; padding: 0px 10px 0px 0px; width: 100%; } .framer-dWnaQ .framer-1wfusd4 { justify-content: center; } .framer-dWnaQ .framer-11n4q16 { height: var(--framer-aspect-ratio-supported, 29px); } .framer-dWnaQ .framer-dq8ww0 { flex: none; flex-direction: column; width: 100%; } .framer-dWnaQ .framer-12zcu8-container { height: 285px; } .framer-dWnaQ .framer-blcu3l { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-dWnaQ .framer-1akbkhs { height: 148px; } .framer-dWnaQ .framer-s4w70n { height: 30px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6208\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZkIOK6tRW\":{\"layout\":[\"fixed\",\"auto\"]},\"aVpbQzLcp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framera3kmSDX8h=withCSS(Component,css,\"framer-dWnaQ\");export default Framera3kmSDX8h;Framera3kmSDX8h.displayName=\"Page\";Framera3kmSDX8h.defaultProps={height:6208,width:1200};const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(Framera3kmSDX8h,[{explicitInter:true,fonts:[{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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\"},{cssFamilyName:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",uiFamilyName:\"Plus Jakarta Sans\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter Variable\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",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/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{cssFamilyName:\"Inter\",source:\"framer\",style:\"normal\",uiFamilyName:\"Inter\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ChatWithMeFonts,...VideoFonts,...TitleSectionFonts,...ButtonMFonts,...ButtonM1Fonts,...ButtonFormFonts,...XCloseDeleteFonts,...SpaceH60Fonts,...YouTubeFonts,...SectionNewsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framera3kmSDX8h\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"6208\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZkIOK6tRW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aVpbQzLcp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}