{"version":3,"file":"ANg-mU3-rZolH1pBOWLhh7UDEkbIBCUogRhJ01P-4Gw.D37IIxUz.mjs","names":["size","_Fragment","PlayOptions","ThumbnailOptions","fonts","css","className","addPropertyOverrides","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","Phosphor","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","css","fonts","css","className","HeaderTopBar","HeaderNavbar","SectionTag","Button","FeatureBox","ArrowButton","YouTube","BlogCards","CTA","Footer","metadata","className","PropertyOverrides","Image","Blogs","_Fragment","BD3We2OurhNJfxplSw","hmwgs62hphNJfxplSw","idhNJfxplSw","oVEWR_WbuhNJfxplSw","pJcRPyQ_HhNJfxplSw","yaskXasYphNJfxplSw","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js","https:/framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js","https:/framerusercontent.com/modules/phwzUSreuasVVSSP3Vcp/IA86qPIm5GFXzjLYSagf/x_P53_09t.js","https:/framerusercontent.com/modules/kJbVnWwkW7nlEYpMRCOY/1gwvS8cl0xu9xZBl5Rii/BcQdZ8fGO.js","https:/framerusercontent.com/modules/7buDbLCzd9fXW8bvcFee/eBNuNdQ0JbIkUBijdvow/ZUuuo23cE.js","https:/framerusercontent.com/modules/yU82H4fh8MaseF6GH2ny/xo3ofz73wMtiLl2Rsw5T/HJEd4ciBV.js","https:/framerusercontent.com/modules/yOzJZnjyY1cmrQvfG7Z1/SGsxC5wYlRMI4sZSJXgL/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);if(param===\"t\")searchParams.set(\"start\",value)// embeds have to use `start`, but copying via right-click usually gives you `t=`\n;}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/8AHPXm9Y6mI\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map","// Generated by Framer (90417e1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-3jOjl .framer-styles-preset-1vhaj16:not(.rich-text-wrapper), .framer-3jOjl .framer-styles-preset-1vhaj16.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-7e76e5bc-2d38-407e-b2d8-acb52cc68a85, #5c5c5c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-3jOjl .framer-styles-preset-1vhaj16:not(.rich-text-wrapper), .framer-3jOjl .framer-styles-preset-1vhaj16.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 21px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-7e76e5bc-2d38-407e-b2d8-acb52cc68a85, #5c5c5c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-3jOjl .framer-styles-preset-1vhaj16:not(.rich-text-wrapper), .framer-3jOjl .framer-styles-preset-1vhaj16.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.03em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-7e76e5bc-2d38-407e-b2d8-acb52cc68a85, #5c5c5c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-3jOjl\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/phwzUSreuasVVSSP3Vcp/IA86qPIm5GFXzjLYSagf/x_P53_09t.js\";const enabledGestures={onbWSpzt3:{hover:true}};const serializationHash=\"framer-rgwB4\";const variantClassNames={onbWSpzt3:\"framer-v-1a30vx0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.1,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,text,width,...props})=>{var _ref;return{...props,orsSeNoum:(_ref=text!==null&&text!==void 0?text:props.orsSeNoum)!==null&&_ref!==void 0?_ref:\"Explore all services\",pU9NaLDBf:link!==null&&link!==void 0?link:props.pU9NaLDBf};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,orsSeNoum,pU9NaLDBf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"onbWSpzt3\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:pU9NaLDBf,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1a30vx0\",className,classNames)} framer-clh08f`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"onbWSpzt3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,...style},...addPropertyOverrides({\"onbWSpzt3-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vhaj16\",\"data-styles-preset\":\"x_P53_09t\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-aed0a6d4-81a3-4db6-8060-7206b0ec1baf, rgb(31, 31, 31)))\"},children:\"Explore all services\"})}),className:\"framer-g34zgk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cRnPcfLWp\",style:{\"--extracted-r6o4lv\":\"var(--token-aed0a6d4-81a3-4db6-8060-7206b0ec1baf, rgb(31, 31, 31))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:orsSeNoum,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(7+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)-14-30)/2)),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Z119xbYEBaXdu8LMZvmRSCWGRas.svg\"},className:\"framer-bnald5\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"cdrAKHIQ_\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rgwB4.framer-clh08f, .framer-rgwB4 .framer-clh08f { display: block; }\",\".framer-rgwB4.framer-1a30vx0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: 64px; justify-content: space-between; overflow: hidden; padding: 7px 20px 7px 26px; position: relative; text-decoration: none; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rgwB4 .framer-g34zgk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rgwB4 .framer-bnald5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 30px; }\",\".framer-rgwB4.framer-v-1a30vx0.hover.framer-1a30vx0 { padding: 7px 32px 7px 32px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z0jCTVbuU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"orsSeNoum\":\"text\",\"pU9NaLDBf\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBcQdZ8fGO=withCSS(Component,css,\"framer-rgwB4\");export default FramerBcQdZ8fGO;FramerBcQdZ8fGO.displayName=\"Arrow Button\";FramerBcQdZ8fGO.defaultProps={height:64,width:280};addPropertyControls(FramerBcQdZ8fGO,{orsSeNoum:{defaultValue:\"Explore all services\",displayTextArea:false,title:\"Text\",type:ControlType.String},pU9NaLDBf:{title:\"Link\",type:ControlType.Link}});addFonts(FramerBcQdZ8fGO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBcQdZ8fGO\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"orsSeNoum\\\":\\\"text\\\",\\\"pU9NaLDBf\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"64\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z0jCTVbuU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BcQdZ8fGO.map","// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3TITFGKI1en6QPGTBISu/jm6uwLd9f1n92k3UVHyY/E9b_8lHBJ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/qbJBMm2SQvL0cPIL6jUN/YjdHY7AjUckMF8TxbBeI/Lq2_D8P02.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uNSt1ZIYVYMBXpUEwHtA/VXIjqVwfpZKFWB05rkel/QF44RSjLz.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/g3TzJlIKsFOYzQj2Yxuk/0M1awosjJc7gYUsvdiK1/x_P53_09t.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"a3uT8VN5s\",\"ngS59ouPX\",\"GiLro2aQ3\"];const serializationHash=\"framer-GdFcc\";const variantClassNames={a3uT8VN5s:\"framer-v-1kd0mur\",GiLro2aQ3:\"framer-v-1nw8i9p\",ngS59ouPX:\"framer-v-5kfo3q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"a3uT8VN5s\",\"Variant 2\":\"ngS59ouPX\",\"Variant 3\":\"GiLro2aQ3\"};const getProps=({height,id,name2,text,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,nHVe34hLd:(_ref=name2!==null&&name2!==void 0?name2:props.nHVe34hLd)!==null&&_ref!==void 0?_ref:\"Bus\",s3FxLL1mC:(_ref1=title!==null&&title!==void 0?title:props.s3FxLL1mC)!==null&&_ref1!==void 0?_ref1:\"Trasporto dedicato per garantire sicurezza e comodit\\xe0 agli studenti\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"a3uT8VN5s\",Y7DstTlGC:(_ref3=text!==null&&text!==void 0?text:props.Y7DstTlGC)!==null&&_ref3!==void 0?_ref3:\"Management\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Y7DstTlGC,s3FxLL1mC,nHVe34hLd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a3uT8VN5s\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"GiLro2aQ3\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kd0mur\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a3uT8VN5s\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:160,borderBottomRightRadius:160,borderTopLeftRadius:160,borderTopRightRadius:160,...style},variants:{GiLro2aQ3:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},ngS59ouPX:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({GiLro2aQ3:{\"data-framer-name\":\"Variant 3\"},ngS59ouPX:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y54rh5-container\",layoutDependency:layoutDependency,layoutId:\"oojx7HXvJ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:nHVe34hLd,id:\"oojx7HXvJ\",layoutId:\"oojx7HXvJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:\"Management\"})}),className:\"framer-1t4dlpc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hQCIjTBRn\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Y7DstTlGC,variants:{GiLro2aQ3:{\"--extracted-r6o4lv\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},ngS59ouPX:{\"--extracted-r6o4lv\":\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GiLro2aQ3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vhaj16\",\"data-styles-preset\":\"x_P53_09t\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255)))\"},children:\"Management\"})})},ngS59ouPX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-l8w38i\",\"data-styles-preset\":\"E9b_8lHBJ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255)))\"},children:\"Management\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1scwh5u\",\"data-styles-preset\":\"Lq2_D8P02\",children:\"Management\"})}),className:\"framer-1rbn1dh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tAe2dIUZ6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:s3FxLL1mC,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GdFcc.framer-46vxhh, .framer-GdFcc .framer-46vxhh { display: block; }\",\".framer-GdFcc.framer-1kd0mur { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 22px 12px 22px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-GdFcc .framer-y54rh5-container { flex: none; height: 33px; position: relative; width: 29px; }\",\".framer-GdFcc .framer-1t4dlpc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-GdFcc .framer-1rbn1dh { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GdFcc.framer-1kd0mur { gap: 0px; } .framer-GdFcc.framer-1kd0mur > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GdFcc.framer-1kd0mur > :first-child { margin-left: 0px; } .framer-GdFcc.framer-1kd0mur > :last-child { margin-right: 0px; } }\",\".framer-GdFcc.framer-v-1nw8i9p.framer-1kd0mur { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px; width: 135px; }\",\".framer-GdFcc.framer-v-1nw8i9p .framer-1t4dlpc { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GdFcc.framer-v-1nw8i9p .framer-1rbn1dh { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GdFcc.framer-v-1nw8i9p.framer-1kd0mur { gap: 0px; } .framer-GdFcc.framer-v-1nw8i9p.framer-1kd0mur > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GdFcc.framer-v-1nw8i9p.framer-1kd0mur > :first-child { margin-top: 0px; } .framer-GdFcc.framer-v-1nw8i9p.framer-1kd0mur > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-GdFcc[data-border=\"true\"]::after, .framer-GdFcc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46.5\n * @framerIntrinsicWidth 137\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ngS59ouPX\":{\"layout\":[\"auto\",\"auto\"]},\"GiLro2aQ3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Y7DstTlGC\":\"text\",\"s3FxLL1mC\":\"title\",\"nHVe34hLd\":\"name2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZUuuo23cE=withCSS(Component,css,\"framer-GdFcc\");export default FramerZUuuo23cE;FramerZUuuo23cE.displayName=\"Feature box\";FramerZUuuo23cE.defaultProps={height:46.5,width:137};addPropertyControls(FramerZUuuo23cE,{variant:{options:[\"a3uT8VN5s\",\"ngS59ouPX\",\"GiLro2aQ3\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},Y7DstTlGC:{defaultValue:\"Management\",displayTextArea:false,title:\"Text\",type:ControlType.String},s3FxLL1mC:{defaultValue:\"Trasporto dedicato per garantire sicurezza e comodit\\xe0 agli studenti\",displayTextArea:false,title:\"Title\",type:ControlType.String},nHVe34hLd:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Bus\",description:undefined,hidden:undefined,title:\"Name 2\"}});addFonts(FramerZUuuo23cE,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...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\":\"FramerZUuuo23cE\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ngS59ouPX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GiLro2aQ3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Y7DstTlGC\\\":\\\"text\\\",\\\"s3FxLL1mC\\\":\\\"title\\\",\\\"nHVe34hLd\\\":\\\"name2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"46.5\",\"framerIntrinsicWidth\":\"137\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZUuuo23cE.map","// Generated by Framer (ed8225c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Poppins-regular\",\"FS;Poppins-bold\",\"FS;Poppins-bold italic\",\"FS;Poppins-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JQL34MORONR7D7BXOVTX3KBGJGEJQ5BJ/CKUZVY5SFANCFAT7FS3MP6ZL4BMEWCJE/NOLRWF3JBJ434MILPG5RB6R2B4HGRSZB.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7LLTLAW3NRWOADG4II2JGKZC6OSEMBQC/EYFXWX77PEMPU645EAWOTG22E375GULW/SSNNTU67MMJH4CSWT443B4KJ7OB4WFHF.woff2\",weight:\"400\"}]}];export const css=['.framer-bEDIp .framer-styles-preset-8833e0:not(.rich-text-wrapper), .framer-bEDIp .framer-styles-preset-8833e0.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 68px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-bEDIp .framer-styles-preset-8833e0:not(.rich-text-wrapper), .framer-bEDIp .framer-styles-preset-8833e0.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 56px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bEDIp .framer-styles-preset-8833e0:not(.rich-text-wrapper), .framer-bEDIp .framer-styles-preset-8833e0.rich-text-wrapper p { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.05em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-bEDIp\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (3874042)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/11ESVHhCyl2YUkxbseoQ/1nHvxJd1hqosXG9cD1wF/Smooth_Scroll.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/4sbLnuatuUfmOTwFGSJM/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import ArrowButton from\"#framer/local/canvasComponent/BcQdZ8fGO/BcQdZ8fGO.js\";import Footer from\"#framer/local/canvasComponent/KNgRPqNDP/KNgRPqNDP.js\";import SectionTag from\"#framer/local/canvasComponent/RvSY3Hkbh/RvSY3Hkbh.js\";import HeaderTopBar from\"#framer/local/canvasComponent/SDeoxYuXs/SDeoxYuXs.js\";import BlogCards from\"#framer/local/canvasComponent/tJ7XAxL7h/tJ7XAxL7h.js\";import Button from\"#framer/local/canvasComponent/TjtjNhy8n/TjtjNhy8n.js\";import CTA from\"#framer/local/canvasComponent/X8TrgGDXw/X8TrgGDXw.js\";import HeaderNavbar from\"#framer/local/canvasComponent/zCQcNYxlA/zCQcNYxlA.js\";import FeatureBox from\"#framer/local/canvasComponent/ZUuuo23cE/ZUuuo23cE.js\";import Blogs,{enumToDisplayNameFunctions}from\"#framer/local/collection/QVrE_Xp0q/QVrE_Xp0q.js\";import*as sharedStyle5 from\"#framer/local/css/dZ1uPqRen/dZ1uPqRen.js\";import*as sharedStyle6 from\"#framer/local/css/E9b_8lHBJ/E9b_8lHBJ.js\";import*as sharedStyle from\"#framer/local/css/HJEd4ciBV/HJEd4ciBV.js\";import*as sharedStyle4 from\"#framer/local/css/LCujvjP2o/LCujvjP2o.js\";import*as sharedStyle3 from\"#framer/local/css/mkD3Pk41u/mkD3Pk41u.js\";import*as sharedStyle2 from\"#framer/local/css/QF44RSjLz/QF44RSjLz.js\";import*as sharedStyle1 from\"#framer/local/css/UYkQUQKou/UYkQUQKou.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderTopBarFonts=getFonts(HeaderTopBar);const HeaderNavbarFonts=getFonts(HeaderNavbar);const HeaderNavbarWithVariantAppearEffect=withVariantAppearEffect(HeaderNavbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const SectionTagFonts=getFonts(SectionTag);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const FeatureBoxFonts=getFonts(FeatureBox);const TickerFonts=getFonts(Ticker);const ArrowButtonFonts=getFonts(ArrowButton);const YouTubeFonts=getFonts(YouTube);const BlogCardsFonts=getFonts(BlogCards);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={U8P7DTME1:\"(min-width: 1200px) and (max-width: 1599px)\",WQLkyLRf1:\"(min-width: 1600px)\",XPJb5Jh8B:\"(max-width: 809px)\",ZuaR33Kcx:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-J3XOf\";const variantClassNames={U8P7DTME1:\"framer-v-zz3z0x\",WQLkyLRf1:\"framer-v-72rtr7\",XPJb5Jh8B:\"framer-v-1x4unzw\",ZuaR33Kcx:\"framer-v-1dn1aez\"};const transition1={damping:58,delay:.1,mass:1,stiffness:425,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.35,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition2};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Breakpoint:\"U8P7DTME1\",Desktop:\"WQLkyLRf1\",Phone:\"XPJb5Jh8B\",Tablet:\"ZuaR33Kcx\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BD3We2OurhNJfxplSw,yaskXasYphNJfxplSw,pJcRPyQ_HhNJfxplSw,oVEWR_WbuhNJfxplSw,hmwgs62hphNJfxplSw,idhNJfxplSw,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"gkzU2l6GM\");const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r971wm-container\",nodeId:\"d3zK76g_I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{variant:\"JBVInRnpc\"}},children:/*#__PURE__*/_jsx(HeaderTopBar,{height:\"100%\",id:\"d3zK76g_I\",layoutId:\"d3zK76g_I\",style:{width:\"100%\"},te8HxjGsV:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",variant:\"sh4Aer65B\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+45,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1585k3b-container\",\"data-framer-appear-id\":\"1585k3b\",initial:animation1,nodeId:\"CoHy9UfDI\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{__framer__variantAppearEffectEnabled:undefined,variant:\"qBJKY6ugq\"},ZuaR33Kcx:{variant:\"I4JrwKa02\"}},children:/*#__PURE__*/_jsx(HeaderNavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"fy22k12ch\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"CoHy9UfDI\",layoutId:\"CoHy9UfDI\",style:{width:\"100%\"},variant:\"K1XW0N0wn\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1qw4mdo\",\"data-framer-name\":\"Hero section\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9voved-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GTx_JGxAJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{borderRadius:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:32,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"GTx_JGxAJ\",intervalControl:3.5,itemAmount:1,layoutId:\"GTx_JGxAJ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3060,pixelWidth:4080,sizes:\"1550px\",src:\"https://framerusercontent.com/images/gr8se1IcpGIaRwFekaHwVldqnQ0.jpg\",srcSet:\"https://framerusercontent.com/images/gr8se1IcpGIaRwFekaHwVldqnQ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gr8se1IcpGIaRwFekaHwVldqnQ0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gr8se1IcpGIaRwFekaHwVldqnQ0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gr8se1IcpGIaRwFekaHwVldqnQ0.jpg 4080w\"},className:\"framer-5pbb58\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ulmavl\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x7upyh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x1icon\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1j9aq-container\",inComponentSlot:true,nodeId:\"DTrbUePYb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"DTrbUePYb\",layoutId:\"DTrbUePYb\",QYDHx9YU8:{borderColor:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},ReFKfeXXF:\"rgba(255, 118, 77, 0)\",rmMqnCCcD:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",vRhQ0MKna:\"Mainetti solidale\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8833e0\",\"data-styles-preset\":\"HJEd4ciBV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Corso contro la fame: una sfida che unisce\"})}),className:\"framer-lshpm2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hfpqa\",\"data-styles-preset\":\"UYkQUQKou\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:[\"Il 15 maggio 2025, al Palazzetto dello Sport di Traversetolo, gli studenti del Mainetti hanno partecipato alla \",/*#__PURE__*/_jsx(\"strong\",{children:\"Corsa contro la Fame\"}),\", dedicata quest’anno alla \",/*#__PURE__*/_jsx(\"strong\",{children:\"Costa d’Avorio\"}),\". Un gesto di solidariet\\xe0 per sensibilizzare sul problema della fame nel mondo.\"]})}),className:\"framer-17w0mu4\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uim5ea-container\",inComponentSlot:true,nodeId:\"dqyqALnzd\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bKCbkfH9z:false,Bt9tVlXCI:\"Visualizza la galleria\",Cju318J15:\"https://drive.google.com/file/d/1Gj3gDRfeoyBQe3P2v7vd0mfct9tF7XlU/view?usp=share_link\",height:\"100%\",id:\"dqyqALnzd\",layoutId:\"dqyqALnzd\",lXVOhMIIK:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",oedZfQEgM:false,variant:\"wyn90Op9g\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1200,sizes:\"1550px\",src:\"https://framerusercontent.com/images/GoFRrhd81L9Wby7e3XcyOJ2Lltw.jpg\",srcSet:\"https://framerusercontent.com/images/GoFRrhd81L9Wby7e3XcyOJ2Lltw.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/GoFRrhd81L9Wby7e3XcyOJ2Lltw.jpg 1200w\"},className:\"framer-o0wzhl\",\"data-framer-name\":\"infini.to\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-22bq44\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vzsm0j\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10kag73\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1z71yv-container\",inComponentSlot:true,nodeId:\"RY82Z6n09\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"RY82Z6n09\",layoutId:\"RY82Z6n09\",QYDHx9YU8:{borderColor:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},ReFKfeXXF:\"rgba(255, 118, 77, 0)\",rmMqnCCcD:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",vRhQ0MKna:\"Cultura\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8833e0\",\"data-styles-preset\":\"HJEd4ciBV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Gita a Torino: Citt\\xe0 e planetario Infini.to\"})}),className:\"framer-hy3rui\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hfpqa\",\"data-styles-preset\":\"UYkQUQKou\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:[\"Una giornata all’insegna della scoperta e della cultura: oggi tutta la scuola ha visitato \",/*#__PURE__*/_jsx(\"strong\",{children:\"Torino\"}),\", passeggiando nel cuore della citt\\xe0 e trascorrendo il pomeriggio al \",/*#__PURE__*/_jsx(\"strong\",{children:\"planetario INFINI.TO\"}),\", tra scienza, astronomia e meraviglia. Un’esperienza educativa e coinvolgente per studenti e docenti.\"]})}),className:\"framer-1jw9jmk\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ggt88k-container\",inComponentSlot:true,nodeId:\"Z_Bk3fgK6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bKCbkfH9z:false,Bt9tVlXCI:\"Visualizza la galleria\",Cju318J15:\"https://drive.google.com/file/d/1oBXLKmFxW3wTSJda1Q_VXqWkSQzYnIub/view?usp=share_link\",height:\"100%\",id:\"Z_Bk3fgK6\",layoutId:\"Z_Bk3fgK6\",lXVOhMIIK:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",oedZfQEgM:false,variant:\"wyn90Op9g\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1600,sizes:\"1550px\",src:\"https://framerusercontent.com/images/4CKkc9WiFqPfTyQHVqIPeh9kQUg.jpg\",srcSet:\"https://framerusercontent.com/images/4CKkc9WiFqPfTyQHVqIPeh9kQUg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4CKkc9WiFqPfTyQHVqIPeh9kQUg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4CKkc9WiFqPfTyQHVqIPeh9kQUg.jpg 1600w\"},className:\"framer-e61odp\",\"data-framer-name\":\"Protezione\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-c8vgig\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ij0f91\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1173szd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i2cqjf-container\",inComponentSlot:true,nodeId:\"Z3n6Jt2im\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"Z3n6Jt2im\",layoutId:\"Z3n6Jt2im\",QYDHx9YU8:{borderColor:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},ReFKfeXXF:\"rgba(255, 118, 77, 0)\",rmMqnCCcD:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",vRhQ0MKna:\"Aprile 2025\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8833e0\",\"data-styles-preset\":\"HJEd4ciBV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Protezione Civile all'ITE Mainetti\"})}),className:\"framer-1pgpvsd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hfpqa\",\"data-styles-preset\":\"UYkQUQKou\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Con la Protezione civile all'ITE Mainetti, gli studenti non assistono...agiscono! Protagonisti per un giorno, cittadini responsabili per il domani\"})}),className:\"framer-1w9tg8s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-az4kvn-container\",inComponentSlot:true,nodeId:\"VYvK53Cu2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bKCbkfH9z:false,Bt9tVlXCI:\"seguici su instagram per aggiornamenti\",Cju318J15:\"https://www.instagram.com/istituto_mainetti/\",height:\"100%\",id:\"VYvK53Cu2\",layoutId:\"VYvK53Cu2\",lXVOhMIIK:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",oedZfQEgM:false,variant:\"wyn90Op9g\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1615,pixelWidth:2419,sizes:\"1550px\",src:\"https://framerusercontent.com/images/g7E5ay4OEaEjzO1HMfjuyjKXcgw.webp\",srcSet:\"https://framerusercontent.com/images/g7E5ay4OEaEjzO1HMfjuyjKXcgw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/g7E5ay4OEaEjzO1HMfjuyjKXcgw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7E5ay4OEaEjzO1HMfjuyjKXcgw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/g7E5ay4OEaEjzO1HMfjuyjKXcgw.webp 2419w\"},className:\"framer-mzwj6g\",\"data-framer-name\":\"Bilancio\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gn46vy\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-opr246\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t5zurp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86zqxi-container\",inComponentSlot:true,nodeId:\"aapGt46Pj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SectionTag,{height:\"100%\",id:\"aapGt46Pj\",layoutId:\"aapGt46Pj\",QYDHx9YU8:{borderColor:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",borderStyle:\"solid\",borderWidth:1},ReFKfeXXF:\"rgba(255, 118, 77, 0)\",rmMqnCCcD:\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\",vRhQ0MKna:\"Traguardi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8833e0\",\"data-styles-preset\":\"HJEd4ciBV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Bilancio di Sostenibilit\\xe0\"})}),className:\"framer-1u450l2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hfpqa\",\"data-styles-preset\":\"UYkQUQKou\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"ITE Mainetti \\xe8 la Prima scuola in italia a pubblicare il Bilancio di Sostenibilit\\xe0 \"})}),className:\"framer-qhhlqx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hpc2ni-container\",inComponentSlot:true,nodeId:\"OtovzpTOZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{bKCbkfH9z:false,Bt9tVlXCI:\"Vai al bilancio\",Cju318J15:\"https://drive.google.com/file/d/1hJn147IsfIiKp27Pw-HzVSmn0o3REQYb/view?usp=drive_link\",height:\"100%\",id:\"OtovzpTOZ\",layoutId:\"OtovzpTOZ\",lXVOhMIIK:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",oedZfQEgM:true,variant:\"wyn90Op9g\",width:\"100%\"})})})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-j026um\",\"data-framer-name\":\"Explore\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1se2ewn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6uqld\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cspj3z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",pixelHeight:668,pixelWidth:1e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,src:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg\",srcSet:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg 1000w\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+769+0+0+0+0+0+0+0),pixelHeight:668,pixelWidth:1e3,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px)`,src:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg\",srcSet:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg 1000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+769+0+0+0+0+0+0+0),pixelHeight:668,pixelWidth:1e3,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px)`,src:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg\",srcSet:\"https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WEnqRpNs4EoRXXrfJPDi6KWE.jpg 1000w\"},className:\"framer-1hu21ge\",\"data-framer-name\":\"About Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-byfnmd\",\"data-framer-name\":\"Heading Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:\"Perch\\xe9 scegliere Istituto Mainetti\"})}),className:\"framer-121r2td\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1rg4aej\",\"data-styles-preset\":\"mkD3Pk41u\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"I nostri punti di forza\"})}),className:\"framer-aukztn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fd2use\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r2rqbs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MJGp8XryP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"MJGp8XryP\",layoutId:\"MJGp8XryP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16c8vq2-container\",inComponentSlot:true,nodeId:\"C6zme3yWE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"C6zme3yWE\",layoutId:\"C6zme3yWE\",nHVe34hLd:\"Bus\",s3FxLL1mC:\"Trasporto dedicato per garantire sicurezza e comodit\\xe0 agli studenti\",style:{width:\"100%\"},variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Autobus privato della scuola\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"146px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jq0qz-container\",inComponentSlot:true,nodeId:\"hWyerVyve\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"hWyerVyve\",layoutId:\"hWyerVyve\",nHVe34hLd:\"Heart\",s3FxLL1mC:\"Supporto personalizzato per chi ha pi\\xf9 bisogno con educatori qualificati\",style:{width:\"100%\"},variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Attenzione alle persone fragili\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4it4r-container\",inComponentSlot:true,nodeId:\"Hyo7jCKMr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"Hyo7jCKMr\",layoutId:\"Hyo7jCKMr\",nHVe34hLd:\"Park\",s3FxLL1mC:\"Svariate esperienze educative fuori dall’aula\",variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Uscite didattiche\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"148px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19n6nw4-container\",inComponentSlot:true,nodeId:\"DLbpD22al\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"DLbpD22al\",layoutId:\"DLbpD22al\",nHVe34hLd:\"HandsClapping\",s3FxLL1mC:\"Un ambiente sereno, ideale per favorire lo studio\",style:{width:\"100%\"},variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Spazio pacifico e tranquillo\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ct2o6a-container\",inComponentSlot:true,nodeId:\"HRzS7_oQW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"HRzS7_oQW\",layoutId:\"HRzS7_oQW\",nHVe34hLd:\"HandPeace\",s3FxLL1mC:\"Una scuola per tutti, che valorizza la diversit\\xe0\",variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Inclusivit\\xe1 senza barriere\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"155px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2w6rs-container\",inComponentSlot:true,nodeId:\"uCxHBVkw2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"uCxHBVkw2\",layoutId:\"uCxHBVkw2\",nHVe34hLd:\"Laptop\",s3FxLL1mC:\"Collaborazioni con aziende per entrare nel mondo del lavoro\",style:{width:\"100%\"},variant:\"GiLro2aQ3\",width:\"100%\",Y7DstTlGC:\"Accesso diretto al Lavoro\"})})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccmdyv\",\"data-framer-name\":\"Open Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ydws5\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:\"Prima scuola in Italia a pubblicarlo\"})}),className:\"framer-166krm8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1rg4aej\",\"data-styles-preset\":\"mkD3Pk41u\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Bilancio di sostenibilit\\xe1\"})}),className:\"framer-ybzow8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks9an8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19lja3k\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ol\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Chi siamo\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Dotazioni infrastrutturali\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Offerta formativa\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strategia di sostenibilit\\xe1\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Analisi di materialit\\xe1\"})})]})}),className:\"framer-1xbqf3f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 40px, 50px) - 60px)`,y:undefined},ZuaR33Kcx:{width:`calc(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px) - 60px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+0+0+537+44+148+0+226}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+0+0+0+50+132+0+226,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5h9ly7-container\",nodeId:\"dG7ms9c2x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ArrowButton,{height:\"100%\",id:\"dG7ms9c2x\",layoutId:\"dG7ms9c2x\",orsSeNoum:\"Scarica il PDF\",pU9NaLDBf:\"https://drive.google.com/file/d/1hJn147IsfIiKp27Pw-HzVSmn0o3REQYb/view\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19sk157\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sa6hgi\",\"data-framer-name\":\"Open Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxs9ck\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:\"Sei gi\\xe1 studente da noi?\"})}),className:\"framer-9cx3t2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1rg4aej\",\"data-styles-preset\":\"mkD3Pk41u\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Info e link utili\"})}),className:\"framer-xs25zn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163j7fx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pRVTYOwAC\"},implicitPathVariables:undefined},{href:{webPageId:\"pRVTYOwAC\"},implicitPathVariables:undefined},{href:{webPageId:\"pRVTYOwAC\"},implicitPathVariables:undefined},{href:{webPageId:\"pRVTYOwAC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 40px, 50px) - 80px)`,y:undefined},ZuaR33Kcx:{width:`calc(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+1074+0+0+50+202+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+537+0+0+50+202+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8odfgf-container\",nodeId:\"u7D9IAE3X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{pU9NaLDBf:resolvedLinks[1]},XPJb5Jh8B:{pU9NaLDBf:resolvedLinks[3]},ZuaR33Kcx:{pU9NaLDBf:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ArrowButton,{height:\"100%\",id:\"u7D9IAE3X\",layoutId:\"u7D9IAE3X\",orsSeNoum:\"Orario delle lezioni\",pU9NaLDBf:resolvedLinks[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yZjmf7Tr7\"},implicitPathVariables:undefined},{href:{webPageId:\"yZjmf7Tr7\"},implicitPathVariables:undefined},{href:{webPageId:\"yZjmf7Tr7\"},implicitPathVariables:undefined},{href:{webPageId:\"yZjmf7Tr7\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 40px, 50px) - 80px)`,y:undefined},ZuaR33Kcx:{width:`calc(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+1074+0+0+50+202+0+78}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+537+0+0+50+202+0+78,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smloko-container\",nodeId:\"ywbTk10Ps\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{pU9NaLDBf:resolvedLinks1[1]},XPJb5Jh8B:{pU9NaLDBf:resolvedLinks1[3]},ZuaR33Kcx:{pU9NaLDBf:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ArrowButton,{height:\"100%\",id:\"ywbTk10Ps\",layoutId:\"ywbTk10Ps\",orsSeNoum:\"Ricevimento genitori\",pU9NaLDBf:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B31qtmbuL\"},implicitPathVariables:undefined},{href:{webPageId:\"B31qtmbuL\"},implicitPathVariables:undefined},{href:{webPageId:\"B31qtmbuL\"},implicitPathVariables:undefined},{href:{webPageId:\"B31qtmbuL\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{width:`calc(max(${componentViewport?.width||\"100vw\"} - 40px, 50px) - 80px)`,y:undefined},ZuaR33Kcx:{width:`calc(max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+1074+0+0+50+202+0+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px) - 80px)`,y:(componentViewport?.y||0)+0+769+0+0+0+0+537+0+0+50+202+0+156,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kowzr0-container\",nodeId:\"pY6LL_wFZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{pU9NaLDBf:resolvedLinks2[1]},XPJb5Jh8B:{pU9NaLDBf:resolvedLinks2[3]},ZuaR33Kcx:{pU9NaLDBf:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ArrowButton,{height:\"100%\",id:\"pY6LL_wFZ\",layoutId:\"pY6LL_wFZ\",orsSeNoum:\"Regolamento d'Istituto\",pU9NaLDBf:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",pixelHeight:668,pixelWidth:1e3,sizes:`max(${componentViewport?.width||\"100vw\"} - 40px, 50px)`,src:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg\",srcSet:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg 1000w\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+769+0+0+0+0+1074+0+537),pixelHeight:668,pixelWidth:1e3,sizes:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 50px, 50px)`,src:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg\",srcSet:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg 1000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+769+0+0+0+0+537+0+0),pixelHeight:668,pixelWidth:1e3,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - 75px) / 2, 50px)`,src:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg\",srcSet:\"https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/W5Fl6ZOcLVo9xHxlA9rjJKt4OQ.jpg 1000w\"},className:\"framer-1xmk28p\",\"data-framer-name\":\"Open Box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqlj1h\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",children:\"La scelta sicura\"})}),className:\"framer-1wu9w66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1rg4aej\",\"data-styles-preset\":\"mkD3Pk41u\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Il Mainetti in numeri\"})}),className:\"framer-biqfei\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1plx2x\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-42gqze\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbfgfr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1pz25mf\",\"data-styles-preset\":\"LCujvjP2o\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"20+\"})}),className:\"framer-h13bjk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Iniziative extrascolastiche ogni anno\"})}),className:\"framer-1uu4s7r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vi5dxc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1pz25mf\",\"data-styles-preset\":\"LCujvjP2o\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"12%\"})}),className:\"framer-ano9bw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Degli alunni raggiunge il 100 alla maturit\\xe1\"})}),className:\"framer-1q0td91\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5ydtw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1pz25mf\",\"data-styles-preset\":\"LCujvjP2o\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"1000+\"})}),className:\"framer-vq4t0l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Alunni formati\"})}),className:\"framer-zdv8vs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o5fx4v\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1pz25mf\",\"data-styles-preset\":\"LCujvjP2o\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"58\"})}),className:\"framer-1611k6a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",style:{\"--framer-text-color\":\"var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, rgb(255, 255, 255))\"},children:\"Anni di attivit\\xe1\"})}),className:\"framer-vtbi3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ramggb\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-crnqt1\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kwf42t\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-epfprb\",\"data-styles-preset\":\"dZ1uPqRen\",children:'\"Pi\\xf9 unico che fragile\"'})}),className:\"framer-1ihwokr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l8w38i\",\"data-styles-preset\":\"E9b_8lHBJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7e76e5bc-2d38-407e-b2d8-acb52cc68a85, rgb(92, 92, 92))\"},children:\"Progetto finanziato da:\"})}),className:\"framer-e9t2rd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://pnrr.istruzione.it\",motionChild:true,nodeId:\"v4FfGydYM\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2892+25+100+0+0+249),pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1818+25+100+0+0+249),pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"},className:\"framer-ilwuhs framer-lux5qc\",\"data-framer-name\":\"Pon big\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjpyyc-container\",isModuleExternal:true,nodeId:\"sqyE_aK8N\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"sqyE_aK8N\",isMixedBorderRadius:false,isRed:true,layoutId:\"sqyE_aK8N\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://youtu.be/NR2aeA1Si-w?si=toT7Fe0fzIWpFL1X\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1kcn30k\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17z1q1t\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-913bm6\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9abkyp\",\"data-styles-preset\":\"QF44RSjLz\",style:{\"--framer-text-color\":\"var(--token-aed0a6d4-81a3-4db6-8060-7206b0ec1baf, rgb(31, 31, 31))\"},children:\"Scopri tutte le novit\\xe1\"})}),className:\"framer-1v8n7z2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-epfprb\",\"data-styles-preset\":\"dZ1uPqRen\",children:\"La bacheca del Mainetti\"})}),className:\"framer-3wsvdl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-l8w38i\",\"data-styles-preset\":\"E9b_8lHBJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7e76e5bc-2d38-407e-b2d8-acb52cc68a85, rgb(92, 92, 92))\"},children:\"Qui troverete tutti gli aggiornamenti, le novit\\xe0 e i progetti che raccontano la nostra passione per l'educazione e l'innovazione. Scoprite le attivit\\xe0 che rendono unica la nostra scuola!\"})}),className:\"framer-1g1vwbp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g5gdwz\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hNJfxplSw\",data:Blogs,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"hNJfxplSw\",name:\"BD3We2Our\",type:\"Identifier\"},{collection:\"hNJfxplSw\",name:\"yaskXasYp\",type:\"Identifier\"},{collection:\"hNJfxplSw\",name:\"pJcRPyQ_H\",type:\"Identifier\"},{collection:\"hNJfxplSw\",name:\"oVEWR_Wbu\",type:\"Identifier\"},{collection:\"hNJfxplSw\",name:\"hmwgs62hp\",type:\"Identifier\"},{collection:\"hNJfxplSw\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({BD3We2Our:BD3We2OurhNJfxplSw,hmwgs62hp:hmwgs62hphNJfxplSw,id:idhNJfxplSw,oVEWR_Wbu:oVEWR_WbuhNJfxplSw,pJcRPyQ_H:pJcRPyQ_HhNJfxplSw,yaskXasYp:yaskXasYphNJfxplSw},index)=>{yaskXasYphNJfxplSw??=\"\";hmwgs62hphNJfxplSw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hNJfxplSw-${idhNJfxplSw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{hmwgs62hp:hmwgs62hphNJfxplSw},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{hmwgs62hp:hmwgs62hphNJfxplSw},webPageId:\"TzIzp4Fq7\"},implicitPathVariables:undefined},{href:{pathVariables:{hmwgs62hp:hmwgs62hphNJfxplSw},webPageId:\"TzIzp4Fq7\"},implicitPathVariables:undefined},{href:{pathVariables:{hmwgs62hp:hmwgs62hphNJfxplSw},webPageId:\"TzIzp4Fq7\"},implicitPathVariables:undefined},{href:{pathVariables:{hmwgs62hp:hmwgs62hphNJfxplSw},webPageId:\"TzIzp4Fq7\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{y:(componentViewport?.y||0)+0+2768+25+100+337.4+0+0},XPJb5Jh8B:{width:`max(${componentViewport?.width||\"100vw\"} - 76px, 50px)`,y:undefined},ZuaR33Kcx:{width:`max((max(${componentViewport?.width||\"100vw\"} - 50px, 1px) - 96px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3794+25+100+337.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:451,width:`max((max(${componentViewport?.width||\"100vw\"} - 50px, 1px) - 128px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2806+25+100+337.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-56cwnh-container\",nodeId:\"GVQEnWlBA\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{PIg4YAghC:resolvedLinks3[1]},XPJb5Jh8B:{PIg4YAghC:resolvedLinks3[3]},ZuaR33Kcx:{PIg4YAghC:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BlogCards,{height:\"100%\",id:\"GVQEnWlBA\",II6SWOxVw:toResponsiveImage(BD3We2OurhNJfxplSw),layoutId:\"GVQEnWlBA\",PDZwRo8pW:toDateString(oVEWR_WbuhNJfxplSw,activeLocaleCode),PIg4YAghC:resolvedLinks3[0],style:{width:\"100%\"},Vg6LNeImU:enumToDisplayNameFunctions[\"pJcRPyQ_H\"]?.(pJcRPyQ_HhNJfxplSw,activeLocale),vueHt_CS9:yaskXasYphNJfxplSw,width:\"100%\"})})})})})})})},idhNJfxplSw);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qLjhcAEWH\"},implicitPathVariables:undefined},{href:{webPageId:\"qLjhcAEWH\"},implicitPathVariables:undefined},{href:{webPageId:\"qLjhcAEWH\"},implicitPathVariables:undefined},{href:{webPageId:\"qLjhcAEWH\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{y:(componentViewport?.y||0)+0+2768+25+100+1333.4},XPJb5Jh8B:{y:undefined},ZuaR33Kcx:{y:(componentViewport?.y||0)+0+3794+25+100+1333.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+2806+25+100+1333.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o7zcz5-container\",nodeId:\"eX70wKDre\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{Cju318J15:resolvedLinks4[1]},XPJb5Jh8B:{Cju318J15:resolvedLinks4[3]},ZuaR33Kcx:{Cju318J15:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{bKCbkfH9z:false,Bt9tVlXCI:\"Vai alla bacheca\",Cju318J15:resolvedLinks4[0],height:\"100%\",id:\"eX70wKDre\",layoutId:\"eX70wKDre\",lXVOhMIIK:\"var(--token-409a47fb-df9c-45e1-a84f-f309680a3ddc, rgb(54, 117, 255))\",oedZfQEgM:false,variant:\"wyn90Op9g\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-m0fu6u\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lhb4wu\",\"data-framer-name\":\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bci650\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.miur.gov.it/\",motionChild:true,nodeId:\"S9oq0x2fq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4405.4+48+0+48+0+0),pixelHeight:264,pixelWidth:768,sizes:`max((${componentViewport?.width||\"100vw\"} - 512px) / 9, 1px)`,src:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png 768w\"}},XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:384,pixelHeight:264,pixelWidth:768,sizes:\"281.0182px\",src:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png 768w\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5431.4+48+0+48+0+0),pixelHeight:264,pixelWidth:768,sizes:`max((${componentViewport?.width||\"100vw\"} - 432px) / 12, 1px)`,src:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png 768w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:132,intrinsicWidth:384,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4443.4+48+0+48+0+0),pixelHeight:264,pixelWidth:768,sizes:`max((${componentViewport?.width||\"100vw\"} - 432px) / 7, 1px)`,src:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png?scale-down-to=512 512w,https://framerusercontent.com/images/oobyG2ZZcd2xq1cREnejsjLjIk.png 768w\"},className:\"framer-3mqq2t framer-lux5qc\",\"data-framer-name\":\"Miur-768x264\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.istruzione.it/iscrizionionline/\",motionChild:true,nodeId:\"mHN5RCWKt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4405.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/mAzxSnz88Z05EE6wghNxpowsgW4.png\"}},XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/mAzxSnz88Z05EE6wghNxpowsgW4.png\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5431.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/mAzxSnz88Z05EE6wghNxpowsgW4.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4443.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/mAzxSnz88Z05EE6wghNxpowsgW4.png\"},className:\"framer-qjn3ge framer-lux5qc\",\"data-framer-name\":\"Iscrizioninline\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://pnrr.istruzione.it\",motionChild:true,nodeId:\"c70W4H8Ew\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4405.4+48+0+48+0+27.5),pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"}},XPJb5Jh8B:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5431.4+48+0+48+0+27.5),pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4443.4+48+0+48+0+27.5),pixelHeight:106,pixelWidth:475,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PLEdSykem1lw8LjDQuA86K7KM.png\"},className:\"framer-9p2c23 framer-lux5qc\",\"data-framer-name\":\"Pon big\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://web.spaggiari.eu/home/app/default/login.php\",motionChild:true,nodeId:\"h0YyRkRh2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4405.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/9QAazx1D0IcaSLSb39DOK8ks.png\"}},XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/9QAazx1D0IcaSLSb39DOK8ks.png\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5431.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/9QAazx1D0IcaSLSb39DOK8ks.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4443.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/9QAazx1D0IcaSLSb39DOK8ks.png\"},className:\"framer-1x9dxnl framer-lux5qc\",\"data-framer-name\":\"Classeviva banner_solologo\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Oji9oKQJo\"},motionChild:true,nodeId:\"uxw2MdWa8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4405.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/OxgaiF4Y46lIp6HMhldPOtM0vK4.png\"}},XPJb5Jh8B:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/OxgaiF4Y46lIp6HMhldPOtM0vK4.png\"}},ZuaR33Kcx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5431.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/OxgaiF4Y46lIp6HMhldPOtM0vK4.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:240,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4443.4+48+0+48+0+23.5),pixelHeight:169,pixelWidth:480,src:\"https://framerusercontent.com/images/OxgaiF4Y46lIp6HMhldPOtM0vK4.png\"},className:\"framer-w4cgf framer-lux5qc\",\"data-framer-name\":\"Trasparenza\"})})})]})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PSEYcixJx\"},implicitPathVariables:undefined},{href:{webPageId:\"PSEYcixJx\"},implicitPathVariables:undefined},{href:{webPageId:\"PSEYcixJx\"},implicitPathVariables:undefined},{href:{webPageId:\"PSEYcixJx\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{y:(componentViewport?.y||0)+0+4729.4},XPJb5Jh8B:{y:undefined},ZuaR33Kcx:{y:(componentViewport?.y||0)+0+5755.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4767.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rpm0de-container\",nodeId:\"mWdG_47yK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{rA2aEC2JL:resolvedLinks5[1],U_kiWdjkE:addImageAlt({pixelHeight:1797,pixelWidth:2692,src:\"https://framerusercontent.com/images/pgAkpdtZqD4XQaQFSHimzYIcJo.webp\",srcSet:\"https://framerusercontent.com/images/pgAkpdtZqD4XQaQFSHimzYIcJo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pgAkpdtZqD4XQaQFSHimzYIcJo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/pgAkpdtZqD4XQaQFSHimzYIcJo.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/pgAkpdtZqD4XQaQFSHimzYIcJo.webp 2692w\"},\"\")},XPJb5Jh8B:{rA2aEC2JL:resolvedLinks5[3],variant:\"XngppYCgr\"},ZuaR33Kcx:{rA2aEC2JL:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(CTA,{C9j7gnHnW:\"Iscrizioni online\",height:\"100%\",id:\"mWdG_47yK\",kS3PsWdRi:\"Iscriviti ora\",layoutId:\"mWdG_47yK\",rA2aEC2JL:resolvedLinks5[0],style:{width:\"100%\"},U_kiWdjkE:addImageAlt({pixelHeight:1282,pixelWidth:1920,src:\"https://framerusercontent.com/images/ZJbFEFRMwo0QiV2cahaxCYCPY.jpg\",srcSet:\"https://framerusercontent.com/images/ZJbFEFRMwo0QiV2cahaxCYCPY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZJbFEFRMwo0QiV2cahaxCYCPY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZJbFEFRMwo0QiV2cahaxCYCPY.jpg 1920w\"},\"\"),uwGhfZIn8:\"Vuoi diventare alunno Mainetti?\",variant:\"EMxJSkGIW\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U8P7DTME1:{y:(componentViewport?.y||0)+0+5172.4},XPJb5Jh8B:{y:undefined},ZuaR33Kcx:{y:(componentViewport?.y||0)+0+6198.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:475,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5210.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lrko5f-container\",nodeId:\"SizHrvS79\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XPJb5Jh8B:{variant:\"F81G07HLj\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"SizHrvS79\",layoutId:\"SizHrvS79\",style:{width:\"100%\"},variant:\"dZS3udCqH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wmw7gh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kuGapHZY6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"kuGapHZY6\",intensity:10,layoutId:\"kuGapHZY6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J3XOf.framer-lux5qc, .framer-J3XOf .framer-lux5qc { display: block; }\",\".framer-J3XOf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-047aecab-c5ec-4884-912b-58f8c4317c86, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1600px; }\",\".framer-J3XOf .framer-r971wm-container, .framer-J3XOf .framer-1rpm0de-container, .framer-J3XOf .framer-lrko5f-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1585k3b-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-J3XOf .framer-1qw4mdo { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 25px 28px 25px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J3XOf .framer-9voved-container { flex: 1 0 0px; height: 600px; position: relative; width: 1px; }\",\".framer-J3XOf .framer-5pbb58, .framer-J3XOf .framer-o0wzhl, .framer-J3XOf .framer-e61odp, .framer-J3XOf .framer-mzwj6g { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 611px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1550px; }\",\".framer-J3XOf .framer-ulmavl, .framer-J3XOf .framer-22bq44, .framer-J3XOf .framer-c8vgig, .framer-J3XOf .framer-gn46vy { background: linear-gradient(133deg, #000000 25%, rgba(102, 102, 102, 0.24) 84%); bottom: -7px; flex: none; left: 0px; opacity: 0.64; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-J3XOf .framer-x7upyh, .framer-J3XOf .framer-vzsm0j, .framer-J3XOf .framer-ij0f91, .framer-J3XOf .framer-opr246 { -webkit-backdrop-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 55px 0px 55px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-J3XOf .framer-x1icon, .framer-J3XOf .framer-10kag73, .framer-J3XOf .framer-1173szd, .framer-J3XOf .framer-t5zurp, .framer-J3XOf .framer-j026um, .framer-J3XOf .framer-1plx2x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-b1j9aq-container, .framer-J3XOf .framer-1uim5ea-container, .framer-J3XOf .framer-1z71yv-container, .framer-J3XOf .framer-1ggt88k-container, .framer-J3XOf .framer-i2cqjf-container, .framer-J3XOf .framer-az4kvn-container, .framer-J3XOf .framer-86zqxi-container, .framer-J3XOf .framer-1hpc2ni-container, .framer-J3XOf .framer-1o7zcz5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-J3XOf .framer-lshpm2, .framer-J3XOf .framer-hy3rui, .framer-J3XOf .framer-1pgpvsd, .framer-J3XOf .framer-1u450l2 { --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-J3XOf .framer-17w0mu4, .framer-J3XOf .framer-1jw9jmk, .framer-J3XOf .framer-1w9tg8s, .framer-J3XOf .framer-qhhlqx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 92%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J3XOf .framer-1se2ewn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-J3XOf .framer-s6uqld { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1cspj3z, .framer-J3XOf .framer-19sk157 { display: grid; flex: none; gap: 25px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1hu21ge { align-content: flex-start; align-items: flex-start; align-self: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 512px; justify-content: space-between; justify-self: center; padding: 50px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-byfnmd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 50px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-121r2td, .framer-J3XOf .framer-166krm8, .framer-J3XOf .framer-1xbqf3f, .framer-J3XOf .framer-9cx3t2, .framer-J3XOf .framer-1wu9w66, .framer-J3XOf .framer-1v8n7z2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J3XOf .framer-aukztn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 410px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J3XOf .framer-fd2use { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1r2rqbs-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-J3XOf .framer-16c8vq2-container, .framer-J3XOf .framer-19n6nw4-container { height: auto; position: relative; width: 148px; }\",\".framer-J3XOf .framer-12jq0qz-container { height: auto; position: relative; width: 146px; }\",\".framer-J3XOf .framer-k4it4r-container, .framer-J3XOf .framer-1ct2o6a-container { height: auto; position: relative; width: auto; }\",\".framer-J3XOf .framer-p2w6rs-container { height: auto; position: relative; width: 155px; }\",\".framer-J3XOf .framer-1ccmdyv { align-content: flex-start; align-items: flex-start; align-self: center; background-color: var(--token-7ce0e17e-e281-43c3-988a-3408c91cf3f2, #ff764d); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 512px; justify-content: space-between; justify-self: center; overflow: hidden; padding: 50px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J3XOf .framer-17ydws5, .framer-J3XOf .framer-jxs9ck, .framer-J3XOf .framer-1bqlj1h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-ybzow8, .framer-J3XOf .framer-xs25zn, .framer-J3XOf .framer-biqfei, .framer-J3XOf .framer-h13bjk, .framer-J3XOf .framer-1uu4s7r, .framer-J3XOf .framer-ano9bw, .framer-J3XOf .framer-1q0td91, .framer-J3XOf .framer-vq4t0l, .framer-J3XOf .framer-zdv8vs, .framer-J3XOf .framer-1611k6a, .framer-J3XOf .framer-vtbi3z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-J3XOf .framer-ks9an8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-19lja3k { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-5h9ly7-container, .framer-J3XOf .framer-8odfgf-container, .framer-J3XOf .framer-1smloko-container, .framer-J3XOf .framer-1kowzr0-container { flex: none; height: 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-J3XOf .framer-1sa6hgi { align-content: flex-start; align-items: flex-start; align-self: center; background-color: var(--token-6aaa0bef-4abf-4692-a2be-90a4506a8ccc, #c34dff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 512px; justify-content: space-between; justify-self: center; overflow: hidden; padding: 50px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J3XOf .framer-163j7fx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1xmk28p { align-content: flex-start; align-items: flex-start; align-self: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 512px; justify-content: space-between; justify-self: center; overflow: hidden; padding: 50px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-J3XOf .framer-42gqze { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-J3XOf .framer-1hbfgfr, .framer-J3XOf .framer-1vi5dxc, .framer-J3XOf .framer-i5ydtw { 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: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-o5fx4v { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1ramggb, .framer-J3XOf .framer-1kcn30k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-crnqt1, .framer-J3XOf .framer-17z1q1t { align-content: center; align-items: center; background-color: var(--token-8d756a3f-0fc5-46b5-8252-d9f8001efed3, #f0f0f0); border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 78px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-J3XOf .framer-1kwf42t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1ihwokr, .framer-J3XOf .framer-3wsvdl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J3XOf .framer-e9t2rd, .framer-J3XOf .framer-1g1vwbp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J3XOf .framer-ilwuhs { flex: none; height: 191px; overflow: visible; position: relative; text-decoration: none; width: 50%; }\",\".framer-J3XOf .framer-sjpyyc-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 658px); position: relative; width: 75%; }\",\".framer-J3XOf .framer-913bm6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-g5gdwz { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-56cwnh-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-J3XOf .framer-m0fu6u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1lhb4wu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 40px 48px 40px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-1bci650 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J3XOf .framer-3mqq2t { aspect-ratio: 2.909090909090909 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-J3XOf .framer-qjn3ge, .framer-J3XOf .framer-1x9dxnl, .framer-J3XOf .framer-w4cgf { aspect-ratio: 2.8402366863905324 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 59px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-J3XOf .framer-9p2c23 { aspect-ratio: 2.8402366863905324 / 1; flex: 3 0 0px; height: var(--framer-aspect-ratio-supported, 177px); overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-J3XOf .framer-1wmw7gh-container { flex: none; height: auto; opacity: 0; position: relative; width: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 1200px) and (max-width: 1599px) { .framer-J3XOf.framer-72rtr7 { width: 1200px; } .framer-J3XOf .framer-1hbfgfr, .framer-J3XOf .framer-1vi5dxc, .framer-J3XOf .framer-i5ydtw, .framer-J3XOf .framer-o5fx4v { gap: 15px; } .framer-J3XOf .framer-crnqt1, .framer-J3XOf .framer-17z1q1t { box-shadow: 2px 1px 12px 2px rgba(0, 0, 0, 0.1); } .framer-J3XOf .framer-ilwuhs { height: 153px; } .framer-J3XOf .framer-sjpyyc-container { height: var(--framer-aspect-ratio-supported, 554px); width: 85%; } .framer-J3XOf .framer-m0fu6u { padding: 48px 40px 48px 40px; } .framer-J3XOf .framer-3mqq2t { height: var(--framer-aspect-ratio-supported, 26px); } .framer-J3XOf .framer-qjn3ge, .framer-J3XOf .framer-1x9dxnl, .framer-J3XOf .framer-w4cgf { height: var(--framer-aspect-ratio-supported, 27px); } .framer-J3XOf .framer-9p2c23 { flex: 5 0 0px; height: var(--framer-aspect-ratio-supported, 134px); }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-J3XOf.framer-72rtr7 { width: 810px; } .framer-J3XOf .framer-1cspj3z, .framer-J3XOf .framer-19sk157 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-J3XOf .framer-1hu21ge, .framer-J3XOf .framer-1ccmdyv, .framer-J3XOf .framer-1xmk28p { padding: 44px 30px 30px 30px; } .framer-J3XOf .framer-byfnmd { padding: 0px 40px 0px 0px; } .framer-J3XOf .framer-ilwuhs { aspect-ratio: 3.619047619047619 / 1; height: var(--framer-aspect-ratio-supported, 105px); } .framer-J3XOf .framer-sjpyyc-container { height: var(--framer-aspect-ratio-supported, 366px); width: 85%; } .framer-J3XOf .framer-g5gdwz { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-J3XOf .framer-3mqq2t, .framer-J3XOf .framer-qjn3ge, .framer-J3XOf .framer-1x9dxnl, .framer-J3XOf .framer-w4cgf { height: var(--framer-aspect-ratio-supported, 11px); } .framer-J3XOf .framer-9p2c23 { flex: 8 0 0px; height: var(--framer-aspect-ratio-supported, 89px); }}\",\"@media (max-width: 809px) { .framer-J3XOf.framer-72rtr7 { width: 390px; } .framer-J3XOf .framer-1qw4mdo { border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; flex-direction: column; padding: 10px 0px 25px 0px; will-change: unset; } .framer-J3XOf .framer-9voved-container { flex: none; width: 100%; } .framer-J3XOf .framer-j026um { flex-direction: column; } .framer-J3XOf .framer-1se2ewn { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-J3XOf .framer-s6uqld { gap: 24px; } .framer-J3XOf .framer-1cspj3z, .framer-J3XOf .framer-19sk157 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-J3XOf .framer-1hu21ge { gap: 48px; height: min-content; justify-content: flex-start; padding: 44px 0px 30px 0px; } .framer-J3XOf .framer-byfnmd { padding: 0px 30px 0px 30px; } .framer-J3XOf .framer-1ccmdyv, .framer-J3XOf .framer-1xmk28p { height: 372px; padding: 44px 30px 30px 30px; } .framer-J3XOf .framer-1ramggb, .framer-J3XOf .framer-1kcn30k { flex-direction: column; padding: 25px 20px 25px 20px; } .framer-J3XOf .framer-crnqt1 { flex: none; padding: 36px 18px 40px 18px; width: 100%; } .framer-J3XOf .framer-ilwuhs { aspect-ratio: 3.14 / 1; height: var(--framer-aspect-ratio-supported, 100px); width: 100%; } .framer-J3XOf .framer-sjpyyc-container { height: var(--framer-aspect-ratio-supported, 178px); width: 100%; } .framer-J3XOf .framer-17z1q1t { flex: none; padding: 36px 18px 100px 18px; width: 100%; } .framer-J3XOf .framer-g5gdwz { grid-template-columns: repeat(1, minmax(50px, 1fr)); padding: 0px; } .framer-J3XOf .framer-1bci650 { flex-direction: column; height: 835px; } .framer-J3XOf .framer-3mqq2t { height: 1px; width: var(--framer-aspect-ratio-supported, 281px); } .framer-J3XOf .framer-qjn3ge, .framer-J3XOf .framer-1x9dxnl, .framer-J3XOf .framer-w4cgf { height: 1px; width: var(--framer-aspect-ratio-supported, 274px); } .framer-J3XOf .framer-9p2c23 { flex: 1 0 0px; height: 1px; width: var(--framer-aspect-ratio-supported, 274px); } .framer-J3XOf .framer-lrko5f-container { z-index: 0; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5461\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"U8P7DTME1\":{\"layout\":[\"fixed\",\"auto\"]},\"ZuaR33Kcx\":{\"layout\":[\"fixed\",\"auto\"]},\"XPJb5Jh8B\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"gkzU2l6GM\":{\"pattern\":\":gkzU2l6GM\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-J3XOf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5461,width:1600};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...HeaderTopBarFonts,...HeaderNavbarFonts,...SectionTagFonts,...ButtonFonts,...SlideshowFonts,...FeatureBoxFonts,...TickerFonts,...ArrowButtonFonts,...YouTubeFonts,...BlogCardsFonts,...CTAFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5461\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"{\\\"gkzU2l6GM\\\":{\\\"pattern\\\":\\\":gkzU2l6GM\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U8P7DTME1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZuaR33Kcx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XPJb5Jh8B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}